diff --git a/crates/core/src/test.rs b/crates/core/src/test.rs index 73f59f869..379125c9f 100644 --- a/crates/core/src/test.rs +++ b/crates/core/src/test.rs @@ -15769,8 +15769,7 @@ fn csharp_record_declaration() { | $assignments | } | - | $_ - | $_ + | $... | | public override bool Equals($type other) { | $equality @@ -16025,6 +16024,65 @@ fn csharp_groupby_keyword() { .unwrap(); } +#[test] +fn csharp_partial_linq_query() { + run_test_expected({ + TestArgExpected { + pattern: r#" + |language csharp + | + |`group $item by $item.$key into $g select $k` => `select $k` + |"# + .trim_margin() + .unwrap(), + source: r#" + |var result = from user in users + | group user by user.Age into g + | select new { Key = g.Key, Count = g.Count()}; + |"# + .trim_margin() + .unwrap(), + expected: r#" + |var result = from user in users + | select new { Key = g.Key, Count = g.Count()}; + |"# + .trim_margin() + .unwrap(), + } + }) + .unwrap(); +} + +#[test] +fn csharp_partial_linq_query_2() { + run_test_expected({ + TestArgExpected { + pattern: r#" + |language csharp + | + |`orderby $column $order` => `orderby $column` + |"# + .trim_margin() + .unwrap(), + source: r#" + |var orderedNames = from name in names + | orderby name ascending + | select name; + |"# + .trim_margin() + .unwrap(), + expected: r#" + |var orderedNames = from name in names + | orderby name + | select name; + |"# + .trim_margin() + .unwrap(), + } + }) + .unwrap(); +} + #[test] fn csharp_simple_test() { run_test_expected({ @@ -16091,3 +16149,154 @@ fn csharp_or_file() { }) .unwrap(); } + +#[test] +fn csharp_empty_namespace() { + run_test_expected({ + TestArgExpected { + pattern: r#" + |language csharp + | + |`namespace MyNamespace { + | $body + |}` => `namespace Empty { + |}` + |"# + .trim_margin() + .unwrap(), + source: r#" + |namespace MyNamespace { + | public class MyClass { } + |} + |"# + .trim_margin() + .unwrap(), + expected: r#" + |namespace Empty { + |} + |"# + .trim_margin() + .unwrap(), + } + }) + .unwrap(); +} + +#[test] +fn csharp_operator_overloading_rewrite() { + run_test_expected({ + TestArgExpected { + pattern: r#" + |language csharp + | + |`public static MyClass operator >>>(MyClass $a, MyClass $b) { + | return new MyClass(); + |}` => `public static MyClass operator <<(MyClass $a, MyClass $b) { + | return new MyClass(); + | }` + |"# + .trim_margin() + .unwrap(), + source: r#" + |public class MyClass { + | public static MyClass operator >>>(MyClass a, MyClass b) { + | return new MyClass(); + | } + |} + |"# + .trim_margin() + .unwrap(), + expected: r#" + |public class MyClass { + | public static MyClass operator <<(MyClass a, MyClass b) { + | return new MyClass(); + | } + |} + |"# + .trim_margin() + .unwrap(), + } + }) + .unwrap(); +} + +#[test] +fn csharp_delegate() { + run_test_expected({ + TestArgExpected { + pattern: r#" + |language csharp + | + |`public delegate void MyDelegate(int $x);` => `public delegate void MyDelegate(string $x);` + |"# + .trim_margin() + .unwrap(), + source: r#" + |public delegate void MyDelegate(int x); + |"# + .trim_margin() + .unwrap(), + expected: r#" + |public delegate void MyDelegate(string x); + |"# + .trim_margin() + .unwrap(), + } + }) + .unwrap(); +} + +#[test] +fn csharp_generics_remove_type() { + run_test_expected({ + TestArgExpected { + pattern: r#" + |language csharp + | + |`public class GenericClass { }` => `public class GenericClass { }` + |"# + .trim_margin() + .unwrap(), + source: r#" + |public class GenericClass { } + |"# + .trim_margin() + .unwrap(), + expected: r#" + |public class GenericClass { } + |"# + .trim_margin() + .unwrap(), + } + }) + .unwrap(); +} + +#[test] +fn csharp_attribute_swap() { + run_test_expected({ + TestArgExpected { + pattern: r#" + |language csharp + | + |`void $methodName([$attribute1][$attribute2] ref double x) { }` => + |`void $methodName([$attribute2][$attribute1] ref double x) { }` + |"# + .trim_margin() + .unwrap(), + source: r#" + |void MethodA([In][Out] ref double x) { } + |void MethodB([Out][In] ref double x) { } + |"# + .trim_margin() + .unwrap(), + expected: r#" + |void MethodA([Out][In] ref double x) { } + |void MethodB([In][Out] ref double x) { } + |"# + .trim_margin() + .unwrap(), + } + }) + .unwrap(); +} diff --git a/crates/language/src/csharp.rs b/crates/language/src/csharp.rs index 485d7d423..dc03486b1 100644 --- a/crates/language/src/csharp.rs +++ b/crates/language/src/csharp.rs @@ -66,6 +66,8 @@ impl Language for CSharp { ("GRIT_FUNC(", ");"), ("public class GRIT_CLASS {", "}"), ("", " { }"), + ("return from GRIT_VAR in GRIT_VAR ", ";"), + ("return from GRIT_VAR in GRIT_VAR ", " select GRIT_VAR;"), ] } } 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 5b2cf79cd..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/Cargo.lock b/resources/language-metavariables/tree-sitter-c-sharp/Cargo.lock index d7fb1ed07..cd445ab7b 100644 --- a/resources/language-metavariables/tree-sitter-c-sharp/Cargo.lock +++ b/resources/language-metavariables/tree-sitter-c-sharp/Cargo.lock @@ -61,23 +61,14 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" -[[package]] -name = "streaming-iterator" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520" - [[package]] name = "tree-sitter" -version = "0.24.4" +version = "0.20.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b67baf55e7e1b6806063b1e51041069c90afff16afcbbccd278d899f9d84bca4" +checksum = "e747b1f9b7b931ed39a548c1fae149101497de3c1fc8d9e18c62c1a66c683d3d" dependencies = [ "cc", "regex", - "regex-syntax", - "streaming-iterator", - "tree-sitter-language", ] [[package]] diff --git a/resources/language-metavariables/tree-sitter-c-sharp/grammar.js b/resources/language-metavariables/tree-sitter-c-sharp/grammar.js index 6b4832f36..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( @@ -1404,7 +1410,7 @@ module.exports = grammar({ _pointer_indirection_expression: ($) => prec.right(PREC.UNARY, seq("*", $.lvalue_expression)), - query_expression: ($) => seq(field("from", $.from_clause), field("query", $._query_body)), + query_expression: ($) => seq(field("from", $.from_clause), field("query", $.query_body)), from_clause: ($) => seq( @@ -1415,10 +1421,10 @@ module.exports = grammar({ field("expression", $.expression), ), - _query_body: ($) => + query_body: ($) => prec.right( sep1( - seq(repeat($._query_clause), $._select_or_group_clause), + seq(field("queries", repeat($._query_clause)), field("select_or_group", $._select_or_group_clause)), seq("into", $.identifier), ), ), @@ -1447,7 +1453,7 @@ module.exports = grammar({ order_by_clause: ($) => seq("orderby", commaSep1(field("ordering", $._ordering))), _ordering: ($) => - seq($.expression, optional(choice("ascending", "descending"))), + seq(field("expression", $.expression), optional(choice("ascending", "descending", $.grit_metavariable))), where_clause: ($) => seq("where", field("expression", $.expression)), 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 be87a1296..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": [ @@ -7682,7 +7706,7 @@ "name": "query", "content": { "type": "SYMBOL", - "name": "_query_body" + "name": "query_body" } } ] @@ -7732,7 +7756,7 @@ } ] }, - "_query_body": { + "query_body": { "type": "PREC_RIGHT", "value": 0, "content": { @@ -7742,15 +7766,23 @@ "type": "SEQ", "members": [ { - "type": "REPEAT", + "type": "FIELD", + "name": "queries", "content": { - "type": "SYMBOL", - "name": "_query_clause" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_query_clause" + } } }, { - "type": "SYMBOL", - "name": "_select_or_group_clause" + "type": "FIELD", + "name": "select_or_group", + "content": { + "type": "SYMBOL", + "name": "_select_or_group_clause" + } } ] }, @@ -7776,15 +7808,23 @@ "type": "SEQ", "members": [ { - "type": "REPEAT", + "type": "FIELD", + "name": "queries", "content": { - "type": "SYMBOL", - "name": "_query_clause" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_query_clause" + } } }, { - "type": "SYMBOL", - "name": "_select_or_group_clause" + "type": "FIELD", + "name": "select_or_group", + "content": { + "type": "SYMBOL", + "name": "_select_or_group_clause" + } } ] } @@ -8010,8 +8050,12 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "expression" + "type": "FIELD", + "name": "expression", + "content": { + "type": "SYMBOL", + "name": "expression" + } }, { "type": "CHOICE", @@ -8026,6 +8070,10 @@ { "type": "STRING", "value": "descending" + }, + { + "type": "SYMBOL", + "name": "grit_metavariable" } ] }, 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 e85690070..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 } ] }, @@ -4594,6 +4594,16 @@ "type": "order_by_clause", "named": true, "fields": { + "expression": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, "ordering": { "multiple": true, "required": true, @@ -4609,6 +4619,10 @@ { "type": "expression", "named": true + }, + { + "type": "grit_metavariable", + "named": true } ] } @@ -5513,19 +5527,9 @@ } }, { - "type": "query_expression", + "type": "query_body", "named": true, "fields": { - "from": { - "multiple": false, - "required": true, - "types": [ - { - "type": "from_clause", - "named": true - } - ] - }, "group": { "multiple": true, "required": false, @@ -5536,54 +5540,88 @@ } ] }, - "query": { + "queries": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "from_clause", "named": true }, { - "type": "group_clause", + "type": "join_clause", "named": true }, { - "type": "identifier", + "type": "let_clause", "named": true }, { - "type": "into", - "named": false + "type": "order_by_clause", + "named": true }, { - "type": "join_clause", + "type": "where_clause", "named": true - }, + } + ] + }, + "select": { + "multiple": true, + "required": false, + "types": [ { - "type": "let_clause", + "type": "select_clause", "named": true - }, + } + ] + }, + "select_or_group": { + "multiple": true, + "required": true, + "types": [ { - "type": "order_by_clause", + "type": "group_clause", "named": true }, { "type": "select_clause", "named": true - }, + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "query_expression", + "named": true, + "fields": { + "from": { + "multiple": false, + "required": true, + "types": [ { - "type": "where_clause", + "type": "from_clause", "named": true } ] }, - "select": { - "multiple": true, - "required": false, + "query": { + "multiple": false, + "required": true, "types": [ { - "type": "select_clause", + "type": "query_body", "named": true } ] @@ -6904,10 +6942,6 @@ "type": "#warning", "named": false }, - { - "type": "%", - "named": false - }, { "type": "%=", "named": false @@ -6984,10 +7018,6 @@ "type": "..", "named": false }, - { - "type": "/", - "named": false - }, { "type": "/=", "named": false @@ -7008,10 +7038,6 @@ "type": "<", "named": false }, - { - "type": "<<", - "named": false - }, { "type": "<<=", "named": false @@ -7040,18 +7066,10 @@ "type": ">=", "named": false }, - { - "type": ">>", - "named": false - }, { "type": ">>=", "named": false }, - { - "type": ">>>", - "named": false - }, { "type": ">>>=", "named": false @@ -7412,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 @@ -7644,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 f0d5edcff..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,15 +14,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 8161 -#define LARGE_STATE_COUNT 5452 +#define STATE_COUNT 8172 +#define LARGE_STATE_COUNT 5454 #define SYMBOL_COUNT 548 #define ALIAS_COUNT 3 #define TOKEN_COUNT 218 #define EXTERNAL_TOKEN_COUNT 12 -#define FIELD_COUNT 60 +#define FIELD_COUNT 62 #define MAX_ALIAS_SEQUENCE_LENGTH 15 -#define PRODUCTION_ID_COUNT 357 +#define PRODUCTION_ID_COUNT 358 enum ts_symbol_identifiers { sym__identifier_token = 1, @@ -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,23 +398,23 @@ 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, sym__pointer_indirection_expression = 387, sym_query_expression = 388, sym_from_clause = 389, - sym__query_body = 390, + sym_query_body = 390, sym__query_clause = 391, sym_join_clause = 392, sym__join_header = 393, @@ -557,8 +557,8 @@ enum ts_symbol_identifiers { aux_sym_list_pattern_repeat1 = 530, aux_sym_positional_pattern_clause_repeat1 = 531, aux_sym_parenthesized_variable_designation_repeat1 = 532, - aux_sym__query_body_repeat1 = 533, - aux_sym__query_body_repeat2 = 534, + aux_sym_query_body_repeat1 = 533, + aux_sym_query_body_repeat2 = 534, aux_sym_order_by_clause_repeat1 = 535, aux_sym__switch_expression_body_repeat1 = 536, aux_sym_interpolated_string_expression_repeat1 = 537, @@ -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,23 +952,23 @@ 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", [sym__pointer_indirection_expression] = "prefix_unary_expression", [sym_query_expression] = "query_expression", [sym_from_clause] = "from_clause", - [sym__query_body] = "_query_body", + [sym_query_body] = "query_body", [sym__query_clause] = "_query_clause", [sym_join_clause] = "join_clause", [sym__join_header] = "_join_header", @@ -1111,8 +1111,8 @@ static const char * const ts_symbol_names[] = { [aux_sym_list_pattern_repeat1] = "list_pattern_repeat1", [aux_sym_positional_pattern_clause_repeat1] = "positional_pattern_clause_repeat1", [aux_sym_parenthesized_variable_designation_repeat1] = "parenthesized_variable_designation_repeat1", - [aux_sym__query_body_repeat1] = "_query_body_repeat1", - [aux_sym__query_body_repeat2] = "_query_body_repeat2", + [aux_sym_query_body_repeat1] = "query_body_repeat1", + [aux_sym_query_body_repeat2] = "query_body_repeat2", [aux_sym_order_by_clause_repeat1] = "order_by_clause_repeat1", [aux_sym__switch_expression_body_repeat1] = "_switch_expression_body_repeat1", [aux_sym_interpolated_string_expression_repeat1] = "interpolated_string_expression_repeat1", @@ -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,23 +1506,23 @@ 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, [sym__pointer_indirection_expression] = sym_prefix_unary_expression, [sym_query_expression] = sym_query_expression, [sym_from_clause] = sym_from_clause, - [sym__query_body] = sym__query_body, + [sym_query_body] = sym_query_body, [sym__query_clause] = sym__query_clause, [sym_join_clause] = sym_join_clause, [sym__join_header] = sym__join_header, @@ -1665,8 +1665,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_list_pattern_repeat1] = aux_sym_list_pattern_repeat1, [aux_sym_positional_pattern_clause_repeat1] = aux_sym_positional_pattern_clause_repeat1, [aux_sym_parenthesized_variable_designation_repeat1] = aux_sym_parenthesized_variable_designation_repeat1, - [aux_sym__query_body_repeat1] = aux_sym__query_body_repeat1, - [aux_sym__query_body_repeat2] = aux_sym__query_body_repeat2, + [aux_sym_query_body_repeat1] = aux_sym_query_body_repeat1, + [aux_sym_query_body_repeat2] = aux_sym_query_body_repeat2, [aux_sym_order_by_clause_repeat1] = aux_sym_order_by_clause_repeat1, [aux_sym__switch_expression_body_repeat1] = aux_sym__switch_expression_body_repeat1, [aux_sym_interpolated_string_expression_repeat1] = aux_sym_interpolated_string_expression_repeat1, @@ -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, }, @@ -3254,8 +3254,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__query_body] = { - .visible = false, + [sym_query_body] = { + .visible = true, .named = true, }, [sym__query_clause] = { @@ -3827,11 +3827,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym__query_body_repeat1] = { + [aux_sym_query_body_repeat1] = { .visible = false, .named = false, }, - [aux_sym__query_body_repeat2] = { + [aux_sym_query_body_repeat2] = { .visible = false, .named = false, }, @@ -3941,27 +3941,29 @@ enum ts_field_identifiers { field_parameters = 37, field_pattern = 38, field_qualifier = 39, - field_query = 40, - field_rank = 41, - field_returns = 42, - field_right = 43, - field_select = 44, - field_statement = 45, - field_string_content = 46, - field_subscript = 47, - field_switch_section = 48, - field_type = 49, - field_type_arg = 50, - field_type_argument_list = 51, - field_type_param = 52, - field_type_parameters = 53, - field_update = 54, - field_using_argument = 55, - field_value = 56, - field_variable = 57, - field_variable_declaration = 58, - field_variable_declarations = 59, - field_when = 60, + field_queries = 40, + field_query = 41, + field_rank = 42, + field_returns = 43, + field_right = 44, + field_select = 45, + field_select_or_group = 46, + field_statement = 47, + field_string_content = 48, + field_subscript = 49, + field_switch_section = 50, + field_type = 51, + field_type_arg = 52, + field_type_argument_list = 53, + field_type_param = 54, + field_type_parameters = 55, + field_update = 56, + field_using_argument = 57, + field_value = 58, + field_variable = 59, + field_variable_declaration = 60, + field_variable_declarations = 61, + field_when = 62, }; static const char * const ts_field_names[] = { @@ -4005,11 +4007,13 @@ static const char * const ts_field_names[] = { [field_parameters] = "parameters", [field_pattern] = "pattern", [field_qualifier] = "qualifier", + [field_queries] = "queries", [field_query] = "query", [field_rank] = "rank", [field_returns] = "returns", [field_right] = "right", [field_select] = "select", + [field_select_or_group] = "select_or_group", [field_statement] = "statement", [field_string_content] = "string_content", [field_subscript] = "subscript", @@ -4048,338 +4052,339 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [20] = {.index = 33, .length = 2}, [21] = {.index = 35, .length = 2}, [22] = {.index = 37, .length = 1}, - [23] = {.index = 38, .length = 4}, - [24] = {.index = 42, .length = 2}, - [25] = {.index = 44, .length = 1}, - [26] = {.index = 45, .length = 1}, - [27] = {.index = 46, .length = 1}, - [28] = {.index = 47, .length = 1}, - [29] = {.index = 48, .length = 1}, - [31] = {.index = 49, .length = 1}, - [32] = {.index = 50, .length = 1}, - [33] = {.index = 51, .length = 1}, - [34] = {.index = 52, .length = 1}, - [35] = {.index = 53, .length = 2}, - [36] = {.index = 55, .length = 1}, - [37] = {.index = 56, .length = 3}, - [38] = {.index = 59, .length = 2}, - [39] = {.index = 61, .length = 1}, - [40] = {.index = 62, .length = 2}, - [41] = {.index = 64, .length = 1}, - [42] = {.index = 65, .length = 1}, - [43] = {.index = 66, .length = 1}, - [44] = {.index = 67, .length = 2}, - [45] = {.index = 69, .length = 1}, - [46] = {.index = 70, .length = 2}, - [47] = {.index = 72, .length = 1}, - [48] = {.index = 73, .length = 2}, - [49] = {.index = 75, .length = 2}, - [50] = {.index = 77, .length = 2}, - [51] = {.index = 79, .length = 5}, - [52] = {.index = 84, .length = 2}, - [53] = {.index = 86, .length = 2}, - [54] = {.index = 88, .length = 2}, - [55] = {.index = 90, .length = 1}, - [56] = {.index = 91, .length = 2}, - [57] = {.index = 93, .length = 2}, - [58] = {.index = 95, .length = 3}, - [59] = {.index = 98, .length = 2}, - [60] = {.index = 100, .length = 3}, - [61] = {.index = 103, .length = 2}, - [62] = {.index = 105, .length = 3}, - [63] = {.index = 108, .length = 3}, - [64] = {.index = 111, .length = 7}, - [65] = {.index = 118, .length = 1}, - [66] = {.index = 118, .length = 1}, - [67] = {.index = 119, .length = 2}, - [68] = {.index = 121, .length = 3}, - [69] = {.index = 124, .length = 2}, - [70] = {.index = 126, .length = 1}, - [71] = {.index = 127, .length = 4}, - [72] = {.index = 131, .length = 2}, - [73] = {.index = 133, .length = 3}, - [74] = {.index = 136, .length = 2}, - [75] = {.index = 138, .length = 2}, - [76] = {.index = 140, .length = 1}, - [77] = {.index = 141, .length = 2}, - [79] = {.index = 143, .length = 2}, - [80] = {.index = 145, .length = 2}, - [81] = {.index = 147, .length = 2}, - [82] = {.index = 149, .length = 1}, - [83] = {.index = 150, .length = 2}, - [84] = {.index = 152, .length = 2}, - [85] = {.index = 154, .length = 2}, - [86] = {.index = 156, .length = 2}, - [87] = {.index = 158, .length = 5}, - [88] = {.index = 163, .length = 8}, - [89] = {.index = 171, .length = 7}, - [90] = {.index = 178, .length = 2}, - [91] = {.index = 180, .length = 3}, - [92] = {.index = 183, .length = 3}, - [93] = {.index = 186, .length = 2}, - [94] = {.index = 188, .length = 3}, - [95] = {.index = 191, .length = 2}, - [96] = {.index = 193, .length = 2}, - [97] = {.index = 195, .length = 1}, - [98] = {.index = 196, .length = 1}, - [99] = {.index = 197, .length = 3}, - [100] = {.index = 200, .length = 3}, - [101] = {.index = 203, .length = 1}, - [102] = {.index = 204, .length = 3}, - [103] = {.index = 207, .length = 1}, - [104] = {.index = 208, .length = 2}, - [105] = {.index = 210, .length = 1}, - [106] = {.index = 211, .length = 5}, - [107] = {.index = 216, .length = 1}, - [108] = {.index = 217, .length = 2}, - [109] = {.index = 219, .length = 1}, - [110] = {.index = 220, .length = 1}, - [111] = {.index = 221, .length = 2}, - [112] = {.index = 223, .length = 4}, - [113] = {.index = 227, .length = 1}, - [114] = {.index = 228, .length = 2}, - [115] = {.index = 230, .length = 6}, - [116] = {.index = 236, .length = 2}, - [117] = {.index = 238, .length = 4}, - [118] = {.index = 242, .length = 1}, - [119] = {.index = 243, .length = 2}, - [120] = {.index = 245, .length = 1}, - [121] = {.index = 246, .length = 2}, - [122] = {.index = 248, .length = 4}, - [123] = {.index = 252, .length = 2}, - [124] = {.index = 254, .length = 4}, - [125] = {.index = 258, .length = 2}, - [126] = {.index = 260, .length = 2}, - [127] = {.index = 262, .length = 2}, - [128] = {.index = 264, .length = 3}, - [129] = {.index = 267, .length = 2}, - [130] = {.index = 269, .length = 1}, - [131] = {.index = 270, .length = 3}, - [132] = {.index = 273, .length = 1}, - [133] = {.index = 274, .length = 4}, - [134] = {.index = 278, .length = 1}, - [135] = {.index = 279, .length = 2}, - [136] = {.index = 281, .length = 2}, - [137] = {.index = 283, .length = 3}, - [138] = {.index = 286, .length = 6}, - [139] = {.index = 292, .length = 6}, - [140] = {.index = 298, .length = 2}, - [141] = {.index = 300, .length = 2}, - [142] = {.index = 302, .length = 2}, - [143] = {.index = 304, .length = 2}, - [144] = {.index = 306, .length = 1}, - [145] = {.index = 307, .length = 2}, - [146] = {.index = 309, .length = 1}, - [147] = {.index = 310, .length = 2}, - [148] = {.index = 312, .length = 2}, - [149] = {.index = 314, .length = 3}, - [150] = {.index = 317, .length = 2}, - [151] = {.index = 319, .length = 3}, - [152] = {.index = 322, .length = 2}, - [153] = {.index = 324, .length = 3}, - [154] = {.index = 327, .length = 2}, - [155] = {.index = 329, .length = 3}, - [156] = {.index = 332, .length = 1}, - [157] = {.index = 333, .length = 2}, - [158] = {.index = 335, .length = 2}, - [159] = {.index = 337, .length = 3}, - [160] = {.index = 340, .length = 1}, - [161] = {.index = 341, .length = 2}, - [162] = {.index = 343, .length = 7}, - [163] = {.index = 350, .length = 2}, - [164] = {.index = 352, .length = 2}, - [165] = {.index = 354, .length = 2}, - [166] = {.index = 356, .length = 2}, - [167] = {.index = 358, .length = 2}, - [168] = {.index = 360, .length = 3}, - [169] = {.index = 363, .length = 2}, - [170] = {.index = 365, .length = 3}, - [171] = {.index = 368, .length = 2}, - [172] = {.index = 370, .length = 5}, - [173] = {.index = 375, .length = 2}, - [174] = {.index = 377, .length = 1}, - [175] = {.index = 378, .length = 2}, - [176] = {.index = 380, .length = 5}, - [177] = {.index = 385, .length = 5}, - [178] = {.index = 390, .length = 2}, - [179] = {.index = 392, .length = 2}, - [180] = {.index = 394, .length = 2}, - [181] = {.index = 396, .length = 2}, - [182] = {.index = 398, .length = 2}, - [183] = {.index = 400, .length = 1}, - [184] = {.index = 401, .length = 1}, - [185] = {.index = 402, .length = 1}, - [186] = {.index = 403, .length = 1}, - [187] = {.index = 404, .length = 1}, - [188] = {.index = 405, .length = 1}, - [189] = {.index = 406, .length = 2}, - [190] = {.index = 408, .length = 2}, - [191] = {.index = 410, .length = 2}, - [192] = {.index = 412, .length = 2}, - [193] = {.index = 414, .length = 3}, - [194] = {.index = 417, .length = 3}, - [195] = {.index = 420, .length = 3}, - [196] = {.index = 423, .length = 3}, - [197] = {.index = 426, .length = 4}, - [198] = {.index = 430, .length = 3}, - [199] = {.index = 433, .length = 1}, - [200] = {.index = 434, .length = 4}, - [201] = {.index = 438, .length = 3}, - [202] = {.index = 441, .length = 4}, - [203] = {.index = 445, .length = 1}, - [204] = {.index = 446, .length = 4}, - [205] = {.index = 450, .length = 2}, - [206] = {.index = 452, .length = 2}, - [207] = {.index = 454, .length = 2}, - [208] = {.index = 456, .length = 2}, - [209] = {.index = 458, .length = 3}, - [210] = {.index = 461, .length = 2}, - [211] = {.index = 463, .length = 3}, - [212] = {.index = 466, .length = 4}, - [213] = {.index = 470, .length = 3}, - [214] = {.index = 473, .length = 2}, - [215] = {.index = 475, .length = 3}, - [216] = {.index = 478, .length = 2}, - [217] = {.index = 480, .length = 6}, - [218] = {.index = 486, .length = 2}, - [219] = {.index = 488, .length = 1}, - [220] = {.index = 489, .length = 2}, - [221] = {.index = 491, .length = 3}, - [222] = {.index = 494, .length = 2}, - [223] = {.index = 496, .length = 2}, - [224] = {.index = 498, .length = 2}, - [225] = {.index = 500, .length = 2}, - [226] = {.index = 502, .length = 2}, - [227] = {.index = 504, .length = 3}, - [228] = {.index = 507, .length = 2}, - [229] = {.index = 509, .length = 2}, - [230] = {.index = 511, .length = 2}, - [231] = {.index = 513, .length = 2}, - [232] = {.index = 515, .length = 2}, - [233] = {.index = 517, .length = 3}, - [234] = {.index = 520, .length = 3}, - [235] = {.index = 523, .length = 3}, - [236] = {.index = 526, .length = 2}, - [237] = {.index = 528, .length = 3}, - [238] = {.index = 531, .length = 3}, - [239] = {.index = 534, .length = 4}, - [240] = {.index = 538, .length = 1}, - [241] = {.index = 539, .length = 4}, - [242] = {.index = 543, .length = 3}, - [243] = {.index = 546, .length = 3}, - [244] = {.index = 549, .length = 4}, - [245] = {.index = 553, .length = 3}, - [246] = {.index = 556, .length = 2}, - [247] = {.index = 558, .length = 1}, - [248] = {.index = 559, .length = 5}, - [249] = {.index = 564, .length = 4}, - [250] = {.index = 568, .length = 4}, - [251] = {.index = 572, .length = 4}, - [252] = {.index = 576, .length = 4}, - [253] = {.index = 580, .length = 4}, - [254] = {.index = 584, .length = 5}, - [255] = {.index = 589, .length = 4}, - [256] = {.index = 593, .length = 2}, - [257] = {.index = 595, .length = 5}, - [258] = {.index = 600, .length = 3}, - [259] = {.index = 603, .length = 4}, - [260] = {.index = 607, .length = 4}, - [261] = {.index = 611, .length = 4}, - [262] = {.index = 615, .length = 5}, - [263] = {.index = 620, .length = 4}, - [264] = {.index = 624, .length = 3}, - [265] = {.index = 627, .length = 2}, - [266] = {.index = 629, .length = 3}, - [267] = {.index = 632, .length = 4}, - [268] = {.index = 636, .length = 4}, - [269] = {.index = 640, .length = 4}, - [270] = {.index = 644, .length = 3}, - [271] = {.index = 647, .length = 4}, - [272] = {.index = 651, .length = 3}, - [273] = {.index = 654, .length = 4}, - [274] = {.index = 658, .length = 4}, - [275] = {.index = 662, .length = 3}, - [276] = {.index = 665, .length = 3}, - [277] = {.index = 668, .length = 4}, - [278] = {.index = 672, .length = 5}, - [279] = {.index = 677, .length = 6}, - [280] = {.index = 683, .length = 8}, - [281] = {.index = 691, .length = 3}, - [282] = {.index = 694, .length = 5}, - [283] = {.index = 699, .length = 4}, - [284] = {.index = 703, .length = 3}, - [285] = {.index = 706, .length = 3}, - [286] = {.index = 709, .length = 5}, - [287] = {.index = 714, .length = 4}, - [288] = {.index = 718, .length = 4}, - [289] = {.index = 722, .length = 3}, - [290] = {.index = 725, .length = 4}, - [291] = {.index = 729, .length = 3}, - [292] = {.index = 732, .length = 4}, - [293] = {.index = 736, .length = 4}, - [294] = {.index = 740, .length = 4}, - [295] = {.index = 744, .length = 5}, - [296] = {.index = 749, .length = 4}, - [297] = {.index = 753, .length = 6}, - [298] = {.index = 759, .length = 5}, - [299] = {.index = 764, .length = 4}, - [300] = {.index = 768, .length = 5}, - [301] = {.index = 773, .length = 5}, - [302] = {.index = 778, .length = 5}, - [303] = {.index = 783, .length = 6}, - [304] = {.index = 789, .length = 5}, - [305] = {.index = 794, .length = 3}, - [306] = {.index = 797, .length = 4}, - [307] = {.index = 801, .length = 4}, - [308] = {.index = 805, .length = 4}, - [309] = {.index = 809, .length = 5}, - [310] = {.index = 814, .length = 4}, - [311] = {.index = 818, .length = 6}, - [312] = {.index = 824, .length = 5}, - [313] = {.index = 829, .length = 5}, - [314] = {.index = 834, .length = 5}, - [315] = {.index = 839, .length = 6}, - [316] = {.index = 845, .length = 5}, - [317] = {.index = 850, .length = 4}, - [318] = {.index = 854, .length = 5}, - [319] = {.index = 859, .length = 4}, - [320] = {.index = 863, .length = 4}, - [321] = {.index = 867, .length = 4}, - [322] = {.index = 871, .length = 4}, - [323] = {.index = 875, .length = 6}, - [324] = {.index = 881, .length = 5}, - [325] = {.index = 886, .length = 6}, - [326] = {.index = 892, .length = 5}, - [327] = {.index = 897, .length = 4}, - [328] = {.index = 901, .length = 5}, - [329] = {.index = 906, .length = 3}, - [330] = {.index = 909, .length = 4}, - [331] = {.index = 913, .length = 5}, - [332] = {.index = 918, .length = 5}, - [333] = {.index = 923, .length = 6}, - [334] = {.index = 929, .length = 5}, - [335] = {.index = 934, .length = 7}, - [336] = {.index = 941, .length = 6}, - [337] = {.index = 947, .length = 4}, - [338] = {.index = 951, .length = 6}, - [339] = {.index = 957, .length = 5}, - [340] = {.index = 962, .length = 6}, - [341] = {.index = 968, .length = 5}, - [342] = {.index = 973, .length = 7}, - [343] = {.index = 980, .length = 4}, - [344] = {.index = 984, .length = 6}, - [345] = {.index = 990, .length = 5}, - [346] = {.index = 995, .length = 4}, - [347] = {.index = 999, .length = 5}, - [348] = {.index = 1004, .length = 7}, - [349] = {.index = 1011, .length = 6}, - [350] = {.index = 1017, .length = 7}, - [351] = {.index = 1024, .length = 6}, - [352] = {.index = 1030, .length = 6}, - [353] = {.index = 1036, .length = 5}, - [354] = {.index = 1041, .length = 4}, - [355] = {.index = 1045, .length = 7}, - [356] = {.index = 1052, .length = 6}, + [23] = {.index = 38, .length = 2}, + [24] = {.index = 40, .length = 3}, + [25] = {.index = 43, .length = 1}, + [26] = {.index = 44, .length = 1}, + [27] = {.index = 45, .length = 1}, + [28] = {.index = 46, .length = 1}, + [29] = {.index = 47, .length = 1}, + [31] = {.index = 48, .length = 1}, + [32] = {.index = 49, .length = 1}, + [33] = {.index = 50, .length = 1}, + [34] = {.index = 51, .length = 1}, + [35] = {.index = 52, .length = 2}, + [36] = {.index = 54, .length = 1}, + [37] = {.index = 55, .length = 3}, + [38] = {.index = 58, .length = 2}, + [39] = {.index = 60, .length = 1}, + [40] = {.index = 61, .length = 2}, + [41] = {.index = 63, .length = 1}, + [42] = {.index = 64, .length = 1}, + [43] = {.index = 65, .length = 1}, + [44] = {.index = 66, .length = 2}, + [45] = {.index = 68, .length = 1}, + [46] = {.index = 69, .length = 2}, + [47] = {.index = 71, .length = 1}, + [48] = {.index = 72, .length = 2}, + [49] = {.index = 74, .length = 2}, + [50] = {.index = 76, .length = 2}, + [51] = {.index = 78, .length = 5}, + [52] = {.index = 83, .length = 2}, + [53] = {.index = 85, .length = 2}, + [54] = {.index = 87, .length = 2}, + [55] = {.index = 89, .length = 1}, + [56] = {.index = 90, .length = 2}, + [57] = {.index = 92, .length = 2}, + [58] = {.index = 94, .length = 3}, + [59] = {.index = 97, .length = 2}, + [60] = {.index = 99, .length = 3}, + [61] = {.index = 102, .length = 2}, + [62] = {.index = 104, .length = 3}, + [63] = {.index = 107, .length = 3}, + [64] = {.index = 110, .length = 7}, + [65] = {.index = 117, .length = 1}, + [66] = {.index = 117, .length = 1}, + [67] = {.index = 118, .length = 2}, + [68] = {.index = 120, .length = 3}, + [69] = {.index = 123, .length = 2}, + [70] = {.index = 125, .length = 2}, + [71] = {.index = 127, .length = 7}, + [72] = {.index = 134, .length = 4}, + [73] = {.index = 138, .length = 3}, + [74] = {.index = 141, .length = 2}, + [75] = {.index = 143, .length = 2}, + [76] = {.index = 145, .length = 1}, + [77] = {.index = 146, .length = 2}, + [79] = {.index = 148, .length = 2}, + [80] = {.index = 150, .length = 2}, + [81] = {.index = 152, .length = 2}, + [82] = {.index = 154, .length = 1}, + [83] = {.index = 155, .length = 2}, + [84] = {.index = 157, .length = 2}, + [85] = {.index = 159, .length = 2}, + [86] = {.index = 161, .length = 2}, + [87] = {.index = 163, .length = 5}, + [88] = {.index = 168, .length = 8}, + [89] = {.index = 176, .length = 7}, + [90] = {.index = 183, .length = 2}, + [91] = {.index = 185, .length = 3}, + [92] = {.index = 188, .length = 3}, + [93] = {.index = 191, .length = 2}, + [94] = {.index = 193, .length = 3}, + [95] = {.index = 196, .length = 2}, + [96] = {.index = 198, .length = 2}, + [97] = {.index = 200, .length = 1}, + [98] = {.index = 201, .length = 1}, + [99] = {.index = 202, .length = 3}, + [100] = {.index = 205, .length = 3}, + [101] = {.index = 208, .length = 1}, + [102] = {.index = 209, .length = 3}, + [103] = {.index = 212, .length = 1}, + [104] = {.index = 213, .length = 2}, + [105] = {.index = 215, .length = 1}, + [106] = {.index = 216, .length = 5}, + [107] = {.index = 221, .length = 1}, + [108] = {.index = 222, .length = 2}, + [109] = {.index = 224, .length = 1}, + [110] = {.index = 225, .length = 1}, + [111] = {.index = 226, .length = 2}, + [112] = {.index = 228, .length = 4}, + [113] = {.index = 232, .length = 1}, + [114] = {.index = 233, .length = 2}, + [115] = {.index = 235, .length = 6}, + [116] = {.index = 241, .length = 4}, + [117] = {.index = 245, .length = 8}, + [118] = {.index = 253, .length = 8}, + [119] = {.index = 261, .length = 1}, + [120] = {.index = 262, .length = 2}, + [121] = {.index = 264, .length = 1}, + [122] = {.index = 265, .length = 2}, + [123] = {.index = 267, .length = 4}, + [124] = {.index = 271, .length = 2}, + [125] = {.index = 273, .length = 4}, + [126] = {.index = 277, .length = 2}, + [127] = {.index = 279, .length = 2}, + [128] = {.index = 281, .length = 2}, + [129] = {.index = 283, .length = 3}, + [130] = {.index = 286, .length = 2}, + [131] = {.index = 288, .length = 1}, + [132] = {.index = 289, .length = 3}, + [133] = {.index = 292, .length = 1}, + [134] = {.index = 293, .length = 4}, + [135] = {.index = 297, .length = 1}, + [136] = {.index = 298, .length = 2}, + [137] = {.index = 300, .length = 2}, + [138] = {.index = 302, .length = 3}, + [139] = {.index = 305, .length = 6}, + [140] = {.index = 311, .length = 6}, + [141] = {.index = 317, .length = 2}, + [142] = {.index = 319, .length = 2}, + [143] = {.index = 321, .length = 2}, + [144] = {.index = 323, .length = 2}, + [145] = {.index = 325, .length = 1}, + [146] = {.index = 326, .length = 2}, + [147] = {.index = 328, .length = 1}, + [148] = {.index = 329, .length = 2}, + [149] = {.index = 331, .length = 2}, + [150] = {.index = 333, .length = 3}, + [151] = {.index = 336, .length = 2}, + [152] = {.index = 338, .length = 3}, + [153] = {.index = 341, .length = 2}, + [154] = {.index = 343, .length = 3}, + [155] = {.index = 346, .length = 2}, + [156] = {.index = 348, .length = 3}, + [157] = {.index = 351, .length = 1}, + [158] = {.index = 352, .length = 2}, + [159] = {.index = 354, .length = 2}, + [160] = {.index = 356, .length = 3}, + [161] = {.index = 359, .length = 1}, + [162] = {.index = 360, .length = 2}, + [163] = {.index = 362, .length = 7}, + [164] = {.index = 369, .length = 4}, + [165] = {.index = 373, .length = 2}, + [166] = {.index = 375, .length = 3}, + [167] = {.index = 378, .length = 2}, + [168] = {.index = 380, .length = 2}, + [169] = {.index = 382, .length = 3}, + [170] = {.index = 385, .length = 2}, + [171] = {.index = 387, .length = 3}, + [172] = {.index = 390, .length = 2}, + [173] = {.index = 392, .length = 5}, + [174] = {.index = 397, .length = 2}, + [175] = {.index = 399, .length = 1}, + [176] = {.index = 400, .length = 2}, + [177] = {.index = 402, .length = 5}, + [178] = {.index = 407, .length = 5}, + [179] = {.index = 412, .length = 2}, + [180] = {.index = 414, .length = 2}, + [181] = {.index = 416, .length = 2}, + [182] = {.index = 418, .length = 2}, + [183] = {.index = 420, .length = 2}, + [184] = {.index = 422, .length = 1}, + [185] = {.index = 423, .length = 1}, + [186] = {.index = 424, .length = 1}, + [187] = {.index = 425, .length = 1}, + [188] = {.index = 426, .length = 1}, + [189] = {.index = 427, .length = 1}, + [190] = {.index = 428, .length = 2}, + [191] = {.index = 430, .length = 2}, + [192] = {.index = 432, .length = 2}, + [193] = {.index = 434, .length = 2}, + [194] = {.index = 436, .length = 3}, + [195] = {.index = 439, .length = 3}, + [196] = {.index = 442, .length = 3}, + [197] = {.index = 445, .length = 3}, + [198] = {.index = 448, .length = 4}, + [199] = {.index = 452, .length = 3}, + [200] = {.index = 455, .length = 1}, + [201] = {.index = 456, .length = 4}, + [202] = {.index = 460, .length = 3}, + [203] = {.index = 463, .length = 4}, + [204] = {.index = 467, .length = 1}, + [205] = {.index = 468, .length = 4}, + [206] = {.index = 472, .length = 2}, + [207] = {.index = 474, .length = 2}, + [208] = {.index = 476, .length = 2}, + [209] = {.index = 478, .length = 2}, + [210] = {.index = 480, .length = 3}, + [211] = {.index = 483, .length = 4}, + [212] = {.index = 487, .length = 3}, + [213] = {.index = 490, .length = 4}, + [214] = {.index = 494, .length = 3}, + [215] = {.index = 497, .length = 2}, + [216] = {.index = 499, .length = 3}, + [217] = {.index = 502, .length = 2}, + [218] = {.index = 504, .length = 6}, + [219] = {.index = 510, .length = 2}, + [220] = {.index = 512, .length = 1}, + [221] = {.index = 513, .length = 2}, + [222] = {.index = 515, .length = 3}, + [223] = {.index = 518, .length = 2}, + [224] = {.index = 520, .length = 2}, + [225] = {.index = 522, .length = 2}, + [226] = {.index = 524, .length = 2}, + [227] = {.index = 526, .length = 2}, + [228] = {.index = 528, .length = 3}, + [229] = {.index = 531, .length = 2}, + [230] = {.index = 533, .length = 2}, + [231] = {.index = 535, .length = 2}, + [232] = {.index = 537, .length = 2}, + [233] = {.index = 539, .length = 2}, + [234] = {.index = 541, .length = 3}, + [235] = {.index = 544, .length = 3}, + [236] = {.index = 547, .length = 3}, + [237] = {.index = 550, .length = 2}, + [238] = {.index = 552, .length = 3}, + [239] = {.index = 555, .length = 3}, + [240] = {.index = 558, .length = 4}, + [241] = {.index = 562, .length = 1}, + [242] = {.index = 563, .length = 4}, + [243] = {.index = 567, .length = 3}, + [244] = {.index = 570, .length = 3}, + [245] = {.index = 573, .length = 4}, + [246] = {.index = 577, .length = 3}, + [247] = {.index = 580, .length = 2}, + [248] = {.index = 582, .length = 1}, + [249] = {.index = 583, .length = 5}, + [250] = {.index = 588, .length = 4}, + [251] = {.index = 592, .length = 4}, + [252] = {.index = 596, .length = 4}, + [253] = {.index = 600, .length = 4}, + [254] = {.index = 604, .length = 4}, + [255] = {.index = 608, .length = 5}, + [256] = {.index = 613, .length = 4}, + [257] = {.index = 617, .length = 2}, + [258] = {.index = 619, .length = 5}, + [259] = {.index = 624, .length = 3}, + [260] = {.index = 627, .length = 4}, + [261] = {.index = 631, .length = 4}, + [262] = {.index = 635, .length = 4}, + [263] = {.index = 639, .length = 5}, + [264] = {.index = 644, .length = 4}, + [265] = {.index = 648, .length = 3}, + [266] = {.index = 651, .length = 2}, + [267] = {.index = 653, .length = 3}, + [268] = {.index = 656, .length = 4}, + [269] = {.index = 660, .length = 4}, + [270] = {.index = 664, .length = 4}, + [271] = {.index = 668, .length = 3}, + [272] = {.index = 671, .length = 4}, + [273] = {.index = 675, .length = 3}, + [274] = {.index = 678, .length = 4}, + [275] = {.index = 682, .length = 4}, + [276] = {.index = 686, .length = 3}, + [277] = {.index = 689, .length = 3}, + [278] = {.index = 692, .length = 4}, + [279] = {.index = 696, .length = 5}, + [280] = {.index = 701, .length = 6}, + [281] = {.index = 707, .length = 8}, + [282] = {.index = 715, .length = 3}, + [283] = {.index = 718, .length = 5}, + [284] = {.index = 723, .length = 4}, + [285] = {.index = 727, .length = 3}, + [286] = {.index = 730, .length = 3}, + [287] = {.index = 733, .length = 5}, + [288] = {.index = 738, .length = 4}, + [289] = {.index = 742, .length = 4}, + [290] = {.index = 746, .length = 3}, + [291] = {.index = 749, .length = 4}, + [292] = {.index = 753, .length = 3}, + [293] = {.index = 756, .length = 4}, + [294] = {.index = 760, .length = 4}, + [295] = {.index = 764, .length = 4}, + [296] = {.index = 768, .length = 5}, + [297] = {.index = 773, .length = 4}, + [298] = {.index = 777, .length = 6}, + [299] = {.index = 783, .length = 5}, + [300] = {.index = 788, .length = 4}, + [301] = {.index = 792, .length = 5}, + [302] = {.index = 797, .length = 5}, + [303] = {.index = 802, .length = 5}, + [304] = {.index = 807, .length = 6}, + [305] = {.index = 813, .length = 5}, + [306] = {.index = 818, .length = 3}, + [307] = {.index = 821, .length = 4}, + [308] = {.index = 825, .length = 4}, + [309] = {.index = 829, .length = 4}, + [310] = {.index = 833, .length = 5}, + [311] = {.index = 838, .length = 4}, + [312] = {.index = 842, .length = 6}, + [313] = {.index = 848, .length = 5}, + [314] = {.index = 853, .length = 5}, + [315] = {.index = 858, .length = 5}, + [316] = {.index = 863, .length = 6}, + [317] = {.index = 869, .length = 5}, + [318] = {.index = 874, .length = 4}, + [319] = {.index = 878, .length = 5}, + [320] = {.index = 883, .length = 4}, + [321] = {.index = 887, .length = 4}, + [322] = {.index = 891, .length = 4}, + [323] = {.index = 895, .length = 4}, + [324] = {.index = 899, .length = 6}, + [325] = {.index = 905, .length = 5}, + [326] = {.index = 910, .length = 6}, + [327] = {.index = 916, .length = 5}, + [328] = {.index = 921, .length = 4}, + [329] = {.index = 925, .length = 5}, + [330] = {.index = 930, .length = 3}, + [331] = {.index = 933, .length = 4}, + [332] = {.index = 937, .length = 5}, + [333] = {.index = 942, .length = 5}, + [334] = {.index = 947, .length = 6}, + [335] = {.index = 953, .length = 5}, + [336] = {.index = 958, .length = 7}, + [337] = {.index = 965, .length = 6}, + [338] = {.index = 971, .length = 4}, + [339] = {.index = 975, .length = 6}, + [340] = {.index = 981, .length = 5}, + [341] = {.index = 986, .length = 6}, + [342] = {.index = 992, .length = 5}, + [343] = {.index = 997, .length = 7}, + [344] = {.index = 1004, .length = 4}, + [345] = {.index = 1008, .length = 6}, + [346] = {.index = 1014, .length = 5}, + [347] = {.index = 1019, .length = 4}, + [348] = {.index = 1023, .length = 5}, + [349] = {.index = 1028, .length = 7}, + [350] = {.index = 1035, .length = 6}, + [351] = {.index = 1041, .length = 7}, + [352] = {.index = 1048, .length = 6}, + [353] = {.index = 1054, .length = 6}, + [354] = {.index = 1060, .length = 5}, + [355] = {.index = 1065, .length = 4}, + [356] = {.index = 1069, .length = 7}, + [357] = {.index = 1076, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4442,118 +4447,117 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_expression_statement_field, 0}, [38] = {field_from, 0}, - {field_group, 1, .inherited = true}, {field_query, 1}, - {field_select, 1, .inherited = true}, - [42] = + [40] = {field_group, 0, .inherited = true}, {field_select, 0, .inherited = true}, - [44] = + {field_select_or_group, 0}, + [43] = {field_group, 0}, - [45] = + [44] = {field_select, 0}, - [46] = + [45] = {field_type_argument_list, 1}, - [47] = + [46] = {field_parameters, 1}, - [48] = + [47] = {field_content, 1}, - [49] = + [48] = {field_variable_declaration, 1}, - [50] = + [49] = {field_expression_field, 1}, - [51] = + [50] = {field_attribute, 1}, - [52] = + [51] = {field_argumment, 1}, - [53] = + [52] = {field_name, 1}, {field_type, 0}, - [55] = + [54] = {field_parameter, 1}, - [56] = + [55] = {field_attributes, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_type, 1, .inherited = true}, - [59] = + [58] = {field_attributes, 0}, {field_name, 1}, - [61] = + [60] = {field_expression, 1}, - [62] = + [61] = {field_body, 2}, {field_name, 1}, - [64] = + [63] = {field_name, 2}, - [65] = + [64] = {field_type, 2}, - [66] = + [65] = {field_statement, 1}, - [67] = + [66] = {field_name, 1}, {field_type_parameters, 2}, - [69] = + [68] = {field_param_list, 0}, - [70] = + [69] = {field_name, 1}, {field_param_list, 2, .inherited = true}, - [72] = + [71] = {field_expression, 0}, - [73] = + [72] = {field_arguments, 2}, {field_type, 1}, - [75] = + [74] = {field_initializer, 2}, {field_type, 1}, - [77] = + [76] = {field_expression, 0}, {field_name, 2}, - [79] = + [78] = {field_body, 2}, {field_condition, 1, .inherited = true}, {field_expression, 1, .inherited = true}, {field_initializer, 1, .inherited = true}, {field_update, 1, .inherited = true}, - [84] = + [83] = {field_body, 2}, {field_value, 1}, - [86] = + [85] = {field_body, 1}, {field_finally, 2}, - [88] = + [87] = {field_body, 1}, {field_catch, 2}, - [90] = + [89] = {field_string_content, 1}, - [91] = + [90] = {field_argument, 1}, {field_operator, 0}, - [93] = + [92] = {field_body, 1}, {field_name, 0, .inherited = true}, - [95] = + [94] = {field_body, 1}, {field_name, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [98] = + [97] = {field_name, 0, .inherited = true}, {field_param_list, 0, .inherited = true}, - [100] = + [99] = {field_body, 1}, {field_name, 0, .inherited = true}, {field_param_list, 0, .inherited = true}, - [103] = + [102] = {field_name, 2}, {field_qualifier, 0}, - [105] = + [104] = {field_type, 0}, {field_variable, 1}, {field_variable, 2, .inherited = true}, - [108] = + [107] = {field_name, 1}, {field_parameters, 2}, {field_type, 0}, - [111] = + [110] = {field_atrributes, 0, .inherited = true}, {field_body, 2, .inherited = true}, {field_modifiers, 0, .inherited = true}, @@ -4561,73 +4565,79 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_parameters, 0, .inherited = true}, {field_type, 0, .inherited = true}, {field_type_parameters, 0, .inherited = true}, - [118] = + [117] = {field_condition, 0}, - [119] = + [118] = {field_body, 2}, {field_expression, 0}, - [121] = + [120] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [124] = + [123] = {field_expression, 0}, {field_pattern, 2}, - [126] = + [125] = + {field_expression, 1, .inherited = true}, {field_ordering, 1}, [127] = {field_group, 0, .inherited = true}, {field_group, 1, .inherited = true}, + {field_queries, 1, .inherited = true}, {field_select, 0, .inherited = true}, {field_select, 1, .inherited = true}, - [131] = + {field_select_or_group, 0}, + {field_select_or_group, 1, .inherited = true}, + [134] = {field_group, 1, .inherited = true}, + {field_queries, 0}, {field_select, 1, .inherited = true}, - [133] = + {field_select_or_group, 1}, + [138] = {field_body, 2}, {field_parameters, 0, .inherited = true}, {field_type, 0, .inherited = true}, - [136] = + [141] = {field_alias, 0}, {field_name, 2}, - [138] = + [143] = {field_parameters, 2}, {field_type, 1}, - [140] = + [145] = {field_parameters, 2}, - [141] = + [146] = {field_modifiers, 0}, {field_variable_declaration, 1}, - [143] = + [148] = {field_modifiers, 1}, {field_variable_declaration, 2}, - [145] = + [150] = {field_attribute, 1}, {field_attribute, 2, .inherited = true}, - [147] = + [152] = {field_attribute, 0, .inherited = true}, {field_attribute, 1, .inherited = true}, - [149] = + [154] = {field_attribute, 2}, - [150] = + [155] = {field_argumment, 1}, {field_argumment, 2, .inherited = true}, - [152] = + [157] = {field_argumment, 0, .inherited = true}, {field_argumment, 1, .inherited = true}, - [154] = + [159] = {field_expression_field, 2}, {field_name, 0}, - [156] = + [161] = {field_name, 2}, {field_type, 1}, - [158] = + [163] = {field_attributes, 2, .inherited = true}, {field_name, 2, .inherited = true}, {field_parameter, 1}, {field_parameter, 2, .inherited = true}, {field_type, 2, .inherited = true}, - [163] = + [168] = {field_attributes, 0, .inherited = true}, {field_attributes, 1, .inherited = true}, {field_name, 0, .inherited = true}, @@ -4636,7 +4646,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_parameter, 1, .inherited = true}, {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [171] = + [176] = {field_attributes, 1, .inherited = true}, {field_attributes, 2, .inherited = true}, {field_name, 1, .inherited = true}, @@ -4644,244 +4654,259 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_parameter, 2, .inherited = true}, {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [178] = + [183] = {field_type, 1}, {field_value, 3}, - [180] = + [185] = {field_attributes, 0}, {field_name, 2}, {field_type, 1}, - [183] = + [188] = {field_body, 3}, {field_list, 2}, {field_name, 1}, - [186] = + [191] = {field_body, 3}, {field_name, 1}, - [188] = + [193] = {field_name, 2}, {field_parameters, 3}, {field_type, 1}, - [191] = + [196] = {field_name, 2}, {field_param_list, 3, .inherited = true}, - [193] = + [198] = {field_param_list, 0, .inherited = true}, {field_param_list, 1, .inherited = true}, - [195] = + [200] = {field_initializer, 3}, - [196] = + [201] = {field_argument, 1}, - [197] = + [202] = {field_expression, 2, .inherited = true}, {field_identifier, 2, .inherited = true}, {field_member_declarator, 2}, - [200] = + [205] = {field_arguments, 2}, {field_initializer, 3}, {field_type, 1}, - [203] = + [208] = {field_switch_section, 0}, - [204] = + [209] = {field_body, 1}, {field_catch, 2}, {field_finally, 3}, - [207] = + [212] = {field_variable_declaration, 2}, - [208] = + [213] = {field_expression, 3}, {field_name, 1}, - [210] = + [215] = {field_condition, 1}, - [211] = + [216] = {field_attributes, 0, .inherited = true}, {field_body, 1, .inherited = true}, {field_modifiers, 0, .inherited = true}, {field_name, 0, .inherited = true}, {field_parameters, 0, .inherited = true}, - [216] = + [221] = {field_variable_declarations, 0}, - [217] = + [222] = {field_name, 0}, {field_parameters, 1}, - [219] = + [224] = {field_declaration, 1}, - [220] = + [225] = {field_variable, 1}, - [221] = + [226] = {field_variable, 0, .inherited = true}, {field_variable, 1, .inherited = true}, - [223] = + [228] = {field_name, 1}, {field_parameters, 3}, {field_type, 0}, {field_type_parameters, 2}, - [227] = + [232] = {field_name, 1, .inherited = true}, - [228] = + [233] = {field_name, 1, .inherited = true}, {field_type, 0}, - [230] = + [235] = {field_body, 2}, {field_expression, 1, .inherited = true}, {field_expression, 2, .inherited = true}, {field_header, 1}, {field_identifier, 1, .inherited = true}, {field_type, 1, .inherited = true}, - [236] = + [241] = + {field_expression, 1, .inherited = true}, + {field_expression, 2, .inherited = true}, {field_ordering, 1}, {field_ordering, 2, .inherited = true}, - [238] = + [245] = + {field_group, 0, .inherited = true}, + {field_group, 1, .inherited = true}, + {field_queries, 0, .inherited = true}, + {field_queries, 1, .inherited = true}, + {field_select, 0, .inherited = true}, + {field_select, 1, .inherited = true}, + {field_select_or_group, 0, .inherited = true}, + {field_select_or_group, 1, .inherited = true}, + [253] = {field_group, 1, .inherited = true}, {field_group, 2, .inherited = true}, + {field_queries, 0}, + {field_queries, 2, .inherited = true}, {field_select, 1, .inherited = true}, {field_select, 2, .inherited = true}, - [242] = + {field_select_or_group, 1}, + {field_select_or_group, 2, .inherited = true}, + [261] = {field_type_arg, 1}, - [243] = + [262] = {field_body, 3}, {field_name, 2}, - [245] = + [264] = {field_name, 3}, - [246] = + [265] = {field_name, 2}, {field_type_parameters, 3}, - [248] = + [267] = {field_atrributes, 0}, {field_name, 2}, {field_parameters, 3}, {field_type, 1}, - [252] = + [271] = {field_parameters, 3}, {field_type, 2}, - [254] = + [273] = {field_modifiers, 0}, {field_name, 2}, {field_parameters, 3}, {field_type, 1}, - [258] = + [277] = {field_body, 4}, {field_using_argument, 2}, - [260] = + [279] = {field_attribute, 2}, {field_attribute, 3, .inherited = true}, - [262] = + [281] = {field_expression_field, 3}, {field_name, 0}, - [264] = + [283] = {field_attributes, 0}, {field_name, 3}, {field_type, 2}, - [267] = + [286] = {field_type, 1}, {field_type, 2, .inherited = true}, - [269] = + [288] = {field_type_param, 1}, - [270] = + [289] = {field_body, 4}, {field_list, 2}, {field_name, 1}, - [273] = + [292] = {field_returns, 3}, - [274] = + [293] = {field_name, 2}, {field_parameters, 4}, {field_type, 1}, {field_type_parameters, 3}, - [278] = + [297] = {field_initializer, 4}, - [279] = + [298] = {field_argument, 1}, {field_argument, 2, .inherited = true}, - [281] = + [300] = {field_argument, 0, .inherited = true}, {field_argument, 1, .inherited = true}, - [283] = + [302] = {field_expression, 1, .inherited = true}, {field_identifier, 1, .inherited = true}, {field_member_declarator, 1}, - [286] = + [305] = {field_expression, 2, .inherited = true}, {field_expression, 3, .inherited = true}, {field_identifier, 2, .inherited = true}, {field_identifier, 3, .inherited = true}, {field_member_declarator, 2}, {field_member_declarator, 3, .inherited = true}, - [292] = + [311] = {field_expression, 0, .inherited = true}, {field_expression, 1, .inherited = true}, {field_identifier, 0, .inherited = true}, {field_identifier, 1, .inherited = true}, {field_member_declarator, 0, .inherited = true}, {field_member_declarator, 1, .inherited = true}, - [298] = + [317] = {field_expression, 2}, {field_identifier, 0}, - [300] = + [319] = {field_body, 4}, {field_condition, 2}, - [302] = + [321] = {field_expression, 0, .inherited = true}, {field_expression, 1, .inherited = true}, - [304] = + [323] = {field_body, 4}, {field_value, 2}, - [306] = + [325] = {field_switch_section, 1, .inherited = true}, - [307] = + [326] = {field_switch_section, 0, .inherited = true}, {field_switch_section, 1, .inherited = true}, - [309] = + [328] = {field_body, 2}, - [310] = + [329] = {field_modifiers, 2}, {field_variable_declaration, 3}, - [312] = + [331] = {field_condition, 2}, {field_consequence, 4}, - [314] = + [333] = {field_expression, 4}, {field_name, 2}, {field_type, 1}, - [317] = + [336] = {field_alternative, 3}, {field_condition, 1}, - [319] = + [338] = {field_accessors, 2}, {field_name, 1}, {field_type, 0}, - [322] = + [341] = {field_attributes, 0}, {field_variable_declarations, 1}, - [324] = + [343] = {field_attributes, 0}, {field_name, 1}, {field_parameters, 2}, - [327] = + [346] = {field_modifiers, 0}, {field_variable_declarations, 1}, - [329] = + [348] = {field_modifiers, 0}, {field_name, 1}, {field_parameters, 2}, - [332] = + [351] = {field_name, 2, .inherited = true}, - [333] = + [352] = {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, - [335] = + [354] = {field_name, 1}, {field_name, 2, .inherited = true}, - [337] = + [356] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [340] = + [359] = {field_pattern, 1}, - [341] = + [360] = {field_name, 2, .inherited = true}, {field_type, 0}, - [343] = + [362] = {field_body, 2}, {field_expression, 1, .inherited = true}, {field_expression, 2, .inherited = true}, @@ -4889,457 +4914,462 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_identifier, 1, .inherited = true}, {field_into, 3}, {field_type, 1, .inherited = true}, - [350] = + [369] = + {field_expression, 0, .inherited = true}, + {field_expression, 1, .inherited = true}, {field_ordering, 0, .inherited = true}, {field_ordering, 1, .inherited = true}, - [352] = + [373] = {field_expression, 1}, {field_expression, 3}, - [354] = + [375] = {field_group, 2, .inherited = true}, {field_select, 2, .inherited = true}, - [356] = + {field_select_or_group, 2}, + [378] = {field_type_arg, 1}, {field_type_arg, 2, .inherited = true}, - [358] = + [380] = {field_type_arg, 0, .inherited = true}, {field_type_arg, 1, .inherited = true}, - [360] = + [382] = {field_body, 4}, {field_list, 3}, {field_name, 2}, - [363] = + [385] = {field_body, 4}, {field_name, 2}, - [365] = + [387] = {field_name, 3}, {field_parameters, 4}, {field_type, 2}, - [368] = + [390] = {field_name, 3}, {field_param_list, 4, .inherited = true}, - [370] = + [392] = {field_atrributes, 0}, {field_name, 2}, {field_parameters, 4}, {field_type, 1}, {field_type_parameters, 3}, - [375] = + [397] = {field_body, 4}, {field_name, 3}, - [377] = + [399] = {field_name, 4}, - [378] = + [400] = {field_name, 3}, {field_type_parameters, 4}, - [380] = + [402] = {field_atrributes, 0}, {field_modifiers, 1}, {field_name, 3}, {field_parameters, 4}, {field_type, 2}, - [385] = + [407] = {field_modifiers, 0}, {field_name, 2}, {field_parameters, 4}, {field_type, 1}, {field_type_parameters, 3}, - [390] = + [412] = {field_type, 1}, {field_type, 3, .inherited = true}, - [392] = + [414] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [394] = + [416] = {field_type_param, 1}, {field_type_param, 2, .inherited = true}, - [396] = + [418] = {field_type_param, 0, .inherited = true}, {field_type_param, 1, .inherited = true}, - [398] = + [420] = {field_name, 0}, {field_value, 2}, - [400] = + [422] = {field_returns, 4}, - [401] = + [423] = {field_expression, 3}, - [402] = + [424] = {field_condition, 2}, - [403] = + [425] = {field_initializer, 1}, - [404] = + [426] = {field_statement, 0}, - [405] = + [427] = {field_statement, 2, .inherited = true}, - [406] = + [428] = {field_body, 5}, {field_using_argument, 3}, - [408] = + [430] = {field_left, 2}, {field_right, 4}, - [410] = + [432] = {field_type, 4}, {field_value, 2}, - [412] = + [434] = {field_alternative, 4}, {field_condition, 1}, - [414] = + [436] = {field_accessors, 3}, {field_name, 2}, {field_type, 1}, - [417] = + [439] = {field_body, 3, .inherited = true}, {field_name, 1}, {field_parameters, 2}, - [420] = + [442] = {field_accessors, 3}, {field_parameters, 2}, {field_type, 0}, - [423] = + [445] = {field_accessors, 3}, {field_name, 2}, {field_type, 0}, - [426] = + [448] = {field_body, 3, .inherited = true}, {field_name, 1}, {field_parameters, 2}, {field_returns, 0}, - [430] = + [452] = {field_name, 1}, {field_type, 0}, {field_value, 2}, - [433] = + [455] = {field_attributes, 0}, - [434] = + [456] = {field_accessors, 3}, {field_attributes, 0}, {field_name, 2}, {field_type, 1}, - [438] = + [460] = {field_attributes, 0}, {field_modifiers, 1}, {field_variable_declarations, 2}, - [441] = + [463] = {field_attributes, 0}, {field_modifiers, 1}, {field_name, 2}, {field_parameters, 3}, - [445] = + [467] = {field_modifiers, 0}, - [446] = + [468] = {field_accessors, 3}, {field_modifiers, 0}, {field_name, 2}, {field_type, 1}, - [450] = + [472] = {field_expression, 2}, {field_pattern, 0}, - [452] = + [474] = {field_pattern, 1}, {field_pattern, 2, .inherited = true}, - [454] = + [476] = {field_pattern, 0, .inherited = true}, {field_pattern, 1, .inherited = true}, - [456] = + [478] = {field_name, 3, .inherited = true}, {field_type, 0}, - [458] = + [480] = {field_expression, 3}, {field_identifier, 1}, {field_type, 0}, - [461] = + [483] = {field_group, 3, .inherited = true}, + {field_queries, 2}, {field_select, 3, .inherited = true}, - [463] = + {field_select_or_group, 3}, + [487] = {field_body, 5}, {field_list, 3}, {field_name, 2}, - [466] = + [490] = {field_name, 3}, {field_parameters, 5}, {field_type, 2}, {field_type_parameters, 4}, - [470] = + [494] = {field_body, 5}, {field_list, 4}, {field_name, 3}, - [473] = + [497] = {field_body, 5}, {field_name, 3}, - [475] = + [499] = {field_name, 4}, {field_parameters, 5}, {field_type, 3}, - [478] = + [502] = {field_name, 4}, {field_param_list, 5, .inherited = true}, - [480] = + [504] = {field_atrributes, 0}, {field_modifiers, 1}, {field_name, 3}, {field_parameters, 5}, {field_type, 2}, {field_type_parameters, 4}, - [486] = + [510] = {field_name, 1}, {field_value, 3}, - [488] = + [512] = {field_returns, 5}, - [489] = + [513] = {field_body, 1}, {field_condition, 4}, - [491] = + [515] = {field_expression, 3}, {field_expression, 4, .inherited = true}, {field_update, 4}, - [494] = + [518] = {field_condition, 2}, {field_expression, 4}, - [496] = + [520] = {field_expression, 4}, {field_initializer, 1}, - [498] = + [522] = {field_condition, 3}, {field_initializer, 1}, - [500] = + [524] = {field_expression, 1}, {field_expression, 4}, - [502] = + [526] = {field_condition, 3}, {field_expression, 1}, - [504] = + [528] = {field_expression, 1}, {field_expression, 2, .inherited = true}, {field_initializer, 2}, - [507] = + [531] = {field_pattern, 1}, {field_statement, 3, .inherited = true}, - [509] = + [533] = {field_pattern, 1}, {field_pattern, 2}, - [511] = + [535] = {field_expression, 1}, {field_statement, 3, .inherited = true}, - [513] = + [537] = {field_statement, 0, .inherited = true}, {field_statement, 1, .inherited = true}, - [515] = + [539] = {field_left, 3}, {field_right, 5}, - [517] = + [541] = {field_left, 3}, {field_right, 5}, {field_type, 2}, - [520] = + [544] = {field_alternative, 6}, {field_condition, 2}, {field_consequence, 4}, - [523] = + [547] = {field_body, 4, .inherited = true}, {field_name, 2}, {field_parameters, 3}, - [526] = + [550] = {field_name, 3}, {field_type, 1}, - [528] = + [552] = {field_accessors, 4}, {field_name, 3}, {field_type, 1}, - [531] = + [555] = {field_body, 4, .inherited = true}, {field_parameters, 3}, {field_type, 2}, - [534] = + [558] = {field_body, 4, .inherited = true}, {field_operator, 2}, {field_parameters, 3}, {field_type, 0}, - [538] = + [562] = {field_param_list, 1}, - [539] = + [563] = {field_attributes, 1, .inherited = true}, {field_name, 1, .inherited = true}, {field_param_list, 1}, {field_type, 1, .inherited = true}, - [543] = + [567] = {field_parameters, 2}, {field_type, 0}, {field_value, 3}, - [546] = + [570] = {field_accessors, 4}, {field_parameters, 3}, {field_type, 0}, - [549] = + [573] = {field_body, 4, .inherited = true}, {field_name, 2}, {field_parameters, 3}, {field_returns, 0}, - [553] = + [577] = {field_name, 2}, {field_type, 0}, {field_value, 3}, - [556] = + [580] = {field_body, 1, .inherited = true}, {field_name, 0}, - [558] = + [582] = {field_accessor_declaration, 1}, - [559] = + [583] = {field_body, 4, .inherited = true}, {field_name, 1}, {field_parameters, 3}, {field_returns, 0}, {field_type_parameters, 2}, - [564] = + [588] = {field_body, 4, .inherited = true}, {field_name, 1}, {field_parameters, 2}, {field_returns, 0}, - [568] = + [592] = {field_accessors, 4}, {field_attributes, 0}, {field_name, 3}, {field_type, 2}, - [572] = + [596] = {field_attributes, 0}, {field_body, 4, .inherited = true}, {field_name, 2}, {field_parameters, 3}, - [576] = + [600] = {field_accessors, 4}, {field_attributes, 0}, {field_parameters, 3}, {field_type, 1}, - [580] = + [604] = {field_accessors, 4}, {field_attributes, 0}, {field_name, 3}, {field_type, 1}, - [584] = + [608] = {field_attributes, 0}, {field_body, 4, .inherited = true}, {field_name, 2}, {field_parameters, 3}, {field_returns, 1}, - [589] = + [613] = {field_attributes, 0}, {field_name, 2}, {field_type, 1}, {field_value, 3}, - [593] = + [617] = {field_attributes, 0}, {field_modifiers, 1}, - [595] = + [619] = {field_accessors, 4}, {field_attributes, 0}, {field_modifiers, 1}, {field_name, 3}, {field_type, 2}, - [600] = + [624] = {field_modifiers, 0}, {field_name, 3}, {field_type, 2}, - [603] = + [627] = {field_accessors, 4}, {field_modifiers, 0}, {field_name, 3}, {field_type, 2}, - [607] = + [631] = {field_accessors, 4}, {field_modifiers, 0}, {field_parameters, 3}, {field_type, 1}, - [611] = + [635] = {field_accessors, 4}, {field_modifiers, 0}, {field_name, 3}, {field_type, 1}, - [615] = + [639] = {field_body, 4, .inherited = true}, {field_modifiers, 0}, {field_name, 2}, {field_parameters, 3}, {field_returns, 1}, - [620] = + [644] = {field_modifiers, 0}, {field_name, 2}, {field_type, 1}, {field_value, 3}, - [624] = + [648] = {field_expression, 3}, {field_pattern, 0}, {field_when, 1}, - [627] = + [651] = {field_name, 1, .inherited = true}, {field_name, 2, .inherited = true}, - [629] = + [653] = {field_body, 6}, {field_list, 4}, {field_name, 3}, - [632] = + [656] = {field_name, 4}, {field_parameters, 6}, {field_type, 3}, {field_type_parameters, 5}, - [636] = + [660] = {field_condition, 2}, {field_expression, 4}, {field_expression, 5, .inherited = true}, {field_update, 5}, - [640] = + [664] = {field_expression, 4}, {field_expression, 5, .inherited = true}, {field_initializer, 1}, {field_update, 5}, - [644] = + [668] = {field_condition, 3}, {field_expression, 5}, {field_initializer, 1}, - [647] = + [671] = {field_expression, 1}, {field_expression, 4}, {field_expression, 5, .inherited = true}, {field_update, 5}, - [651] = + [675] = {field_condition, 3}, {field_expression, 1}, {field_expression, 5}, - [654] = + [678] = {field_expression, 1}, {field_expression, 2, .inherited = true}, {field_expression, 5}, {field_initializer, 2}, - [658] = + [682] = {field_condition, 4}, {field_expression, 1}, {field_expression, 2, .inherited = true}, {field_initializer, 2}, - [662] = + [686] = {field_pattern, 1}, {field_pattern, 2}, {field_statement, 4, .inherited = true}, - [665] = + [689] = {field_left, 4}, {field_right, 6}, {field_type, 3}, - [668] = + [692] = {field_body, 5, .inherited = true}, {field_operator, 3}, {field_parameters, 4}, {field_type, 0}, - [672] = + [696] = {field_attributes, 2, .inherited = true}, {field_name, 2, .inherited = true}, {field_param_list, 1}, {field_param_list, 2}, {field_type, 2, .inherited = true}, - [677] = + [701] = {field_attributes, 0, .inherited = true}, {field_attributes, 1, .inherited = true}, {field_name, 0, .inherited = true}, {field_name, 1, .inherited = true}, {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [683] = + [707] = {field_attributes, 1, .inherited = true}, {field_attributes, 2, .inherited = true}, {field_name, 1, .inherited = true}, @@ -5348,304 +5378,304 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_param_list, 2}, {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [691] = + [715] = {field_parameters, 3}, {field_type, 0}, {field_value, 4}, - [694] = + [718] = {field_body, 5, .inherited = true}, {field_name, 2}, {field_parameters, 4}, {field_returns, 0}, {field_type_parameters, 3}, - [699] = + [723] = {field_body, 5, .inherited = true}, {field_name, 2}, {field_parameters, 3}, {field_returns, 0}, - [703] = + [727] = {field_attributes, 0}, {field_body, 2, .inherited = true}, {field_name, 1}, - [706] = + [730] = {field_body, 2, .inherited = true}, {field_modifiers, 0}, {field_name, 1}, - [709] = + [733] = {field_body, 5, .inherited = true}, {field_name, 1}, {field_parameters, 3}, {field_returns, 0}, {field_type_parameters, 2}, - [714] = + [738] = {field_accessors, 2}, {field_name, 1}, {field_type, 0}, {field_value, 4}, - [718] = + [742] = {field_attributes, 0}, {field_body, 5, .inherited = true}, {field_name, 3}, {field_parameters, 4}, - [722] = + [746] = {field_attributes, 0}, {field_name, 4}, {field_type, 2}, - [725] = + [749] = {field_accessors, 5}, {field_attributes, 0}, {field_name, 4}, {field_type, 2}, - [729] = + [753] = {field_body, 5, .inherited = true}, {field_parameters, 4}, {field_type, 3}, - [732] = + [756] = {field_body, 5, .inherited = true}, {field_operator, 3}, {field_parameters, 4}, {field_type, 1}, - [736] = + [760] = {field_attributes, 0}, {field_parameters, 3}, {field_type, 1}, {field_value, 4}, - [740] = + [764] = {field_accessors, 5}, {field_attributes, 0}, {field_parameters, 4}, {field_type, 1}, - [744] = + [768] = {field_attributes, 0}, {field_body, 5, .inherited = true}, {field_name, 3}, {field_parameters, 4}, {field_returns, 1}, - [749] = + [773] = {field_attributes, 0}, {field_name, 3}, {field_type, 1}, {field_value, 4}, - [753] = + [777] = {field_attributes, 0}, {field_body, 5, .inherited = true}, {field_name, 2}, {field_parameters, 4}, {field_returns, 1}, {field_type_parameters, 3}, - [759] = + [783] = {field_attributes, 0}, {field_body, 5, .inherited = true}, {field_name, 2}, {field_parameters, 3}, {field_returns, 1}, - [764] = + [788] = {field_attributes, 0}, {field_modifiers, 1}, {field_name, 4}, {field_type, 3}, - [768] = + [792] = {field_accessors, 5}, {field_attributes, 0}, {field_modifiers, 1}, {field_name, 4}, {field_type, 3}, - [773] = + [797] = {field_accessors, 5}, {field_attributes, 0}, {field_modifiers, 1}, {field_parameters, 4}, {field_type, 2}, - [778] = + [802] = {field_accessors, 5}, {field_attributes, 0}, {field_modifiers, 1}, {field_name, 4}, {field_type, 2}, - [783] = + [807] = {field_attributes, 0}, {field_body, 5, .inherited = true}, {field_modifiers, 1}, {field_name, 3}, {field_parameters, 4}, {field_returns, 2}, - [789] = + [813] = {field_attributes, 0}, {field_modifiers, 1}, {field_name, 3}, {field_type, 2}, {field_value, 4}, - [794] = + [818] = {field_modifiers, 0}, {field_name, 4}, {field_type, 2}, - [797] = + [821] = {field_accessors, 5}, {field_modifiers, 0}, {field_name, 4}, {field_type, 2}, - [801] = + [825] = {field_modifiers, 0}, {field_parameters, 3}, {field_type, 1}, {field_value, 4}, - [805] = + [829] = {field_accessors, 5}, {field_modifiers, 0}, {field_parameters, 4}, {field_type, 1}, - [809] = + [833] = {field_body, 5, .inherited = true}, {field_modifiers, 0}, {field_name, 3}, {field_parameters, 4}, {field_returns, 1}, - [814] = + [838] = {field_modifiers, 0}, {field_name, 3}, {field_type, 1}, {field_value, 4}, - [818] = + [842] = {field_body, 5, .inherited = true}, {field_modifiers, 0}, {field_name, 2}, {field_parameters, 4}, {field_returns, 1}, {field_type_parameters, 3}, - [824] = + [848] = {field_body, 5, .inherited = true}, {field_modifiers, 0}, {field_name, 2}, {field_parameters, 3}, {field_returns, 1}, - [829] = + [853] = {field_condition, 3}, {field_expression, 5}, {field_expression, 6, .inherited = true}, {field_initializer, 1}, {field_update, 6}, - [834] = + [858] = {field_condition, 3}, {field_expression, 1}, {field_expression, 5}, {field_expression, 6, .inherited = true}, {field_update, 6}, - [839] = + [863] = {field_expression, 1}, {field_expression, 2, .inherited = true}, {field_expression, 5}, {field_expression, 6, .inherited = true}, {field_initializer, 2}, {field_update, 6}, - [845] = + [869] = {field_condition, 4}, {field_expression, 1}, {field_expression, 2, .inherited = true}, {field_expression, 6}, {field_initializer, 2}, - [850] = + [874] = {field_body, 6, .inherited = true}, {field_operator, 4}, {field_parameters, 5}, {field_type, 0}, - [854] = + [878] = {field_body, 6, .inherited = true}, {field_name, 2}, {field_parameters, 4}, {field_returns, 0}, {field_type_parameters, 3}, - [859] = + [883] = {field_accessors, 3}, {field_name, 2}, {field_type, 0}, {field_value, 5}, - [863] = + [887] = {field_attributes, 0}, {field_body, 3, .inherited = true}, {field_modifiers, 1}, {field_name, 2}, - [867] = + [891] = {field_body, 6, .inherited = true}, {field_operator, 4}, {field_parameters, 5}, {field_type, 1}, - [871] = + [895] = {field_attributes, 0}, {field_parameters, 4}, {field_type, 1}, {field_value, 5}, - [875] = + [899] = {field_attributes, 0}, {field_body, 6, .inherited = true}, {field_name, 3}, {field_parameters, 5}, {field_returns, 1}, {field_type_parameters, 4}, - [881] = + [905] = {field_attributes, 0}, {field_body, 6, .inherited = true}, {field_name, 3}, {field_parameters, 4}, {field_returns, 1}, - [886] = + [910] = {field_attributes, 0}, {field_body, 6, .inherited = true}, {field_name, 2}, {field_parameters, 4}, {field_returns, 1}, {field_type_parameters, 3}, - [892] = + [916] = {field_accessors, 3}, {field_attributes, 0}, {field_name, 2}, {field_type, 1}, {field_value, 5}, - [897] = + [921] = {field_attributes, 0}, {field_modifiers, 1}, {field_name, 5}, {field_type, 3}, - [901] = + [925] = {field_accessors, 6}, {field_attributes, 0}, {field_modifiers, 1}, {field_name, 5}, {field_type, 3}, - [906] = + [930] = {field_body, 6, .inherited = true}, {field_parameters, 5}, {field_type, 4}, - [909] = + [933] = {field_body, 6, .inherited = true}, {field_operator, 4}, {field_parameters, 5}, {field_type, 2}, - [913] = + [937] = {field_attributes, 0}, {field_modifiers, 1}, {field_parameters, 4}, {field_type, 2}, {field_value, 5}, - [918] = + [942] = {field_accessors, 6}, {field_attributes, 0}, {field_modifiers, 1}, {field_parameters, 5}, {field_type, 2}, - [923] = + [947] = {field_attributes, 0}, {field_body, 6, .inherited = true}, {field_modifiers, 1}, {field_name, 4}, {field_parameters, 5}, {field_returns, 2}, - [929] = + [953] = {field_attributes, 0}, {field_modifiers, 1}, {field_name, 4}, {field_type, 2}, {field_value, 5}, - [934] = + [958] = {field_attributes, 0}, {field_body, 6, .inherited = true}, {field_modifiers, 1}, @@ -5653,45 +5683,45 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_parameters, 5}, {field_returns, 2}, {field_type_parameters, 4}, - [941] = + [965] = {field_attributes, 0}, {field_body, 6, .inherited = true}, {field_modifiers, 1}, {field_name, 3}, {field_parameters, 4}, {field_returns, 2}, - [947] = + [971] = {field_modifiers, 0}, {field_parameters, 4}, {field_type, 1}, {field_value, 5}, - [951] = + [975] = {field_body, 6, .inherited = true}, {field_modifiers, 0}, {field_name, 3}, {field_parameters, 5}, {field_returns, 1}, {field_type_parameters, 4}, - [957] = + [981] = {field_body, 6, .inherited = true}, {field_modifiers, 0}, {field_name, 3}, {field_parameters, 4}, {field_returns, 1}, - [962] = + [986] = {field_body, 6, .inherited = true}, {field_modifiers, 0}, {field_name, 2}, {field_parameters, 4}, {field_returns, 1}, {field_type_parameters, 3}, - [968] = + [992] = {field_accessors, 3}, {field_modifiers, 0}, {field_name, 2}, {field_type, 1}, {field_value, 5}, - [973] = + [997] = {field_condition, 4}, {field_expression, 1}, {field_expression, 2, .inherited = true}, @@ -5699,36 +5729,36 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_expression, 7, .inherited = true}, {field_initializer, 2}, {field_update, 7}, - [980] = + [1004] = {field_body, 7, .inherited = true}, {field_operator, 5}, {field_parameters, 6}, {field_type, 1}, - [984] = + [1008] = {field_attributes, 0}, {field_body, 7, .inherited = true}, {field_name, 3}, {field_parameters, 5}, {field_returns, 1}, {field_type_parameters, 4}, - [990] = + [1014] = {field_accessors, 4}, {field_attributes, 0}, {field_name, 3}, {field_type, 1}, {field_value, 6}, - [995] = + [1019] = {field_body, 7, .inherited = true}, {field_operator, 5}, {field_parameters, 6}, {field_type, 2}, - [999] = + [1023] = {field_attributes, 0}, {field_modifiers, 1}, {field_parameters, 5}, {field_type, 2}, {field_value, 6}, - [1004] = + [1028] = {field_attributes, 0}, {field_body, 7, .inherited = true}, {field_modifiers, 1}, @@ -5736,14 +5766,14 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_parameters, 6}, {field_returns, 2}, {field_type_parameters, 5}, - [1011] = + [1035] = {field_attributes, 0}, {field_body, 7, .inherited = true}, {field_modifiers, 1}, {field_name, 4}, {field_parameters, 5}, {field_returns, 2}, - [1017] = + [1041] = {field_attributes, 0}, {field_body, 7, .inherited = true}, {field_modifiers, 1}, @@ -5751,32 +5781,32 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_parameters, 5}, {field_returns, 2}, {field_type_parameters, 4}, - [1024] = + [1048] = {field_accessors, 4}, {field_attributes, 0}, {field_modifiers, 1}, {field_name, 3}, {field_type, 2}, {field_value, 6}, - [1030] = + [1054] = {field_body, 7, .inherited = true}, {field_modifiers, 0}, {field_name, 3}, {field_parameters, 5}, {field_returns, 1}, {field_type_parameters, 4}, - [1036] = + [1060] = {field_accessors, 4}, {field_modifiers, 0}, {field_name, 3}, {field_type, 1}, {field_value, 6}, - [1041] = + [1065] = {field_body, 8, .inherited = true}, {field_operator, 6}, {field_parameters, 7}, {field_type, 2}, - [1045] = + [1069] = {field_attributes, 0}, {field_body, 8, .inherited = true}, {field_modifiers, 1}, @@ -5784,7 +5814,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_parameters, 6}, {field_returns, 2}, {field_type_parameters, 5}, - [1052] = + [1076] = {field_accessors, 5}, {field_attributes, 0}, {field_modifiers, 1}, @@ -5832,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, @@ -5852,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, @@ -5951,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, @@ -5965,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, @@ -6333,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, @@ -6343,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, @@ -6368,1392 +6398,1392 @@ 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] = 838, + [847] = 847, [848] = 848, [849] = 849, - [850] = 850, + [850] = 848, [851] = 851, [852] = 852, [853] = 853, [854] = 854, - [855] = 855, - [856] = 839, - [857] = 857, - [858] = 858, + [855] = 838, + [856] = 856, + [857] = 852, + [858] = 851, [859] = 859, - [860] = 854, - [861] = 861, - [862] = 862, - [863] = 863, + [860] = 839, + [861] = 838, + [862] = 842, + [863] = 840, [864] = 864, - [865] = 858, - [866] = 863, - [867] = 862, - [868] = 868, - [869] = 861, - [870] = 857, + [865] = 854, + [866] = 866, + [867] = 867, + [868] = 859, + [869] = 869, + [870] = 870, [871] = 871, - [872] = 854, - [873] = 859, - [874] = 839, - [875] = 855, - [876] = 841, + [872] = 839, + [873] = 842, + [874] = 874, + [875] = 840, + [876] = 871, [877] = 877, - [878] = 853, - [879] = 852, + [878] = 846, + [879] = 879, [880] = 880, - [881] = 851, - [882] = 840, - [883] = 840, - [884] = 857, - [885] = 840, - [886] = 840, - [887] = 887, - [888] = 858, - [889] = 861, - [890] = 840, - [891] = 850, - [892] = 849, - [893] = 840, - [894] = 840, - [895] = 848, - [896] = 840, + [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, + [898] = 880, [899] = 838, - [900] = 846, - [901] = 845, - [902] = 840, - [903] = 903, - [904] = 904, - [905] = 905, - [906] = 838, - [907] = 849, - [908] = 838, - [909] = 849, - [910] = 905, - [911] = 864, - [912] = 840, - [913] = 913, - [914] = 845, - [915] = 840, - [916] = 862, - [917] = 858, - [918] = 858, - [919] = 846, - [920] = 848, - [921] = 850, - [922] = 851, - [923] = 852, - [924] = 840, + [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] = 840, - [927] = 854, - [928] = 857, - [929] = 840, - [930] = 861, - [931] = 871, - [932] = 913, - [933] = 862, - [934] = 840, - [935] = 935, - [936] = 863, - [937] = 862, - [938] = 904, - [939] = 863, - [940] = 839, - [941] = 941, - [942] = 871, - [943] = 838, - [944] = 849, - [945] = 863, - [946] = 862, - [947] = 840, - [948] = 855, - [949] = 861, - [950] = 857, - [951] = 854, - [952] = 952, - [953] = 853, - [954] = 858, - [955] = 838, - [956] = 941, - [957] = 852, - [958] = 852, - [959] = 849, - [960] = 905, - [961] = 845, - [962] = 851, - [963] = 846, - [964] = 863, - [965] = 840, - [966] = 839, - [967] = 935, - [968] = 877, - [969] = 861, - [970] = 839, - [971] = 857, - [972] = 854, - [973] = 880, - [974] = 853, - [975] = 852, - [976] = 839, - [977] = 941, - [978] = 851, - [979] = 858, - [980] = 935, - [981] = 850, - [982] = 862, - [983] = 861, - [984] = 848, - [985] = 846, - [986] = 857, - [987] = 854, - [988] = 853, - [989] = 852, - [990] = 851, - [991] = 863, - [992] = 861, - [993] = 845, - [994] = 857, - [995] = 850, - [996] = 854, - [997] = 853, + [926] = 854, + [927] = 838, + [928] = 852, + [929] = 851, + [930] = 859, + [931] = 839, + [932] = 869, + [933] = 846, + [934] = 842, + [935] = 840, + [936] = 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] = 846, - [1000] = 852, - [1001] = 905, - [1002] = 845, - [1003] = 848, - [1004] = 851, - [1005] = 858, - [1006] = 850, - [1007] = 850, - [1008] = 850, - [1009] = 905, - [1010] = 848, - [1011] = 848, - [1012] = 846, - [1013] = 851, - [1014] = 846, - [1015] = 852, - [1016] = 845, - [1017] = 845, - [1018] = 905, - [1019] = 858, - [1020] = 1020, - [1021] = 853, - [1022] = 1022, - [1023] = 1023, - [1024] = 854, - [1025] = 862, - [1026] = 838, - [1027] = 941, - [1028] = 849, - [1029] = 941, - [1030] = 935, - [1031] = 857, - [1032] = 861, - [1033] = 904, - [1034] = 863, - [1035] = 839, - [1036] = 904, - [1037] = 1037, - [1038] = 905, - [1039] = 905, - [1040] = 858, - [1041] = 904, - [1042] = 849, + [999] = 849, + [1000] = 874, + [1001] = 838, + [1002] = 989, + [1003] = 871, + [1004] = 846, + [1005] = 869, + [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] = 849, - [1045] = 858, - [1046] = 838, - [1047] = 904, - [1048] = 862, - [1049] = 858, - [1050] = 849, - [1051] = 838, - [1052] = 905, - [1053] = 845, - [1054] = 846, - [1055] = 863, - [1056] = 848, - [1057] = 862, - [1058] = 861, - [1059] = 862, - [1060] = 857, - [1061] = 854, - [1062] = 853, - [1063] = 852, - [1064] = 851, - [1065] = 850, - [1066] = 848, - [1067] = 1067, - [1068] = 846, - [1069] = 845, - [1070] = 905, - [1071] = 850, - [1072] = 851, - [1073] = 852, - [1074] = 838, - [1075] = 849, - [1076] = 1076, + [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] = 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] = 851, - [1079] = 854, - [1080] = 857, - [1081] = 861, - [1082] = 845, - [1083] = 846, - [1084] = 862, - [1085] = 838, - [1086] = 862, - [1087] = 849, - [1088] = 863, - [1089] = 855, - [1090] = 848, - [1091] = 839, - [1092] = 838, - [1093] = 849, + [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] = 1095, - [1096] = 858, - [1097] = 850, - [1098] = 839, - [1099] = 850, - [1100] = 1100, - [1101] = 855, - [1102] = 863, - [1103] = 1103, - [1104] = 861, - [1105] = 857, - [1106] = 854, - [1107] = 853, - [1108] = 852, - [1109] = 851, - [1110] = 850, - [1111] = 848, - [1112] = 846, - [1113] = 845, - [1114] = 905, - [1115] = 905, - [1116] = 905, - [1117] = 858, - [1118] = 952, - [1119] = 839, - [1120] = 855, - [1121] = 845, - [1122] = 1122, - [1123] = 846, - [1124] = 848, - [1125] = 904, - [1126] = 850, - [1127] = 851, - [1128] = 852, - [1129] = 862, - [1130] = 853, - [1131] = 854, - [1132] = 838, - [1133] = 849, - [1134] = 857, - [1135] = 861, - [1136] = 863, - [1137] = 863, - [1138] = 849, - [1139] = 905, - [1140] = 845, - [1141] = 846, - [1142] = 848, - [1143] = 850, - [1144] = 861, - [1145] = 863, - [1146] = 851, - [1147] = 861, - [1148] = 941, - [1149] = 857, - [1150] = 849, - [1151] = 854, - [1152] = 853, - [1153] = 852, - [1154] = 851, - [1155] = 850, - [1156] = 848, + [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] = 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] = 838, - [1159] = 857, - [1160] = 852, - [1161] = 845, - [1162] = 935, - [1163] = 851, + [1158] = 841, + [1159] = 866, + [1160] = 869, + [1161] = 989, + [1162] = 871, + [1163] = 849, [1164] = 853, - [1165] = 905, - [1166] = 852, - [1167] = 854, - [1168] = 854, - [1169] = 857, - [1170] = 853, - [1171] = 852, - [1172] = 853, - [1173] = 854, - [1174] = 862, - [1175] = 851, - [1176] = 850, - [1177] = 1177, - [1178] = 848, - [1179] = 839, - [1180] = 857, - [1181] = 904, - [1182] = 941, - [1183] = 858, - [1184] = 1184, - [1185] = 1185, - [1186] = 861, - [1187] = 871, - [1188] = 861, - [1189] = 862, - [1190] = 858, - [1191] = 935, - [1192] = 862, - [1193] = 863, - [1194] = 935, - [1195] = 849, - [1196] = 863, - [1197] = 838, - [1198] = 848, - [1199] = 904, - [1200] = 858, - [1201] = 863, - [1202] = 935, - [1203] = 905, - [1204] = 941, - [1205] = 846, - [1206] = 845, - [1207] = 840, - [1208] = 861, - [1209] = 857, - [1210] = 854, - [1211] = 853, - [1212] = 904, - [1213] = 852, - [1214] = 851, - [1215] = 850, - [1216] = 848, - [1217] = 846, + [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] = 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] = 905, - [1220] = 904, - [1221] = 863, - [1222] = 846, - [1223] = 848, - [1224] = 858, - [1225] = 941, - [1226] = 850, - [1227] = 858, - [1228] = 851, - [1229] = 852, - [1230] = 853, - [1231] = 854, - [1232] = 857, - [1233] = 863, - [1234] = 845, - [1235] = 861, - [1236] = 1236, - [1237] = 862, - [1238] = 905, - [1239] = 845, - [1240] = 846, - [1241] = 862, - [1242] = 861, - [1243] = 857, - [1244] = 848, - [1245] = 854, - [1246] = 850, - [1247] = 851, - [1248] = 853, - [1249] = 852, - [1250] = 853, - [1251] = 854, - [1252] = 857, - [1253] = 852, - [1254] = 851, - [1255] = 850, - [1256] = 848, - [1257] = 861, - [1258] = 863, - [1259] = 846, - [1260] = 845, - [1261] = 1261, - [1262] = 905, - [1263] = 863, - [1264] = 904, - [1265] = 838, - [1266] = 849, - [1267] = 858, - [1268] = 858, - [1269] = 845, - [1270] = 849, - [1271] = 838, - [1272] = 941, - [1273] = 905, - [1274] = 905, - [1275] = 845, - [1276] = 1037, + [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] = 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] = 846, - [1279] = 848, - [1280] = 850, - [1281] = 851, - [1282] = 852, - [1283] = 858, - [1284] = 853, - [1285] = 904, - [1286] = 854, - [1287] = 857, - [1288] = 861, - [1289] = 862, - [1290] = 863, - [1291] = 904, - [1292] = 841, - [1293] = 904, - [1294] = 858, - [1295] = 941, - [1296] = 849, - [1297] = 905, - [1298] = 838, - [1299] = 863, - [1300] = 1300, - [1301] = 849, - [1302] = 838, - [1303] = 845, - [1304] = 862, - [1305] = 905, - [1306] = 862, - [1307] = 904, - [1308] = 858, - [1309] = 861, - [1310] = 857, - [1311] = 905, - [1312] = 845, - [1313] = 863, + [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] = 871, + [1303] = 879, + [1304] = 874, + [1305] = 854, + [1306] = 845, + [1307] = 853, + [1308] = 846, + [1309] = 874, + [1310] = 871, + [1311] = 877, + [1312] = 869, + [1313] = 866, [1314] = 846, [1315] = 1315, [1316] = 1316, - [1317] = 848, - [1318] = 850, - [1319] = 849, - [1320] = 851, - [1321] = 854, - [1322] = 853, - [1323] = 852, + [1317] = 840, + [1318] = 845, + [1319] = 842, + [1320] = 847, + [1321] = 852, + [1322] = 879, + [1323] = 859, [1324] = 851, - [1325] = 850, - [1326] = 848, + [1325] = 853, + [1326] = 854, [1327] = 852, - [1328] = 846, + [1328] = 847, [1329] = 845, - [1330] = 905, - [1331] = 853, - [1332] = 854, - [1333] = 857, - [1334] = 861, - [1335] = 846, - [1336] = 845, - [1337] = 863, - [1338] = 846, - [1339] = 935, - [1340] = 848, - [1341] = 862, - [1342] = 861, - [1343] = 848, - [1344] = 857, - [1345] = 850, - [1346] = 854, - [1347] = 853, - [1348] = 852, - [1349] = 851, - [1350] = 852, - [1351] = 853, - [1352] = 850, - [1353] = 851, - [1354] = 854, - [1355] = 851, - [1356] = 850, - [1357] = 838, - [1358] = 849, - [1359] = 848, - [1360] = 857, - [1361] = 861, - [1362] = 852, - [1363] = 846, - [1364] = 845, - [1365] = 853, - [1366] = 905, - [1367] = 849, - [1368] = 838, - [1369] = 862, - [1370] = 862, - [1371] = 854, - [1372] = 863, - [1373] = 858, - [1374] = 857, - [1375] = 861, - [1376] = 858, - [1377] = 863, - [1378] = 858, - [1379] = 849, - [1380] = 849, - [1381] = 838, - [1382] = 838, - [1383] = 1300, - [1384] = 1384, - [1385] = 905, + [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] = 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] = 846, - [1389] = 848, - [1390] = 905, - [1391] = 845, - [1392] = 850, - [1393] = 1393, - [1394] = 846, - [1395] = 851, - [1396] = 848, - [1397] = 852, - [1398] = 853, - [1399] = 854, - [1400] = 850, - [1401] = 857, - [1402] = 1095, - [1403] = 861, - [1404] = 862, - [1405] = 863, - [1406] = 851, - [1407] = 858, - [1408] = 858, - [1409] = 904, - [1410] = 852, - [1411] = 853, - [1412] = 854, - [1413] = 857, - [1414] = 861, - [1415] = 1415, - [1416] = 862, - [1417] = 904, - [1418] = 863, - [1419] = 853, - [1420] = 855, - [1421] = 863, - [1422] = 862, - [1423] = 861, - [1424] = 863, - [1425] = 857, - [1426] = 838, - [1427] = 849, + [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] = 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] = 853, - [1430] = 852, + [1429] = 839, + [1430] = 854, [1431] = 1431, - [1432] = 851, - [1433] = 850, - [1434] = 848, - [1435] = 846, + [1432] = 838, + [1433] = 852, + [1434] = 851, + [1435] = 838, [1436] = 1436, - [1437] = 845, - [1438] = 858, - [1439] = 935, - [1440] = 1440, - [1441] = 839, - [1442] = 905, - [1443] = 855, - [1444] = 1300, - [1445] = 862, - [1446] = 1384, - [1447] = 861, - [1448] = 849, - [1449] = 857, - [1450] = 838, + [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] = 1384, - [1453] = 849, - [1454] = 838, - [1455] = 862, - [1456] = 853, - [1457] = 863, - [1458] = 1393, - [1459] = 852, - [1460] = 846, - [1461] = 851, - [1462] = 905, - [1463] = 845, - [1464] = 855, - [1465] = 848, - [1466] = 838, - [1467] = 849, - [1468] = 850, - [1469] = 848, - [1470] = 846, - [1471] = 845, - [1472] = 858, - [1473] = 905, - [1474] = 839, - [1475] = 855, - [1476] = 839, - [1477] = 905, - [1478] = 846, - [1479] = 850, - [1480] = 851, - [1481] = 838, + [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] = 849, - [1484] = 838, - [1485] = 905, - [1486] = 852, - [1487] = 845, - [1488] = 853, - [1489] = 846, - [1490] = 848, - [1491] = 850, - [1492] = 849, - [1493] = 851, - [1494] = 852, - [1495] = 854, - [1496] = 853, - [1497] = 854, - [1498] = 857, - [1499] = 848, - [1500] = 861, - [1501] = 850, - [1502] = 862, - [1503] = 935, - [1504] = 851, - [1505] = 855, - [1506] = 857, - [1507] = 863, - [1508] = 861, - [1509] = 838, - [1510] = 852, - [1511] = 853, - [1512] = 858, - [1513] = 849, - [1514] = 862, - [1515] = 839, - [1516] = 935, - [1517] = 846, + [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] = 905, - [1520] = 838, - [1521] = 849, - [1522] = 1522, - [1523] = 904, - [1524] = 1300, - [1525] = 1384, - [1526] = 863, - [1527] = 845, + [1519] = 841, + [1520] = 845, + [1521] = 871, + [1522] = 845, + [1523] = 853, + [1524] = 845, + [1525] = 879, + [1526] = 845, + [1527] = 874, [1528] = 846, - [1529] = 858, + [1529] = 849, [1530] = 1530, - [1531] = 848, - [1532] = 850, - [1533] = 1522, - [1534] = 858, - [1535] = 858, - [1536] = 858, - [1537] = 862, - [1538] = 1538, - [1539] = 854, - [1540] = 1540, - [1541] = 1541, - [1542] = 941, - [1543] = 838, - [1544] = 849, - [1545] = 1393, - [1546] = 862, - [1547] = 863, - [1548] = 838, - [1549] = 849, - [1550] = 863, - [1551] = 863, - [1552] = 904, - [1553] = 905, - [1554] = 845, - [1555] = 846, - [1556] = 848, - [1557] = 862, - [1558] = 861, - [1559] = 857, + [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] = 854, - [1562] = 861, - [1563] = 853, - [1564] = 850, - [1565] = 851, - [1566] = 858, - [1567] = 839, - [1568] = 852, - [1569] = 849, - [1570] = 852, - [1571] = 857, - [1572] = 853, - [1573] = 854, - [1574] = 857, - [1575] = 861, - [1576] = 863, - [1577] = 851, - [1578] = 904, - [1579] = 854, - [1580] = 853, - [1581] = 852, - [1582] = 851, - [1583] = 858, + [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] = 850, - [1586] = 848, + [1585] = 1276, + [1586] = 852, [1587] = 851, - [1588] = 846, - [1589] = 845, - [1590] = 905, - [1591] = 855, - [1592] = 1592, - [1593] = 858, - [1594] = 850, - [1595] = 863, - [1596] = 839, - [1597] = 863, - [1598] = 852, - [1599] = 863, - [1600] = 862, - [1601] = 861, - [1602] = 848, - [1603] = 857, - [1604] = 846, - [1605] = 854, - [1606] = 853, - [1607] = 852, - [1608] = 851, - [1609] = 850, - [1610] = 848, - [1611] = 846, - [1612] = 845, - [1613] = 862, - [1614] = 905, - [1615] = 861, - [1616] = 862, - [1617] = 905, - [1618] = 845, - [1619] = 846, - [1620] = 848, - [1621] = 861, - [1622] = 850, - [1623] = 845, - [1624] = 851, - [1625] = 1625, - [1626] = 857, - [1627] = 852, - [1628] = 854, - [1629] = 905, + [1588] = 879, + [1589] = 859, + [1590] = 839, + [1591] = 842, + [1592] = 1402, + [1593] = 840, + [1594] = 845, + [1595] = 847, + [1596] = 866, + [1597] = 874, + [1598] = 849, + [1599] = 848, + [1600] = 845, + [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] = 838, - [1632] = 857, - [1633] = 862, - [1634] = 853, - [1635] = 838, - [1636] = 849, - [1637] = 852, - [1638] = 854, - [1639] = 857, - [1640] = 858, - [1641] = 851, - [1642] = 839, - [1643] = 850, - [1644] = 855, - [1645] = 853, - [1646] = 848, - [1647] = 838, + [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] = 852, - [1650] = 854, + [1649] = 854, + [1650] = 848, [1651] = 849, - [1652] = 846, - [1653] = 935, - [1654] = 861, - [1655] = 905, - [1656] = 851, - [1657] = 941, - [1658] = 850, - [1659] = 858, - [1660] = 839, - [1661] = 855, - [1662] = 845, - [1663] = 846, - [1664] = 1393, + [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] = 935, - [1667] = 1300, - [1668] = 848, - [1669] = 850, - [1670] = 1384, + [1666] = 852, + [1667] = 845, + [1668] = 840, + [1669] = 838, + [1670] = 852, [1671] = 851, - [1672] = 1538, - [1673] = 941, - [1674] = 852, - [1675] = 1540, - [1676] = 853, - [1677] = 1541, - [1678] = 854, - [1679] = 1522, - [1680] = 839, - [1681] = 855, - [1682] = 857, - [1683] = 861, - [1684] = 935, - [1685] = 1538, - [1686] = 1540, - [1687] = 1541, - [1688] = 862, - [1689] = 935, - [1690] = 1393, - [1691] = 941, - [1692] = 848, + [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] = 839, - [1695] = 855, - [1696] = 845, + [1694] = 838, + [1695] = 852, + [1696] = 851, [1697] = 1697, - [1698] = 905, - [1699] = 853, - [1700] = 935, - [1701] = 838, - [1702] = 849, - [1703] = 941, - [1704] = 854, - [1705] = 839, - [1706] = 855, - [1707] = 858, - [1708] = 839, - [1709] = 935, - [1710] = 839, - [1711] = 857, - [1712] = 941, - [1713] = 862, - [1714] = 839, - [1715] = 855, - [1716] = 863, - [1717] = 861, - [1718] = 862, - [1719] = 935, - [1720] = 838, - [1721] = 839, - [1722] = 862, - [1723] = 838, - [1724] = 862, - [1725] = 935, - [1726] = 839, + [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] = 941, - [1729] = 941, - [1730] = 849, - [1731] = 935, - [1732] = 839, - [1733] = 839, - [1734] = 838, - [1735] = 849, - [1736] = 855, - [1737] = 858, - [1738] = 863, - [1739] = 861, - [1740] = 857, - [1741] = 839, - [1742] = 855, - [1743] = 854, - [1744] = 853, - [1745] = 839, - [1746] = 855, - [1747] = 852, - [1748] = 839, - [1749] = 851, - [1750] = 855, - [1751] = 904, - [1752] = 839, - [1753] = 855, - [1754] = 850, - [1755] = 839, - [1756] = 855, - [1757] = 839, - [1758] = 855, - [1759] = 848, - [1760] = 846, - [1761] = 839, - [1762] = 855, - [1763] = 845, - [1764] = 905, - [1765] = 839, - [1766] = 855, - [1767] = 904, - [1768] = 858, - [1769] = 839, - [1770] = 905, - [1771] = 855, - [1772] = 904, - [1773] = 1773, - [1774] = 862, - [1775] = 839, - [1776] = 855, - [1777] = 838, - [1778] = 862, - [1779] = 845, - [1780] = 838, - [1781] = 849, - [1782] = 839, - [1783] = 849, - [1784] = 855, - [1785] = 839, - [1786] = 855, - [1787] = 858, - [1788] = 839, - [1789] = 855, - [1790] = 839, - [1791] = 863, - [1792] = 855, - [1793] = 863, - [1794] = 839, - [1795] = 861, - [1796] = 855, - [1797] = 839, - [1798] = 855, + [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] = 854, + [1793] = 866, + [1794] = 838, + [1795] = 852, + [1796] = 851, + [1797] = 840, + [1798] = 842, [1799] = 839, - [1800] = 855, - [1801] = 839, - [1802] = 855, - [1803] = 839, - [1804] = 857, - [1805] = 839, - [1806] = 854, - [1807] = 855, - [1808] = 853, - [1809] = 852, + [1800] = 859, + [1801] = 851, + [1802] = 1468, + [1803] = 859, + [1804] = 852, + [1805] = 838, + [1806] = 839, + [1807] = 847, + [1808] = 842, + [1809] = 840, [1810] = 1810, - [1811] = 862, - [1812] = 851, - [1813] = 861, - [1814] = 857, - [1815] = 850, - [1816] = 854, - [1817] = 853, - [1818] = 848, - [1819] = 852, - [1820] = 851, - [1821] = 846, - [1822] = 845, - [1823] = 905, - [1824] = 850, - [1825] = 858, - [1826] = 848, - [1827] = 846, - [1828] = 862, - [1829] = 845, - [1830] = 905, - [1831] = 838, - [1832] = 849, + [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] = 863, - [1835] = 941, - [1836] = 861, - [1837] = 857, - [1838] = 854, - [1839] = 853, - [1840] = 852, - [1841] = 851, - [1842] = 850, + [1834] = 869, + [1835] = 846, + [1836] = 871, + [1837] = 874, + [1838] = 879, + [1839] = 1464, + [1840] = 1462, + [1841] = 847, + [1842] = 849, [1843] = 1843, [1844] = 848, - [1845] = 1393, - [1846] = 846, - [1847] = 1541, - [1848] = 863, - [1849] = 845, - [1850] = 1540, - [1851] = 861, - [1852] = 857, + [1845] = 877, + [1846] = 1461, + [1847] = 841, + [1848] = 1459, + [1849] = 1472, + [1850] = 1459, + [1851] = 845, + [1852] = 853, [1853] = 854, - [1854] = 853, + [1854] = 866, [1855] = 852, - [1856] = 1538, - [1857] = 1522, - [1858] = 905, - [1859] = 1384, + [1856] = 853, + [1857] = 840, + [1858] = 848, + [1859] = 849, [1860] = 851, - [1861] = 850, - [1862] = 858, - [1863] = 905, - [1864] = 840, - [1865] = 838, - [1866] = 849, - [1867] = 1300, - [1868] = 935, - [1869] = 848, - [1870] = 840, - [1871] = 941, - [1872] = 846, - [1873] = 858, - [1874] = 904, - [1875] = 904, - [1876] = 905, - [1877] = 845, - [1878] = 846, - [1879] = 848, - [1880] = 850, - [1881] = 845, - [1882] = 851, - [1883] = 905, - [1884] = 852, - [1885] = 853, - [1886] = 854, + [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] = 857, - [1889] = 858, - [1890] = 861, - [1891] = 863, - [1892] = 849, - [1893] = 838, - [1894] = 905, - [1895] = 845, - [1896] = 846, - [1897] = 848, - [1898] = 863, - [1899] = 850, - [1900] = 851, - [1901] = 852, - [1902] = 862, - [1903] = 838, - [1904] = 849, - [1905] = 853, - [1906] = 854, - [1907] = 857, - [1908] = 861, - [1909] = 862, - [1910] = 863, - [1911] = 941, - [1912] = 858, - [1913] = 849, - [1914] = 838, - [1915] = 861, - [1916] = 857, + [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, [1920] = 1920, [1921] = 1921, - [1922] = 1921, - [1923] = 1920, - [1924] = 1920, - [1925] = 1921, + [1922] = 1920, + [1923] = 1921, + [1924] = 1921, + [1925] = 1920, [1926] = 1926, [1927] = 1927, [1928] = 1928, @@ -7770,12 +7800,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1939] = 1939, [1940] = 1932, [1941] = 1933, - [1942] = 1942, + [1942] = 1935, [1943] = 1943, [1944] = 1944, [1945] = 1945, [1946] = 1946, - [1947] = 1938, + [1947] = 1947, [1948] = 1948, [1949] = 1949, [1950] = 1950, @@ -7789,15 +7819,15 @@ 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, [1965] = 1965, [1966] = 1966, [1967] = 1967, - [1968] = 1943, - [1969] = 1969, + [1968] = 1968, + [1969] = 1943, [1970] = 1970, [1971] = 1971, [1972] = 1972, @@ -7809,7 +7839,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1978] = 1978, [1979] = 1979, [1980] = 1980, - [1981] = 1944, + [1981] = 1981, [1982] = 1982, [1983] = 1983, [1984] = 1984, @@ -7817,17 +7847,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1986] = 1986, [1987] = 1987, [1988] = 1988, - [1989] = 1989, + [1989] = 1945, [1990] = 1990, - [1991] = 1991, - [1992] = 1942, + [1991] = 1944, + [1992] = 1992, [1993] = 1993, [1994] = 1994, [1995] = 1995, [1996] = 1996, [1997] = 1997, [1998] = 1998, - [1999] = 1945, + [1999] = 1999, [2000] = 1946, [2001] = 2001, [2002] = 2002, @@ -7857,146 +7887,146 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2026] = 2026, [2027] = 2027, [2028] = 2028, - [2029] = 1988, - [2030] = 1956, - [2031] = 1948, - [2032] = 1949, - [2033] = 1954, - [2034] = 1960, - [2035] = 1953, - [2036] = 1961, - [2037] = 1983, - [2038] = 1986, - [2039] = 1950, - [2040] = 1998, - [2041] = 1958, - [2042] = 1962, - [2043] = 1963, - [2044] = 1990, - [2045] = 1965, - [2046] = 1971, - [2047] = 1967, - [2048] = 1989, - [2049] = 1972, - [2050] = 1982, - [2051] = 1973, - [2052] = 1975, - [2053] = 1966, - [2054] = 1994, - [2055] = 1993, - [2056] = 1997, - [2057] = 1991, - [2058] = 1987, - [2059] = 1932, - [2060] = 1974, - [2061] = 1951, - [2062] = 1976, - [2063] = 1995, - [2064] = 1957, - [2065] = 1959, - [2066] = 1984, - [2067] = 1977, - [2068] = 1969, - [2069] = 1964, - [2070] = 1996, - [2071] = 1970, - [2072] = 1933, - [2073] = 1978, - [2074] = 1952, - [2075] = 1955, - [2076] = 1985, - [2077] = 1979, - [2078] = 1980, - [2079] = 2079, - [2080] = 2007, - [2081] = 2012, - [2082] = 2021, - [2083] = 2016, - [2084] = 1938, - [2085] = 2085, - [2086] = 2013, - [2087] = 2014, - [2088] = 2002, - [2089] = 2028, - [2090] = 2024, - [2091] = 2020, + [2029] = 1978, + [2030] = 1962, + [2031] = 1984, + [2032] = 1995, + [2033] = 1966, + [2034] = 1975, + [2035] = 1967, + [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] = 1982, + [2066] = 1968, + [2067] = 1994, + [2068] = 1980, + [2069] = 1999, + [2070] = 1985, + [2071] = 1972, + [2072] = 1988, + [2073] = 1976, + [2074] = 1998, + [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] = 2009, - [2095] = 2027, - [2096] = 2004, - [2097] = 2097, - [2098] = 2003, - [2099] = 2022, - [2100] = 2011, - [2101] = 2101, - [2102] = 2102, - [2103] = 2023, - [2104] = 2026, - [2105] = 2017, - [2106] = 2005, - [2107] = 2015, - [2108] = 2019, - [2109] = 2010, - [2110] = 2001, - [2111] = 1946, + [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] = 1944, - [2114] = 1945, - [2115] = 1942, + [2113] = 1945, + [2114] = 1946, + [2115] = 1947, [2116] = 2116, - [2117] = 1949, - [2118] = 1967, - [2119] = 1954, - [2120] = 1971, - [2121] = 1950, - [2122] = 1970, - [2123] = 1955, - [2124] = 1951, - [2125] = 1976, - [2126] = 1962, - [2127] = 1956, - [2128] = 1957, - [2129] = 1952, - [2130] = 1974, - [2131] = 1973, - [2132] = 1972, - [2133] = 1969, - [2134] = 1953, - [2135] = 1998, - [2136] = 1993, - [2137] = 1979, - [2138] = 1980, - [2139] = 1965, - [2140] = 1966, - [2141] = 1975, - [2142] = 1991, - [2143] = 1977, - [2144] = 1982, - [2145] = 1983, - [2146] = 1958, - [2147] = 1994, - [2148] = 1997, - [2149] = 1959, - [2150] = 1963, - [2151] = 1996, + [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] = 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] = 1964, - [2154] = 1995, - [2155] = 1984, - [2156] = 1978, - [2157] = 1986, - [2158] = 1960, - [2159] = 1987, - [2160] = 1948, - [2161] = 1961, - [2162] = 1988, - [2163] = 1985, - [2164] = 1989, - [2165] = 2116, - [2166] = 2166, + [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] = 2079, + [2168] = 2036, [2169] = 2169, [2170] = 2170, [2171] = 2171, @@ -8027,4367 +8057,4367 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2196] = 2196, [2197] = 2197, [2198] = 2198, - [2199] = 2198, - [2200] = 2198, + [2199] = 2197, + [2200] = 2197, [2201] = 2201, - [2202] = 2198, - [2203] = 2201, - [2204] = 2198, - [2205] = 2198, + [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] = 2198, + [2212] = 2212, [2213] = 2213, [2214] = 2214, - [2215] = 2215, + [2215] = 2197, [2216] = 2216, [2217] = 2217, - [2218] = 2208, - [2219] = 2219, + [2218] = 2218, + [2219] = 2212, [2220] = 2220, - [2221] = 2220, - [2222] = 2222, - [2223] = 2223, - [2224] = 2223, + [2221] = 2221, + [2222] = 2221, + [2223] = 2221, + [2224] = 2220, [2225] = 2201, - [2226] = 2223, - [2227] = 2223, - [2228] = 2217, - [2229] = 2222, - [2230] = 2201, + [2226] = 2226, + [2227] = 2221, + [2228] = 2218, + [2229] = 2221, + [2230] = 2226, [2231] = 2201, - [2232] = 2223, - [2233] = 2223, - [2234] = 2234, - [2235] = 2198, - [2236] = 2222, - [2237] = 1920, - [2238] = 2198, - [2239] = 2239, - [2240] = 2198, - [2241] = 2201, - [2242] = 2242, + [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] = 2239, - [2246] = 2217, - [2247] = 2208, - [2248] = 2201, - [2249] = 2222, - [2250] = 2223, - [2251] = 2198, - [2252] = 2252, - [2253] = 2253, - [2254] = 2201, - [2255] = 2201, - [2256] = 2208, - [2257] = 2201, - [2258] = 2201, - [2259] = 2259, - [2260] = 2217, + [2245] = 2245, + [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] = 2221, + [2259] = 2226, + [2260] = 2201, [2261] = 2261, - [2262] = 2262, - [2263] = 2206, - [2264] = 2207, - [2265] = 2265, - [2266] = 2266, - [2267] = 2220, + [2262] = 2201, + [2263] = 2197, + [2264] = 2264, + [2265] = 2206, + [2266] = 2207, + [2267] = 2221, [2268] = 2220, - [2269] = 2266, - [2270] = 2198, - [2271] = 2222, - [2272] = 2223, - [2273] = 2217, - [2274] = 2206, - [2275] = 2208, - [2276] = 2266, - [2277] = 2277, - [2278] = 2266, - [2279] = 2222, - [2280] = 2207, - [2281] = 2265, - [2282] = 2208, - [2283] = 2219, - [2284] = 2213, - [2285] = 2216, - [2286] = 2223, - [2287] = 2223, - [2288] = 2214, - [2289] = 2223, - [2290] = 2222, - [2291] = 2215, - [2292] = 2292, - [2293] = 2217, - [2294] = 2294, - [2295] = 2220, - [2296] = 2211, - [2297] = 2297, - [2298] = 2223, - [2299] = 2207, - [2300] = 2222, - [2301] = 2223, - [2302] = 2209, - [2303] = 2220, - [2304] = 2206, - [2305] = 2208, - [2306] = 2222, - [2307] = 2307, - [2308] = 2277, - [2309] = 2208, - [2310] = 2307, - [2311] = 2220, - [2312] = 2217, + [2269] = 2269, + [2270] = 2226, + [2271] = 2220, + [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] = 2314, - [2315] = 2220, - [2316] = 2316, - [2317] = 2223, - [2318] = 2223, - [2319] = 2217, - [2320] = 2223, - [2321] = 2321, - [2322] = 2220, - [2323] = 2294, - [2324] = 2297, - [2325] = 2198, - [2326] = 2326, - [2327] = 2277, - [2328] = 2223, - [2329] = 2223, - [2330] = 2222, - [2331] = 2331, - [2332] = 2222, - [2333] = 2223, + [2314] = 2301, + [2315] = 2315, + [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] = 2221, + [2333] = 2226, [2334] = 2334, - [2335] = 2335, - [2336] = 2336, - [2337] = 2337, - [2338] = 2220, - [2339] = 2222, - [2340] = 1917, - [2341] = 2220, - [2342] = 2223, - [2343] = 2198, - [2344] = 2223, - [2345] = 2222, - [2346] = 2220, - [2347] = 2277, - [2348] = 2217, - [2349] = 2223, - [2350] = 2220, + [2335] = 2220, + [2336] = 2276, + [2337] = 2221, + [2338] = 2338, + [2339] = 2226, + [2340] = 2340, + [2341] = 2341, + [2342] = 2342, + [2343] = 2226, + [2344] = 1917, + [2345] = 2221, + [2346] = 2221, + [2347] = 2226, + [2348] = 2220, + [2349] = 2220, + [2350] = 2350, [2351] = 2351, - [2352] = 2331, - [2353] = 2223, - [2354] = 2336, + [2352] = 2220, + [2353] = 2221, + [2354] = 2221, [2355] = 2220, - [2356] = 2294, - [2357] = 2223, - [2358] = 2358, + [2356] = 2221, + [2357] = 2197, + [2358] = 2220, [2359] = 2359, - [2360] = 2220, - [2361] = 2222, - [2362] = 2334, - [2363] = 2220, - [2364] = 2223, - [2365] = 2223, - [2366] = 2366, - [2367] = 2223, - [2368] = 2335, - [2369] = 2220, - [2370] = 2198, - [2371] = 2220, - [2372] = 2372, + [2360] = 2221, + [2361] = 2221, + [2362] = 2226, + [2363] = 2197, + [2364] = 2221, + [2365] = 2221, + [2366] = 2342, + [2367] = 2338, + [2368] = 2340, + [2369] = 2341, + [2370] = 2370, + [2371] = 2371, + [2372] = 2220, [2373] = 2220, - [2374] = 2223, - [2375] = 2223, + [2374] = 2374, + [2375] = 2375, [2376] = 2376, - [2377] = 2294, - [2378] = 2223, - [2379] = 2292, - [2380] = 2220, - [2381] = 2222, - [2382] = 2223, - [2383] = 2198, + [2377] = 2221, + [2378] = 2220, + [2379] = 2221, + [2380] = 2226, + [2381] = 2220, + [2382] = 2286, + [2383] = 2289, [2384] = 2384, - [2385] = 2385, - [2386] = 2386, - [2387] = 2223, - [2388] = 2217, - [2389] = 2219, - [2390] = 2222, - [2391] = 2391, - [2392] = 2223, - [2393] = 2198, - [2394] = 2222, - [2395] = 2223, - [2396] = 2198, - [2397] = 2397, - [2398] = 2391, - [2399] = 2399, - [2400] = 2206, - [2401] = 2198, + [2385] = 2289, + [2386] = 2221, + [2387] = 2220, + [2388] = 2197, + [2389] = 2389, + [2390] = 2389, + [2391] = 2221, + [2392] = 2392, + [2393] = 2197, + [2394] = 2217, + [2395] = 2218, + [2396] = 2221, + [2397] = 2197, + [2398] = 2226, + [2399] = 2206, + [2400] = 2400, + [2401] = 2226, [2402] = 2207, [2403] = 2403, - [2404] = 2404, - [2405] = 2215, - [2406] = 2213, - [2407] = 2266, - [2408] = 2408, - [2409] = 2223, - [2410] = 2410, - [2411] = 2411, - [2412] = 2209, - [2413] = 2266, - [2414] = 2198, - [2415] = 2198, - [2416] = 2214, - [2417] = 2417, - [2418] = 2223, - [2419] = 2419, - [2420] = 2420, - [2421] = 2417, - [2422] = 2223, - [2423] = 2216, - [2424] = 2222, - [2425] = 2222, - [2426] = 2222, - [2427] = 2222, - [2428] = 2222, - [2429] = 2222, + [2404] = 2221, + [2405] = 2405, + [2406] = 2226, + [2407] = 2407, + [2408] = 2226, + [2409] = 2409, + [2410] = 2226, + [2411] = 2226, + [2412] = 2221, + [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] = 2216, + [2427] = 2221, + [2428] = 2226, + [2429] = 2208, [2430] = 2430, - [2431] = 2223, - [2432] = 2222, - [2433] = 2211, - [2434] = 2222, - [2435] = 2266, - [2436] = 2265, - [2437] = 2198, - [2438] = 2223, - [2439] = 2439, - [2440] = 2440, - [2441] = 2266, - [2442] = 2223, - [2443] = 2443, - [2444] = 2223, + [2431] = 2431, + [2432] = 2221, + [2433] = 2221, + [2434] = 2213, + [2435] = 2264, + [2436] = 2264, + [2437] = 2197, + [2438] = 2438, + [2439] = 2438, + [2440] = 2221, + [2441] = 2221, + [2442] = 2442, + [2443] = 2264, + [2444] = 2444, [2445] = 2445, - [2446] = 2403, - [2447] = 2447, - [2448] = 2448, - [2449] = 2223, - [2450] = 2265, - [2451] = 2451, + [2446] = 2446, + [2447] = 2197, + [2448] = 2416, + [2449] = 2221, + [2450] = 2450, + [2451] = 2226, [2452] = 2452, - [2453] = 2453, - [2454] = 2453, - [2455] = 2455, - [2456] = 2198, - [2457] = 2198, - [2458] = 2198, + [2453] = 2197, + [2454] = 2454, + [2455] = 2197, + [2456] = 2197, + [2457] = 2457, + [2458] = 2458, [2459] = 2459, [2460] = 2460, - [2461] = 2198, - [2462] = 2453, - [2463] = 2198, + [2461] = 2197, + [2462] = 2197, + [2463] = 2197, [2464] = 2464, - [2465] = 2465, - [2466] = 2219, - [2467] = 2198, - [2468] = 2198, + [2465] = 2197, + [2466] = 2466, + [2467] = 2464, + [2468] = 2217, [2469] = 2469, - [2470] = 2470, + [2470] = 2197, [2471] = 2471, - [2472] = 2198, - [2473] = 2473, - [2474] = 2209, + [2472] = 2472, + [2473] = 2464, + [2474] = 2210, [2475] = 2475, - [2476] = 2265, - [2477] = 2266, - [2478] = 2266, - [2479] = 2266, - [2480] = 2480, - [2481] = 2481, - [2482] = 2206, - [2483] = 2266, - [2484] = 2207, - [2485] = 2266, - [2486] = 2265, - [2487] = 2487, - [2488] = 2265, + [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] = 2266, - [2491] = 2491, - [2492] = 2265, - [2493] = 2266, - [2494] = 2265, - [2495] = 2266, - [2496] = 2496, - [2497] = 2497, - [2498] = 2265, - [2499] = 2265, - [2500] = 2266, - [2501] = 2266, - [2502] = 2211, - [2503] = 2503, - [2504] = 2216, - [2505] = 2266, - [2506] = 2506, - [2507] = 2266, - [2508] = 2508, - [2509] = 2266, - [2510] = 2265, - [2511] = 2511, - [2512] = 2213, - [2513] = 2265, - [2514] = 2266, - [2515] = 2215, - [2516] = 2214, - [2517] = 2266, - [2518] = 2198, - [2519] = 2266, - [2520] = 2497, - [2521] = 2521, - [2522] = 2265, - [2523] = 2265, - [2524] = 2198, + [2490] = 2490, + [2491] = 2264, + [2492] = 2269, + [2493] = 2493, + [2494] = 2494, + [2495] = 2264, + [2496] = 2214, + [2497] = 2264, + [2498] = 2264, + [2499] = 2499, + [2500] = 2264, + [2501] = 2269, + [2502] = 2502, + [2503] = 2264, + [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] = 2519, + [2520] = 2269, + [2521] = 2269, + [2522] = 2502, + [2523] = 2484, + [2524] = 2264, [2525] = 2525, [2526] = 2526, - [2527] = 2527, - [2528] = 2297, - [2529] = 2198, - [2530] = 2530, - [2531] = 2198, - [2532] = 2532, - [2533] = 2266, - [2534] = 2307, - [2535] = 2266, + [2527] = 2489, + [2528] = 2264, + [2529] = 2264, + [2530] = 2269, + [2531] = 2301, + [2532] = 2264, + [2533] = 2533, + [2534] = 2298, + [2535] = 2197, [2536] = 2536, - [2537] = 2266, - [2538] = 2538, - [2539] = 2539, - [2540] = 2480, - [2541] = 2265, - [2542] = 2266, - [2543] = 2543, - [2544] = 2491, - [2545] = 2265, - [2546] = 2265, - [2547] = 2266, - [2548] = 2307, - [2549] = 2489, - [2550] = 2266, - [2551] = 2266, - [2552] = 2552, - [2553] = 2553, - [2554] = 2198, - [2555] = 2555, - [2556] = 2265, - [2557] = 2198, - [2558] = 2558, - [2559] = 2266, - [2560] = 2297, - [2561] = 2481, - [2562] = 2266, - [2563] = 2563, + [2537] = 2264, + [2538] = 2264, + [2539] = 2269, + [2540] = 2197, + [2541] = 2264, + [2542] = 2542, + [2543] = 2264, + [2544] = 2197, + [2545] = 2545, + [2546] = 2301, + [2547] = 2269, + [2548] = 2548, + [2549] = 2264, + [2550] = 2298, + [2551] = 2551, + [2552] = 2493, + [2553] = 2264, + [2554] = 2264, + [2555] = 2269, + [2556] = 2264, + [2557] = 2482, + [2558] = 2269, + [2559] = 2197, + [2560] = 2560, + [2561] = 2505, + [2562] = 2264, + [2563] = 2264, [2564] = 2564, - [2565] = 2266, - [2566] = 2558, - [2567] = 2266, - [2568] = 2506, - [2569] = 2569, - [2570] = 2265, - [2571] = 2475, - [2572] = 2266, - [2573] = 2266, - [2574] = 2511, - [2575] = 2266, - [2576] = 2487, - [2577] = 2265, + [2565] = 2565, + [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] = 2580, - [2581] = 2581, - [2582] = 2496, - [2583] = 2583, - [2584] = 2584, - [2585] = 2297, + [2580] = 2578, + [2581] = 2579, + [2582] = 2579, + [2583] = 2315, + [2584] = 2298, + [2585] = 2577, [2586] = 2586, - [2587] = 2307, - [2588] = 2588, - [2589] = 2584, - [2590] = 2588, - [2591] = 2591, - [2592] = 2307, - [2593] = 2261, - [2594] = 2588, - [2595] = 2326, - [2596] = 2397, - [2597] = 2297, - [2598] = 2583, + [2587] = 2587, + [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] = 2591, - [2601] = 2586, - [2602] = 2584, - [2603] = 2397, - [2604] = 2586, - [2605] = 2583, - [2606] = 2588, - [2607] = 2591, - [2608] = 2583, - [2609] = 2591, - [2610] = 2584, - [2611] = 2307, - [2612] = 2612, - [2613] = 2613, - [2614] = 2614, - [2615] = 2615, - [2616] = 2331, - [2617] = 2617, - [2618] = 2334, - [2619] = 2619, - [2620] = 2335, - [2621] = 2621, - [2622] = 2336, - [2623] = 2297, - [2624] = 2307, - [2625] = 2625, - [2626] = 2626, - [2627] = 2627, - [2628] = 2628, - [2629] = 2629, - [2630] = 2630, - [2631] = 2631, - [2632] = 2632, - [2633] = 2633, - [2634] = 2634, - [2635] = 2635, - [2636] = 2399, - [2637] = 2297, - [2638] = 2336, - [2639] = 2335, - [2640] = 2640, - [2641] = 2641, - [2642] = 2307, - [2643] = 2334, - [2644] = 2644, - [2645] = 2331, - [2646] = 2646, - [2647] = 2647, - [2648] = 2648, - [2649] = 2649, - [2650] = 2297, - [2651] = 2335, - [2652] = 2399, - [2653] = 2307, - [2654] = 1986, - [2655] = 2297, - [2656] = 2297, - [2657] = 2307, - [2658] = 2307, - [2659] = 2470, - [2660] = 2615, - [2661] = 2612, - [2662] = 2613, - [2663] = 2640, - [2664] = 2297, - [2665] = 2619, - [2666] = 2625, - [2667] = 2307, - [2668] = 2297, - [2669] = 2621, - [2670] = 2331, - [2671] = 2647, - [2672] = 2297, - [2673] = 2459, - [2674] = 2626, - [2675] = 2297, - [2676] = 2334, - [2677] = 2648, - [2678] = 2307, - [2679] = 2336, - [2680] = 2646, - [2681] = 2297, - [2682] = 2307, - [2683] = 2632, - [2684] = 2307, - [2685] = 1987, - [2686] = 2336, - [2687] = 2335, - [2688] = 2334, - [2689] = 2627, - [2690] = 2614, - [2691] = 2331, - [2692] = 2644, - [2693] = 2641, - [2694] = 2635, - [2695] = 2297, - [2696] = 2634, - [2697] = 2630, - [2698] = 2261, - [2699] = 2633, - [2700] = 2649, - [2701] = 2307, - [2702] = 2628, - [2703] = 1956, - [2704] = 2704, - [2705] = 2628, - [2706] = 2615, - [2707] = 2331, - [2708] = 2708, - [2709] = 2453, - [2710] = 2612, - [2711] = 2649, - [2712] = 2613, - [2713] = 2640, - [2714] = 2629, - [2715] = 2634, - [2716] = 2633, - [2717] = 2635, - [2718] = 2334, - [2719] = 2621, - [2720] = 2632, + [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] = 2654, + [2655] = 2206, + [2656] = 2341, + [2657] = 2218, + [2658] = 2658, + [2659] = 2659, + [2660] = 2342, + [2661] = 2340, + [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] = 2336, - [2724] = 2621, - [2725] = 2627, - [2726] = 2419, - [2727] = 2331, - [2728] = 2619, - [2729] = 2630, - [2730] = 2627, - [2731] = 2455, - [2732] = 2334, - [2733] = 2219, - [2734] = 2617, - [2735] = 2335, - [2736] = 2206, + [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] = 2614, - [2739] = 2641, - [2740] = 2207, + [2738] = 2370, + [2739] = 2739, + [2740] = 2458, [2741] = 2741, - [2742] = 2626, + [2742] = 2742, [2743] = 2743, [2744] = 2744, - [2745] = 2628, - [2746] = 2207, - [2747] = 2649, - [2748] = 2336, - [2749] = 2626, - [2750] = 2614, - [2751] = 2648, - [2752] = 2646, - [2753] = 2207, - [2754] = 2647, - [2755] = 2206, - [2756] = 2644, - [2757] = 2615, - [2758] = 2625, - [2759] = 2633, - [2760] = 2634, - [2761] = 2217, - [2762] = 2635, - [2763] = 2411, - [2764] = 2453, - [2765] = 2335, - [2766] = 2632, - [2767] = 2331, - [2768] = 2612, - [2769] = 2334, - [2770] = 2335, - [2771] = 2613, - [2772] = 2640, - [2773] = 2644, - [2774] = 2336, - [2775] = 2629, - [2776] = 2646, - [2777] = 2630, - [2778] = 2619, - [2779] = 2453, - [2780] = 2648, - [2781] = 2625, - [2782] = 2782, - [2783] = 2641, - [2784] = 2471, - [2785] = 2617, - [2786] = 2786, - [2787] = 2206, - [2788] = 2219, - [2789] = 2010, - [2790] = 2790, + [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] = 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] = 2497, - [2793] = 2385, - [2794] = 2028, - [2795] = 2633, - [2796] = 2796, - [2797] = 2335, - [2798] = 2798, - [2799] = 2214, - [2800] = 2634, - [2801] = 2336, - [2802] = 2215, - [2803] = 2633, - [2804] = 2213, - [2805] = 2334, - [2806] = 2806, - [2807] = 2647, - [2808] = 2335, - [2809] = 2334, - [2810] = 2219, - [2811] = 2209, - [2812] = 2812, - [2813] = 2331, - [2814] = 2814, + [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] = 2024, + [2812] = 2403, + [2813] = 2813, + [2814] = 2023, [2815] = 2815, - [2816] = 2506, - [2817] = 2632, - [2818] = 2216, - [2819] = 2211, + [2816] = 2206, + [2817] = 2817, + [2818] = 2818, + [2819] = 2018, [2820] = 2820, - [2821] = 2615, - [2822] = 2511, - [2823] = 2612, + [2821] = 2821, + [2822] = 2822, + [2823] = 2823, [2824] = 2824, [2825] = 2825, - [2826] = 2331, - [2827] = 2827, - [2828] = 2828, + [2826] = 2016, + [2827] = 2214, + [2828] = 2022, [2829] = 2829, - [2830] = 2331, - [2831] = 2641, - [2832] = 2625, - [2833] = 2619, - [2834] = 2640, - [2835] = 2613, - [2836] = 2612, - [2837] = 2615, - [2838] = 2644, - [2839] = 2646, - [2840] = 2648, - [2841] = 2841, - [2842] = 2842, - [2843] = 1946, - [2844] = 2336, - [2845] = 2404, + [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] = 2020, - [2848] = 2848, - [2849] = 2849, + [2847] = 2208, + [2848] = 2338, + [2849] = 2490, [2850] = 2850, - [2851] = 2453, - [2852] = 2634, - [2853] = 2627, - [2854] = 2854, - [2855] = 2855, - [2856] = 2856, - [2857] = 2635, - [2858] = 2613, - [2859] = 2621, - [2860] = 2012, - [2861] = 2014, - [2862] = 2862, - [2863] = 2640, - [2864] = 2619, + [2851] = 2213, + [2852] = 2340, + [2853] = 2853, + [2854] = 2338, + [2855] = 2341, + [2856] = 2452, + [2857] = 2375, + [2858] = 2442, + [2859] = 2494, + [2860] = 2340, + [2861] = 2341, + [2862] = 2493, + [2863] = 2863, + [2864] = 2342, [2865] = 2865, - [2866] = 2206, - [2867] = 2635, + [2866] = 2342, + [2867] = 2867, [2868] = 2868, - [2869] = 2207, - [2870] = 2439, - [2871] = 2336, + [2869] = 2006, + [2870] = 2870, + [2871] = 2871, [2872] = 2872, - [2873] = 2641, - [2874] = 2335, - [2875] = 2334, - [2876] = 2625, + [2873] = 2873, + [2874] = 2007, + [2875] = 2875, + [2876] = 2876, [2877] = 2877, - [2878] = 2878, + [2878] = 2499, [2879] = 2879, - [2880] = 2626, - [2881] = 2632, + [2880] = 2880, + [2881] = 2502, [2882] = 2882, - [2883] = 2883, - [2884] = 2496, - [2885] = 2491, - [2886] = 2614, - [2887] = 2331, - [2888] = 2888, + [2883] = 2505, + [2884] = 2009, + [2885] = 2504, + [2886] = 2886, + [2887] = 2010, + [2888] = 2340, [2889] = 2889, [2890] = 2890, [2891] = 2891, [2892] = 2892, [2893] = 2893, - [2894] = 2894, - [2895] = 2018, - [2896] = 2628, - [2897] = 2206, - [2898] = 2630, + [2894] = 2338, + [2895] = 2895, + [2896] = 2896, + [2897] = 2897, + [2898] = 2898, [2899] = 2899, - [2900] = 2022, - [2901] = 2489, + [2900] = 2341, + [2901] = 2340, [2902] = 2902, - [2903] = 2630, - [2904] = 2644, - [2905] = 2617, - [2906] = 2334, - [2907] = 2207, + [2903] = 2903, + [2904] = 2904, + [2905] = 2905, + [2906] = 2482, + [2907] = 2019, [2908] = 2908, [2909] = 2909, - [2910] = 2336, - [2911] = 2335, - [2912] = 2912, - [2913] = 2913, - [2914] = 2914, - [2915] = 2335, - [2916] = 2916, - [2917] = 2629, - [2918] = 2487, - [2919] = 2334, - [2920] = 2920, - [2921] = 2646, + [2910] = 2910, + [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] = 2002, - [2925] = 2331, - [2926] = 2376, + [2923] = 2493, + [2924] = 2494, + [2925] = 2502, + [2926] = 2505, [2927] = 2927, - [2928] = 2928, - [2929] = 2628, - [2930] = 2626, - [2931] = 2648, - [2932] = 2627, - [2933] = 2351, - [2934] = 2934, - [2935] = 2475, - [2936] = 2936, + [2928] = 2460, + [2929] = 2210, + [2930] = 2216, + [2931] = 2457, + [2932] = 2484, + [2933] = 2499, + [2934] = 2477, + [2935] = 2454, + [2936] = 2211, [2937] = 2937, - [2938] = 2614, - [2939] = 2939, - [2940] = 2940, - [2941] = 2336, - [2942] = 2015, - [2943] = 2335, + [2938] = 2208, + [2939] = 2469, + [2940] = 2865, + [2941] = 2490, + [2942] = 2482, + [2943] = 2466, [2944] = 2944, [2945] = 2945, - [2946] = 2334, - [2947] = 2481, + [2946] = 2946, + [2947] = 2947, [2948] = 2948, - [2949] = 2949, + [2949] = 2464, [2950] = 2950, - [2951] = 2480, - [2952] = 2952, - [2953] = 2331, - [2954] = 2336, + [2951] = 2951, + [2952] = 2464, + [2953] = 2953, + [2954] = 2954, [2955] = 2955, - [2956] = 2956, + [2956] = 2464, [2957] = 2957, - [2958] = 2958, - [2959] = 2959, - [2960] = 2336, + [2958] = 2464, + [2959] = 2413, + [2960] = 2960, [2961] = 2961, - [2962] = 2962, - [2963] = 2335, - [2964] = 2334, + [2962] = 2464, + [2963] = 2963, + [2964] = 2964, [2965] = 2965, [2966] = 2966, - [2967] = 2384, - [2968] = 2649, + [2967] = 2967, + [2968] = 2968, [2969] = 2969, - [2970] = 2970, + [2970] = 2464, [2971] = 2971, - [2972] = 2972, + [2972] = 2438, [2973] = 2973, [2974] = 2974, - [2975] = 2503, - [2976] = 2027, - [2977] = 2214, - [2978] = 2649, - [2979] = 2453, - [2980] = 2980, - [2981] = 2007, - [2982] = 2017, - [2983] = 2359, - [2984] = 2215, - [2985] = 2213, - [2986] = 2372, - [2987] = 2408, - [2988] = 2988, - [2989] = 2366, - [2990] = 2990, - [2991] = 2621, - [2992] = 2209, - [2993] = 2116, - [2994] = 2994, - [2995] = 2403, - [2996] = 2996, - [2997] = 2997, - [2998] = 2331, - [2999] = 2386, - [3000] = 2016, - [3001] = 2001, - [3002] = 2023, - [3003] = 2024, - [3004] = 2453, - [3005] = 2445, - [3006] = 2403, - [3007] = 3007, + [2975] = 2975, + [2976] = 2976, + [2977] = 2405, + [2978] = 2978, + [2979] = 2493, + [2980] = 2971, + [2981] = 2464, + [2982] = 2964, + [2983] = 2953, + [2984] = 2974, + [2985] = 2985, + [2986] = 2973, + [2987] = 2987, + [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] = 2447, - [3010] = 2451, - [3011] = 2452, - [3012] = 2455, - [3013] = 2003, + [3009] = 3009, + [3010] = 3010, + [3011] = 3011, + [3012] = 2976, + [3013] = 3013, [3014] = 3014, [3015] = 3015, - [3016] = 2430, - [3017] = 3017, - [3018] = 3018, - [3019] = 2443, - [3020] = 2503, + [3016] = 2494, + [3017] = 2457, + [3018] = 2505, + [3019] = 2484, + [3020] = 2966, [3021] = 3021, - [3022] = 3022, + [3022] = 2960, [3023] = 3023, - [3024] = 2471, - [3025] = 2011, - [3026] = 2448, - [3027] = 3027, - [3028] = 2013, - [3029] = 2358, - [3030] = 3030, - [3031] = 2216, - [3032] = 3032, - [3033] = 3033, - [3034] = 2440, - [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] = 2410, - [3039] = 3039, - [3040] = 3040, - [3041] = 3041, - [3042] = 3042, - [3043] = 3043, - [3044] = 2211, - [3045] = 3045, - [3046] = 2336, - [3047] = 2335, - [3048] = 2334, - [3049] = 2420, - [3050] = 3050, - [3051] = 2508, - [3052] = 3052, - [3053] = 3053, - [3054] = 2019, - [3055] = 3055, - [3056] = 1944, - [3057] = 3057, - [3058] = 3058, - [3059] = 3059, - [3060] = 2331, - [3061] = 2632, - [3062] = 2632, - [3063] = 3063, - [3064] = 2473, - [3065] = 2626, - [3066] = 2497, - [3067] = 2627, - [3068] = 2508, - [3069] = 2628, - [3070] = 2621, - [3071] = 2491, - [3072] = 2613, - [3073] = 2829, - [3074] = 2496, - [3075] = 2614, - [3076] = 2481, - [3077] = 2460, - [3078] = 2649, - [3079] = 2614, - [3080] = 2627, - [3081] = 2619, - [3082] = 2649, - [3083] = 2615, - [3084] = 2475, - [3085] = 2626, - [3086] = 2209, - [3087] = 2635, - [3088] = 2216, - [3089] = 2612, - [3090] = 2480, - [3091] = 2630, - [3092] = 2625, - [3093] = 2629, - [3094] = 2634, - [3095] = 2647, - [3096] = 3096, - [3097] = 2633, - [3098] = 2635, - [3099] = 2489, - [3100] = 2469, - [3101] = 2633, - [3102] = 2640, - [3103] = 3103, - [3104] = 2634, - [3105] = 2641, - [3106] = 2619, - [3107] = 2617, - [3108] = 2214, - [3109] = 3109, - [3110] = 2459, - [3111] = 2625, - [3112] = 2630, - [3113] = 2648, - [3114] = 2470, - [3115] = 2628, - [3116] = 2640, - [3117] = 2613, - [3118] = 2612, - [3119] = 2615, - [3120] = 2644, - [3121] = 2646, - [3122] = 2648, - [3123] = 2213, - [3124] = 2215, - [3125] = 2621, - [3126] = 2641, - [3127] = 2487, - [3128] = 2211, - [3129] = 2464, - [3130] = 2644, - [3131] = 2646, - [3132] = 2511, - [3133] = 2506, - [3134] = 2612, - [3135] = 2453, - [3136] = 2632, - [3137] = 2619, - [3138] = 2615, - [3139] = 2453, - [3140] = 2453, - [3141] = 2403, - [3142] = 2419, - [3143] = 2649, - [3144] = 2646, - [3145] = 2614, - [3146] = 2627, - [3147] = 3147, - [3148] = 2644, - [3149] = 3149, - [3150] = 2640, - [3151] = 2626, - [3152] = 2629, - [3153] = 2453, - [3154] = 2630, - [3155] = 2635, - [3156] = 2641, - [3157] = 2453, - [3158] = 2634, - [3159] = 2625, - [3160] = 2633, - [3161] = 2617, - [3162] = 2621, - [3163] = 3163, - [3164] = 2613, - [3165] = 2648, - [3166] = 2628, - [3167] = 2411, - [3168] = 2453, - [3169] = 3169, - [3170] = 2625, - [3171] = 2627, - [3172] = 2640, - [3173] = 2619, - [3174] = 2625, - [3175] = 2632, - [3176] = 2641, - [3177] = 2453, - [3178] = 2632, - [3179] = 3179, - [3180] = 2634, - [3181] = 2649, - [3182] = 3182, - [3183] = 2634, - [3184] = 2633, - [3185] = 2648, + [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] = 2627, - [3188] = 2633, - [3189] = 2453, - [3190] = 2646, - [3191] = 2632, - [3192] = 2629, - [3193] = 3193, + [3187] = 3187, + [3188] = 2444, + [3189] = 2445, + [3190] = 2446, + [3191] = 2359, + [3192] = 3192, + [3193] = 2450, [3194] = 3194, - [3195] = 2646, - [3196] = 2647, - [3197] = 2617, - [3198] = 2630, - [3199] = 2635, - [3200] = 2641, - [3201] = 2612, - [3202] = 3202, + [3195] = 3195, + [3196] = 3196, + [3197] = 2953, + [3198] = 3198, + [3199] = 2392, + [3200] = 3200, + [3201] = 3201, + [3202] = 2960, [3203] = 3203, - [3204] = 2626, - [3205] = 2453, - [3206] = 2628, - [3207] = 2615, - [3208] = 2625, - [3209] = 2453, - [3210] = 2644, - [3211] = 3211, - [3212] = 2644, - [3213] = 2626, - [3214] = 2614, - [3215] = 2614, - [3216] = 2633, - [3217] = 2648, - [3218] = 2634, - [3219] = 2614, - [3220] = 2626, - [3221] = 2453, - [3222] = 2615, - [3223] = 3223, - [3224] = 2628, - [3225] = 2647, - [3226] = 2453, - [3227] = 3227, - [3228] = 2621, - [3229] = 2635, - [3230] = 2621, - [3231] = 2649, - [3232] = 2459, - [3233] = 3233, + [3204] = 2974, + [3205] = 3205, + [3206] = 2971, + [3207] = 3207, + [3208] = 3208, + [3209] = 3209, + [3210] = 2213, + [3211] = 2951, + [3212] = 2208, + [3213] = 3213, + [3214] = 2216, + [3215] = 3215, + [3216] = 3216, + [3217] = 2211, + [3218] = 3218, + [3219] = 3219, + [3220] = 3220, + [3221] = 3221, + [3222] = 2967, + [3223] = 2957, + [3224] = 2954, + [3225] = 2966, + [3226] = 3226, + [3227] = 2978, + [3228] = 2948, + [3229] = 3229, + [3230] = 2957, + [3231] = 3231, + [3232] = 3232, + [3233] = 2971, [3234] = 3234, - [3235] = 2453, - [3236] = 2648, - [3237] = 2646, - [3238] = 2630, - [3239] = 2649, - [3240] = 2644, - [3241] = 2615, - [3242] = 2619, - [3243] = 2612, - [3244] = 2627, - [3245] = 3245, - [3246] = 2628, - [3247] = 3247, - [3248] = 2612, - [3249] = 2640, - [3250] = 2613, - [3251] = 2630, - [3252] = 2621, + [3235] = 2450, + [3236] = 2359, + [3237] = 2446, + [3238] = 2445, + [3239] = 2444, + [3240] = 3065, + [3241] = 3241, + [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] = 2470, - [3255] = 2641, - [3256] = 2613, + [3254] = 2370, + [3255] = 3255, + [3256] = 3256, [3257] = 3257, - [3258] = 2619, - [3259] = 2613, - [3260] = 2640, - [3261] = 2635, - [3262] = 2403, - [3263] = 2453, - [3264] = 2644, - [3265] = 2640, - [3266] = 2633, - [3267] = 2635, - [3268] = 2614, - [3269] = 2613, - [3270] = 2646, - [3271] = 2612, - [3272] = 2632, - [3273] = 2635, - [3274] = 2648, - [3275] = 2647, - [3276] = 2627, - [3277] = 2634, - [3278] = 1944, - [3279] = 2625, - [3280] = 2632, + [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] = 2646, - [3283] = 2630, - [3284] = 2649, - [3285] = 1946, - [3286] = 2628, - [3287] = 2641, - [3288] = 2630, - [3289] = 2491, - [3290] = 2497, - [3291] = 2649, - [3292] = 2641, - [3293] = 2647, - [3294] = 2641, - [3295] = 2633, - [3296] = 2634, - [3297] = 2615, - [3298] = 2644, - [3299] = 2625, - [3300] = 2625, - [3301] = 2612, - [3302] = 2633, - [3303] = 2634, - [3304] = 2626, - [3305] = 2619, - [3306] = 2628, - [3307] = 2640, - [3308] = 2647, - [3309] = 2648, - [3310] = 2613, - [3311] = 2629, - [3312] = 2619, - [3313] = 2627, - [3314] = 2621, - [3315] = 2628, + [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] = 3294, + [3295] = 3295, + [3296] = 3296, + [3297] = 3297, + [3298] = 3298, + [3299] = 3299, + [3300] = 3300, + [3301] = 2954, + [3302] = 3302, + [3303] = 3303, + [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] = 2615, - [3318] = 2612, - [3319] = 2613, - [3320] = 2626, - [3321] = 2614, - [3322] = 2615, - [3323] = 2621, - [3324] = 2635, - [3325] = 2614, - [3326] = 2626, - [3327] = 2649, - [3328] = 2630, - [3329] = 2644, - [3330] = 2627, - [3331] = 2621, - [3332] = 2646, - [3333] = 2648, - [3334] = 2640, - [3335] = 2619, - [3336] = 2506, - [3337] = 2475, - [3338] = 2511, - [3339] = 2617, + [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] = 2632, - [3342] = 2648, - [3343] = 2632, - [3344] = 2641, - [3345] = 3345, - [3346] = 2619, - [3347] = 3096, - [3348] = 2621, - [3349] = 2487, - [3350] = 2489, - [3351] = 2632, - [3352] = 2641, - [3353] = 2644, - [3354] = 2646, - [3355] = 2648, - [3356] = 2633, - [3357] = 2634, - [3358] = 2621, - [3359] = 2496, - [3360] = 3345, - [3361] = 2508, - [3362] = 2481, - [3363] = 2633, - [3364] = 2634, - [3365] = 2635, - [3366] = 2630, - [3367] = 2503, - [3368] = 2480, - [3369] = 2627, - [3370] = 2649, - [3371] = 2617, - [3372] = 2613, - [3373] = 2625, - [3374] = 2629, - [3375] = 2640, - [3376] = 3345, - [3377] = 3345, - [3378] = 2632, - [3379] = 2625, - [3380] = 2612, - [3381] = 2619, - [3382] = 2640, - [3383] = 2613, - [3384] = 2615, - [3385] = 2612, - [3386] = 2615, - [3387] = 2614, - [3388] = 2644, - [3389] = 2646, - [3390] = 2628, - [3391] = 2626, - [3392] = 3392, - [3393] = 2206, - [3394] = 2207, - [3395] = 2628, - [3396] = 3396, - [3397] = 3397, - [3398] = 2648, - [3399] = 2626, - [3400] = 3400, - [3401] = 3401, - [3402] = 2614, - [3403] = 2217, - [3404] = 2630, - [3405] = 2629, - [3406] = 2617, - [3407] = 3407, - [3408] = 2635, - [3409] = 2627, - [3410] = 2829, - [3411] = 2649, - [3412] = 2219, - [3413] = 2641, - [3414] = 2644, - [3415] = 2646, - [3416] = 2627, - [3417] = 2648, - [3418] = 2614, - [3419] = 2626, - [3420] = 2628, - [3421] = 2630, - [3422] = 2621, - [3423] = 2634, - [3424] = 2649, - [3425] = 2633, - [3426] = 2633, - [3427] = 2630, - [3428] = 2635, - [3429] = 2646, - [3430] = 2644, - [3431] = 2641, - [3432] = 2628, - [3433] = 2626, - [3434] = 2614, - [3435] = 2615, - [3436] = 2612, - [3437] = 2613, - [3438] = 2640, - [3439] = 3345, - [3440] = 2619, - [3441] = 2625, - [3442] = 2629, - [3443] = 2632, - [3444] = 2649, - [3445] = 2647, - [3446] = 2621, - [3447] = 2635, - [3448] = 2627, - [3449] = 3449, - [3450] = 2647, - [3451] = 2647, - [3452] = 2617, - [3453] = 2634, - [3454] = 2613, - [3455] = 3345, - [3456] = 2612, - [3457] = 2615, - [3458] = 2625, - [3459] = 2619, - [3460] = 2640, - [3461] = 2613, - [3462] = 2628, - [3463] = 2447, - [3464] = 2358, - [3465] = 2445, - [3466] = 2649, - [3467] = 2633, - [3468] = 2621, - [3469] = 2641, - [3470] = 2614, - [3471] = 2644, - [3472] = 2646, - [3473] = 2632, - [3474] = 2648, - [3475] = 2626, - [3476] = 3476, - [3477] = 2627, - [3478] = 2626, - [3479] = 2452, - [3480] = 2629, - [3481] = 2648, - [3482] = 2634, - [3483] = 2646, + [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] = 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] = 2644, - [3486] = 2615, - [3487] = 2627, - [3488] = 2635, - [3489] = 2443, - [3490] = 2617, - [3491] = 2647, - [3492] = 2630, - [3493] = 3493, - [3494] = 2635, - [3495] = 2633, - [3496] = 2634, - [3497] = 2629, - [3498] = 2648, - [3499] = 2646, - [3500] = 2644, - [3501] = 2617, - [3502] = 2635, - [3503] = 2617, - [3504] = 2647, - [3505] = 2641, - [3506] = 2621, - [3507] = 2641, - [3508] = 2633, - [3509] = 2627, - [3510] = 2644, - [3511] = 2646, - [3512] = 2629, - [3513] = 2647, - [3514] = 2612, - [3515] = 2613, - [3516] = 2649, - [3517] = 2632, - [3518] = 2625, - [3519] = 2619, - [3520] = 3396, - [3521] = 2630, - [3522] = 2640, - [3523] = 2613, - [3524] = 2612, - [3525] = 2648, - [3526] = 2615, - [3527] = 2635, - [3528] = 2634, - [3529] = 3529, - [3530] = 2614, - [3531] = 2626, - [3532] = 2621, - [3533] = 2399, - [3534] = 2640, - [3535] = 2626, - [3536] = 2619, - [3537] = 2628, - [3538] = 2633, - [3539] = 3539, - [3540] = 2386, - [3541] = 2366, - [3542] = 2372, - [3543] = 2649, - [3544] = 2410, - [3545] = 2351, - [3546] = 2615, - [3547] = 2648, - [3548] = 2625, - [3549] = 2641, + [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] = 2646, - [3552] = 2644, - [3553] = 2615, - [3554] = 2612, - [3555] = 2628, - [3556] = 2632, - [3557] = 2613, - [3558] = 2640, - [3559] = 2621, - [3560] = 2619, - [3561] = 2635, - [3562] = 2625, - [3563] = 2641, - [3564] = 2612, - [3565] = 2635, - [3566] = 2613, - [3567] = 2621, - [3568] = 2430, - [3569] = 3569, - [3570] = 2627, - [3571] = 2649, - [3572] = 2632, - [3573] = 3573, - [3574] = 2621, - [3575] = 2627, - [3576] = 3576, - [3577] = 2630, - [3578] = 2646, - [3579] = 2634, - [3580] = 2633, - [3581] = 2635, - [3582] = 2630, - [3583] = 2634, - [3584] = 2627, - [3585] = 2633, - [3586] = 2633, - [3587] = 2634, - [3588] = 2635, - [3589] = 2630, - [3590] = 2628, - [3591] = 2626, - [3592] = 2648, - [3593] = 2614, - [3594] = 2615, - [3595] = 2612, - [3596] = 2613, - [3597] = 3597, - [3598] = 2640, - [3599] = 2646, - [3600] = 3401, - [3601] = 2634, - [3602] = 2116, - [3603] = 2640, - [3604] = 3604, - [3605] = 2614, - [3606] = 2644, - [3607] = 2448, - [3608] = 2619, - [3609] = 2625, - [3610] = 2615, - [3611] = 2632, - [3612] = 2612, - [3613] = 2613, - [3614] = 2649, - [3615] = 2640, - [3616] = 3616, - [3617] = 2634, - [3618] = 2211, - [3619] = 2619, - [3620] = 2625, - [3621] = 2216, - [3622] = 2641, - [3623] = 2641, - [3624] = 2625, - [3625] = 2627, - [3626] = 2632, - [3627] = 2614, - [3628] = 2635, - [3629] = 2617, - [3630] = 2647, - [3631] = 2629, - [3632] = 2209, - [3633] = 2619, - [3634] = 2217, - [3635] = 2376, - [3636] = 2649, - [3637] = 2628, - [3638] = 2633, - [3639] = 2213, - [3640] = 2215, - [3641] = 2634, - [3642] = 2628, - [3643] = 2214, - [3644] = 2630, - [3645] = 2647, - [3646] = 2635, - [3647] = 2633, - [3648] = 2633, - [3649] = 2634, - [3650] = 2630, - [3651] = 3400, - [3652] = 2628, - [3653] = 2404, - [3654] = 2648, - [3655] = 2626, - [3656] = 2614, - [3657] = 2648, - [3658] = 3658, - [3659] = 2646, - [3660] = 2615, - [3661] = 2644, - [3662] = 2612, - [3663] = 2613, - [3664] = 2640, - [3665] = 2615, - [3666] = 2612, - [3667] = 2614, - [3668] = 2619, - [3669] = 2440, - [3670] = 2640, - [3671] = 2625, - [3672] = 2385, - [3673] = 2619, - [3674] = 2625, - [3675] = 2648, - [3676] = 3676, - [3677] = 2641, - [3678] = 2632, - [3679] = 2621, - [3680] = 2627, - [3681] = 2632, - [3682] = 2649, - [3683] = 2649, - [3684] = 2614, - [3685] = 3407, - [3686] = 2627, - [3687] = 2629, - [3688] = 2626, - [3689] = 2621, - [3690] = 2644, - [3691] = 2641, - [3692] = 2641, - [3693] = 2644, - [3694] = 2648, - [3695] = 2646, - [3696] = 3696, - [3697] = 2646, - [3698] = 2615, - [3699] = 2612, - [3700] = 2613, - [3701] = 2640, - [3702] = 2619, - [3703] = 3703, - [3704] = 2625, - [3705] = 2641, - [3706] = 2649, - [3707] = 2628, - [3708] = 2634, - [3709] = 2632, - [3710] = 2630, - [3711] = 2628, - [3712] = 2626, - [3713] = 2621, - [3714] = 2408, - [3715] = 2614, - [3716] = 2384, - [3717] = 2615, - [3718] = 3718, - [3719] = 2626, - [3720] = 2612, - [3721] = 2613, - [3722] = 2647, - [3723] = 2619, - [3724] = 2621, - [3725] = 2625, - [3726] = 2632, - [3727] = 2649, - [3728] = 2646, - [3729] = 2219, - [3730] = 2617, - [3731] = 3731, - [3732] = 2628, - [3733] = 2647, - [3734] = 2640, - [3735] = 2644, - [3736] = 2626, - [3737] = 2629, - [3738] = 2451, - [3739] = 2614, - [3740] = 2630, - [3741] = 2206, - [3742] = 2207, - [3743] = 2628, - [3744] = 2359, - [3745] = 2627, - [3746] = 2648, - [3747] = 2626, - [3748] = 2614, - [3749] = 2615, - [3750] = 2612, - [3751] = 2633, - [3752] = 2613, - [3753] = 2617, - [3754] = 2640, - [3755] = 2627, - [3756] = 2630, - [3757] = 2420, - [3758] = 2619, - [3759] = 2625, - [3760] = 2632, - [3761] = 2644, - [3762] = 2621, - [3763] = 2649, - [3764] = 2635, - [3765] = 2630, - [3766] = 3766, - [3767] = 2632, - [3768] = 2648, - [3769] = 3769, - [3770] = 3770, - [3771] = 3771, - [3772] = 2621, - [3773] = 2634, - [3774] = 3774, - [3775] = 2633, - [3776] = 3776, - [3777] = 2627, - [3778] = 3778, + [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] = 3780, - [3781] = 2649, - [3782] = 2644, - [3783] = 3783, - [3784] = 3784, - [3785] = 3785, - [3786] = 2621, - [3787] = 2646, - [3788] = 2614, - [3789] = 2626, - [3790] = 2628, - [3791] = 2630, - [3792] = 2641, - [3793] = 3793, - [3794] = 3794, - [3795] = 3795, - [3796] = 3796, - [3797] = 2635, - [3798] = 2614, - [3799] = 3799, - [3800] = 3800, - [3801] = 2625, - [3802] = 3802, - [3803] = 2615, - [3804] = 3804, - [3805] = 2649, - [3806] = 3806, - [3807] = 2619, - [3808] = 3808, - [3809] = 2614, - [3810] = 3810, - [3811] = 2648, - [3812] = 2640, - [3813] = 2613, - [3814] = 2214, - [3815] = 3815, - [3816] = 2634, - [3817] = 2635, - [3818] = 2627, - [3819] = 2615, - [3820] = 3820, - [3821] = 2630, - [3822] = 3822, - [3823] = 3823, - [3824] = 3824, - [3825] = 2644, - [3826] = 2612, - [3827] = 2628, - [3828] = 3828, - [3829] = 2615, - [3830] = 2626, - [3831] = 2644, - [3832] = 2621, - [3833] = 2649, - [3834] = 2215, - [3835] = 2213, - [3836] = 2647, - [3837] = 2627, - [3838] = 2646, - [3839] = 3839, - [3840] = 2627, - [3841] = 3841, - [3842] = 3842, - [3843] = 2612, - [3844] = 2632, - [3845] = 2641, + [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] = 2613, - [3848] = 3848, - [3849] = 2628, - [3850] = 3776, - [3851] = 2632, - [3852] = 2627, - [3853] = 2640, - [3854] = 2612, - [3855] = 3855, - [3856] = 2613, - [3857] = 2627, - [3858] = 2632, - [3859] = 3859, - [3860] = 2640, - [3861] = 3861, - [3862] = 2627, - [3863] = 3863, - [3864] = 3864, - [3865] = 3865, - [3866] = 3866, - [3867] = 2627, - [3868] = 3868, - [3869] = 3869, - [3870] = 2633, - [3871] = 2648, - [3872] = 2625, - [3873] = 3873, - [3874] = 2209, - [3875] = 3875, - [3876] = 3876, - [3877] = 3877, - [3878] = 3878, - [3879] = 3879, - [3880] = 2641, - [3881] = 2630, - [3882] = 2633, - [3883] = 2634, - [3884] = 3884, - [3885] = 3885, - [3886] = 3886, - [3887] = 3887, - [3888] = 3888, - [3889] = 3889, - [3890] = 2619, - [3891] = 2648, - [3892] = 3892, - [3893] = 2635, - [3894] = 3894, - [3895] = 2630, - [3896] = 2646, - [3897] = 2644, - [3898] = 3898, - [3899] = 3899, - [3900] = 2615, - [3901] = 2612, - [3902] = 2628, - [3903] = 2634, - [3904] = 2626, - [3905] = 2614, - [3906] = 2613, - [3907] = 2621, - [3908] = 2649, - [3909] = 2633, - [3910] = 3910, - [3911] = 3911, - [3912] = 2640, - [3913] = 3913, - [3914] = 2640, - [3915] = 2613, - [3916] = 3916, - [3917] = 3917, - [3918] = 2633, - [3919] = 2634, - [3920] = 2619, - [3921] = 2634, - [3922] = 3922, - [3923] = 2633, - [3924] = 2625, - [3925] = 3925, - [3926] = 2612, - [3927] = 2648, - [3928] = 2646, - [3929] = 2641, - [3930] = 2216, - [3931] = 2644, - [3932] = 3910, - [3933] = 3933, - [3934] = 2615, - [3935] = 2612, - [3936] = 2619, - [3937] = 3776, - [3938] = 3938, - [3939] = 2634, - [3940] = 2613, - [3941] = 2640, - [3942] = 2619, - [3943] = 3484, - [3944] = 2625, - [3945] = 2641, - [3946] = 2626, - [3947] = 3947, - [3948] = 2635, - [3949] = 2625, - [3950] = 2641, - [3951] = 2632, - [3952] = 2632, - [3953] = 2630, - [3954] = 3954, - [3955] = 3955, - [3956] = 2615, - [3957] = 2211, - [3958] = 2644, - [3959] = 2632, - [3960] = 2621, - [3961] = 2408, - [3962] = 3962, - [3963] = 3963, - [3964] = 2633, - [3965] = 2359, - [3966] = 2625, - [3967] = 3967, - [3968] = 2646, - [3969] = 3969, - [3970] = 3970, - [3971] = 2648, - [3972] = 3972, - [3973] = 2628, - [3974] = 2384, - [3975] = 2635, - [3976] = 3976, - [3977] = 3977, - [3978] = 3978, - [3979] = 3910, - [3980] = 3396, - [3981] = 2635, - [3982] = 3982, - [3983] = 2376, - [3984] = 2632, - [3985] = 2641, - [3986] = 2625, - [3987] = 2619, - [3988] = 2640, - [3989] = 2613, - [3990] = 2612, - [3991] = 2615, - [3992] = 2644, - [3993] = 2646, - [3994] = 2630, - [3995] = 2648, - [3996] = 3996, - [3997] = 2649, - [3998] = 2647, - [3999] = 2646, - [4000] = 4000, - [4001] = 2626, - [4002] = 2614, - [4003] = 3910, - [4004] = 2430, - [4005] = 2635, - [4006] = 2635, - [4007] = 2648, - [4008] = 2626, - [4009] = 2443, - [4010] = 2646, - [4011] = 3776, - [4012] = 2448, - [4013] = 2644, - [4014] = 2615, - [4015] = 2612, - [4016] = 2440, - [4017] = 2613, - [4018] = 2386, - [4019] = 2649, - [4020] = 2621, - [4021] = 2630, - [4022] = 2628, - [4023] = 2640, - [4024] = 2420, - [4025] = 2621, - [4026] = 2614, - [4027] = 2626, - [4028] = 2647, - [4029] = 2649, - [4030] = 2445, - [4031] = 3776, - [4032] = 2628, - [4033] = 1944, - [4034] = 2634, - [4035] = 2385, - [4036] = 1946, - [4037] = 3776, - [4038] = 2633, - [4039] = 2630, - [4040] = 2626, - [4041] = 2358, - [4042] = 3910, - [4043] = 2634, - [4044] = 2635, - [4045] = 2404, - [4046] = 2447, - [4047] = 4047, - [4048] = 2647, - [4049] = 2451, - [4050] = 2614, - [4051] = 2627, - [4052] = 2647, - [4053] = 4053, - [4054] = 2630, - [4055] = 2648, - [4056] = 3776, - [4057] = 4057, - [4058] = 2646, - [4059] = 2649, - [4060] = 2644, - [4061] = 2619, - [4062] = 4062, - [4063] = 4063, - [4064] = 4064, - [4065] = 2614, - [4066] = 2621, + [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] = 4026, + [4028] = 3065, + [4029] = 4029, + [4030] = 4030, + [4031] = 3219, + [4032] = 3130, + [4033] = 4033, + [4034] = 2966, + [4035] = 4035, + [4036] = 4036, + [4037] = 4037, + [4038] = 2954, + [4039] = 2957, + [4040] = 2960, + [4041] = 2375, + [4042] = 2442, + [4043] = 2978, + [4044] = 2351, + [4045] = 2374, + [4046] = 4046, + [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] = 2619, - [4069] = 2647, - [4070] = 2615, - [4071] = 2621, - [4072] = 2612, - [4073] = 2649, - [4074] = 2613, - [4075] = 2351, - [4076] = 2410, - [4077] = 2452, - [4078] = 2614, - [4079] = 2626, - [4080] = 4080, - [4081] = 1921, - [4082] = 2633, - [4083] = 2625, - [4084] = 2640, - [4085] = 2372, - [4086] = 2366, - [4087] = 2619, - [4088] = 2625, - [4089] = 3396, - [4090] = 4090, - [4091] = 3996, - [4092] = 2641, - [4093] = 3910, + [4068] = 4068, + [4069] = 2974, + [4070] = 4070, + [4071] = 3065, + [4072] = 2975, + [4073] = 4073, + [4074] = 4074, + [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] = 2628, - [4096] = 2641, - [4097] = 3776, - [4098] = 2628, - [4099] = 4099, - [4100] = 2632, - [4101] = 2116, - [4102] = 2641, - [4103] = 2629, - [4104] = 3823, - [4105] = 2649, - [4106] = 3799, - [4107] = 2621, - [4108] = 2614, - [4109] = 2626, - [4110] = 2634, - [4111] = 3783, - [4112] = 2628, - [4113] = 3780, - [4114] = 2829, - [4115] = 2627, - [4116] = 2632, - [4117] = 2641, - [4118] = 2625, - [4119] = 2619, - [4120] = 2635, - [4121] = 2640, - [4122] = 2613, - [4123] = 2612, - [4124] = 2615, - [4125] = 2644, - [4126] = 2646, - [4127] = 2648, - [4128] = 4128, - [4129] = 2648, - [4130] = 2646, - [4131] = 2644, - [4132] = 2641, - [4133] = 3800, - [4134] = 3839, - [4135] = 4135, - [4136] = 4135, - [4137] = 1921, - [4138] = 3766, - [4139] = 3859, - [4140] = 4140, - [4141] = 2630, + [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] = 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] = 2971, + [4138] = 2948, + [4139] = 4139, + [4140] = 2978, + [4141] = 2431, [4142] = 4142, - [4143] = 3779, - [4144] = 3778, - [4145] = 3770, + [4143] = 4143, + [4144] = 4065, + [4145] = 4145, [4146] = 4146, - [4147] = 3873, - [4148] = 2627, - [4149] = 4149, - [4150] = 3815, - [4151] = 2617, - [4152] = 2629, + [4147] = 4147, + [4148] = 2951, + [4149] = 2951, + [4150] = 4150, + [4151] = 4151, + [4152] = 2967, [4153] = 4153, - [4154] = 3875, - [4155] = 2621, - [4156] = 3876, - [4157] = 2455, - [4158] = 3877, - [4159] = 3996, - [4160] = 2617, - [4161] = 3848, - [4162] = 3878, - [4163] = 2471, - [4164] = 4164, - [4165] = 3396, - [4166] = 2627, - [4167] = 3978, - [4168] = 3802, - [4169] = 3884, - [4170] = 3889, - [4171] = 3892, + [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] = 2951, + [4170] = 4026, + [4171] = 4065, [4172] = 4172, - [4173] = 4135, - [4174] = 3841, - [4175] = 3866, - [4176] = 4176, - [4177] = 3977, - [4178] = 3846, + [4173] = 2945, + [4174] = 2975, + [4175] = 2951, + [4176] = 3287, + [4177] = 2951, + [4178] = 2384, [4179] = 4179, - [4180] = 3795, + [4180] = 4180, [4181] = 4181, - [4182] = 3396, - [4183] = 4135, - [4184] = 2629, - [4185] = 2617, - [4186] = 2630, - [4187] = 2648, - [4188] = 2646, - [4189] = 2644, - [4190] = 2615, - [4191] = 2612, - [4192] = 2613, - [4193] = 2640, - [4194] = 2619, - [4195] = 2625, - [4196] = 2635, - [4197] = 2641, - [4198] = 2632, - [4199] = 4140, - [4200] = 2634, - [4201] = 4142, - [4202] = 2628, - [4203] = 2626, - [4204] = 2614, - [4205] = 2615, - [4206] = 2612, - [4207] = 2613, - [4208] = 2640, - [4209] = 2619, - [4210] = 2625, - [4211] = 2633, - [4212] = 3806, - [4213] = 2632, - [4214] = 2649, - [4215] = 3894, - [4216] = 3972, - [4217] = 3899, - [4218] = 3970, - [4219] = 4219, + [4182] = 2213, + [4183] = 2208, + [4184] = 3307, + [4185] = 3200, + [4186] = 2371, + [4187] = 3313, + [4188] = 2216, + [4189] = 4067, + [4190] = 4190, + [4191] = 2965, + [4192] = 4192, + [4193] = 2376, + [4194] = 2948, + [4195] = 3295, + [4196] = 4196, + [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] = 2628, - [4222] = 2626, - [4223] = 2614, - [4224] = 3911, - [4225] = 2627, - [4226] = 2629, - [4227] = 2621, - [4228] = 2649, - [4229] = 3913, - [4230] = 2648, - [4231] = 2646, - [4232] = 2644, - [4233] = 2615, - [4234] = 2612, - [4235] = 2613, - [4236] = 2640, - [4237] = 2619, - [4238] = 2625, - [4239] = 2641, - [4240] = 2632, - [4241] = 4241, - [4242] = 2628, - [4243] = 3916, - [4244] = 2626, - [4245] = 2614, - [4246] = 2621, - [4247] = 2649, - [4248] = 3917, - [4249] = 3925, - [4250] = 4250, - [4251] = 2617, - [4252] = 3869, - [4253] = 2630, - [4254] = 2635, - [4255] = 4146, - [4256] = 3969, - [4257] = 2634, - [4258] = 2633, - [4259] = 3810, + [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] = 2629, - [4262] = 4262, - [4263] = 2617, - [4264] = 2648, - [4265] = 4265, - [4266] = 2646, - [4267] = 2630, - [4268] = 2644, - [4269] = 2635, - [4270] = 2634, - [4271] = 2633, - [4272] = 2615, - [4273] = 2612, - [4274] = 2613, - [4275] = 2640, - [4276] = 2619, - [4277] = 2625, - [4278] = 2633, - [4279] = 2632, - [4280] = 2635, - [4281] = 2634, - [4282] = 2633, + [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] = 3967, - [4285] = 2630, - [4286] = 2628, - [4287] = 3947, - [4288] = 2626, - [4289] = 3954, - [4290] = 2614, - [4291] = 2621, - [4292] = 2649, - [4293] = 3855, - [4294] = 2627, - [4295] = 3963, - [4296] = 4153, - [4297] = 4149, - [4298] = 3784, - [4299] = 3785, - [4300] = 3922, - [4301] = 4301, - [4302] = 2646, - [4303] = 2614, - [4304] = 2626, - [4305] = 2627, - [4306] = 2630, - [4307] = 2628, - [4308] = 2644, - [4309] = 4309, - [4310] = 4310, - [4311] = 4311, - [4312] = 4311, - [4313] = 4311, - [4314] = 4311, - [4315] = 4311, - [4316] = 4311, - [4317] = 4311, - [4318] = 4311, - [4319] = 4319, - [4320] = 2633, - [4321] = 2634, - [4322] = 2635, - [4323] = 2630, - [4324] = 2614, - [4325] = 4311, - [4326] = 2615, - [4327] = 2612, - [4328] = 4319, - [4329] = 2613, - [4330] = 2633, - [4331] = 2634, - [4332] = 2628, - [4333] = 2635, - [4334] = 2630, - [4335] = 4319, - [4336] = 4311, - [4337] = 4319, - [4338] = 4338, - [4339] = 4339, - [4340] = 2640, - [4341] = 4341, - [4342] = 4342, - [4343] = 4343, - [4344] = 2633, - [4345] = 2619, - [4346] = 2625, - [4347] = 4319, - [4348] = 4348, - [4349] = 4349, - [4350] = 4350, - [4351] = 4351, - [4352] = 2641, - [4353] = 4353, - [4354] = 4310, - [4355] = 2626, - [4356] = 2634, - [4357] = 2635, - [4358] = 2648, - [4359] = 2646, - [4360] = 2630, - [4361] = 2632, - [4362] = 4362, - [4363] = 4363, - [4364] = 2621, - [4365] = 2649, - [4366] = 4319, - [4367] = 2621, + [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] = 4338, - [4370] = 2644, - [4371] = 2615, - [4372] = 2612, - [4373] = 4339, - [4374] = 4351, - [4375] = 2613, - [4376] = 2641, - [4377] = 4311, - [4378] = 4319, - [4379] = 2640, - [4380] = 2627, - [4381] = 2619, - [4382] = 2625, - [4383] = 2641, - [4384] = 2649, - [4385] = 2644, - [4386] = 2646, - [4387] = 2648, - [4388] = 4388, - [4389] = 4311, - [4390] = 2632, - [4391] = 4311, - [4392] = 4319, - [4393] = 4393, - [4394] = 2621, - [4395] = 2633, - [4396] = 2634, - [4397] = 2635, - [4398] = 2630, - [4399] = 2627, - [4400] = 4400, - [4401] = 4319, + [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] = 3318, + [4393] = 3302, + [4394] = 4026, + [4395] = 1920, + [4396] = 3298, + [4397] = 2950, + [4398] = 2967, + [4399] = 4399, + [4400] = 2951, + [4401] = 3281, [4402] = 4402, - [4403] = 4403, - [4404] = 4404, - [4405] = 4405, - [4406] = 4406, - [4407] = 4407, - [4408] = 4311, - [4409] = 4409, - [4410] = 4410, - [4411] = 4411, - [4412] = 4311, - [4413] = 4319, - [4414] = 4319, - [4415] = 4311, - [4416] = 4416, - [4417] = 4319, - [4418] = 2633, - [4419] = 2634, - [4420] = 2635, - [4421] = 2630, - [4422] = 4319, - [4423] = 4319, - [4424] = 4319, - [4425] = 4353, - [4426] = 4338, - [4427] = 2635, - [4428] = 2614, - [4429] = 4338, - [4430] = 4406, - [4431] = 4311, - [4432] = 4311, - [4433] = 4339, - [4434] = 4319, - [4435] = 4368, - [4436] = 4436, - [4437] = 4311, - [4438] = 4353, - [4439] = 4353, - [4440] = 4440, - [4441] = 4441, - [4442] = 4353, - [4443] = 4319, - [4444] = 4444, - [4445] = 4406, - [4446] = 4311, - [4447] = 4353, - [4448] = 4319, - [4449] = 4339, - [4450] = 4450, - [4451] = 4319, - [4452] = 4319, - [4453] = 4319, - [4454] = 2614, - [4455] = 4342, - [4456] = 4343, - [4457] = 4319, - [4458] = 2649, - [4459] = 4436, - [4460] = 4460, - [4461] = 4310, - [4462] = 4319, - [4463] = 4463, - [4464] = 4464, - [4465] = 4465, - [4466] = 4466, - [4467] = 4319, + [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] = 2634, - [4470] = 4342, - [4471] = 2648, - [4472] = 4403, - [4473] = 4473, - [4474] = 4319, - [4475] = 2649, - [4476] = 3484, - [4477] = 3396, - [4478] = 4319, - [4479] = 2649, - [4480] = 2633, - [4481] = 2626, - [4482] = 4482, - [4483] = 2614, - [4484] = 4319, - [4485] = 4485, - [4486] = 4351, - [4487] = 4339, - [4488] = 4338, - [4489] = 4319, - [4490] = 4351, - [4491] = 4319, - [4492] = 4319, - [4493] = 4319, - [4494] = 2621, - [4495] = 2829, - [4496] = 4341, - [4497] = 2628, - [4498] = 4311, - [4499] = 4403, - [4500] = 4393, - [4501] = 4319, - [4502] = 4406, - [4503] = 4319, - [4504] = 2628, - [4505] = 4311, - [4506] = 4403, - [4507] = 4319, - [4508] = 2621, - [4509] = 2632, - [4510] = 2641, - [4511] = 2625, - [4512] = 2619, - [4513] = 2640, - [4514] = 2613, - [4515] = 2612, - [4516] = 2615, - [4517] = 2615, - [4518] = 2644, - [4519] = 2646, - [4520] = 3484, - [4521] = 2648, - [4522] = 2612, - [4523] = 4393, - [4524] = 2613, - [4525] = 2628, - [4526] = 4393, - [4527] = 2640, - [4528] = 2619, - [4529] = 2625, - [4530] = 2632, - [4531] = 2626, - [4532] = 2648, - [4533] = 2646, - [4534] = 2632, - [4535] = 3396, - [4536] = 4368, - [4537] = 4319, - [4538] = 4319, - [4539] = 3484, - [4540] = 2641, - [4541] = 4348, - [4542] = 4319, - [4543] = 2625, - [4544] = 4343, - [4545] = 2619, - [4546] = 2640, - [4547] = 2613, - [4548] = 4319, - [4549] = 2612, - [4550] = 2627, - [4551] = 2615, - [4552] = 4350, - [4553] = 2644, - [4554] = 2646, - [4555] = 4319, - [4556] = 4349, - [4557] = 2648, - [4558] = 2614, - [4559] = 2626, - [4560] = 4319, - [4561] = 2644, - [4562] = 2615, - [4563] = 2628, - [4564] = 4319, - [4565] = 2627, - [4566] = 2612, - [4567] = 4368, - [4568] = 4319, - [4569] = 2626, - [4570] = 2649, - [4571] = 4338, - [4572] = 2613, - [4573] = 4310, - [4574] = 4319, - [4575] = 4319, - [4576] = 2627, - [4577] = 4319, - [4578] = 4339, - [4579] = 4319, - [4580] = 4319, - [4581] = 4319, - [4582] = 4319, - [4583] = 2640, - [4584] = 2619, - [4585] = 2625, - [4586] = 2641, - [4587] = 2632, - [4588] = 2621, - [4589] = 4351, - [4590] = 4350, - [4591] = 4349, - [4592] = 4348, - [4593] = 4319, - [4594] = 4351, - [4595] = 4350, - [4596] = 4349, - [4597] = 4348, - [4598] = 4343, - [4599] = 4342, - [4600] = 4600, - [4601] = 4600, - [4602] = 4600, - [4603] = 4600, - [4604] = 4600, - [4605] = 4600, - [4606] = 4600, - [4607] = 4600, - [4608] = 4600, - [4609] = 4600, - [4610] = 4600, - [4611] = 4600, - [4612] = 4600, - [4613] = 4600, - [4614] = 4600, - [4615] = 4600, - [4616] = 4600, - [4617] = 2475, - [4618] = 4600, - [4619] = 4600, - [4620] = 4600, - [4621] = 4600, - [4622] = 4600, - [4623] = 4600, - [4624] = 3147, - [4625] = 4625, - [4626] = 4625, - [4627] = 3396, - [4628] = 4600, - [4629] = 4600, - [4630] = 4600, - [4631] = 4600, - [4632] = 4600, - [4633] = 4600, - [4634] = 4600, - [4635] = 2399, - [4636] = 3281, - [4637] = 4600, - [4638] = 4600, - [4639] = 4600, - [4640] = 3147, - [4641] = 3396, - [4642] = 3281, - [4643] = 3396, - [4644] = 2116, - [4645] = 3400, - [4646] = 3396, - [4647] = 2206, - [4648] = 3401, - [4649] = 2207, - [4650] = 3407, - [4651] = 2217, - [4652] = 2219, - [4653] = 2829, - [4654] = 3718, - [4655] = 2219, - [4656] = 2216, - [4657] = 2452, - [4658] = 4658, - [4659] = 2214, - [4660] = 2215, - [4661] = 2213, - [4662] = 4662, - [4663] = 2508, - [4664] = 2209, - [4665] = 2219, - [4666] = 2211, - [4667] = 2496, - [4668] = 2384, - [4669] = 2491, - [4670] = 2206, - [4671] = 2207, - [4672] = 2359, - [4673] = 2214, - [4674] = 2489, - [4675] = 2408, - [4676] = 2376, - [4677] = 2215, - [4678] = 2213, - [4679] = 2430, - [4680] = 2443, - [4681] = 2448, - [4682] = 2440, - [4683] = 2497, - [4684] = 2420, - [4685] = 2487, - [4686] = 2385, - [4687] = 2404, - [4688] = 2216, - [4689] = 2351, - [4690] = 2410, - [4691] = 2372, - [4692] = 2366, - [4693] = 2386, - [4694] = 2455, - [4695] = 2471, - [4696] = 2481, - [4697] = 2207, - [4698] = 2451, - [4699] = 2447, - [4700] = 2358, - [4701] = 3658, - [4702] = 3396, - [4703] = 2209, - [4704] = 2445, - [4705] = 3576, - [4706] = 2503, - [4707] = 2206, - [4708] = 4662, - [4709] = 3731, - [4710] = 4710, - [4711] = 3550, - [4712] = 2217, - [4713] = 4710, - [4714] = 3576, - [4715] = 2206, - [4716] = 2511, - [4717] = 2211, - [4718] = 3696, - [4719] = 3658, - [4720] = 3550, - [4721] = 4721, - [4722] = 2480, - [4723] = 3396, - [4724] = 3696, - [4725] = 2506, - [4726] = 2829, - [4727] = 2475, - [4728] = 4728, - [4729] = 3407, - [4730] = 3731, - [4731] = 3396, - [4732] = 3703, - [4733] = 3401, - [4734] = 2207, - [4735] = 3400, - [4736] = 2399, - [4737] = 2385, - [4738] = 4738, - [4739] = 3955, - [4740] = 3846, - [4741] = 3972, + [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] = 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] = 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] = 2968, + [4735] = 2967, + [4736] = 2967, + [4737] = 2964, + [4738] = 2953, + [4739] = 2961, + [4740] = 2946, + [4741] = 2950, [4742] = 4742, - [4743] = 3970, - [4744] = 3969, - [4745] = 3967, - [4746] = 3963, - [4747] = 3954, - [4748] = 3947, - [4749] = 3865, - [4750] = 3925, - [4751] = 2209, - [4752] = 3396, - [4753] = 3922, - [4754] = 3917, - [4755] = 3916, - [4756] = 4756, - [4757] = 4080, - [4758] = 3913, - [4759] = 3794, - [4760] = 3793, - [4761] = 3911, - [4762] = 3864, - [4763] = 4763, - [4764] = 3899, - [4765] = 3396, + [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] = 3894, - [4768] = 4080, - [4769] = 4769, - [4770] = 3892, - [4771] = 2197, - [4772] = 3889, - [4773] = 2214, - [4774] = 2215, - [4775] = 2213, - [4776] = 4776, - [4777] = 3884, - [4778] = 3878, - [4779] = 1944, - [4780] = 3877, - [4781] = 1946, - [4782] = 2216, - [4783] = 2211, - [4784] = 3876, - [4785] = 3875, - [4786] = 1921, - [4787] = 3873, - [4788] = 4742, - [4789] = 1987, - [4790] = 3869, - [4791] = 3769, - [4792] = 4738, - [4793] = 3842, - [4794] = 3859, - [4795] = 3855, - [4796] = 3822, - [4797] = 3848, - [4798] = 4798, - [4799] = 4799, - [4800] = 3820, - [4801] = 4738, - [4802] = 4802, - [4803] = 4803, - [4804] = 4804, - [4805] = 3770, - [4806] = 3778, - [4807] = 3779, - [4808] = 4808, - [4809] = 4742, - [4810] = 4738, + [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] = 3808, - [4813] = 4064, - [4814] = 4063, - [4815] = 4815, - [4816] = 3977, - [4817] = 3841, - [4818] = 3962, - [4819] = 3780, - [4820] = 3783, - [4821] = 3799, - [4822] = 4766, - [4823] = 3800, - [4824] = 3802, - [4825] = 3978, - [4826] = 3839, + [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] = 4815, - [4829] = 1956, - [4830] = 3815, - [4831] = 3879, - [4832] = 3718, - [4833] = 4742, - [4834] = 4808, - [4835] = 2116, - [4836] = 4836, - [4837] = 4815, - [4838] = 4808, - [4839] = 2445, - [4840] = 3806, - [4841] = 3703, - [4842] = 2447, - [4843] = 3766, - [4844] = 4766, - [4845] = 3785, - [4846] = 3795, - [4847] = 4766, - [4848] = 3982, - [4849] = 2451, - [4850] = 2452, - [4851] = 4851, - [4852] = 4852, - [4853] = 4853, - [4854] = 2399, - [4855] = 3861, - [4856] = 3863, - [4857] = 3784, - [4858] = 4808, - [4859] = 4859, - [4860] = 3396, - [4861] = 4861, - [4862] = 4862, - [4863] = 4863, - [4864] = 4864, - [4865] = 4738, - [4866] = 4742, - [4867] = 4808, - [4868] = 4868, - [4869] = 2358, - [4870] = 2386, - [4871] = 1944, - [4872] = 4742, - [4873] = 4738, - [4874] = 4815, - [4875] = 2366, - [4876] = 3938, - [4877] = 1946, - [4878] = 2197, - [4879] = 4879, - [4880] = 4815, - [4881] = 4808, - [4882] = 3396, - [4883] = 4766, - [4884] = 2359, - [4885] = 2372, - [4886] = 1986, - [4887] = 4887, - [4888] = 2384, - [4889] = 3885, - [4890] = 3888, - [4891] = 2408, - [4892] = 2376, - [4893] = 4893, - [4894] = 4894, - [4895] = 2430, - [4896] = 4896, - [4897] = 4897, - [4898] = 4815, - [4899] = 4899, + [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] = 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] = 3065, + [4891] = 4733, + [4892] = 3065, + [4893] = 4723, + [4894] = 4733, + [4895] = 4733, + [4896] = 4733, + [4897] = 2976, + [4898] = 4733, + [4899] = 4723, [4900] = 4900, - [4901] = 4901, - [4902] = 4902, - [4903] = 2443, - [4904] = 4904, - [4905] = 4905, - [4906] = 4906, - [4907] = 4738, - [4908] = 2448, - [4909] = 4742, - [4910] = 4808, - [4911] = 4911, - [4912] = 4064, - [4913] = 2440, - [4914] = 2410, - [4915] = 4815, - [4916] = 4916, - [4917] = 4808, - [4918] = 4742, - [4919] = 2420, - [4920] = 4920, - [4921] = 4738, - [4922] = 4815, - [4923] = 2351, - [4924] = 2404, - [4925] = 4766, - [4926] = 3800, - [4927] = 3873, - [4928] = 3922, - [4929] = 3925, - [4930] = 3917, - [4931] = 3493, - [4932] = 3396, - [4933] = 3947, - [4934] = 3954, - [4935] = 3476, - [4936] = 3963, - [4937] = 3916, - [4938] = 3396, - [4939] = 3234, - [4940] = 3169, - [4941] = 3186, - [4942] = 3913, - [4943] = 3911, - [4944] = 3899, - [4945] = 3894, - [4946] = 3892, - [4947] = 3889, - [4948] = 3967, - [4949] = 3539, - [4950] = 3202, - [4951] = 4896, - [4952] = 3396, - [4953] = 3884, - [4954] = 3878, - [4955] = 4063, - [4956] = 3969, - [4957] = 3970, - [4958] = 3877, - [4959] = 3876, - [4960] = 3573, - [4961] = 3972, - [4962] = 3875, - [4963] = 3846, - [4964] = 4964, - [4965] = 3842, - [4966] = 3869, - [4967] = 3223, - [4968] = 3257, - [4969] = 3182, - [4970] = 3793, - [4971] = 3977, - [4972] = 3978, - [4973] = 4868, - [4974] = 4864, - [4975] = 4863, - [4976] = 3794, - [4977] = 3396, - [4978] = 4862, - [4979] = 3396, - [4980] = 4861, - [4981] = 3859, - [4982] = 3855, - [4983] = 3848, - [4984] = 4887, - [4985] = 4911, - [4986] = 4906, - [4987] = 4894, - [4988] = 4763, - [4989] = 3396, - [4990] = 3396, - [4991] = 4776, - [4992] = 3770, - [4993] = 3778, - [4994] = 3779, - [4995] = 3569, - [4996] = 4905, - [4997] = 4897, - [4998] = 3841, - [4999] = 3281, - [5000] = 3864, - [5001] = 3780, - [5002] = 3783, - [5003] = 3799, - [5004] = 4904, - [5005] = 3802, - [5006] = 3806, - [5007] = 4853, - [5008] = 4899, - [5009] = 4902, - [5010] = 4852, - [5011] = 4916, - [5012] = 3396, - [5013] = 5013, - [5014] = 4901, - [5015] = 2829, - [5016] = 3179, - [5017] = 4900, - [5018] = 3815, - [5019] = 4851, - [5020] = 4047, - [5021] = 1921, - [5022] = 3839, - [5023] = 3766, - [5024] = 2829, - [5025] = 1946, - [5026] = 1944, - [5027] = 3718, - [5028] = 2455, - [5029] = 2471, - [5030] = 3808, - [5031] = 3784, - [5032] = 2198, - [5033] = 3861, - [5034] = 3785, - [5035] = 3982, + [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] = 3863, - [5038] = 5038, - [5039] = 3597, - [5040] = 5040, - [5041] = 3396, - [5042] = 3822, - [5043] = 3888, - [5044] = 3795, - [5045] = 3885, - [5046] = 3820, - [5047] = 3879, - [5048] = 4836, - [5049] = 3396, - [5050] = 4798, - [5051] = 4804, - [5052] = 3769, - [5053] = 3396, - [5054] = 4920, + [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] = 3396, - [5058] = 5056, - [5059] = 3539, - [5060] = 5056, - [5061] = 5056, - [5062] = 3573, - [5063] = 5056, - [5064] = 5056, - [5065] = 4625, - [5066] = 5056, - [5067] = 5055, - [5068] = 5055, - [5069] = 5069, - [5070] = 5056, - [5071] = 3396, - [5072] = 3396, - [5073] = 5073, - [5074] = 5074, - [5075] = 5056, - [5076] = 5056, - [5077] = 3223, - [5078] = 3597, - [5079] = 2455, - [5080] = 3257, - [5081] = 2471, - [5082] = 5055, - [5083] = 5055, - [5084] = 3396, - [5085] = 3396, - [5086] = 5055, - [5087] = 5073, - [5088] = 5056, - [5089] = 3396, - [5090] = 5056, - [5091] = 5056, - [5092] = 3182, - [5093] = 5055, - [5094] = 5056, - [5095] = 5055, - [5096] = 3169, - [5097] = 5056, - [5098] = 5056, - [5099] = 4625, - [5100] = 5056, - [5101] = 5056, - [5102] = 4047, - [5103] = 5056, - [5104] = 3234, - [5105] = 5056, - [5106] = 5056, - [5107] = 5056, - [5108] = 3186, - [5109] = 5055, - [5110] = 3202, - [5111] = 5056, - [5112] = 3281, - [5113] = 5056, - [5114] = 4625, - [5115] = 5056, - [5116] = 5055, - [5117] = 5055, - [5118] = 3396, - [5119] = 3396, - [5120] = 5055, - [5121] = 5056, - [5122] = 3179, - [5123] = 5055, - [5124] = 4625, - [5125] = 3476, - [5126] = 3493, - [5127] = 3569, - [5128] = 5055, - [5129] = 5056, - [5130] = 3396, - [5131] = 3407, - [5132] = 2206, - [5133] = 5133, - [5134] = 4440, - [5135] = 2207, - [5136] = 3396, - [5137] = 5074, - [5138] = 5074, - [5139] = 3718, - [5140] = 3400, - [5141] = 4309, - [5142] = 3401, - [5143] = 5143, - [5144] = 3396, - [5145] = 5074, - [5146] = 5146, - [5147] = 5074, - [5148] = 3396, - [5149] = 5149, - [5150] = 3396, - [5151] = 3396, - [5152] = 5074, + [5057] = 2945, + [5058] = 5058, + [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] = 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] = 5074, - [5155] = 5155, - [5156] = 5156, - [5157] = 5157, - [5158] = 5155, - [5159] = 5156, - [5160] = 3576, - [5161] = 4763, - [5162] = 5162, - [5163] = 5162, - [5164] = 4662, - [5165] = 5156, - [5166] = 5156, - [5167] = 5162, - [5168] = 5162, - [5169] = 5162, - [5170] = 5162, - [5171] = 5162, - [5172] = 5155, - [5173] = 5155, - [5174] = 5162, - [5175] = 5162, - [5176] = 5162, - [5177] = 4658, - [5178] = 4440, - [5179] = 5162, - [5180] = 4662, - [5181] = 2198, - [5182] = 3396, - [5183] = 5183, - [5184] = 5162, - [5185] = 5162, - [5186] = 4309, - [5187] = 5162, - [5188] = 5162, - [5189] = 5162, - [5190] = 5190, - [5191] = 5191, - [5192] = 5192, - [5193] = 5162, - [5194] = 5194, - [5195] = 5195, - [5196] = 5162, - [5197] = 5197, - [5198] = 4662, - [5199] = 5199, - [5200] = 5162, - [5201] = 5162, - [5202] = 5155, - [5203] = 5162, - [5204] = 3703, + [5154] = 3175, + [5155] = 4927, + [5156] = 4070, + [5157] = 4927, + [5158] = 3194, + [5159] = 5096, + [5160] = 5160, + [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] = 5162, - [5208] = 3731, - [5209] = 4662, - [5210] = 5162, - [5211] = 5162, - [5212] = 5162, - [5213] = 5162, - [5214] = 5162, - [5215] = 5162, - [5216] = 3396, - [5217] = 5155, - [5218] = 5162, - [5219] = 3396, - [5220] = 5155, - [5221] = 5162, - [5222] = 5162, - [5223] = 3696, - [5224] = 3550, - [5225] = 5162, - [5226] = 5162, - [5227] = 3658, - [5228] = 5228, - [5229] = 5229, - [5230] = 5162, - [5231] = 5162, - [5232] = 5162, - [5233] = 5162, - [5234] = 3396, - [5235] = 5162, - [5236] = 3396, - [5237] = 5237, - [5238] = 5162, - [5239] = 5239, - [5240] = 5162, - [5241] = 2198, - [5242] = 5155, - [5243] = 3396, - [5244] = 4852, - [5245] = 5245, - [5246] = 4904, - [5247] = 3865, - [5248] = 3977, - [5249] = 5249, - [5250] = 5250, - [5251] = 5245, - [5252] = 5245, - [5253] = 5253, - [5254] = 5254, - [5255] = 5255, - [5256] = 5245, - [5257] = 5250, - [5258] = 5258, - [5259] = 3962, - [5260] = 3938, - [5261] = 5258, - [5262] = 5258, - [5263] = 3839, - [5264] = 3842, - [5265] = 5245, - [5266] = 3769, - [5267] = 1946, - [5268] = 3766, - [5269] = 5269, - [5270] = 5245, - [5271] = 5245, - [5272] = 5272, - [5273] = 5245, - [5274] = 3784, - [5275] = 5258, - [5276] = 5276, - [5277] = 3785, - [5278] = 5278, - [5279] = 3846, - [5280] = 3972, - [5281] = 5258, - [5282] = 3970, - [5283] = 5250, - [5284] = 2399, - [5285] = 3793, - [5286] = 4905, - [5287] = 1921, - [5288] = 5258, - [5289] = 5258, - [5290] = 4900, - [5291] = 3969, - [5292] = 4906, - [5293] = 1944, - [5294] = 5245, - [5295] = 3794, - [5296] = 2217, - [5297] = 3873, - [5298] = 4911, - [5299] = 5245, - [5300] = 3875, - [5301] = 2198, - [5302] = 3795, - [5303] = 5245, - [5304] = 4901, - [5305] = 3955, - [5306] = 3967, - [5307] = 5245, - [5308] = 5245, - [5309] = 5245, - [5310] = 5245, - [5311] = 5245, - [5312] = 5245, - [5313] = 4776, - [5314] = 5245, - [5315] = 5245, - [5316] = 5245, - [5317] = 5245, - [5318] = 5245, - [5319] = 5245, - [5320] = 3876, - [5321] = 5258, - [5322] = 3822, - [5323] = 3820, - [5324] = 3815, - [5325] = 5249, - [5326] = 3877, - [5327] = 5245, - [5328] = 3808, - [5329] = 5272, - [5330] = 5254, - [5331] = 3963, - [5332] = 3954, - [5333] = 5333, - [5334] = 5258, - [5335] = 3947, - [5336] = 5255, + [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] = 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] = 3806, - [5339] = 5269, - [5340] = 5258, - [5341] = 3878, - [5342] = 5255, - [5343] = 3802, - [5344] = 5249, - [5345] = 3800, - [5346] = 5250, - [5347] = 5258, - [5348] = 3799, - [5349] = 4776, - [5350] = 3783, - [5351] = 5245, - [5352] = 5245, - [5353] = 3780, - [5354] = 4798, - [5355] = 4804, - [5356] = 5276, - [5357] = 3841, - [5358] = 5358, - [5359] = 2219, - [5360] = 5258, - [5361] = 4063, - [5362] = 5245, - [5363] = 4064, - [5364] = 4902, - [5365] = 5269, - [5366] = 4861, - [5367] = 5333, - [5368] = 5358, - [5369] = 3879, - [5370] = 3884, - [5371] = 5258, - [5372] = 3885, - [5373] = 4836, - [5374] = 3779, - [5375] = 3888, - [5376] = 5258, - [5377] = 3869, - [5378] = 5254, - [5379] = 5245, - [5380] = 3922, - [5381] = 3978, - [5382] = 3778, - [5383] = 3917, - [5384] = 5272, - [5385] = 3916, - [5386] = 5254, - [5387] = 5255, - [5388] = 5258, - [5389] = 3770, - [5390] = 5390, - [5391] = 5258, - [5392] = 5250, - [5393] = 5258, - [5394] = 5276, - [5395] = 4851, - [5396] = 4853, - [5397] = 5258, - [5398] = 3848, - [5399] = 3889, - [5400] = 5358, - [5401] = 5245, - [5402] = 3913, - [5403] = 3855, - [5404] = 3892, - [5405] = 5258, - [5406] = 4080, - [5407] = 3894, - [5408] = 5245, - [5409] = 3911, - [5410] = 5245, - [5411] = 5245, - [5412] = 5245, - [5413] = 5258, - [5414] = 5333, - [5415] = 5272, - [5416] = 4896, - [5417] = 5245, - [5418] = 4862, - [5419] = 5245, - [5420] = 3899, - [5421] = 4863, - [5422] = 4864, - [5423] = 3859, - [5424] = 5258, - [5425] = 4868, - [5426] = 5258, - [5427] = 5258, - [5428] = 3982, - [5429] = 3925, - [5430] = 5258, - [5431] = 3861, - [5432] = 5250, - [5433] = 5258, - [5434] = 3863, - [5435] = 5245, - [5436] = 5245, - [5437] = 5245, - [5438] = 5438, - [5439] = 5245, - [5440] = 5272, - [5441] = 5254, - [5442] = 5255, - [5443] = 4887, - [5444] = 4894, - [5445] = 5258, - [5446] = 4897, - [5447] = 4899, - [5448] = 4916, - [5449] = 3864, - [5450] = 5245, - [5451] = 4920, - [5452] = 5199, + [5338] = 5102, + [5339] = 5337, + [5340] = 5340, + [5341] = 5341, + [5342] = 5342, + [5343] = 5337, + [5344] = 4200, + [5345] = 5337, + [5346] = 5101, + [5347] = 5337, + [5348] = 5348, + [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] = 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] = 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] = 2399, - [5455] = 5191, - [5456] = 5190, - [5457] = 2213, - [5458] = 2215, - [5459] = 5195, - [5460] = 5197, - [5461] = 4776, - [5462] = 2216, - [5463] = 5253, - [5464] = 2209, - [5465] = 2198, - [5466] = 5190, - [5467] = 2440, - [5468] = 5197, - [5469] = 5195, - [5470] = 2445, - [5471] = 5199, - [5472] = 3718, - [5473] = 2211, - [5474] = 3281, - [5475] = 2214, - [5476] = 5191, - [5477] = 4776, - [5478] = 5197, - [5479] = 5199, - [5480] = 5253, - [5481] = 5337, - [5482] = 4763, - [5483] = 2198, - [5484] = 2448, - [5485] = 5190, - [5486] = 2455, - [5487] = 2471, - [5488] = 5191, - [5489] = 2198, - [5490] = 5195, - [5491] = 4798, - [5492] = 4804, - [5493] = 4861, - [5494] = 5199, - [5495] = 4862, - [5496] = 4863, - [5497] = 4864, - [5498] = 4868, - [5499] = 5197, - [5500] = 4776, - [5501] = 5195, - [5502] = 4905, - [5503] = 4887, - [5504] = 5253, - [5505] = 4900, - [5506] = 4901, - [5507] = 4894, - [5508] = 4776, - [5509] = 4896, - [5510] = 4897, - [5511] = 4899, - [5512] = 4916, - [5513] = 4920, - [5514] = 5190, - [5515] = 4902, - [5516] = 5516, - [5517] = 4904, - [5518] = 4853, - [5519] = 5191, - [5520] = 4851, - [5521] = 4906, - [5522] = 4911, - [5523] = 4852, - [5524] = 2443, - [5525] = 5337, - [5526] = 2217, - [5527] = 4836, - [5528] = 5199, - [5529] = 4776, - [5530] = 2399, - [5531] = 5253, + [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] = 2408, - [5534] = 5197, - [5535] = 5337, - [5536] = 4798, - [5537] = 2198, - [5538] = 4804, - [5539] = 3281, - [5540] = 5195, - [5541] = 5541, - [5542] = 2420, - [5543] = 5191, - [5544] = 5541, - [5545] = 5541, - [5546] = 5190, - [5547] = 2451, - [5548] = 5541, - [5549] = 2452, - [5550] = 2410, - [5551] = 5541, - [5552] = 2198, - [5553] = 5541, - [5554] = 5554, - [5555] = 5555, - [5556] = 2471, - [5557] = 2447, - [5558] = 2207, - [5559] = 3718, - [5560] = 2206, - [5561] = 3401, - [5562] = 2219, - [5563] = 2198, + [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] = 2197, + [5559] = 2269, + [5560] = 2446, + [5561] = 2217, + [5562] = 2207, + [5563] = 5563, [5564] = 2206, - [5565] = 2207, - [5566] = 2265, - [5567] = 3147, - [5568] = 3407, - [5569] = 2198, - [5570] = 5199, - [5571] = 5197, - [5572] = 5195, - [5573] = 5191, - [5574] = 3718, - [5575] = 2399, - [5576] = 2219, - [5577] = 5190, - [5578] = 2217, - [5579] = 3400, - [5580] = 5337, - [5581] = 2451, - [5582] = 2440, - [5583] = 2385, - [5584] = 2448, - [5585] = 2211, - [5586] = 2443, - [5587] = 2404, - [5588] = 3703, - [5589] = 2384, - [5590] = 3179, - [5591] = 3658, - [5592] = 5337, - [5593] = 2430, - [5594] = 2420, - [5595] = 2455, - [5596] = 5596, - [5597] = 5253, - [5598] = 3550, - [5599] = 5596, - [5600] = 2351, - [5601] = 2214, - [5602] = 2403, - [5603] = 2410, - [5604] = 2215, - [5605] = 3576, - [5606] = 5596, - [5607] = 2213, - [5608] = 2471, - [5609] = 2452, - [5610] = 2209, - [5611] = 4798, - [5612] = 4804, - [5613] = 3731, - [5614] = 5614, - [5615] = 2216, - [5616] = 2399, - [5617] = 2372, - [5618] = 5596, - [5619] = 2366, - [5620] = 2386, - [5621] = 4776, - [5622] = 3202, - [5623] = 3182, - [5624] = 3257, - [5625] = 2447, - [5626] = 2408, - [5627] = 2445, - [5628] = 4776, - [5629] = 2404, - [5630] = 3234, - [5631] = 3169, - [5632] = 4763, - [5633] = 3696, - [5634] = 5253, - [5635] = 3223, - [5636] = 5636, - [5637] = 2358, - [5638] = 5199, - [5639] = 5197, - [5640] = 5195, - [5641] = 5191, - [5642] = 5190, - [5643] = 5596, - [5644] = 2359, - [5645] = 3186, - [5646] = 2376, - [5647] = 5647, - [5648] = 5647, - [5649] = 3766, - [5650] = 5647, - [5651] = 3783, - [5652] = 3795, - [5653] = 5337, - [5654] = 3769, - [5655] = 3842, - [5656] = 3839, - [5657] = 3938, - [5658] = 3962, - [5659] = 3822, - [5660] = 3820, - [5661] = 3815, - [5662] = 3808, - [5663] = 3806, - [5664] = 3802, - [5665] = 3800, - [5666] = 3799, - [5667] = 5647, - [5668] = 3892, - [5669] = 5253, - [5670] = 3780, - [5671] = 3841, - [5672] = 3779, - [5673] = 3778, - [5674] = 5337, - [5675] = 3770, - [5676] = 5647, - [5677] = 3848, - [5678] = 4776, - [5679] = 3855, - [5680] = 3859, - [5681] = 3861, - [5682] = 3863, - [5683] = 3784, - [5684] = 3785, - [5685] = 3864, - [5686] = 5647, - [5687] = 3869, - [5688] = 3873, - [5689] = 3875, - [5690] = 5647, - [5691] = 3876, - [5692] = 3877, - [5693] = 3878, - [5694] = 3879, - [5695] = 3884, - [5696] = 3885, - [5697] = 3888, - [5698] = 3889, - [5699] = 5647, - [5700] = 5647, - [5701] = 3894, - [5702] = 3899, - [5703] = 4776, - [5704] = 5647, - [5705] = 5253, - [5706] = 5647, - [5707] = 3911, - [5708] = 3793, - [5709] = 5337, - [5710] = 3913, - [5711] = 5647, - [5712] = 5647, - [5713] = 3916, - [5714] = 3794, - [5715] = 5647, - [5716] = 3917, - [5717] = 3922, - [5718] = 3925, - [5719] = 5647, - [5720] = 5647, - [5721] = 3947, - [5722] = 3954, - [5723] = 5647, - [5724] = 3963, - [5725] = 5647, - [5726] = 3967, - [5727] = 3955, - [5728] = 3969, - [5729] = 5647, - [5730] = 3970, - [5731] = 3972, - [5732] = 4852, - [5733] = 3846, - [5734] = 5734, - [5735] = 5199, - [5736] = 3977, - [5737] = 5647, - [5738] = 5647, - [5739] = 4776, - [5740] = 5199, - [5741] = 5197, - [5742] = 5195, - [5743] = 5191, - [5744] = 5190, - [5745] = 3865, - [5746] = 3978, - [5747] = 3982, - [5748] = 5647, - [5749] = 5253, - [5750] = 5750, - [5751] = 4853, - [5752] = 4063, - [5753] = 4064, - [5754] = 4836, - [5755] = 4776, - [5756] = 5647, - [5757] = 2399, - [5758] = 5199, - [5759] = 5197, - [5760] = 5195, - [5761] = 5191, - [5762] = 5190, - [5763] = 5647, - [5764] = 4900, - [5765] = 4901, - [5766] = 4902, - [5767] = 1944, - [5768] = 4904, - [5769] = 4905, - [5770] = 1921, - [5771] = 4906, - [5772] = 5647, - [5773] = 4911, - [5774] = 1946, - [5775] = 4920, - [5776] = 4916, - [5777] = 4899, - [5778] = 4897, - [5779] = 4896, - [5780] = 5190, - [5781] = 5191, - [5782] = 4894, - [5783] = 4798, - [5784] = 5647, - [5785] = 4804, - [5786] = 4887, - [5787] = 4868, - [5788] = 4864, - [5789] = 4863, - [5790] = 4862, - [5791] = 4861, - [5792] = 4851, - [5793] = 5195, - [5794] = 5197, - [5795] = 4080, - [5796] = 4763, - [5797] = 5337, - [5798] = 5337, - [5799] = 2455, - [5800] = 5253, - [5801] = 2471, - [5802] = 2297, + [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] = 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] = 5803, - [5805] = 5803, - [5806] = 5803, - [5807] = 5190, - [5808] = 5808, - [5809] = 3718, - [5810] = 2455, + [5804] = 5103, + [5805] = 5102, + [5806] = 5105, + [5807] = 5227, + [5808] = 5103, + [5809] = 5104, + [5810] = 5810, [5811] = 5811, - [5812] = 5812, - [5813] = 5191, + [5812] = 5803, + [5813] = 5227, [5814] = 5814, [5815] = 5815, - [5816] = 5195, - [5817] = 5197, - [5818] = 5190, - [5819] = 5199, - [5820] = 5191, - [5821] = 5811, - [5822] = 2453, - [5823] = 5823, - [5824] = 5824, - [5825] = 5825, + [5816] = 5102, + [5817] = 5817, + [5818] = 5803, + [5819] = 5101, + [5820] = 5105, + [5821] = 5105, + [5822] = 5822, + [5823] = 5188, + [5824] = 5803, + [5825] = 2464, [5826] = 5826, [5827] = 5827, - [5828] = 2265, - [5829] = 5803, - [5830] = 5195, - [5831] = 2265, - [5832] = 5811, - [5833] = 2307, - [5834] = 5190, - [5835] = 5191, - [5836] = 5836, - [5837] = 5814, + [5828] = 5826, + [5829] = 5829, + [5830] = 5830, + [5831] = 5810, + [5832] = 5101, + [5833] = 5104, + [5834] = 5834, + [5835] = 5104, + [5836] = 5103, + [5837] = 2298, [5838] = 5838, - [5839] = 5337, + [5839] = 5102, [5840] = 5840, - [5841] = 5195, - [5842] = 4776, - [5843] = 5197, - [5844] = 5840, - [5845] = 5199, - [5846] = 5811, - [5847] = 5847, - [5848] = 5848, - [5849] = 5836, - [5850] = 5190, - [5851] = 5848, - [5852] = 5191, - [5853] = 5195, - [5854] = 5838, - [5855] = 5253, - [5856] = 5803, - [5857] = 5857, - [5858] = 5197, - [5859] = 5199, - [5860] = 5860, - [5861] = 5823, - [5862] = 5190, - [5863] = 5191, - [5864] = 5195, - [5865] = 5865, - [5866] = 5197, - [5867] = 5253, - [5868] = 5823, - [5869] = 5803, - [5870] = 5870, - [5871] = 5871, - [5872] = 5811, - [5873] = 5199, + [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] = 5803, - [5876] = 5190, - [5877] = 5191, - [5878] = 5195, - [5879] = 5197, - [5880] = 5199, - [5881] = 5823, - [5882] = 2453, - [5883] = 5803, - [5884] = 5199, - [5885] = 5811, - [5886] = 5197, - [5887] = 5823, - [5888] = 4804, - [5889] = 5337, - [5890] = 3476, - [5891] = 5253, - [5892] = 5337, - [5893] = 5253, - [5894] = 5253, - [5895] = 3539, - [5896] = 3103, - [5897] = 4798, - [5898] = 3573, - [5899] = 3493, - [5900] = 4776, - [5901] = 5337, - [5902] = 2399, - [5903] = 4776, - [5904] = 3096, - [5905] = 2455, - [5906] = 5906, - [5907] = 5907, - [5908] = 5253, - [5909] = 2471, - [5910] = 5253, - [5911] = 4804, - [5912] = 5337, - [5913] = 5913, - [5914] = 3597, - [5915] = 5337, - [5916] = 3569, - [5917] = 4798, - [5918] = 5337, - [5919] = 4776, - [5920] = 5253, - [5921] = 4776, - [5922] = 5922, - [5923] = 5337, - [5924] = 4776, - [5925] = 5253, - [5926] = 2453, - [5927] = 2207, - [5928] = 2206, - [5929] = 5929, - [5930] = 5930, - [5931] = 2217, - [5932] = 5190, - [5933] = 2335, - [5934] = 2331, - [5935] = 2307, - [5936] = 5195, - [5937] = 5197, - [5938] = 5337, - [5939] = 5199, - [5940] = 5253, - [5941] = 5337, - [5942] = 5199, - [5943] = 5929, - [5944] = 4776, - [5945] = 5190, - [5946] = 5197, - [5947] = 5195, - [5948] = 2453, - [5949] = 2453, - [5950] = 5337, - [5951] = 5337, - [5952] = 5952, - [5953] = 5337, - [5954] = 5197, - [5955] = 5199, - [5956] = 5195, - [5957] = 5191, - [5958] = 5253, - [5959] = 5952, - [5960] = 5191, - [5961] = 5952, - [5962] = 5191, - [5963] = 5963, - [5964] = 2297, - [5965] = 5190, - [5966] = 5253, - [5967] = 5197, - [5968] = 4776, - [5969] = 4776, - [5970] = 5253, - [5971] = 4776, - [5972] = 2453, - [5973] = 5952, - [5974] = 5974, - [5975] = 5195, - [5976] = 5191, - [5977] = 4776, - [5978] = 5190, - [5979] = 4776, - [5980] = 5199, - [5981] = 5337, - [5982] = 5253, - [5983] = 2453, - [5984] = 5197, - [5985] = 5253, - [5986] = 5195, - [5987] = 2336, - [5988] = 2453, - [5989] = 5952, - [5990] = 2453, - [5991] = 5191, - [5992] = 5190, - [5993] = 2334, - [5994] = 5994, - [5995] = 5199, - [5996] = 5996, - [5997] = 5997, - [5998] = 5998, - [5999] = 2453, - [6000] = 6000, - [6001] = 6001, + [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] = 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] = 2453, - [6004] = 6004, + [6003] = 6003, + [6004] = 1920, [6005] = 6005, - [6006] = 2453, + [6006] = 6006, [6007] = 6007, [6008] = 6008, - [6009] = 1921, + [6009] = 2464, [6010] = 6010, [6011] = 6011, [6012] = 6012, [6013] = 6013, [6014] = 6014, - [6015] = 6015, - [6016] = 2453, + [6015] = 2464, + [6016] = 2464, [6017] = 6017, [6018] = 6018, - [6019] = 6019, - [6020] = 2335, - [6021] = 2331, + [6019] = 2464, + [6020] = 6020, + [6021] = 6021, [6022] = 6022, - [6023] = 6013, + [6023] = 6023, [6024] = 6024, - [6025] = 2471, - [6026] = 6026, + [6025] = 2341, + [6026] = 2338, [6027] = 6027, - [6028] = 6024, - [6029] = 5929, - [6030] = 6030, - [6031] = 2334, + [6028] = 6028, + [6029] = 6029, + [6030] = 6028, + [6031] = 6031, [6032] = 6032, - [6033] = 6033, - [6034] = 6034, - [6035] = 6027, - [6036] = 6036, - [6037] = 2292, - [6038] = 6026, - [6039] = 2336, - [6040] = 6030, - [6041] = 6026, - [6042] = 2399, - [6043] = 6043, - [6044] = 6033, - [6045] = 6033, - [6046] = 6024, - [6047] = 5929, - [6048] = 6048, + [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] = 6045, + [6046] = 2286, + [6047] = 6047, + [6048] = 6031, [6049] = 6049, - [6050] = 6050, - [6051] = 6051, - [6052] = 6051, - [6053] = 6050, - [6054] = 6048, - [6055] = 6049, - [6056] = 6050, - [6057] = 5930, - [6058] = 2208, - [6059] = 6048, - [6060] = 6050, - [6061] = 6061, - [6062] = 6062, - [6063] = 6048, - [6064] = 6051, - [6065] = 3449, - [6066] = 6050, - [6067] = 6051, - [6068] = 6068, - [6069] = 6062, - [6070] = 6062, - [6071] = 6048, - [6072] = 6062, - [6073] = 6062, - [6074] = 6068, - [6075] = 6051, - [6076] = 6076, - [6077] = 6077, - [6078] = 6077, - [6079] = 6079, - [6080] = 6080, - [6081] = 2419, + [6050] = 6032, + [6051] = 6047, + [6052] = 6052, + [6053] = 6053, + [6054] = 6054, + [6055] = 6054, + [6056] = 6056, + [6057] = 6056, + [6058] = 6056, + [6059] = 6054, + [6060] = 6060, + [6061] = 2212, + [6062] = 3114, + [6063] = 6056, + [6064] = 6064, + [6065] = 6065, + [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] = 6083, - [6085] = 6079, - [6086] = 6079, + [6084] = 6084, + [6085] = 6085, + [6086] = 2413, [6087] = 6087, [6088] = 6088, - [6089] = 3147, - [6090] = 6079, - [6091] = 6091, - [6092] = 6079, - [6093] = 6093, + [6089] = 6089, + [6090] = 6085, + [6091] = 6085, + [6092] = 6082, + [6093] = 2969, [6094] = 6094, - [6095] = 6095, - [6096] = 6094, - [6097] = 6094, - [6098] = 6094, - [6099] = 6094, - [6100] = 6094, - [6101] = 3179, - [6102] = 6094, - [6103] = 6094, - [6104] = 6104, - [6105] = 6094, - [6106] = 6094, - [6107] = 6094, - [6108] = 6094, - [6109] = 3096, - [6110] = 6094, - [6111] = 6094, - [6112] = 6094, - [6113] = 6104, - [6114] = 6094, - [6115] = 2455, - [6116] = 6094, - [6117] = 6104, - [6118] = 6094, - [6119] = 6094, - [6120] = 6094, - [6121] = 6094, - [6122] = 6094, - [6123] = 6094, - [6124] = 6094, - [6125] = 6094, - [6126] = 6094, - [6127] = 3103, - [6128] = 3202, - [6129] = 6094, - [6130] = 3169, - [6131] = 3182, - [6132] = 3257, - [6133] = 6094, - [6134] = 3223, - [6135] = 6094, - [6136] = 6094, - [6137] = 6137, - [6138] = 6138, - [6139] = 6094, - [6140] = 6094, - [6141] = 6141, - [6142] = 6094, - [6143] = 6094, - [6144] = 6104, - [6145] = 6094, - [6146] = 6094, - [6147] = 6094, - [6148] = 6094, - [6149] = 6149, - [6150] = 6094, - [6151] = 6094, - [6152] = 6152, - [6153] = 6094, - [6154] = 6154, - [6155] = 3234, - [6156] = 6094, - [6157] = 6094, - [6158] = 6094, - [6159] = 6104, - [6160] = 6094, - [6161] = 6161, - [6162] = 6094, - [6163] = 6094, - [6164] = 6094, - [6165] = 6094, - [6166] = 6152, - [6167] = 6094, - [6168] = 3186, - [6169] = 2453, - [6170] = 2453, - [6171] = 2453, - [6172] = 2453, - [6173] = 2453, - [6174] = 6027, - [6175] = 2453, - [6176] = 2453, - [6177] = 2453, - [6178] = 2453, - [6179] = 6179, - [6180] = 2453, - [6181] = 2453, - [6182] = 2453, - [6183] = 6183, - [6184] = 2453, - [6185] = 6185, - [6186] = 6186, - [6187] = 2453, - [6188] = 2403, - [6189] = 2453, - [6190] = 2453, - [6191] = 6191, - [6192] = 2453, - [6193] = 2403, - [6194] = 6194, - [6195] = 2453, - [6196] = 2453, - [6197] = 2453, - [6198] = 2403, - [6199] = 2453, - [6200] = 2453, - [6201] = 6201, - [6202] = 2453, - [6203] = 6203, - [6204] = 6179, - [6205] = 2453, - [6206] = 2453, - [6207] = 6207, - [6208] = 6208, - [6209] = 2403, - [6210] = 6210, + [6095] = 6083, + [6096] = 6096, + [6097] = 6085, + [6098] = 6085, + [6099] = 6099, + [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] = 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] = 2464, + [6177] = 2464, + [6178] = 2464, + [6179] = 2438, + [6180] = 6180, + [6181] = 2464, + [6182] = 2464, + [6183] = 2438, + [6184] = 6184, + [6185] = 2464, + [6186] = 2464, + [6187] = 6187, + [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] = 6215, - [6216] = 6212, + [6214] = 6029, + [6215] = 2464, + [6216] = 6216, [6217] = 6217, [6218] = 6218, - [6219] = 6213, - [6220] = 6220, + [6219] = 6219, + [6220] = 6216, [6221] = 6221, [6222] = 6222, [6223] = 6223, - [6224] = 6223, - [6225] = 6223, + [6224] = 6218, + [6225] = 6225, [6226] = 6226, - [6227] = 6223, - [6228] = 6223, + [6227] = 6227, + [6228] = 6228, [6229] = 6229, - [6230] = 6223, - [6231] = 6223, - [6232] = 6223, - [6233] = 6223, - [6234] = 6223, - [6235] = 6235, - [6236] = 6223, + [6230] = 6229, + [6231] = 6231, + [6232] = 6232, + [6233] = 6233, + [6234] = 6234, + [6235] = 6234, + [6236] = 6233, [6237] = 6237, - [6238] = 6223, - [6239] = 6223, + [6238] = 6229, + [6239] = 6233, [6240] = 6240, - [6241] = 6241, - [6242] = 6223, - [6243] = 6243, - [6244] = 3573, - [6245] = 6229, - [6246] = 6223, - [6247] = 6223, - [6248] = 3539, - [6249] = 6229, - [6250] = 6223, - [6251] = 6243, - [6252] = 6223, - [6253] = 6226, - [6254] = 6223, - [6255] = 6223, - [6256] = 6229, - [6257] = 6223, - [6258] = 6243, - [6259] = 6229, - [6260] = 6243, - [6261] = 6241, - [6262] = 3476, - [6263] = 3493, - [6264] = 6264, - [6265] = 6223, - [6266] = 6223, - [6267] = 6223, - [6268] = 6268, - [6269] = 6269, - [6270] = 6223, - [6271] = 6268, - [6272] = 6237, - [6273] = 6223, - [6274] = 6223, - [6275] = 6223, - [6276] = 6223, - [6277] = 6277, - [6278] = 6223, - [6279] = 6241, - [6280] = 6243, - [6281] = 6223, - [6282] = 6241, - [6283] = 6243, - [6284] = 6223, - [6285] = 6223, - [6286] = 6229, - [6287] = 6268, - [6288] = 6288, - [6289] = 6223, - [6290] = 6229, - [6291] = 6223, - [6292] = 6241, - [6293] = 6223, - [6294] = 6223, - [6295] = 6226, - [6296] = 6268, - [6297] = 6223, - [6298] = 6229, - [6299] = 6229, - [6300] = 6223, - [6301] = 6268, - [6302] = 6223, - [6303] = 6303, - [6304] = 6241, - [6305] = 6305, - [6306] = 6223, - [6307] = 6241, - [6308] = 6308, - [6309] = 6243, - [6310] = 6268, - [6311] = 6243, - [6312] = 6312, + [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] = 6314, - [6315] = 6241, - [6316] = 6223, - [6317] = 6243, - [6318] = 6318, - [6319] = 6243, - [6320] = 6243, - [6321] = 6223, - [6322] = 6223, - [6323] = 6223, - [6324] = 6243, - [6325] = 6229, - [6326] = 6229, - [6327] = 6223, - [6328] = 6226, - [6329] = 6223, - [6330] = 6229, - [6331] = 6223, - [6332] = 3569, - [6333] = 3597, - [6334] = 6223, + [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] = 6229, - [6337] = 6243, - [6338] = 6223, - [6339] = 6229, - [6340] = 6223, - [6341] = 6341, - [6342] = 6223, - [6343] = 6223, - [6344] = 6223, - [6345] = 6237, - [6346] = 6346, - [6347] = 6223, - [6348] = 6241, - [6349] = 6229, - [6350] = 6243, - [6351] = 6243, - [6352] = 6229, - [6353] = 6223, - [6354] = 6243, - [6355] = 6226, - [6356] = 6243, + [6336] = 6336, + [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] = 3449, - [6359] = 6359, - [6360] = 6360, - [6361] = 6361, - [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] = 6366, + [6371] = 6371, [6372] = 6372, - [6373] = 6373, + [6373] = 6370, [6374] = 6374, [6375] = 6375, - [6376] = 6376, + [6376] = 6370, [6377] = 6377, - [6378] = 6366, - [6379] = 6366, - [6380] = 6380, + [6378] = 6370, + [6379] = 6379, + [6380] = 6379, [6381] = 6381, - [6382] = 6382, - [6383] = 6366, - [6384] = 6384, - [6385] = 6385, - [6386] = 6386, - [6387] = 6366, - [6388] = 6366, + [6382] = 6370, + [6383] = 6370, + [6384] = 6370, + [6385] = 6370, + [6386] = 6370, + [6387] = 6387, + [6388] = 6370, [6389] = 6389, - [6390] = 6366, + [6390] = 6390, [6391] = 6391, [6392] = 6392, - [6393] = 6393, - [6394] = 6394, - [6395] = 6366, - [6396] = 6366, - [6397] = 6366, - [6398] = 6398, - [6399] = 6372, + [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] = 6407, - [6408] = 6407, + [6408] = 6408, [6409] = 6409, - [6410] = 6410, - [6411] = 6411, + [6410] = 6370, + [6411] = 6370, [6412] = 6412, - [6413] = 6407, - [6414] = 6366, - [6415] = 6366, - [6416] = 6366, - [6417] = 6366, + [6413] = 6413, + [6414] = 6370, + [6415] = 6370, + [6416] = 6370, + [6417] = 6417, [6418] = 6418, - [6419] = 6366, - [6420] = 6403, - [6421] = 6366, + [6419] = 6419, + [6420] = 6402, + [6421] = 6421, [6422] = 6422, - [6423] = 6366, - [6424] = 6366, - [6425] = 6403, - [6426] = 6366, + [6423] = 6423, + [6424] = 6424, + [6425] = 6425, + [6426] = 6426, [6427] = 6427, - [6428] = 6366, - [6429] = 6369, - [6430] = 6430, - [6431] = 6431, - [6432] = 6372, - [6433] = 6366, - [6434] = 6434, + [6428] = 6428, + [6429] = 6387, + [6430] = 6402, + [6431] = 6370, + [6432] = 6432, + [6433] = 6433, + [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] = 6487, - [6489] = 6487, - [6490] = 6490, - [6491] = 6490, - [6492] = 6490, - [6493] = 6493, - [6494] = 6487, - [6495] = 6490, - [6496] = 6490, - [6497] = 6487, - [6498] = 6493, - [6499] = 6487, - [6500] = 6493, - [6501] = 6493, - [6502] = 6490, - [6503] = 6493, - [6504] = 6493, - [6505] = 6487, - [6506] = 6490, - [6507] = 6493, - [6508] = 6493, - [6509] = 6490, - [6510] = 6490, - [6511] = 6490, - [6512] = 6490, - [6513] = 6487, - [6514] = 6493, - [6515] = 6487, - [6516] = 6493, - [6517] = 6487, - [6518] = 6490, - [6519] = 6490, - [6520] = 6490, - [6521] = 6493, - [6522] = 6493, - [6523] = 6487, - [6524] = 6493, - [6525] = 6493, - [6526] = 6490, - [6527] = 6487, - [6528] = 6490, - [6529] = 6487, - [6530] = 6493, - [6531] = 6487, - [6532] = 6493, - [6533] = 6493, - [6534] = 6487, - [6535] = 6490, - [6536] = 6493, - [6537] = 6487, - [6538] = 6487, - [6539] = 6487, - [6540] = 6493, - [6541] = 6493, - [6542] = 6490, - [6543] = 6487, - [6544] = 6490, - [6545] = 6490, - [6546] = 6490, - [6547] = 6487, - [6548] = 6493, - [6549] = 6490, - [6550] = 6487, - [6551] = 6487, - [6552] = 6493, + [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] = 2399, + [6559] = 6559, [6560] = 6560, [6561] = 6561, [6562] = 6562, @@ -12395,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, @@ -12403,20 +12433,20 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6572] = 6572, [6573] = 6573, [6574] = 6574, - [6575] = 6575, + [6575] = 2218, [6576] = 6576, [6577] = 6577, [6578] = 6578, - [6579] = 2219, + [6579] = 6579, [6580] = 6580, [6581] = 6581, - [6582] = 6582, - [6583] = 2217, + [6582] = 2458, + [6583] = 6583, [6584] = 6584, [6585] = 6585, [6586] = 6586, [6587] = 6587, - [6588] = 2471, + [6588] = 6588, [6589] = 6589, [6590] = 6590, [6591] = 6591, @@ -12426,47 +12456,47 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6595] = 6595, [6596] = 6596, [6597] = 6597, - [6598] = 6592, - [6599] = 6599, + [6598] = 6598, + [6599] = 2392, [6600] = 6600, - [6601] = 6599, + [6601] = 6601, [6602] = 6602, [6603] = 6603, [6604] = 6604, [6605] = 6605, - [6606] = 6606, + [6606] = 6589, [6607] = 6607, [6608] = 6608, [6609] = 6609, [6610] = 6610, - [6611] = 6611, + [6611] = 6589, [6612] = 6612, - [6613] = 6613, + [6613] = 6588, [6614] = 6614, [6615] = 6615, [6616] = 6616, - [6617] = 6617, + [6617] = 6588, [6618] = 6618, - [6619] = 6599, + [6619] = 6619, [6620] = 6620, - [6621] = 6599, + [6621] = 6621, [6622] = 6622, [6623] = 6623, [6624] = 6624, [6625] = 6625, - [6626] = 6626, - [6627] = 6627, + [6626] = 6588, + [6627] = 6589, [6628] = 6628, - [6629] = 6592, + [6629] = 6629, [6630] = 6630, [6631] = 6631, [6632] = 6632, - [6633] = 6592, - [6634] = 2399, + [6633] = 6633, + [6634] = 6634, [6635] = 6635, [6636] = 6636, [6637] = 6637, - [6638] = 6638, + [6638] = 2217, [6639] = 6639, [6640] = 6640, [6641] = 6641, @@ -12476,63 +12506,63 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6645] = 6645, [6646] = 6646, [6647] = 6647, - [6648] = 2219, + [6648] = 6648, [6649] = 6649, [6650] = 6650, [6651] = 6651, - [6652] = 6652, - [6653] = 6653, + [6652] = 6650, + [6653] = 6650, [6654] = 6654, - [6655] = 6655, - [6656] = 6656, - [6657] = 6652, - [6658] = 6652, - [6659] = 6656, - [6660] = 6654, + [6655] = 2471, + [6656] = 6645, + [6657] = 6657, + [6658] = 6654, + [6659] = 6659, + [6660] = 1933, [6661] = 6661, - [6662] = 6662, - [6663] = 6661, - [6664] = 6661, - [6665] = 6665, + [6662] = 6645, + [6663] = 6649, + [6664] = 6649, + [6665] = 1932, [6666] = 6666, - [6667] = 6655, - [6668] = 6656, + [6667] = 6667, + [6668] = 6666, [6669] = 6669, - [6670] = 6670, - [6671] = 6655, - [6672] = 6661, + [6670] = 6645, + [6671] = 6648, + [6672] = 6669, [6673] = 6673, - [6674] = 6662, - [6675] = 6662, - [6676] = 6665, - [6677] = 6654, + [6674] = 6674, + [6675] = 6645, + [6676] = 6650, + [6677] = 6669, [6678] = 6678, - [6679] = 6679, - [6680] = 6680, - [6681] = 2455, - [6682] = 6662, - [6683] = 6656, - [6684] = 6662, - [6685] = 6662, - [6686] = 6652, - [6687] = 6655, - [6688] = 6654, - [6689] = 1932, + [6679] = 6654, + [6680] = 6648, + [6681] = 6654, + [6682] = 6649, + [6683] = 6666, + [6684] = 6684, + [6685] = 6666, + [6686] = 6666, + [6687] = 6687, + [6688] = 6650, + [6689] = 6689, [6690] = 6690, - [6691] = 6691, - [6692] = 6692, - [6693] = 6661, - [6694] = 6694, - [6695] = 6652, - [6696] = 6656, - [6697] = 1933, - [6698] = 6698, + [6691] = 6669, + [6692] = 6649, + [6693] = 6693, + [6694] = 6648, + [6695] = 6695, + [6696] = 6648, + [6697] = 6645, + [6698] = 6666, [6699] = 6699, [6700] = 6700, - [6701] = 6655, - [6702] = 6665, - [6703] = 6655, - [6704] = 6665, + [6701] = 6701, + [6702] = 6702, + [6703] = 6703, + [6704] = 6704, [6705] = 6705, [6706] = 6706, [6707] = 6707, @@ -12540,7 +12570,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6709] = 6709, [6710] = 6710, [6711] = 6711, - [6712] = 2471, + [6712] = 6712, [6713] = 6713, [6714] = 6714, [6715] = 6715, @@ -12548,17 +12578,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6717] = 6717, [6718] = 6718, [6719] = 6719, - [6720] = 6720, + [6720] = 6709, [6721] = 6721, - [6722] = 6030, - [6723] = 6723, + [6722] = 6722, + [6723] = 6709, [6724] = 6724, [6725] = 6725, [6726] = 6726, [6727] = 6727, - [6728] = 6713, - [6729] = 6729, - [6730] = 6715, + [6728] = 6711, + [6729] = 2458, + [6730] = 6730, [6731] = 6731, [6732] = 6732, [6733] = 6733, @@ -12567,318 +12597,318 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6736] = 6736, [6737] = 6737, [6738] = 6738, - [6739] = 6713, - [6740] = 6740, - [6741] = 6741, + [6739] = 6710, + [6740] = 6710, + [6741] = 6705, [6742] = 6742, [6743] = 6743, - [6744] = 2206, - [6745] = 6727, + [6744] = 6710, + [6745] = 6745, [6746] = 6746, - [6747] = 6713, + [6747] = 6747, [6748] = 6748, [6749] = 6749, [6750] = 6750, - [6751] = 6715, - [6752] = 6752, - [6753] = 6753, - [6754] = 6735, - [6755] = 6755, - [6756] = 1938, - [6757] = 6746, - [6758] = 6735, + [6751] = 6709, + [6752] = 6705, + [6753] = 1935, + [6754] = 6711, + [6755] = 2207, + [6756] = 2206, + [6757] = 6711, + [6758] = 6758, [6759] = 6759, [6760] = 6760, - [6761] = 6727, + [6761] = 6640, [6762] = 6762, - [6763] = 6715, - [6764] = 6764, + [6763] = 6762, + [6764] = 6762, [6765] = 6765, - [6766] = 6746, - [6767] = 6735, + [6766] = 6705, + [6767] = 6767, [6768] = 6768, - [6769] = 6650, - [6770] = 6735, - [6771] = 6727, - [6772] = 6715, - [6773] = 6713, - [6774] = 6727, + [6769] = 6769, + [6770] = 6710, + [6771] = 6711, + [6772] = 6047, + [6773] = 6705, + [6774] = 6709, [6775] = 6775, [6776] = 6776, [6777] = 6777, [6778] = 6778, - [6779] = 2207, + [6779] = 6778, [6780] = 6780, - [6781] = 6781, + [6781] = 6778, [6782] = 6782, [6783] = 6783, [6784] = 6784, - [6785] = 6680, + [6785] = 6785, [6786] = 6786, [6787] = 6787, [6788] = 6788, - [6789] = 6789, + [6789] = 6784, [6790] = 6790, [6791] = 6791, [6792] = 6792, - [6793] = 6793, - [6794] = 6788, - [6795] = 6788, + [6793] = 3270, + [6794] = 6794, + [6795] = 6795, [6796] = 6796, - [6797] = 6797, - [6798] = 6782, - [6799] = 6793, + [6797] = 6790, + [6798] = 6798, + [6799] = 6799, [6800] = 6800, - [6801] = 6801, - [6802] = 6782, - [6803] = 6796, - [6804] = 6783, - [6805] = 6793, + [6801] = 6790, + [6802] = 6785, + [6803] = 6803, + [6804] = 6640, + [6805] = 6805, [6806] = 6806, - [6807] = 6807, + [6807] = 6782, [6808] = 6808, [6809] = 6809, [6810] = 6810, - [6811] = 6791, - [6812] = 6790, - [6813] = 6813, + [6811] = 6811, + [6812] = 6782, + [6813] = 6778, [6814] = 6814, - [6815] = 6815, - [6816] = 6816, - [6817] = 6782, - [6818] = 6818, - [6819] = 6796, - [6820] = 6790, - [6821] = 6791, + [6815] = 6790, + [6816] = 6790, + [6817] = 6784, + [6818] = 6795, + [6819] = 6819, + [6820] = 6820, + [6821] = 6821, [6822] = 6822, - [6823] = 6782, - [6824] = 6824, + [6823] = 6823, + [6824] = 6784, [6825] = 6825, - [6826] = 6783, - [6827] = 6827, + [6826] = 6826, + [6827] = 6784, [6828] = 6828, - [6829] = 6829, - [6830] = 6830, - [6831] = 6831, - [6832] = 6782, + [6829] = 6803, + [6830] = 6820, + [6831] = 6673, + [6832] = 6832, [6833] = 6833, - [6834] = 6834, - [6835] = 6791, - [6836] = 2452, + [6834] = 6795, + [6835] = 6835, + [6836] = 6836, [6837] = 6837, [6838] = 6838, [6839] = 6839, - [6840] = 6788, + [6840] = 6785, [6841] = 6841, [6842] = 6842, [6843] = 6843, - [6844] = 6844, + [6844] = 6810, [6845] = 6845, - [6846] = 6793, + [6846] = 6846, [6847] = 6847, - [6848] = 6848, + [6848] = 6810, [6849] = 6849, - [6850] = 6850, - [6851] = 6851, + [6850] = 6791, + [6851] = 6810, [6852] = 6852, [6853] = 6853, - [6854] = 6791, - [6855] = 6790, + [6854] = 6803, + [6855] = 6833, [6856] = 6856, - [6857] = 6857, + [6857] = 6780, [6858] = 6858, - [6859] = 6782, - [6860] = 6797, - [6861] = 6796, - [6862] = 6853, - [6863] = 6852, - [6864] = 6851, + [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] = 6871, - [6872] = 6850, - [6873] = 6790, - [6874] = 6650, - [6875] = 6875, - [6876] = 6788, + [6871] = 6820, + [6872] = 6872, + [6873] = 5227, + [6874] = 6784, + [6875] = 6790, + [6876] = 6876, [6877] = 6877, - [6878] = 5337, + [6878] = 6795, [6879] = 6879, - [6880] = 6797, - [6881] = 6796, + [6880] = 6880, + [6881] = 6881, [6882] = 6882, [6883] = 6883, - [6884] = 6781, + [6884] = 6884, [6885] = 6885, - [6886] = 6886, - [6887] = 6887, + [6886] = 6790, + [6887] = 6806, [6888] = 6888, - [6889] = 6889, - [6890] = 6783, + [6889] = 2444, + [6890] = 6866, [6891] = 6891, - [6892] = 6892, - [6893] = 5253, - [6894] = 6894, - [6895] = 6791, + [6892] = 6790, + [6893] = 6893, + [6894] = 5188, + [6895] = 6785, [6896] = 6896, [6897] = 6897, - [6898] = 6898, - [6899] = 6844, - [6900] = 6791, - [6901] = 6796, - [6902] = 6902, - [6903] = 6903, - [6904] = 6904, + [6898] = 6790, + [6899] = 6899, + [6900] = 6790, + [6901] = 6803, + [6902] = 6782, + [6903] = 6803, + [6904] = 6820, [6905] = 6905, - [6906] = 6906, - [6907] = 4063, - [6908] = 6875, - [6909] = 6903, - [6910] = 6791, - [6911] = 6911, + [6906] = 6881, + [6907] = 6907, + [6908] = 6908, + [6909] = 6909, + [6910] = 6910, + [6911] = 6862, [6912] = 6912, - [6913] = 6844, - [6914] = 6791, - [6915] = 6915, - [6916] = 6844, - [6917] = 6797, - [6918] = 3982, - [6919] = 6783, - [6920] = 6793, - [6921] = 6790, + [6913] = 6913, + [6914] = 6914, + [6915] = 6882, + [6916] = 6810, + [6917] = 6785, + [6918] = 6918, + [6919] = 3259, + [6920] = 6782, + [6921] = 6921, [6922] = 6922, [6923] = 6923, - [6924] = 6791, - [6925] = 6869, - [6926] = 6915, + [6924] = 1945, + [6925] = 6925, + [6926] = 6926, [6927] = 6927, - [6928] = 6928, + [6928] = 6926, [6929] = 6929, [6930] = 6930, - [6931] = 6931, - [6932] = 6928, - [6933] = 6933, + [6931] = 2350, + [6932] = 6932, + [6933] = 6926, [6934] = 6934, [6935] = 6935, [6936] = 6936, [6937] = 6937, [6938] = 6938, - [6939] = 6939, + [6939] = 6926, [6940] = 6940, [6941] = 6941, - [6942] = 2372, - [6943] = 2351, + [6942] = 2446, + [6943] = 6926, [6944] = 6944, [6945] = 6945, - [6946] = 6946, + [6946] = 5227, [6947] = 6947, - [6948] = 6948, - [6949] = 5337, - [6950] = 6950, - [6951] = 2376, + [6948] = 1944, + [6949] = 6949, + [6950] = 6647, + [6951] = 6923, [6952] = 6952, - [6953] = 2384, - [6954] = 6945, - [6955] = 6928, - [6956] = 2359, - [6957] = 5337, - [6958] = 5253, - [6959] = 6959, + [6953] = 6689, + [6954] = 6954, + [6955] = 5188, + [6956] = 6690, + [6957] = 6957, + [6958] = 6958, + [6959] = 6944, [6960] = 6960, [6961] = 6961, [6962] = 6962, - [6963] = 6679, - [6964] = 6678, - [6965] = 6946, - [6966] = 6927, - [6967] = 6927, + [6963] = 6963, + [6964] = 6927, + [6965] = 6965, + [6966] = 6966, + [6967] = 6967, [6968] = 6968, - [6969] = 6928, - [6970] = 6970, - [6971] = 6928, - [6972] = 6972, + [6969] = 6969, + [6970] = 6926, + [6971] = 6971, + [6972] = 6965, [6973] = 6973, [6974] = 6974, [6975] = 6975, [6976] = 6976, - [6977] = 6977, + [6977] = 6651, [6978] = 6978, [6979] = 6979, - [6980] = 6980, - [6981] = 1943, + [6980] = 5227, + [6981] = 6981, [6982] = 6982, [6983] = 6983, [6984] = 6984, [6985] = 6985, - [6986] = 6927, - [6987] = 6987, + [6986] = 2370, + [6987] = 6960, [6988] = 6988, [6989] = 6989, [6990] = 6990, [6991] = 6991, [6992] = 6992, - [6993] = 6945, - [6994] = 1945, - [6995] = 6995, - [6996] = 6996, + [6993] = 6993, + [6994] = 6994, + [6995] = 6965, + [6996] = 1943, [6997] = 6997, - [6998] = 6998, - [6999] = 6999, + [6998] = 5188, + [6999] = 6960, [7000] = 7000, - [7001] = 7001, + [7001] = 6965, [7002] = 7002, - [7003] = 2447, + [7003] = 7003, [7004] = 7004, - [7005] = 7005, - [7006] = 7006, - [7007] = 5253, - [7008] = 6927, - [7009] = 6973, + [7005] = 6927, + [7006] = 2374, + [7007] = 2375, + [7008] = 6929, + [7009] = 7009, [7010] = 7010, - [7011] = 6946, - [7012] = 6933, - [7013] = 7013, + [7011] = 6997, + [7012] = 2351, + [7013] = 6965, [7014] = 7014, - [7015] = 7015, + [7015] = 6992, [7016] = 7016, - [7017] = 1942, - [7018] = 6973, - [7019] = 7019, - [7020] = 6927, + [7017] = 6935, + [7018] = 7018, + [7019] = 6992, + [7020] = 6997, [7021] = 7021, [7022] = 7022, - [7023] = 6651, + [7023] = 7023, [7024] = 7024, - [7025] = 6927, - [7026] = 6927, + [7025] = 7025, + [7026] = 7026, [7027] = 7027, - [7028] = 6970, - [7029] = 7029, - [7030] = 6653, + [7028] = 7028, + [7029] = 6926, + [7030] = 7030, [7031] = 7031, - [7032] = 6962, - [7033] = 7006, - [7034] = 7034, - [7035] = 6970, + [7032] = 7032, + [7033] = 7033, + [7034] = 6926, + [7035] = 5227, [7036] = 7036, [7037] = 7037, - [7038] = 7038, + [7038] = 6929, [7039] = 7039, - [7040] = 6977, + [7040] = 7040, [7041] = 7041, - [7042] = 5337, - [7043] = 5253, - [7044] = 7006, + [7042] = 5188, + [7043] = 7043, + [7044] = 7044, [7045] = 7045, [7046] = 7046, [7047] = 7047, [7048] = 7048, [7049] = 7049, - [7050] = 7050, + [7050] = 6689, [7051] = 7051, [7052] = 7052, [7053] = 7053, @@ -12886,18 +12916,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7055] = 7055, [7056] = 7056, [7057] = 7057, - [7058] = 7058, + [7058] = 6690, [7059] = 7059, [7060] = 7060, [7061] = 7061, [7062] = 7062, - [7063] = 7039, + [7063] = 7063, [7064] = 7064, [7065] = 7065, [7066] = 7066, [7067] = 7067, - [7068] = 7061, - [7069] = 7069, + [7068] = 7060, + [7069] = 7046, [7070] = 7070, [7071] = 7071, [7072] = 7072, @@ -12905,22 +12935,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7074] = 7074, [7075] = 7075, [7076] = 7076, - [7077] = 7070, - [7078] = 7059, - [7079] = 7079, + [7077] = 7077, + [7078] = 7078, + [7079] = 7057, [7080] = 7080, [7081] = 7081, - [7082] = 7060, - [7083] = 7083, - [7084] = 7084, - [7085] = 7085, - [7086] = 7086, + [7082] = 7076, + [7083] = 7074, + [7084] = 6651, + [7085] = 7073, + [7086] = 7070, [7087] = 7067, - [7088] = 7088, - [7089] = 7079, + [7088] = 7049, + [7089] = 7089, [7090] = 7090, - [7091] = 7086, - [7092] = 7062, + [7091] = 7091, + [7092] = 7092, [7093] = 7093, [7094] = 7094, [7095] = 7095, @@ -12928,1060 +12958,1060 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7097] = 7097, [7098] = 7098, [7099] = 7099, - [7100] = 7053, + [7100] = 7100, [7101] = 7101, - [7102] = 7099, - [7103] = 7073, - [7104] = 7060, + [7102] = 7102, + [7103] = 7103, + [7104] = 7104, [7105] = 7105, [7106] = 7106, - [7107] = 7086, - [7108] = 7067, + [7107] = 7107, + [7108] = 7108, [7109] = 7109, - [7110] = 7054, - [7111] = 7111, - [7112] = 7060, + [7110] = 7110, + [7111] = 7061, + [7112] = 6647, [7113] = 7113, - [7114] = 7086, + [7114] = 7059, [7115] = 7115, - [7116] = 7054, - [7117] = 7117, - [7118] = 7118, + [7116] = 7116, + [7117] = 7049, + [7118] = 7093, [7119] = 7119, - [7120] = 7070, + [7120] = 7120, [7121] = 7121, - [7122] = 7079, - [7123] = 7119, - [7124] = 7124, - [7125] = 7125, - [7126] = 7054, - [7127] = 7060, - [7128] = 7128, - [7129] = 7057, - [7130] = 7130, - [7131] = 7086, - [7132] = 7099, - [7133] = 7059, - [7134] = 7067, - [7135] = 7052, - [7136] = 7084, - [7137] = 7099, - [7138] = 7094, - [7139] = 7086, + [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] = 7059, - [7142] = 6651, - [7143] = 7143, - [7144] = 7144, + [7141] = 7071, + [7142] = 7056, + [7143] = 7091, + [7144] = 7072, [7145] = 7145, - [7146] = 7146, - [7147] = 7076, - [7148] = 7086, - [7149] = 7060, - [7150] = 7062, - [7151] = 7151, - [7152] = 7119, - [7153] = 7153, - [7154] = 7059, - [7155] = 7096, - [7156] = 7156, - [7157] = 7157, - [7158] = 6653, - [7159] = 7070, - [7160] = 7085, - [7161] = 7161, - [7162] = 7076, - [7163] = 7163, - [7164] = 7157, - [7165] = 7165, - [7166] = 7060, - [7167] = 7167, - [7168] = 7080, - [7169] = 7058, - [7170] = 7170, + [7146] = 7073, + [7147] = 7064, + [7148] = 7148, + [7149] = 7106, + [7150] = 7150, + [7151] = 7055, + [7152] = 7152, + [7153] = 7081, + [7154] = 7154, + [7155] = 7155, + [7156] = 7049, + [7157] = 7074, + [7158] = 7158, + [7159] = 7076, + [7160] = 7160, + [7161] = 7062, + [7162] = 7063, + [7163] = 7067, + [7164] = 7078, + [7165] = 7067, + [7166] = 7073, + [7167] = 7074, + [7168] = 7115, + [7169] = 7169, + [7170] = 7076, [7171] = 7171, - [7172] = 7172, - [7173] = 7173, - [7174] = 7054, - [7175] = 7175, - [7176] = 7060, - [7177] = 7118, - [7178] = 7143, - [7179] = 7179, - [7180] = 7145, - [7181] = 7145, - [7182] = 7052, - [7183] = 7054, - [7184] = 7096, - [7185] = 7060, + [7172] = 7081, + [7173] = 7054, + [7174] = 7094, + [7175] = 7078, + [7176] = 7176, + [7177] = 7093, + [7178] = 7178, + [7179] = 7075, + [7180] = 7180, + [7181] = 7181, + [7182] = 7046, + [7183] = 7053, + [7184] = 7094, + [7185] = 7093, [7186] = 7186, [7187] = 7187, - [7188] = 7109, - [7189] = 7094, - [7190] = 7190, - [7191] = 7057, - [7192] = 7192, - [7193] = 7053, - [7194] = 7194, - [7195] = 7195, - [7196] = 7084, - [7197] = 7081, - [7198] = 7086, - [7199] = 7115, - [7200] = 7115, + [7188] = 7188, + [7189] = 7189, + [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] = 7076, - [7203] = 7119, - [7204] = 7204, - [7205] = 7205, + [7202] = 7062, + [7203] = 7062, + [7204] = 7063, + [7205] = 7046, [7206] = 7206, - [7207] = 7106, - [7208] = 7208, + [7207] = 7207, + [7208] = 7081, [7209] = 7209, - [7210] = 7210, - [7211] = 7211, - [7212] = 7212, - [7213] = 7094, - [7214] = 7084, - [7215] = 7215, - [7216] = 7096, - [7217] = 7086, - [7218] = 7053, - [7219] = 7106, - [7220] = 7099, + [7210] = 7103, + [7211] = 7061, + [7212] = 7154, + [7213] = 7213, + [7214] = 7075, + [7215] = 7154, + [7216] = 7060, + [7217] = 7217, + [7218] = 7059, + [7219] = 7046, + [7220] = 7057, [7221] = 7221, - [7222] = 7059, - [7223] = 7079, - [7224] = 7073, - [7225] = 7061, - [7226] = 7085, - [7227] = 7056, - [7228] = 7073, + [7222] = 7056, + [7223] = 7055, + [7224] = 7054, + [7225] = 7053, + [7226] = 7052, + [7227] = 7120, + [7228] = 7228, [7229] = 7229, - [7230] = 7079, - [7231] = 7070, - [7232] = 7098, - [7233] = 7060, - [7234] = 7085, - [7235] = 7235, - [7236] = 7054, - [7237] = 7053, - [7238] = 7085, - [7239] = 7115, + [7230] = 7230, + [7231] = 7018, + [7232] = 7232, + [7233] = 7066, + [7234] = 7234, + [7235] = 7065, + [7236] = 7236, + [7237] = 7237, + [7238] = 7238, + [7239] = 7064, [7240] = 7240, - [7241] = 7073, - [7242] = 7081, - [7243] = 7081, - [7244] = 7079, - [7245] = 7245, - [7246] = 7246, - [7247] = 7115, - [7248] = 7070, - [7249] = 7167, - [7250] = 7098, + [7241] = 7241, + [7242] = 7242, + [7243] = 7137, + [7244] = 7244, + [7245] = 7054, + [7246] = 2471, + [7247] = 7247, + [7248] = 7248, + [7249] = 7244, + [7250] = 7081, [7251] = 7251, - [7252] = 7098, - [7253] = 7253, - [7254] = 7254, - [7255] = 7058, - [7256] = 7054, + [7252] = 7252, + [7253] = 7063, + [7254] = 7062, + [7255] = 7056, + [7256] = 7061, [7257] = 7257, - [7258] = 7145, - [7259] = 7062, + [7258] = 7258, + [7259] = 7064, [7260] = 7260, - [7261] = 7054, - [7262] = 7143, - [7263] = 7076, - [7264] = 7056, - [7265] = 6679, - [7266] = 7067, - [7267] = 7267, - [7268] = 7268, - [7269] = 7143, - [7270] = 7270, - [7271] = 7271, - [7272] = 7054, - [7273] = 7179, - [7274] = 7086, - [7275] = 7052, - [7276] = 7056, - [7277] = 7121, - [7278] = 7056, - [7279] = 7105, - [7280] = 7065, - [7281] = 7143, - [7282] = 7094, + [7261] = 7062, + [7262] = 7248, + [7263] = 7263, + [7264] = 7063, + [7265] = 7081, + [7266] = 7093, + [7267] = 7094, + [7268] = 7078, + [7269] = 7201, + [7270] = 7180, + [7271] = 7075, + [7272] = 7272, + [7273] = 7091, + [7274] = 7274, + [7275] = 7275, + [7276] = 7054, + [7277] = 7046, + [7278] = 7052, + [7279] = 7181, + [7280] = 7053, + [7281] = 7281, + [7282] = 7282, [7283] = 7283, [7284] = 7284, - [7285] = 7080, - [7286] = 7286, - [7287] = 7062, + [7285] = 7285, + [7286] = 7055, + [7287] = 7287, [7288] = 7288, [7289] = 7289, - [7290] = 7290, - [7291] = 7291, - [7292] = 7073, - [7293] = 7293, - [7294] = 6960, - [7295] = 7295, - [7296] = 7061, + [7290] = 7056, + [7291] = 7062, + [7292] = 7154, + [7293] = 7063, + [7294] = 7294, + [7295] = 7081, + [7296] = 7296, [7297] = 7297, - [7298] = 7062, - [7299] = 7081, + [7298] = 7057, + [7299] = 7299, [7300] = 7300, - [7301] = 7058, - [7302] = 7302, - [7303] = 7073, + [7301] = 7301, + [7302] = 7061, + [7303] = 7303, [7304] = 7304, - [7305] = 7086, - [7306] = 7306, - [7307] = 7080, - [7308] = 7080, - [7309] = 7060, + [7305] = 7062, + [7306] = 7063, + [7307] = 7059, + [7308] = 7081, + [7309] = 7309, [7310] = 7310, - [7311] = 7054, - [7312] = 7058, - [7313] = 7086, + [7311] = 7060, + [7312] = 7180, + [7313] = 7313, [7314] = 7314, [7315] = 7315, - [7316] = 7057, - [7317] = 7070, - [7318] = 7318, + [7316] = 7091, + [7317] = 7049, + [7318] = 7066, [7319] = 7319, - [7320] = 7054, - [7321] = 7060, - [7322] = 7121, - [7323] = 7054, - [7324] = 7060, - [7325] = 7086, - [7326] = 7060, - [7327] = 7161, - [7328] = 7053, - [7329] = 7054, - [7330] = 7084, - [7331] = 7331, - [7332] = 7094, - [7333] = 7267, - [7334] = 7334, - [7335] = 7052, - [7336] = 7336, - [7337] = 7337, - [7338] = 7119, - [7339] = 7057, - [7340] = 7340, - [7341] = 7052, - [7342] = 7342, - [7343] = 6678, - [7344] = 7080, - [7345] = 7070, - [7346] = 7106, - [7347] = 7058, - [7348] = 7348, - [7349] = 7349, - [7350] = 7073, - [7351] = 7253, - [7352] = 7352, - [7353] = 2455, - [7354] = 7059, - [7355] = 7059, - [7356] = 7098, - [7357] = 7357, - [7358] = 7096, - [7359] = 7057, - [7360] = 7283, - [7361] = 7361, - [7362] = 7076, - [7363] = 7106, - [7364] = 7061, - [7365] = 7061, - [7366] = 7366, + [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] = 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] = 7173, - [7369] = 7143, + [7368] = 7368, + [7369] = 7369, [7370] = 7370, [7371] = 7371, - [7372] = 7086, + [7372] = 7372, [7373] = 7373, [7374] = 7374, [7375] = 7375, [7376] = 7376, - [7377] = 7377, - [7378] = 7378, + [7377] = 2371, + [7378] = 7373, [7379] = 7379, - [7380] = 7374, - [7381] = 2386, - [7382] = 2366, + [7380] = 7380, + [7381] = 7381, + [7382] = 7382, [7383] = 7383, - [7384] = 2385, + [7384] = 7384, [7385] = 7385, [7386] = 7386, [7387] = 7387, [7388] = 7388, [7389] = 7389, - [7390] = 7390, + [7390] = 7385, [7391] = 7391, [7392] = 7392, - [7393] = 7374, - [7394] = 7394, - [7395] = 7383, - [7396] = 1985, - [7397] = 7397, - [7398] = 7398, + [7393] = 7393, + [7394] = 7379, + [7395] = 1983, + [7396] = 7368, + [7397] = 7368, + [7398] = 3194, [7399] = 7399, [7400] = 7400, [7401] = 7401, - [7402] = 1984, + [7402] = 7402, [7403] = 7403, [7404] = 7404, [7405] = 7405, - [7406] = 7383, + [7406] = 7367, [7407] = 7407, - [7408] = 7405, - [7409] = 7409, - [7410] = 1983, + [7408] = 7408, + [7409] = 7402, + [7410] = 1981, [7411] = 7411, [7412] = 7412, - [7413] = 1982, + [7413] = 7413, [7414] = 7414, [7415] = 7415, [7416] = 7416, - [7417] = 7414, + [7417] = 7417, [7418] = 7418, - [7419] = 7374, - [7420] = 7415, + [7419] = 7419, + [7420] = 7381, [7421] = 7421, - [7422] = 1980, - [7423] = 1979, + [7422] = 7422, + [7423] = 7423, [7424] = 7424, - [7425] = 1977, - [7426] = 7405, - [7427] = 1974, + [7425] = 7425, + [7426] = 7426, + [7427] = 7427, [7428] = 7428, - [7429] = 1973, - [7430] = 7430, - [7431] = 1972, + [7429] = 7429, + [7430] = 7416, + [7431] = 7431, [7432] = 7432, - [7433] = 1971, - [7434] = 7434, - [7435] = 7385, - [7436] = 7436, - [7437] = 1970, - [7438] = 7378, - [7439] = 1969, - [7440] = 7376, + [7433] = 7433, + [7434] = 7405, + [7435] = 7435, + [7436] = 7405, + [7437] = 1973, + [7438] = 7438, + [7439] = 7402, + [7440] = 7380, [7441] = 7441, - [7442] = 1976, - [7443] = 7378, - [7444] = 7444, - [7445] = 7445, - [7446] = 7446, + [7442] = 7442, + [7443] = 7443, + [7444] = 7373, + [7445] = 7401, + [7446] = 7381, [7447] = 7373, - [7448] = 7448, - [7449] = 7374, - [7450] = 7385, + [7448] = 7379, + [7449] = 7449, + [7450] = 7450, [7451] = 7451, - [7452] = 7452, - [7453] = 7453, - [7454] = 7373, - [7455] = 7455, - [7456] = 7456, - [7457] = 7457, - [7458] = 7436, - [7459] = 1966, - [7460] = 1965, + [7452] = 7416, + [7453] = 7381, + [7454] = 7391, + [7455] = 7380, + [7456] = 7385, + [7457] = 7432, + [7458] = 7433, + [7459] = 3136, + [7460] = 7460, [7461] = 7461, - [7462] = 7462, - [7463] = 7463, - [7464] = 7414, - [7465] = 1963, - [7466] = 1962, - [7467] = 1961, - [7468] = 1948, + [7462] = 7391, + [7463] = 1997, + [7464] = 7400, + [7465] = 7367, + [7466] = 1996, + [7467] = 7467, + [7468] = 7468, [7469] = 7469, - [7470] = 7391, - [7471] = 7471, + [7470] = 2359, + [7471] = 7416, [7472] = 7472, [7473] = 7473, [7474] = 7474, - [7475] = 7475, - [7476] = 7476, + [7475] = 7435, + [7476] = 7379, [7477] = 7477, - [7478] = 7478, - [7479] = 1960, - [7480] = 7480, - [7481] = 7392, - [7482] = 7415, - [7483] = 1959, - [7484] = 7383, + [7478] = 7385, + [7479] = 7479, + [7480] = 1988, + [7481] = 7386, + [7482] = 7482, + [7483] = 1986, + [7484] = 7484, [7485] = 7485, - [7486] = 1958, - [7487] = 7397, - [7488] = 1951, - [7489] = 7391, - [7490] = 7392, - [7491] = 1957, - [7492] = 1955, + [7486] = 7486, + [7487] = 7487, + [7488] = 7388, + [7489] = 7489, + [7490] = 7490, + [7491] = 7416, + [7492] = 7386, [7493] = 7493, - [7494] = 1954, - [7495] = 7495, - [7496] = 7451, - [7497] = 7378, + [7494] = 7494, + [7495] = 7389, + [7496] = 7496, + [7497] = 7379, [7498] = 7498, - [7499] = 7499, - [7500] = 7500, - [7501] = 1952, - [7502] = 1950, - [7503] = 7389, - [7504] = 1975, - [7505] = 7498, - [7506] = 7506, - [7507] = 7390, - [7508] = 7508, - [7509] = 7414, - [7510] = 7389, - [7511] = 1967, - [7512] = 7415, - [7513] = 7452, - [7514] = 7514, - [7515] = 7515, - [7516] = 7383, + [7499] = 7405, + [7500] = 1984, + [7501] = 7501, + [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] = 1949, + [7518] = 1952, [7519] = 7519, [7520] = 7520, - [7521] = 7452, - [7522] = 7473, - [7523] = 7385, - [7524] = 7485, - [7525] = 7525, - [7526] = 7526, - [7527] = 7527, + [7521] = 1953, + [7522] = 7522, + [7523] = 1954, + [7524] = 1955, + [7525] = 1959, + [7526] = 1960, + [7527] = 1968, [7528] = 7528, - [7529] = 7529, - [7530] = 1978, - [7531] = 7531, - [7532] = 1988, - [7533] = 7390, - [7534] = 7378, - [7535] = 7535, - [7536] = 1989, - [7537] = 7378, - [7538] = 7376, - [7539] = 1990, - [7540] = 7376, - [7541] = 7541, - [7542] = 7378, - [7543] = 7543, - [7544] = 1991, - [7545] = 7545, - [7546] = 7528, - [7547] = 1993, - [7548] = 7527, - [7549] = 7385, - [7550] = 1994, - [7551] = 7452, + [7529] = 1970, + [7530] = 7530, + [7531] = 1971, + [7532] = 1956, + [7533] = 1972, + [7534] = 1979, + [7535] = 7388, + [7536] = 7380, + [7537] = 7399, + [7538] = 7538, + [7539] = 7539, + [7540] = 7385, + [7541] = 1957, + [7542] = 1975, + [7543] = 7380, + [7544] = 7416, + [7545] = 7391, + [7546] = 7546, + [7547] = 7402, + [7548] = 1980, + [7549] = 7549, + [7550] = 7484, + [7551] = 7551, [7552] = 7552, - [7553] = 1995, - [7554] = 2358, - [7555] = 7508, - [7556] = 1996, + [7553] = 7405, + [7554] = 7554, + [7555] = 7435, + [7556] = 1999, [7557] = 7557, - [7558] = 1997, - [7559] = 7485, + [7558] = 7368, + [7559] = 7559, [7560] = 7560, - [7561] = 1953, - [7562] = 7389, - [7563] = 1964, - [7564] = 7451, - [7565] = 7385, - [7566] = 7390, + [7561] = 7561, + [7562] = 1998, + [7563] = 7563, + [7564] = 7564, + [7565] = 7565, + [7566] = 7391, [7567] = 7567, - [7568] = 7568, - [7569] = 7373, - [7570] = 7374, - [7571] = 7571, - [7572] = 7414, - [7573] = 7515, - [7574] = 7376, - [7575] = 7508, - [7576] = 7378, - [7577] = 7577, - [7578] = 7415, - [7579] = 7498, - [7580] = 7580, + [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] = 7582, - [7583] = 7583, - [7584] = 7374, - [7585] = 7383, - [7586] = 7446, - [7587] = 7451, - [7588] = 7588, - [7589] = 1998, - [7590] = 7590, + [7582] = 1965, + [7583] = 1992, + [7584] = 7584, + [7585] = 7585, + [7586] = 7433, + [7587] = 7389, + [7588] = 1990, + [7589] = 7429, + [7590] = 7432, [7591] = 7591, - [7592] = 7392, - [7593] = 7414, - [7594] = 7415, - [7595] = 7436, - [7596] = 7596, - [7597] = 7451, + [7592] = 1987, + [7593] = 1966, + [7594] = 7399, + [7595] = 1982, + [7596] = 7381, + [7597] = 7385, [7598] = 7598, [7599] = 7599, - [7600] = 7600, - [7601] = 7601, - [7602] = 7446, - [7603] = 7603, - [7604] = 7373, - [7605] = 7391, - [7606] = 7405, - [7607] = 7607, - [7608] = 7608, - [7609] = 7446, - [7610] = 7610, - [7611] = 7611, - [7612] = 7397, - [7613] = 3550, - [7614] = 7614, - [7615] = 7615, - [7616] = 7527, - [7617] = 7373, + [7600] = 7438, + [7601] = 7381, + [7602] = 7602, + [7603] = 7401, + [7604] = 7604, + [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] = 7619, + [7619] = 2384, [7620] = 7620, - [7621] = 3576, - [7622] = 7622, + [7621] = 7412, + [7622] = 1949, [7623] = 7623, - [7624] = 7392, + [7624] = 1976, [7625] = 7625, - [7626] = 7391, - [7627] = 7627, - [7628] = 7528, - [7629] = 7629, - [7630] = 7397, - [7631] = 7631, + [7626] = 7416, + [7627] = 7429, + [7628] = 7405, + [7629] = 1967, + [7630] = 7630, + [7631] = 7402, [7632] = 7632, - [7633] = 7633, + [7633] = 7484, [7634] = 7634, - [7635] = 7392, - [7636] = 7451, - [7637] = 7473, + [7635] = 7368, + [7636] = 7636, + [7637] = 7637, [7638] = 7638, - [7639] = 7374, + [7639] = 7639, [7640] = 7640, - [7641] = 7391, + [7641] = 7641, [7642] = 7642, [7643] = 7643, [7644] = 7644, [7645] = 7645, [7646] = 7646, [7647] = 7647, - [7648] = 7648, + [7648] = 7636, [7649] = 7649, [7650] = 7650, [7651] = 7651, [7652] = 7652, [7653] = 7653, - [7654] = 7654, + [7654] = 7643, [7655] = 7655, [7656] = 7656, - [7657] = 7657, + [7657] = 7636, [7658] = 7658, [7659] = 7659, [7660] = 7660, - [7661] = 7661, + [7661] = 7636, [7662] = 7662, [7663] = 7663, [7664] = 7664, [7665] = 7665, [7666] = 7666, [7667] = 7667, - [7668] = 7642, + [7668] = 7668, [7669] = 7669, [7670] = 7670, [7671] = 7671, - [7672] = 7642, + [7672] = 7672, [7673] = 7673, [7674] = 7674, [7675] = 7675, [7676] = 7676, [7677] = 7677, - [7678] = 7642, - [7679] = 7679, + [7678] = 7678, + [7679] = 7647, [7680] = 7680, - [7681] = 7646, - [7682] = 7682, + [7681] = 7681, + [7682] = 7636, [7683] = 7683, [7684] = 7684, [7685] = 7685, [7686] = 7686, - [7687] = 7687, - [7688] = 7688, + [7687] = 7652, + [7688] = 7645, [7689] = 7689, [7690] = 7690, - [7691] = 7691, - [7692] = 7692, + [7691] = 7638, + [7692] = 7660, [7693] = 7693, - [7694] = 7694, - [7695] = 7695, - [7696] = 7696, - [7697] = 7697, + [7694] = 7685, + [7695] = 7653, + [7696] = 7636, + [7697] = 7684, [7698] = 7698, - [7699] = 7696, + [7699] = 7636, [7700] = 7700, - [7701] = 7689, - [7702] = 7702, - [7703] = 7703, + [7701] = 7701, + [7702] = 7690, + [7703] = 7636, [7704] = 7704, - [7705] = 7687, - [7706] = 7670, - [7707] = 7688, - [7708] = 7696, - [7709] = 7709, + [7705] = 7705, + [7706] = 7642, + [7707] = 7707, + [7708] = 7708, + [7709] = 7636, [7710] = 7710, - [7711] = 7704, - [7712] = 7695, + [7711] = 7711, + [7712] = 7712, [7713] = 7713, - [7714] = 7695, - [7715] = 4064, + [7714] = 7636, + [7715] = 7677, [7716] = 7716, [7717] = 7717, - [7718] = 7694, - [7719] = 7684, + [7718] = 7718, + [7719] = 7690, [7720] = 7720, - [7721] = 7721, + [7721] = 7663, [7722] = 7722, - [7723] = 7690, - [7724] = 7713, - [7725] = 7687, - [7726] = 7691, - [7727] = 7682, - [7728] = 7679, + [7723] = 7636, + [7724] = 7636, + [7725] = 7725, + [7726] = 7726, + [7727] = 7727, + [7728] = 7728, [7729] = 7729, [7730] = 7730, - [7731] = 7671, - [7732] = 7646, - [7733] = 7733, - [7734] = 7729, + [7731] = 7731, + [7732] = 7732, + [7733] = 7677, + [7734] = 7636, [7735] = 7735, [7736] = 7736, [7737] = 7737, [7738] = 7738, [7739] = 7739, - [7740] = 7740, - [7741] = 7670, - [7742] = 7685, - [7743] = 4080, - [7744] = 7689, - [7745] = 7717, - [7746] = 7642, + [7740] = 7636, + [7741] = 7741, + [7742] = 7742, + [7743] = 7743, + [7744] = 7744, + [7745] = 7745, + [7746] = 7720, [7747] = 7747, - [7748] = 7738, - [7749] = 7694, - [7750] = 7698, - [7751] = 7698, + [7748] = 7748, + [7749] = 7749, + [7750] = 7705, + [7751] = 7751, [7752] = 7752, - [7753] = 7716, + [7753] = 7636, [7754] = 7754, [7755] = 7755, [7756] = 7756, [7757] = 7757, - [7758] = 7758, + [7758] = 7743, [7759] = 7759, - [7760] = 7752, + [7760] = 7760, [7761] = 7761, - [7762] = 7762, - [7763] = 7763, + [7762] = 7639, + [7763] = 7726, [7764] = 7764, - [7765] = 7765, - [7766] = 7766, - [7767] = 7738, - [7768] = 7768, - [7769] = 7769, + [7765] = 7636, + [7766] = 7693, + [7767] = 7650, + [7768] = 7698, + [7769] = 7642, [7770] = 7770, - [7771] = 7771, + [7771] = 7741, [7772] = 7772, - [7773] = 7773, - [7774] = 7774, - [7775] = 7775, - [7776] = 7776, + [7773] = 7643, + [7774] = 7636, + [7775] = 7729, + [7776] = 7642, [7777] = 7777, - [7778] = 7778, - [7779] = 7696, + [7778] = 7731, + [7779] = 7659, [7780] = 7780, [7781] = 7781, - [7782] = 7671, + [7782] = 7636, [7783] = 7783, [7784] = 7784, - [7785] = 7650, - [7786] = 7752, - [7787] = 7704, - [7788] = 7695, - [7789] = 7642, - [7790] = 7642, - [7791] = 7791, - [7792] = 7717, - [7793] = 7694, + [7785] = 7785, + [7786] = 7786, + [7787] = 7787, + [7788] = 7651, + [7789] = 7663, + [7790] = 7790, + [7791] = 7737, + [7792] = 7780, + [7793] = 7793, [7794] = 7794, - [7795] = 7680, - [7796] = 7676, - [7797] = 7797, + [7795] = 7731, + [7796] = 7729, + [7797] = 7728, [7798] = 7798, - [7799] = 7642, + [7799] = 7799, [7800] = 7800, - [7801] = 7801, - [7802] = 7802, - [7803] = 7642, - [7804] = 7689, - [7805] = 7650, - [7806] = 7806, - [7807] = 7642, - [7808] = 7648, - [7809] = 7809, - [7810] = 7810, - [7811] = 7703, - [7812] = 7698, - [7813] = 7813, - [7814] = 7814, - [7815] = 7642, - [7816] = 7735, - [7817] = 7642, + [7801] = 7701, + [7802] = 7700, + [7803] = 7737, + [7804] = 7804, + [7805] = 7805, + [7806] = 7653, + [7807] = 7655, + [7808] = 7726, + [7809] = 7741, + [7810] = 7636, + [7811] = 7684, + [7812] = 7747, + [7813] = 7652, + [7814] = 7636, + [7815] = 7815, + [7816] = 7816, + [7817] = 7636, [7818] = 7818, - [7819] = 7791, + [7819] = 7727, [7820] = 7820, [7821] = 7821, [7822] = 7822, - [7823] = 7685, - [7824] = 7684, - [7825] = 7642, + [7823] = 7757, + [7824] = 7824, + [7825] = 7749, [7826] = 7826, - [7827] = 7827, - [7828] = 7689, - [7829] = 7721, - [7830] = 7830, - [7831] = 7646, + [7827] = 7678, + [7828] = 7705, + [7829] = 7659, + [7830] = 7755, + [7831] = 7831, [7832] = 7832, - [7833] = 7661, - [7834] = 7694, - [7835] = 7660, - [7836] = 7659, - [7837] = 7658, + [7833] = 7689, + [7834] = 7834, + [7835] = 7835, + [7836] = 7684, + [7837] = 7693, [7838] = 7838, - [7839] = 7670, - [7840] = 7840, + [7839] = 7839, + [7840] = 7639, [7841] = 7841, [7842] = 7842, - [7843] = 7758, - [7844] = 7656, - [7845] = 7642, - [7846] = 7846, - [7847] = 7759, - [7848] = 7670, - [7849] = 7648, - [7850] = 7772, - [7851] = 7851, - [7852] = 7852, - [7853] = 7853, - [7854] = 7854, - [7855] = 7642, - [7856] = 7642, - [7857] = 7700, - [7858] = 7830, - [7859] = 7859, + [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] = 7780, + [7857] = 7793, + [7858] = 7674, + [7859] = 7668, [7860] = 7860, - [7861] = 7861, + [7861] = 7668, [7862] = 7862, - [7863] = 7863, - [7864] = 7864, - [7865] = 7865, - [7866] = 7669, - [7867] = 7675, - [7868] = 7791, - [7869] = 7722, + [7863] = 7674, + [7864] = 7793, + [7865] = 7674, + [7866] = 7636, + [7867] = 7653, + [7868] = 7868, + [7869] = 7639, [7870] = 7870, - [7871] = 7673, - [7872] = 7690, - [7873] = 7838, - [7874] = 7832, - [7875] = 7818, - [7876] = 7827, - [7877] = 7642, - [7878] = 7826, - [7879] = 7713, - [7880] = 7687, - [7881] = 7674, - [7882] = 7675, + [7871] = 7871, + [7872] = 7872, + [7873] = 7873, + [7874] = 7835, + [7875] = 7790, + [7876] = 7777, + [7877] = 7684, + [7878] = 7878, + [7879] = 7879, + [7880] = 7880, + [7881] = 7772, + [7882] = 7882, [7883] = 7883, - [7884] = 7761, - [7885] = 7885, - [7886] = 7690, - [7887] = 7642, - [7888] = 7688, - [7889] = 7889, - [7890] = 7696, - [7891] = 7704, - [7892] = 7642, - [7893] = 7642, - [7894] = 7695, - [7895] = 7694, - [7896] = 7642, - [7897] = 7676, - [7898] = 7642, - [7899] = 7899, - [7900] = 7666, - [7901] = 7690, - [7902] = 7883, - [7903] = 7654, - [7904] = 7818, - [7905] = 7905, - [7906] = 7642, - [7907] = 7642, + [7884] = 7726, + [7885] = 7689, + [7886] = 7886, + [7887] = 7887, + [7888] = 7636, + [7889] = 7728, + [7890] = 7890, + [7891] = 7891, + [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] = 7686, [7908] = 7908, - [7909] = 7642, - [7910] = 7910, - [7911] = 7911, - [7912] = 7646, - [7913] = 7722, - [7914] = 7722, - [7915] = 7642, - [7916] = 7709, - [7917] = 7690, - [7918] = 7918, - [7919] = 7919, + [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] = 7713, - [7922] = 7642, - [7923] = 7687, - [7924] = 7691, - [7925] = 7682, - [7926] = 7926, - [7927] = 7927, - [7928] = 7679, - [7929] = 7642, - [7930] = 7654, - [7931] = 7883, - [7932] = 7656, - [7933] = 7658, - [7934] = 7659, - [7935] = 7660, - [7936] = 7661, - [7937] = 7775, - [7938] = 7666, - [7939] = 7939, - [7940] = 7940, - [7941] = 7694, - [7942] = 7942, - [7943] = 7943, - [7944] = 7695, - [7945] = 7642, - [7946] = 7704, - [7947] = 7646, - [7948] = 7697, - [7949] = 7729, - [7950] = 7700, - [7951] = 7671, + [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] = 7642, - [7954] = 7709, - [7955] = 7642, - [7956] = 7765, - [7957] = 7735, - [7958] = 7696, - [7959] = 7688, - [7960] = 7960, - [7961] = 7961, - [7962] = 7853, - [7963] = 7963, - [7964] = 7650, - [7965] = 7673, - [7966] = 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] = 7883, - [7970] = 7656, - [7971] = 7658, - [7972] = 7659, - [7973] = 7660, - [7974] = 7661, - [7975] = 7975, - [7976] = 7666, - [7977] = 7642, - [7978] = 7666, - [7979] = 7642, - [7980] = 7756, - [7981] = 7919, - [7982] = 7826, - [7983] = 7827, - [7984] = 7642, - [7985] = 7700, - [7986] = 7832, - [7987] = 7838, - [7988] = 7988, - [7989] = 7684, - [7990] = 7685, - [7991] = 7665, - [7992] = 7738, - [7993] = 7684, - [7994] = 7685, - [7995] = 7698, - [7996] = 7642, - [7997] = 7830, - [7998] = 7642, - [7999] = 7658, - [8000] = 7659, - [8001] = 7660, - [8002] = 7661, - [8003] = 7717, - [8004] = 7666, + [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] = 7738, - [8007] = 7698, - [8008] = 8008, - [8009] = 7642, - [8010] = 8010, - [8011] = 7752, - [8012] = 7700, - [8013] = 7650, - [8014] = 7755, - [8015] = 7756, - [8016] = 7642, - [8017] = 8017, - [8018] = 7670, - [8019] = 7642, - [8020] = 7758, - [8021] = 7660, - [8022] = 7661, - [8023] = 7853, - [8024] = 7759, - [8025] = 7765, - [8026] = 7721, - [8027] = 7642, - [8028] = 7797, - [8029] = 7700, - [8030] = 7830, - [8031] = 7642, - [8032] = 8032, - [8033] = 7830, - [8034] = 8034, - [8035] = 7669, - [8036] = 7697, - [8037] = 7775, - [8038] = 7646, - [8039] = 7642, - [8040] = 7713, - [8041] = 8041, - [8042] = 7700, - [8043] = 7687, - [8044] = 7650, - [8045] = 7694, - [8046] = 7716, - [8047] = 7670, - [8048] = 7768, - [8049] = 7691, - [8050] = 7642, - [8051] = 7670, - [8052] = 7761, - [8053] = 7770, - [8054] = 7700, - [8055] = 8055, - [8056] = 7761, - [8057] = 7669, - [8058] = 7759, - [8059] = 7765, - [8060] = 7797, - [8061] = 7680, - [8062] = 7716, - [8063] = 7768, - [8064] = 7770, - [8065] = 7755, + [8006] = 8006, + [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] = 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] = 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] = 7659, + [8065] = 7711, [8066] = 8066, - [8067] = 7838, + [8067] = 7744, [8068] = 8068, - [8069] = 7832, - [8070] = 8070, - [8071] = 7765, - [8072] = 7682, - [8073] = 7679, - [8074] = 7773, - [8075] = 7774, - [8076] = 8076, - [8077] = 7827, - [8078] = 7642, - [8079] = 7775, - [8080] = 7642, + [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] = 7778, + [8082] = 8082, [8083] = 8083, [8084] = 8084, - [8085] = 7775, + [8085] = 8085, [8086] = 8086, - [8087] = 7689, - [8088] = 8088, - [8089] = 7778, - [8090] = 8090, - [8091] = 7739, - [8092] = 7791, - [8093] = 7826, - [8094] = 7646, - [8095] = 7680, - [8096] = 7797, - [8097] = 8097, - [8098] = 7642, - [8099] = 7671, - [8100] = 8100, - [8101] = 7642, - [8102] = 7773, - [8103] = 8103, - [8104] = 7650, - [8105] = 8105, - [8106] = 7778, - [8107] = 8083, - [8108] = 8108, - [8109] = 7648, - [8110] = 7703, - [8111] = 8111, - [8112] = 8083, - [8113] = 7774, - [8114] = 7758, - [8115] = 7797, - [8116] = 7826, - [8117] = 7827, - [8118] = 7818, + [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] = 7759, + [8100] = 7780, + [8101] = 7790, + [8102] = 8102, + [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] = 8120, - [8121] = 7832, - [8122] = 7671, - [8123] = 7775, - [8124] = 7830, - [8125] = 7838, + [8120] = 7887, + [8121] = 7843, + [8122] = 8122, + [8123] = 7855, + [8124] = 7842, + [8125] = 8125, [8126] = 8126, - [8127] = 8127, - [8128] = 8128, - [8129] = 8129, - [8130] = 8083, - [8131] = 7642, - [8132] = 8132, - [8133] = 7674, - [8134] = 7739, - [8135] = 8083, - [8136] = 8034, - [8137] = 8137, - [8138] = 7739, - [8139] = 8083, - [8140] = 7650, - [8141] = 8141, - [8142] = 8083, - [8143] = 8083, - [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, @@ -13989,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) { @@ -19250,91 +19291,91 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(141); - if (lookahead == '!') ADVANCE(166); - if (lookahead == '"') ADVANCE(283); - if (lookahead == '#') ADVANCE(12); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '\'') ADVANCE(267); - if (lookahead == '(') ADVANCE(150); - if (lookahead == ')') ADVANCE(151); - if (lookahead == '*') ADVANCE(177); - if (lookahead == '+') ADVANCE(171); - if (lookahead == ',') ADVANCE(148); - if (lookahead == '-') ADVANCE(173); - if (lookahead == '.') ADVANCE(202); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(272); - if (lookahead == ':') ADVANCE(147); - if (lookahead == ';') ADVANCE(142); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '=') ADVANCE(143); - if (lookahead == '>') ADVANCE(160); - if (lookahead == '?') ADVANCE(163); - if (lookahead == '@') ADVANCE(15); + if (eof) ADVANCE(142); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '"') ADVANCE(284); + if (lookahead == '#') ADVANCE(13); + if (lookahead == '%') ADVANCE(216); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '\'') ADVANCE(268); + if (lookahead == '(') ADVANCE(151); + if (lookahead == ')') ADVANCE(152); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '+') ADVANCE(208); + if (lookahead == ',') ADVANCE(149); + 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); + if (lookahead == '<') ADVANCE(156); + if (lookahead == '=') ADVANCE(144); + if (lookahead == '>') ADVANCE(161); + if (lookahead == '?') ADVANCE(164); + if (lookahead == '@') ADVANCE(16); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(342); - if (lookahead == '[') ADVANCE(145); - if (lookahead == '\\') ADVANCE(37); - if (lookahead == ']') ADVANCE(149); - if (lookahead == '^') ADVANCE(183); - if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(343); - if (lookahead == '{') ADVANCE(152); - if (lookahead == '|') ADVANCE(185); - if (lookahead == '}') ADVANCE(153); - if (lookahead == '~') ADVANCE(167); - if (lookahead == 181) ADVANCE(341); + lookahead == 'u') ADVANCE(343); + if (lookahead == '[') ADVANCE(146); + if (lookahead == '\\') ADVANCE(38); + if (lookahead == ']') ADVANCE(150); + if (lookahead == '^') ADVANCE(200); + if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(344); + if (lookahead == '{') ADVANCE(153); + if (lookahead == '|') ADVANCE(197); + if (lookahead == '}') ADVANCE(154); + if (lookahead == '~') ADVANCE(166); + if (lookahead == 181) ADVANCE(342); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 12288 || - lookahead == 65279) SKIP(137) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(273); + lookahead == 65279) SKIP(138) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(347); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(276); - if (lookahead == '@') ADVANCE(42); - if (lookahead == '\\') ADVANCE(38); - if (sym__identifier_token_character_set_2(lookahead)) ADVANCE(343); - if (lookahead == 181) ADVANCE(341); + if (lookahead == '\n') ADVANCE(348); + if (lookahead == '#') ADVANCE(57); + if (lookahead == '/') ADVANCE(25); + if (lookahead == '0') ADVANCE(277); + if (lookahead == '@') ADVANCE(43); + if (lookahead == '\\') ADVANCE(39); + if (sym__identifier_token_character_set_2(lookahead)) ADVANCE(344); + if (lookahead == 181) ADVANCE(342); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 12288 || lookahead == 65279) SKIP(1) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(277); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(278); END_STATE(); case 2: - if (lookahead == '\n') SKIP(14) - if (lookahead == '"') ADVANCE(283); - if (lookahead == '#') ADVANCE(294); - if (lookahead == '/') ADVANCE(286); - if (lookahead == '\\') ADVANCE(39); - if (lookahead == 181) ADVANCE(28); + if (lookahead == '\n') SKIP(15) + if (lookahead == '"') ADVANCE(284); + if (lookahead == '#') ADVANCE(295); + if (lookahead == '/') ADVANCE(287); + if (lookahead == '\\') ADVANCE(40); + if (lookahead == 181) ADVANCE(29); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 12288 || - lookahead == 65279) ADVANCE(285); - if (lookahead != 0) ADVANCE(327); + lookahead == 65279) ADVANCE(286); + if (lookahead != 0) ADVANCE(328); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(348); - if (lookahead == '!') ADVANCE(32); - if (lookahead == '"') ADVANCE(283); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '&') ADVANCE(23); - if (lookahead == ',') ADVANCE(148); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '=') ADVANCE(33); - if (lookahead == '@') ADVANCE(42); - if (lookahead == '\\') ADVANCE(38); - if (sym__identifier_token_character_set_3(lookahead)) ADVANCE(343); - if (lookahead == '|') ADVANCE(106); + if (lookahead == '\n') ADVANCE(349); + if (lookahead == '!') ADVANCE(33); + if (lookahead == '"') ADVANCE(284); + if (lookahead == '#') ADVANCE(57); + if (lookahead == '&') ADVANCE(24); + if (lookahead == ',') ADVANCE(149); + if (lookahead == '/') ADVANCE(25); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '@') ADVANCE(43); + if (lookahead == '\\') ADVANCE(39); + if (sym__identifier_token_character_set_3(lookahead)) ADVANCE(344); + if (lookahead == '|') ADVANCE(107); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -19342,83 +19383,83 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(3) END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(349); - if (lookahead == '#') ADVANCE(363); - if (lookahead == '/') ADVANCE(357); + if (lookahead == '\n') ADVANCE(350); + if (lookahead == '#') ADVANCE(364); + if (lookahead == '/') ADVANCE(358); if (lookahead == 160 || lookahead == 12288 || - lookahead == 65279) ADVANCE(355); + lookahead == 65279) ADVANCE(356); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(4) - if (lookahead != 0) ADVANCE(405); + if (lookahead != 0) ADVANCE(406); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(166); - if (lookahead == '"') ADVANCE(283); - if (lookahead == '#') ADVANCE(54); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '(') ADVANCE(150); - if (lookahead == ')') ADVANCE(151); - if (lookahead == '*') ADVANCE(177); - if (lookahead == '+') ADVANCE(171); - if (lookahead == ',') ADVANCE(148); - if (lookahead == '-') ADVANCE(173); - if (lookahead == '.') ADVANCE(201); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(276); - if (lookahead == ':') ADVANCE(146); - if (lookahead == ';') ADVANCE(142); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '=') ADVANCE(143); - if (lookahead == '>') ADVANCE(160); - if (lookahead == '?') ADVANCE(163); - if (lookahead == '@') ADVANCE(42); - if (lookahead == '[') ADVANCE(145); - if (lookahead == '\\') ADVANCE(38); - if (lookahead == ']') ADVANCE(149); - if (lookahead == '^') ADVANCE(183); - if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(343); - if (lookahead == '{') ADVANCE(152); - if (lookahead == '|') ADVANCE(185); - if (lookahead == '}') ADVANCE(153); - if (lookahead == 181) ADVANCE(341); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '"') ADVANCE(284); + if (lookahead == '#') ADVANCE(55); + if (lookahead == '%') ADVANCE(216); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '(') ADVANCE(151); + if (lookahead == ')') ADVANCE(152); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '+') ADVANCE(208); + if (lookahead == ',') ADVANCE(149); + 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); + if (lookahead == '<') ADVANCE(156); + if (lookahead == '=') ADVANCE(144); + if (lookahead == '>') ADVANCE(161); + if (lookahead == '?') ADVANCE(164); + if (lookahead == '@') ADVANCE(43); + if (lookahead == '[') ADVANCE(146); + if (lookahead == '\\') ADVANCE(39); + if (lookahead == ']') ADVANCE(150); + if (lookahead == '^') ADVANCE(200); + if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(344); + if (lookahead == '{') ADVANCE(153); + if (lookahead == '|') ADVANCE(197); + if (lookahead == '}') ADVANCE(154); + if (lookahead == 181) ADVANCE(342); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 12288 || lookahead == 65279) SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(277); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(278); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(166); - if (lookahead == '"') ADVANCE(283); - if (lookahead == '#') ADVANCE(54); - if (lookahead == '%') ADVANCE(180); - if (lookahead == '&') ADVANCE(188); - if (lookahead == '(') ADVANCE(150); - if (lookahead == ')') ADVANCE(151); - if (lookahead == '*') ADVANCE(176); - if (lookahead == '+') ADVANCE(170); - if (lookahead == ',') ADVANCE(148); - if (lookahead == '-') ADVANCE(174); - if (lookahead == '.') ADVANCE(201); - if (lookahead == '/') ADVANCE(178); - if (lookahead == ':') ADVANCE(146); - if (lookahead == ';') ADVANCE(142); - if (lookahead == '<') ADVANCE(156); - if (lookahead == '=') ADVANCE(34); - if (lookahead == '>') ADVANCE(161); - if (lookahead == '?') ADVANCE(164); - if (lookahead == '@') ADVANCE(42); - if (lookahead == '[') ADVANCE(145); - if (lookahead == '\\') ADVANCE(38); - if (lookahead == ']') ADVANCE(149); - if (lookahead == '^') ADVANCE(182); - if (sym__identifier_token_character_set_4(lookahead)) ADVANCE(343); - if (lookahead == '{') ADVANCE(152); - if (lookahead == '|') ADVANCE(186); - if (lookahead == '}') ADVANCE(153); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '"') ADVANCE(284); + if (lookahead == '#') ADVANCE(55); + if (lookahead == '%') ADVANCE(215); + if (lookahead == '&') ADVANCE(194); + if (lookahead == '(') ADVANCE(151); + if (lookahead == ')') ADVANCE(152); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(207); + if (lookahead == ',') ADVANCE(149); + if (lookahead == '-') ADVANCE(211); + if (lookahead == '.') ADVANCE(168); + if (lookahead == '/') ADVANCE(213); + if (lookahead == ':') ADVANCE(147); + if (lookahead == ';') ADVANCE(143); + if (lookahead == '<') ADVANCE(157); + if (lookahead == '=') ADVANCE(35); + if (lookahead == '>') ADVANCE(162); + if (lookahead == '?') ADVANCE(165); + if (lookahead == '@') ADVANCE(43); + if (lookahead == '[') ADVANCE(146); + if (lookahead == '\\') ADVANCE(39); + if (lookahead == ']') ADVANCE(150); + if (lookahead == '^') ADVANCE(199); + if (sym__identifier_token_character_set_4(lookahead)) ADVANCE(344); + if (lookahead == '{') ADVANCE(153); + if (lookahead == '|') ADVANCE(198); + if (lookahead == '}') ADVANCE(154); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -19426,70 +19467,70 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(6) END_STATE(); case 7: - if (lookahead == '!') ADVANCE(166); - if (lookahead == '#') ADVANCE(54); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '(') ADVANCE(150); - if (lookahead == ')') ADVANCE(151); - if (lookahead == '*') ADVANCE(177); - if (lookahead == '+') ADVANCE(171); - if (lookahead == ',') ADVANCE(148); - if (lookahead == '-') ADVANCE(173); - if (lookahead == '.') ADVANCE(201); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(276); - if (lookahead == ':') ADVANCE(146); - if (lookahead == ';') ADVANCE(142); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '=') ADVANCE(143); - if (lookahead == '>') ADVANCE(160); - if (lookahead == '?') ADVANCE(163); - if (lookahead == '@') ADVANCE(42); - if (lookahead == '[') ADVANCE(145); - if (lookahead == '\\') ADVANCE(38); - if (lookahead == ']') ADVANCE(149); - if (lookahead == '^') ADVANCE(183); - if (sym__identifier_token_character_set_4(lookahead)) ADVANCE(343); - if (lookahead == '{') ADVANCE(152); - if (lookahead == '|') ADVANCE(185); - if (lookahead == '}') ADVANCE(153); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '#') ADVANCE(55); + if (lookahead == '%') ADVANCE(216); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '(') ADVANCE(151); + if (lookahead == ')') ADVANCE(152); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '+') ADVANCE(208); + if (lookahead == ',') ADVANCE(149); + 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); + if (lookahead == '<') ADVANCE(156); + if (lookahead == '=') ADVANCE(144); + if (lookahead == '>') ADVANCE(161); + if (lookahead == '?') ADVANCE(164); + if (lookahead == '@') ADVANCE(43); + if (lookahead == '[') ADVANCE(146); + if (lookahead == '\\') ADVANCE(39); + if (lookahead == ']') ADVANCE(150); + if (lookahead == '^') ADVANCE(200); + if (sym__identifier_token_character_set_4(lookahead)) ADVANCE(344); + if (lookahead == '{') ADVANCE(153); + if (lookahead == '|') ADVANCE(197); + if (lookahead == '}') ADVANCE(154); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 12288 || lookahead == 65279) SKIP(7) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(277); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(278); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(166); - if (lookahead == '#') ADVANCE(54); - if (lookahead == '%') ADVANCE(180); - if (lookahead == '&') ADVANCE(188); - if (lookahead == '(') ADVANCE(150); - if (lookahead == ')') ADVANCE(151); - if (lookahead == '*') ADVANCE(176); - if (lookahead == '+') ADVANCE(170); - if (lookahead == ',') ADVANCE(148); - if (lookahead == '-') ADVANCE(174); - if (lookahead == '.') ADVANCE(201); - if (lookahead == '/') ADVANCE(178); - if (lookahead == ':') ADVANCE(147); - if (lookahead == ';') ADVANCE(142); - if (lookahead == '<') ADVANCE(156); - if (lookahead == '=') ADVANCE(34); - if (lookahead == '>') ADVANCE(161); - if (lookahead == '?') ADVANCE(164); - if (lookahead == '@') ADVANCE(42); - if (lookahead == '[') ADVANCE(145); - if (lookahead == '\\') ADVANCE(38); - if (lookahead == ']') ADVANCE(149); - if (lookahead == '^') ADVANCE(182); - if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(343); - if (lookahead == '{') ADVANCE(152); - if (lookahead == '|') ADVANCE(186); - if (lookahead == '}') ADVANCE(153); - if (lookahead == 181) ADVANCE(341); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '#') ADVANCE(55); + if (lookahead == '%') ADVANCE(215); + if (lookahead == '&') ADVANCE(194); + if (lookahead == '(') ADVANCE(151); + if (lookahead == ')') ADVANCE(152); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(207); + if (lookahead == ',') ADVANCE(149); + if (lookahead == '-') ADVANCE(211); + if (lookahead == '.') ADVANCE(168); + if (lookahead == '/') ADVANCE(213); + if (lookahead == ':') ADVANCE(148); + if (lookahead == ';') ADVANCE(143); + if (lookahead == '<') ADVANCE(157); + if (lookahead == '=') ADVANCE(35); + if (lookahead == '>') ADVANCE(162); + if (lookahead == '?') ADVANCE(165); + if (lookahead == '@') ADVANCE(43); + if (lookahead == '[') ADVANCE(146); + if (lookahead == '\\') ADVANCE(39); + if (lookahead == ']') ADVANCE(150); + if (lookahead == '^') ADVANCE(199); + if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(344); + if (lookahead == '{') ADVANCE(153); + if (lookahead == '|') ADVANCE(198); + if (lookahead == '}') ADVANCE(154); + if (lookahead == 181) ADVANCE(342); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -19497,33 +19538,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(8) END_STATE(); case 9: - if (lookahead == '!') ADVANCE(166); - if (lookahead == '#') ADVANCE(54); - if (lookahead == '%') ADVANCE(180); - if (lookahead == '&') ADVANCE(188); - if (lookahead == '(') ADVANCE(150); - if (lookahead == ')') ADVANCE(151); - if (lookahead == '*') ADVANCE(176); - if (lookahead == '+') ADVANCE(170); - if (lookahead == ',') ADVANCE(148); - if (lookahead == '-') ADVANCE(174); - if (lookahead == '.') ADVANCE(201); - if (lookahead == '/') ADVANCE(178); - if (lookahead == ':') ADVANCE(147); - if (lookahead == ';') ADVANCE(142); - if (lookahead == '<') ADVANCE(156); - if (lookahead == '=') ADVANCE(34); - if (lookahead == '>') ADVANCE(161); - if (lookahead == '?') ADVANCE(164); - if (lookahead == '@') ADVANCE(42); - if (lookahead == '[') ADVANCE(145); - if (lookahead == '\\') ADVANCE(38); - if (lookahead == ']') ADVANCE(149); - if (lookahead == '^') ADVANCE(182); - if (sym__identifier_token_character_set_4(lookahead)) ADVANCE(343); - if (lookahead == '{') ADVANCE(152); - if (lookahead == '|') ADVANCE(186); - if (lookahead == '}') ADVANCE(153); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '#') ADVANCE(55); + if (lookahead == '%') ADVANCE(215); + if (lookahead == '&') ADVANCE(194); + if (lookahead == '(') ADVANCE(151); + if (lookahead == ')') ADVANCE(152); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(207); + if (lookahead == ',') ADVANCE(149); + if (lookahead == '-') ADVANCE(211); + if (lookahead == '.') ADVANCE(168); + if (lookahead == '/') ADVANCE(213); + if (lookahead == ':') ADVANCE(148); + if (lookahead == ';') ADVANCE(143); + if (lookahead == '<') ADVANCE(157); + if (lookahead == '=') ADVANCE(35); + if (lookahead == '>') ADVANCE(162); + if (lookahead == '?') ADVANCE(165); + if (lookahead == '@') ADVANCE(43); + if (lookahead == '[') ADVANCE(146); + if (lookahead == '\\') ADVANCE(39); + if (lookahead == ']') ADVANCE(150); + if (lookahead == '^') ADVANCE(199); + if (sym__identifier_token_character_set_4(lookahead)) ADVANCE(344); + if (lookahead == '{') ADVANCE(153); + if (lookahead == '|') ADVANCE(198); + if (lookahead == '}') ADVANCE(154); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -19531,34 +19572,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(9) END_STATE(); case 10: - if (lookahead == '!') ADVANCE(166); - if (lookahead == '#') ADVANCE(54); - if (lookahead == '%') ADVANCE(180); - if (lookahead == '&') ADVANCE(188); - if (lookahead == '(') ADVANCE(150); - if (lookahead == ')') ADVANCE(151); - if (lookahead == '*') ADVANCE(176); - if (lookahead == '+') ADVANCE(170); - if (lookahead == ',') ADVANCE(148); - if (lookahead == '-') ADVANCE(174); - if (lookahead == '.') ADVANCE(201); - if (lookahead == '/') ADVANCE(178); - if (lookahead == ':') ADVANCE(146); - if (lookahead == ';') ADVANCE(142); - if (lookahead == '<') ADVANCE(156); - if (lookahead == '=') ADVANCE(34); - if (lookahead == '>') ADVANCE(161); - if (lookahead == '?') ADVANCE(164); - if (lookahead == '@') ADVANCE(42); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '#') ADVANCE(55); + if (lookahead == '%') ADVANCE(215); + if (lookahead == '&') ADVANCE(194); + if (lookahead == '(') ADVANCE(151); + if (lookahead == ')') ADVANCE(152); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(207); + if (lookahead == ',') ADVANCE(149); + if (lookahead == '-') ADVANCE(211); + if (lookahead == '.') ADVANCE(168); + if (lookahead == '/') ADVANCE(213); + if (lookahead == ':') ADVANCE(147); + if (lookahead == ';') ADVANCE(143); + if (lookahead == '<') ADVANCE(157); + if (lookahead == '=') ADVANCE(35); + if (lookahead == '>') ADVANCE(162); + if (lookahead == '?') ADVANCE(165); + if (lookahead == '@') ADVANCE(43); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(342); - if (lookahead == '[') ADVANCE(145); - if (lookahead == '\\') ADVANCE(38); - if (lookahead == ']') ADVANCE(149); - if (lookahead == '^') ADVANCE(182); - if (sym__identifier_token_character_set_4(lookahead)) ADVANCE(343); - if (lookahead == '|') ADVANCE(186); - if (lookahead == '}') ADVANCE(153); + lookahead == 'u') ADVANCE(343); + if (lookahead == '[') ADVANCE(146); + if (lookahead == '\\') ADVANCE(39); + if (lookahead == ']') ADVANCE(150); + if (lookahead == '^') ADVANCE(199); + if (sym__identifier_token_character_set_4(lookahead)) ADVANCE(344); + if (lookahead == '|') ADVANCE(198); + if (lookahead == '}') ADVANCE(154); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -19566,31 +19607,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(10) END_STATE(); case 11: - if (lookahead == '!') ADVANCE(166); - if (lookahead == '#') ADVANCE(56); - if (lookahead == '%') ADVANCE(180); - if (lookahead == '&') ADVANCE(187); - if (lookahead == '(') ADVANCE(150); - if (lookahead == '*') ADVANCE(176); - if (lookahead == '+') ADVANCE(170); - if (lookahead == ',') ADVANCE(148); - if (lookahead == '-') ADVANCE(172); - if (lookahead == '.') ADVANCE(200); - if (lookahead == '/') ADVANCE(178); - if (lookahead == ':') ADVANCE(147); - if (lookahead == ';') ADVANCE(142); - if (lookahead == '<') ADVANCE(156); - if (lookahead == '=') ADVANCE(34); - if (lookahead == '>') ADVANCE(161); - if (lookahead == '?') ADVANCE(162); - if (lookahead == '@') ADVANCE(42); - if (lookahead == '[') ADVANCE(145); - if (lookahead == '\\') ADVANCE(38); - if (lookahead == '^') ADVANCE(182); - if (sym__identifier_token_character_set_3(lookahead)) ADVANCE(343); - if (lookahead == '{') ADVANCE(152); - if (lookahead == '|') ADVANCE(184); - if (lookahead == '~') ADVANCE(167); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '#') ADVANCE(57); + if (lookahead == '%') ADVANCE(215); + if (lookahead == '&') ADVANCE(193); + if (lookahead == '(') ADVANCE(151); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(207); + if (lookahead == ',') ADVANCE(149); + if (lookahead == '-') ADVANCE(209); + if (lookahead == '.') ADVANCE(167); + if (lookahead == '/') ADVANCE(213); + if (lookahead == ':') ADVANCE(148); + if (lookahead == ';') ADVANCE(143); + if (lookahead == '<') ADVANCE(157); + if (lookahead == '=') ADVANCE(35); + if (lookahead == '>') ADVANCE(162); + if (lookahead == '?') ADVANCE(163); + if (lookahead == '@') ADVANCE(43); + if (lookahead == '[') ADVANCE(146); + if (lookahead == '\\') ADVANCE(39); + if (lookahead == '^') ADVANCE(199); + if (sym__identifier_token_character_set_3(lookahead)) ADVANCE(344); + if (lookahead == '{') ADVANCE(153); + if (lookahead == '|') ADVANCE(196); + if (lookahead == '~') ADVANCE(166); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -19598,151 +19639,161 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(11) END_STATE(); case 12: - if (lookahead == '!') ADVANCE(420); - if (lookahead == 'd') ADVANCE(65); - if (lookahead == 'e') ADVANCE(84); - if (lookahead == 'i') ADVANCE(68); - if (lookahead == 'l') ADVANCE(77); - if (lookahead == 'n') ADVANCE(105); - if (lookahead == 'p') ADVANCE(102); - if (lookahead == 'r') ADVANCE(60); - if (lookahead == 'u') ADVANCE(91); - if (lookahead == 'w') ADVANCE(51); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(53); - END_STATE(); - case 13: - if (lookahead == '!') ADVANCE(165); - if (lookahead == '#') ADVANCE(55); - if (lookahead == '\'') ADVANCE(267); - if (lookahead == '(') ADVANCE(150); - if (lookahead == ')') ADVANCE(151); - if (lookahead == '*') ADVANCE(176); - if (lookahead == ',') ADVANCE(148); - if (lookahead == '-') ADVANCE(175); - if (lookahead == '.') ADVANCE(200); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(276); - if (lookahead == ':') ADVANCE(147); - if (lookahead == ';') ADVANCE(142); - if (lookahead == '<') ADVANCE(154); - if (lookahead == '=') ADVANCE(144); - if (lookahead == '>') ADVANCE(158); - if (lookahead == '?') ADVANCE(162); - if (lookahead == '@') ADVANCE(42); - if (lookahead == '[') ADVANCE(145); - if (lookahead == '\\') ADVANCE(38); - if (lookahead == ']') ADVANCE(149); - if (sym__identifier_token_character_set_2(lookahead)) ADVANCE(343); - if (lookahead == '{') ADVANCE(152); - if (lookahead == '}') ADVANCE(153); - if (lookahead == 181) ADVANCE(341); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '#') ADVANCE(57); + if (lookahead == '%') ADVANCE(215); + if (lookahead == '&') ADVANCE(194); + if (lookahead == '(') ADVANCE(151); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(207); + if (lookahead == ',') ADVANCE(149); + if (lookahead == '-') ADVANCE(211); + if (lookahead == '.') ADVANCE(168); + if (lookahead == '/') ADVANCE(213); + if (lookahead == '<') ADVANCE(157); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '>') ADVANCE(162); + if (lookahead == '?') ADVANCE(165); + if (lookahead == '@') ADVANCE(43); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(343); + if (lookahead == '[') ADVANCE(146); + if (lookahead == '\\') ADVANCE(39); + if (lookahead == '^') ADVANCE(199); + if (sym__identifier_token_character_set_2(lookahead)) ADVANCE(344); + if (lookahead == '|') ADVANCE(198); + if (lookahead == 181) ADVANCE(342); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 12288 || - lookahead == 65279) SKIP(13) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(277); + lookahead == 65279) SKIP(12) + END_STATE(); + case 13: + if (lookahead == '!') ADVANCE(421); + if (lookahead == 'd') ADVANCE(66); + if (lookahead == 'e') ADVANCE(85); + if (lookahead == 'i') ADVANCE(69); + if (lookahead == 'l') ADVANCE(78); + if (lookahead == 'n') ADVANCE(106); + if (lookahead == 'p') ADVANCE(103); + if (lookahead == 'r') ADVANCE(61); + if (lookahead == 'u') ADVANCE(92); + if (lookahead == 'w') ADVANCE(52); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(54); END_STATE(); case 14: - if (lookahead == '"') ADVANCE(283); + if (lookahead == '!') ADVANCE(219); if (lookahead == '#') ADVANCE(56); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '\\') ADVANCE(41); - if (lookahead == 181) ADVANCE(28); + if (lookahead == '\'') ADVANCE(268); + if (lookahead == '(') ADVANCE(151); + if (lookahead == ')') ADVANCE(152); + if (lookahead == '*') ADVANCE(172); + if (lookahead == ',') ADVANCE(149); + if (lookahead == '-') ADVANCE(212); + if (lookahead == '.') ADVANCE(167); + if (lookahead == '/') ADVANCE(25); + if (lookahead == '0') ADVANCE(277); + if (lookahead == ':') ADVANCE(148); + if (lookahead == ';') ADVANCE(143); + if (lookahead == '<') ADVANCE(155); + if (lookahead == '=') ADVANCE(145); + if (lookahead == '>') ADVANCE(159); + if (lookahead == '?') ADVANCE(163); + if (lookahead == '@') ADVANCE(43); + if (lookahead == '[') ADVANCE(146); + if (lookahead == '\\') ADVANCE(39); + if (lookahead == ']') ADVANCE(150); + if (sym__identifier_token_character_set_2(lookahead)) ADVANCE(344); + if (lookahead == '{') ADVANCE(153); + if (lookahead == '}') ADVANCE(154); + if (lookahead == 181) ADVANCE(342); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 12288 || lookahead == 65279) SKIP(14) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(278); END_STATE(); case 15: - if (lookahead == '"') ADVANCE(16); - if (lookahead == '\\') ADVANCE(38); - if (sym__identifier_token_character_set_3(lookahead)) ADVANCE(343); + if (lookahead == '"') ADVANCE(284); + if (lookahead == '#') ADVANCE(57); + if (lookahead == '/') ADVANCE(25); + if (lookahead == '\\') ADVANCE(42); + if (lookahead == 181) ADVANCE(29); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 12288 || + lookahead == 65279) SKIP(15) END_STATE(); case 16: - if (lookahead == '"') ADVANCE(339); - if (lookahead != 0) ADVANCE(16); + if (lookahead == '"') ADVANCE(17); + if (lookahead == '\\') ADVANCE(39); + if (sym__identifier_token_character_set_3(lookahead)) ADVANCE(344); END_STATE(); case 17: - if (lookahead == '#') ADVANCE(363); - if (lookahead == '/') ADVANCE(357); - if (lookahead == 160 || - lookahead == 12288 || - lookahead == 65279) ADVANCE(356); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(17) - if (lookahead != 0) ADVANCE(405); + if (lookahead == '"') ADVANCE(340); + if (lookahead != 0) ADVANCE(17); END_STATE(); case 18: - if (lookahead == '#') ADVANCE(270); - if (lookahead == '/') ADVANCE(269); - if (lookahead == '\\') ADVANCE(41); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 160 || + if (lookahead == '#') ADVANCE(364); + if (lookahead == '/') ADVANCE(358); + if (lookahead == 160 || lookahead == 12288 || - lookahead == 65279) ADVANCE(268); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(268); + lookahead == 65279) ADVANCE(357); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(18) + if (lookahead != 0) ADVANCE(406); END_STATE(); case 19: - if (lookahead == '#') ADVANCE(231); - if (lookahead == '/') ADVANCE(223); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '/') ADVANCE(270); + if (lookahead == '\\') ADVANCE(42); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 12288 || - lookahead == 65279) ADVANCE(222); + lookahead == 65279) ADVANCE(269); if (lookahead != 0 && - lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '\'') ADVANCE(269); END_STATE(); case 20: - if (lookahead == '#') ADVANCE(56); - if (lookahead == '(') ADVANCE(150); - if (lookahead == ')') ADVANCE(151); - if (lookahead == '*') ADVANCE(176); - if (lookahead == ',') ADVANCE(148); - if (lookahead == '-') ADVANCE(35); - if (lookahead == '.') ADVANCE(200); - if (lookahead == '/') ADVANCE(24); - if (lookahead == ':') ADVANCE(146); - if (lookahead == ';') ADVANCE(142); - if (lookahead == '<') ADVANCE(154); - if (lookahead == '=') ADVANCE(36); - if (lookahead == '>') ADVANCE(158); - if (lookahead == '?') ADVANCE(162); - if (lookahead == '@') ADVANCE(42); - if (lookahead == '[') ADVANCE(145); - if (lookahead == '\\') ADVANCE(38); - if (lookahead == ']') ADVANCE(149); - if (sym__identifier_token_character_set_2(lookahead)) ADVANCE(343); - if (lookahead == '{') ADVANCE(152); - if (lookahead == '}') ADVANCE(153); - if (lookahead == 181) ADVANCE(341); + if (lookahead == '#') ADVANCE(232); + if (lookahead == '/') ADVANCE(224); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 12288 || - lookahead == 65279) SKIP(20) + lookahead == 65279) ADVANCE(223); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '}') ADVANCE(266); END_STATE(); case 21: - if (lookahead == '#') ADVANCE(56); - if (lookahead == '(') ADVANCE(150); - if (lookahead == '*') ADVANCE(176); - if (lookahead == ',') ADVANCE(148); - if (lookahead == '.') ADVANCE(200); - if (lookahead == '/') ADVANCE(24); - if (lookahead == ':') ADVANCE(146); - if (lookahead == '<') ADVANCE(154); - if (lookahead == '?') ADVANCE(162); - if (lookahead == '@') ADVANCE(42); - if (lookahead == '[') ADVANCE(145); - if (lookahead == '\\') ADVANCE(38); - if (sym__identifier_token_character_set_3(lookahead)) ADVANCE(343); - if (lookahead == '{') ADVANCE(152); + if (lookahead == '#') ADVANCE(57); + if (lookahead == '(') ADVANCE(151); + if (lookahead == ')') ADVANCE(152); + if (lookahead == '*') ADVANCE(172); + if (lookahead == ',') ADVANCE(149); + if (lookahead == '-') ADVANCE(36); + if (lookahead == '.') ADVANCE(167); + if (lookahead == '/') ADVANCE(25); + if (lookahead == ':') ADVANCE(147); + if (lookahead == ';') ADVANCE(143); + if (lookahead == '<') ADVANCE(155); + if (lookahead == '=') ADVANCE(37); + if (lookahead == '>') ADVANCE(159); + if (lookahead == '?') ADVANCE(163); + if (lookahead == '@') ADVANCE(43); + if (lookahead == '[') ADVANCE(146); + if (lookahead == '\\') ADVANCE(39); + if (lookahead == ']') ADVANCE(150); + if (sym__identifier_token_character_set_2(lookahead)) ADVANCE(344); + if (lookahead == '{') ADVANCE(153); + if (lookahead == '}') ADVANCE(154); + if (lookahead == 181) ADVANCE(342); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -19750,9 +19801,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(21) END_STATE(); case 22: - if (lookahead == '#') ADVANCE(56); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '\\') ADVANCE(41); + if (lookahead == '#') ADVANCE(57); + if (lookahead == '(') ADVANCE(151); + if (lookahead == '*') ADVANCE(172); + if (lookahead == ',') ADVANCE(149); + if (lookahead == '.') ADVANCE(167); + if (lookahead == '/') ADVANCE(25); + if (lookahead == ':') ADVANCE(147); + if (lookahead == '<') ADVANCE(155); + if (lookahead == '?') ADVANCE(163); + if (lookahead == '@') ADVANCE(43); + if (lookahead == '[') ADVANCE(146); + if (lookahead == '\\') ADVANCE(39); + if (sym__identifier_token_character_set_3(lookahead)) ADVANCE(344); + if (lookahead == '{') ADVANCE(153); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || @@ -19760,368 +19822,373 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 65279) SKIP(22) END_STATE(); case 23: - if (lookahead == '&') ADVANCE(218); + if (lookahead == '#') ADVANCE(57); + if (lookahead == '/') ADVANCE(25); + if (lookahead == '\\') ADVANCE(42); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 12288 || + lookahead == 65279) SKIP(23) END_STATE(); case 24: - if (lookahead == '*') ADVANCE(26); - if (lookahead == '/') ADVANCE(425); + if (lookahead == '&') ADVANCE(191); END_STATE(); case 25: - if (lookahead == '*') ADVANCE(25); - if (lookahead == '/') ADVANCE(421); - if (lookahead != 0) ADVANCE(26); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '/') ADVANCE(426); END_STATE(); case 26: - if (lookahead == '*') ADVANCE(25); - if (lookahead != 0) ADVANCE(26); + if (lookahead == '*') ADVANCE(26); + if (lookahead == '/') ADVANCE(422); + if (lookahead != 0) ADVANCE(27); END_STATE(); case 27: - if (lookahead == '*') ADVANCE(25); - if (lookahead != 0) ADVANCE(354); + if (lookahead == '*') ADVANCE(26); + if (lookahead != 0) ADVANCE(27); END_STATE(); case 28: - if (lookahead == '.') ADVANCE(30); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(345); + if (lookahead == '*') ADVANCE(26); + if (lookahead != 0) ADVANCE(355); END_STATE(); case 29: - if (lookahead == '.') ADVANCE(344); + if (lookahead == '.') ADVANCE(31); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(346); END_STATE(); case 30: - if (lookahead == '.') ADVANCE(29); + if (lookahead == '.') ADVANCE(345); END_STATE(); case 31: - if (lookahead == '8') ADVANCE(338); + if (lookahead == '.') ADVANCE(30); END_STATE(); case 32: - if (lookahead == '=') ADVANCE(197); + if (lookahead == '8') ADVANCE(339); END_STATE(); case 33: - if (lookahead == '=') ADVANCE(196); + if (lookahead == '=') ADVANCE(190); END_STATE(); case 34: - if (lookahead == '=') ADVANCE(196); - if (lookahead == '>') ADVANCE(203); + if (lookahead == '=') ADVANCE(189); END_STATE(); case 35: - if (lookahead == '>') ADVANCE(266); + if (lookahead == '=') ADVANCE(189); + if (lookahead == '>') ADVANCE(170); END_STATE(); case 36: - if (lookahead == '>') ADVANCE(203); + if (lookahead == '>') ADVANCE(267); END_STATE(); case 37: - if (lookahead == 'U') ADVANCE(332); - if (lookahead == 'u') ADVANCE(330); - if (lookahead == 'x') ADVANCE(329); - if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(334); - if (lookahead != 0) ADVANCE(328); + if (lookahead == '>') ADVANCE(170); END_STATE(); case 38: - if (lookahead == 'U') ADVANCE(134); - if (lookahead == 'u') ADVANCE(122); - END_STATE(); - case 39: if (lookahead == 'U') ADVANCE(333); if (lookahead == 'u') ADVANCE(331); - if (lookahead == 'x') ADVANCE(329); - if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(334); - if (lookahead != 0) ADVANCE(328); + if (lookahead == 'x') ADVANCE(330); + if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(335); + if (lookahead != 0) ADVANCE(329); + END_STATE(); + case 39: + if (lookahead == 'U') ADVANCE(135); + if (lookahead == 'u') ADVANCE(123); END_STATE(); case 40: - if (lookahead == 'U') ADVANCE(133); - if (lookahead == 'u') ADVANCE(121); - if (lookahead == 'x') ADVANCE(114); - if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(334); + if (lookahead == 'U') ADVANCE(334); + if (lookahead == 'u') ADVANCE(332); + if (lookahead == 'x') ADVANCE(330); + if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(335); + if (lookahead != 0) ADVANCE(329); END_STATE(); case 41: - if (lookahead == 'U') ADVANCE(135); - if (lookahead == 'u') ADVANCE(123); - if (lookahead == 'x') ADVANCE(114); - if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(334); + if (lookahead == 'U') ADVANCE(134); + if (lookahead == 'u') ADVANCE(122); + if (lookahead == 'x') ADVANCE(115); + if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(335); END_STATE(); case 42: - if (lookahead == '\\') ADVANCE(38); - if (sym__identifier_token_character_set_3(lookahead)) ADVANCE(343); + if (lookahead == 'U') ADVANCE(136); + if (lookahead == 'u') ADVANCE(124); + if (lookahead == 'x') ADVANCE(115); + if (sym_escape_sequence_character_set_1(lookahead)) ADVANCE(335); END_STATE(); case 43: - if (lookahead == '_') ADVANCE(43); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); + if (lookahead == '\\') ADVANCE(39); + if (sym__identifier_token_character_set_3(lookahead)) ADVANCE(344); END_STATE(); case 44: if (lookahead == '_') ADVANCE(44); - if (lookahead == '0' || - lookahead == '1') ADVANCE(274); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); case 45: if (lookahead == '_') ADVANCE(45); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(275); + if (lookahead == '0' || + lookahead == '1') ADVANCE(275); END_STATE(); case 46: if (lookahead == '_') ADVANCE(46); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(281); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(276); END_STATE(); case 47: if (lookahead == '_') ADVANCE(47); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(282); END_STATE(); case 48: - if (lookahead == 'a') ADVANCE(52); + if (lookahead == '_') ADVANCE(48); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); END_STATE(); case 49: - if (lookahead == 'a') ADVANCE(414); + if (lookahead == 'a') ADVANCE(53); END_STATE(); case 50: - if (lookahead == 'a') ADVANCE(73); + if (lookahead == 'a') ADVANCE(415); END_STATE(); case 51: - if (lookahead == 'a') ADVANCE(103); + if (lookahead == 'a') ADVANCE(74); END_STATE(); case 52: - if (lookahead == 'b') ADVANCE(87); + if (lookahead == 'a') ADVANCE(104); END_STATE(); case 53: - if (lookahead == 'd') ADVANCE(65); - if (lookahead == 'e') ADVANCE(84); - if (lookahead == 'i') ADVANCE(68); - if (lookahead == 'l') ADVANCE(77); - if (lookahead == 'n') ADVANCE(105); - if (lookahead == 'p') ADVANCE(102); - if (lookahead == 'r') ADVANCE(60); - if (lookahead == 'u') ADVANCE(91); - if (lookahead == 'w') ADVANCE(51); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(53); + if (lookahead == 'b') ADVANCE(88); END_STATE(); case 54: - if (lookahead == 'd') ADVANCE(65); - if (lookahead == 'e') ADVANCE(84); - if (lookahead == 'l') ADVANCE(77); - if (lookahead == 'n') ADVANCE(105); - if (lookahead == 'p') ADVANCE(102); - if (lookahead == 'r') ADVANCE(60); - if (lookahead == 'u') ADVANCE(91); - if (lookahead == 'w') ADVANCE(51); + if (lookahead == 'd') ADVANCE(66); + if (lookahead == 'e') ADVANCE(85); + if (lookahead == 'i') ADVANCE(69); + if (lookahead == 'l') ADVANCE(78); + if (lookahead == 'n') ADVANCE(106); + if (lookahead == 'p') ADVANCE(103); + if (lookahead == 'r') ADVANCE(61); + if (lookahead == 'u') ADVANCE(92); + if (lookahead == 'w') ADVANCE(52); if (lookahead == '\t' || lookahead == ' ') ADVANCE(54); END_STATE(); case 55: - if (lookahead == 'd') ADVANCE(65); - if (lookahead == 'e') ADVANCE(92); - if (lookahead == 'i') ADVANCE(68); - if (lookahead == 'l') ADVANCE(77); - if (lookahead == 'n') ADVANCE(105); - if (lookahead == 'p') ADVANCE(102); - if (lookahead == 'r') ADVANCE(60); - if (lookahead == 'u') ADVANCE(91); - if (lookahead == 'w') ADVANCE(51); + if (lookahead == 'd') ADVANCE(66); + if (lookahead == 'e') ADVANCE(85); + if (lookahead == 'l') ADVANCE(78); + if (lookahead == 'n') ADVANCE(106); + if (lookahead == 'p') ADVANCE(103); + if (lookahead == 'r') ADVANCE(61); + if (lookahead == 'u') ADVANCE(92); + if (lookahead == 'w') ADVANCE(52); if (lookahead == '\t' || lookahead == ' ') ADVANCE(55); END_STATE(); case 56: - if (lookahead == 'd') ADVANCE(65); - if (lookahead == 'e') ADVANCE(92); - if (lookahead == 'l') ADVANCE(77); - if (lookahead == 'n') ADVANCE(105); - if (lookahead == 'p') ADVANCE(102); - if (lookahead == 'r') ADVANCE(60); - if (lookahead == 'u') ADVANCE(91); - if (lookahead == 'w') ADVANCE(51); + if (lookahead == 'd') ADVANCE(66); + if (lookahead == 'e') ADVANCE(93); + if (lookahead == 'i') ADVANCE(69); + if (lookahead == 'l') ADVANCE(78); + if (lookahead == 'n') ADVANCE(106); + if (lookahead == 'p') ADVANCE(103); + if (lookahead == 'r') ADVANCE(61); + if (lookahead == 'u') ADVANCE(92); + if (lookahead == 'w') ADVANCE(52); if (lookahead == '\t' || lookahead == ' ') ADVANCE(56); END_STATE(); case 57: - if (lookahead == 'd') ADVANCE(80); + if (lookahead == 'd') ADVANCE(66); + if (lookahead == 'e') ADVANCE(93); + if (lookahead == 'l') ADVANCE(78); + if (lookahead == 'n') ADVANCE(106); + if (lookahead == 'p') ADVANCE(103); + if (lookahead == 'r') ADVANCE(61); + if (lookahead == 'u') ADVANCE(92); + if (lookahead == 'w') ADVANCE(52); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(57); END_STATE(); case 58: - if (lookahead == 'd') ADVANCE(104); + if (lookahead == 'd') ADVANCE(81); END_STATE(); case 59: - if (lookahead == 'd') ADVANCE(66); + if (lookahead == 'd') ADVANCE(105); END_STATE(); case 60: - if (lookahead == 'e') ADVANCE(75); + if (lookahead == 'd') ADVANCE(67); END_STATE(); case 61: - if (lookahead == 'e') ADVANCE(351); + if (lookahead == 'e') ADVANCE(76); END_STATE(); case 62: - if (lookahead == 'e') ADVANCE(413); + if (lookahead == 'e') ADVANCE(352); END_STATE(); case 63: - if (lookahead == 'e') ADVANCE(418); + if (lookahead == 'e') ADVANCE(414); END_STATE(); case 64: - if (lookahead == 'e') ADVANCE(415); + if (lookahead == 'e') ADVANCE(419); END_STATE(); case 65: - if (lookahead == 'e') ADVANCE(72); + if (lookahead == 'e') ADVANCE(416); END_STATE(); case 66: - if (lookahead == 'e') ADVANCE(71); + if (lookahead == 'e') ADVANCE(73); END_STATE(); case 67: - if (lookahead == 'e') ADVANCE(76); + if (lookahead == 'e') ADVANCE(72); END_STATE(); case 68: - if (lookahead == 'f') ADVANCE(346); + if (lookahead == 'e') ADVANCE(77); END_STATE(); case 69: - if (lookahead == 'f') ADVANCE(352); + if (lookahead == 'f') ADVANCE(347); END_STATE(); case 70: - if (lookahead == 'f') ADVANCE(350); + if (lookahead == 'f') ADVANCE(353); END_STATE(); case 71: - if (lookahead == 'f') ADVANCE(419); + if (lookahead == 'f') ADVANCE(351); END_STATE(); case 72: - if (lookahead == 'f') ADVANCE(82); + if (lookahead == 'f') ADVANCE(420); END_STATE(); case 73: - if (lookahead == 'g') ADVANCE(88); + if (lookahead == 'f') ADVANCE(83); END_STATE(); case 74: - if (lookahead == 'g') ADVANCE(417); + if (lookahead == 'g') ADVANCE(89); END_STATE(); case 75: - if (lookahead == 'g') ADVANCE(78); + if (lookahead == 'g') ADVANCE(418); END_STATE(); case 76: - if (lookahead == 'g') ADVANCE(83); + if (lookahead == 'g') ADVANCE(79); END_STATE(); case 77: - if (lookahead == 'i') ADVANCE(94); + if (lookahead == 'g') ADVANCE(84); END_STATE(); case 78: - if (lookahead == 'i') ADVANCE(98); + if (lookahead == 'i') ADVANCE(95); END_STATE(); case 79: - if (lookahead == 'i') ADVANCE(69); - if (lookahead == 's') ADVANCE(61); + if (lookahead == 'i') ADVANCE(99); END_STATE(); case 80: if (lookahead == 'i') ADVANCE(70); - if (lookahead == 'r') ADVANCE(67); + if (lookahead == 's') ADVANCE(62); END_STATE(); case 81: - if (lookahead == 'i') ADVANCE(93); + if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'r') ADVANCE(68); END_STATE(); case 82: - if (lookahead == 'i') ADVANCE(95); + if (lookahead == 'i') ADVANCE(94); END_STATE(); case 83: - if (lookahead == 'i') ADVANCE(99); + if (lookahead == 'i') ADVANCE(96); END_STATE(); case 84: - if (lookahead == 'l') ADVANCE(79); - if (lookahead == 'n') ADVANCE(57); - if (lookahead == 'r') ADVANCE(100); + if (lookahead == 'i') ADVANCE(100); END_STATE(); case 85: - if (lookahead == 'l') ADVANCE(86); + if (lookahead == 'l') ADVANCE(80); + if (lookahead == 'n') ADVANCE(58); + if (lookahead == 'r') ADVANCE(101); END_STATE(); case 86: - if (lookahead == 'l') ADVANCE(48); + if (lookahead == 'l') ADVANCE(87); END_STATE(); case 87: - if (lookahead == 'l') ADVANCE(64); + if (lookahead == 'l') ADVANCE(49); END_STATE(); case 88: - if (lookahead == 'm') ADVANCE(49); + if (lookahead == 'l') ADVANCE(65); END_STATE(); case 89: - if (lookahead == 'n') ADVANCE(411); + if (lookahead == 'm') ADVANCE(50); END_STATE(); case 90: if (lookahead == 'n') ADVANCE(412); END_STATE(); case 91: - if (lookahead == 'n') ADVANCE(59); + if (lookahead == 'n') ADVANCE(413); END_STATE(); case 92: - if (lookahead == 'n') ADVANCE(58); - if (lookahead == 'r') ADVANCE(100); + if (lookahead == 'n') ADVANCE(60); END_STATE(); case 93: - if (lookahead == 'n') ADVANCE(74); + if (lookahead == 'n') ADVANCE(59); + if (lookahead == 'r') ADVANCE(101); END_STATE(); case 94: - if (lookahead == 'n') ADVANCE(62); + if (lookahead == 'n') ADVANCE(75); END_STATE(); case 95: if (lookahead == 'n') ADVANCE(63); END_STATE(); case 96: - if (lookahead == 'n') ADVANCE(81); + if (lookahead == 'n') ADVANCE(64); END_STATE(); case 97: - if (lookahead == 'o') ADVANCE(101); + if (lookahead == 'n') ADVANCE(82); END_STATE(); case 98: - if (lookahead == 'o') ADVANCE(89); + if (lookahead == 'o') ADVANCE(102); END_STATE(); case 99: if (lookahead == 'o') ADVANCE(90); END_STATE(); case 100: - if (lookahead == 'r') ADVANCE(97); + if (lookahead == 'o') ADVANCE(91); END_STATE(); case 101: - if (lookahead == 'r') ADVANCE(416); + if (lookahead == 'r') ADVANCE(98); END_STATE(); case 102: - if (lookahead == 'r') ADVANCE(50); + if (lookahead == 'r') ADVANCE(417); END_STATE(); case 103: - if (lookahead == 'r') ADVANCE(96); + if (lookahead == 'r') ADVANCE(51); END_STATE(); case 104: - if (lookahead == 'r') ADVANCE(67); + if (lookahead == 'r') ADVANCE(97); END_STATE(); case 105: - if (lookahead == 'u') ADVANCE(85); + if (lookahead == 'r') ADVANCE(68); END_STATE(); case 106: - if (lookahead == '|') ADVANCE(219); + if (lookahead == 'u') ADVANCE(86); END_STATE(); case 107: - if (lookahead == '+' || - lookahead == '-') ADVANCE(109); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(282); + if (lookahead == '|') ADVANCE(192); END_STATE(); case 108: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(281); + if (lookahead == '+' || + lookahead == '-') ADVANCE(110); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(283); END_STATE(); case 109: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(282); END_STATE(); case 110: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(343); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(283); END_STATE(); case 111: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(334); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(344); END_STATE(); case 112: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(337); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(335); END_STATE(); case 113: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(335); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(338); END_STATE(); case 114: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(112); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(336); END_STATE(); case 115: if (('0' <= lookahead && lookahead <= '9') || @@ -20131,7 +20198,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 116: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(114); END_STATE(); case 117: if (('0' <= lookahead && lookahead <= '9') || @@ -20141,7 +20208,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 118: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(112); END_STATE(); case 119: if (('0' <= lookahead && lookahead <= '9') || @@ -20171,32 +20238,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 124: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(122); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(121); END_STATE(); case 125: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(121); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(123); END_STATE(); case 126: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(123); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(122); END_STATE(); case 127: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(125); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(124); END_STATE(); case 128: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(124); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(126); END_STATE(); case 129: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(126); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(125); END_STATE(); case 130: if (('0' <= lookahead && lookahead <= '9') || @@ -20229,1245 +20296,1241 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(132); END_STATE(); case 136: - if (lookahead != 0 && - lookahead != '*') ADVANCE(405); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(133); END_STATE(); case 137: - if (eof) ADVANCE(141); - if (lookahead == '!') ADVANCE(166); - if (lookahead == '"') ADVANCE(283); - if (lookahead == '#') ADVANCE(12); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '\'') ADVANCE(267); - if (lookahead == '(') ADVANCE(150); - if (lookahead == ')') ADVANCE(151); - if (lookahead == '*') ADVANCE(177); - if (lookahead == '+') ADVANCE(171); - if (lookahead == ',') ADVANCE(148); - if (lookahead == '-') ADVANCE(173); - if (lookahead == '.') ADVANCE(202); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(272); - if (lookahead == ':') ADVANCE(147); - if (lookahead == ';') ADVANCE(142); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '=') ADVANCE(143); - if (lookahead == '>') ADVANCE(160); - if (lookahead == '?') ADVANCE(163); - if (lookahead == '@') ADVANCE(15); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(342); - if (lookahead == '[') ADVANCE(145); - if (lookahead == '\\') ADVANCE(40); - if (lookahead == ']') ADVANCE(149); - if (lookahead == '^') ADVANCE(183); - if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(343); - if (lookahead == '{') ADVANCE(152); - if (lookahead == '|') ADVANCE(185); - if (lookahead == '}') ADVANCE(153); - if (lookahead == '~') ADVANCE(167); - if (lookahead == 181) ADVANCE(341); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 160 || - lookahead == 12288 || - lookahead == 65279) SKIP(137) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(273); + if (lookahead != 0 && + lookahead != '*') ADVANCE(406); END_STATE(); case 138: - if (eof) ADVANCE(141); - if (lookahead == '!') ADVANCE(166); - if (lookahead == '"') ADVANCE(283); - if (lookahead == '#') ADVANCE(53); - if (lookahead == '%') ADVANCE(181); - if (lookahead == '&') ADVANCE(189); - if (lookahead == '\'') ADVANCE(267); - if (lookahead == '(') ADVANCE(150); - if (lookahead == ')') ADVANCE(151); - if (lookahead == '*') ADVANCE(177); - if (lookahead == '+') ADVANCE(171); - if (lookahead == ',') ADVANCE(148); - if (lookahead == '-') ADVANCE(173); - if (lookahead == '.') ADVANCE(202); - if (lookahead == '/') ADVANCE(179); - if (lookahead == '0') ADVANCE(272); - if (lookahead == ':') ADVANCE(147); - if (lookahead == ';') ADVANCE(142); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '=') ADVANCE(143); - if (lookahead == '>') ADVANCE(160); - if (lookahead == '?') ADVANCE(163); - if (lookahead == '@') ADVANCE(15); - if (lookahead == '[') ADVANCE(145); - if (lookahead == '\\') ADVANCE(38); - if (lookahead == ']') ADVANCE(149); - if (lookahead == '^') ADVANCE(183); - if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(343); - if (lookahead == '{') ADVANCE(152); - if (lookahead == '|') ADVANCE(185); - if (lookahead == '}') ADVANCE(153); - if (lookahead == '~') ADVANCE(167); - if (lookahead == 181) ADVANCE(341); + if (eof) ADVANCE(142); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '"') ADVANCE(284); + if (lookahead == '#') ADVANCE(13); + if (lookahead == '%') ADVANCE(216); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '\'') ADVANCE(268); + if (lookahead == '(') ADVANCE(151); + if (lookahead == ')') ADVANCE(152); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '+') ADVANCE(208); + if (lookahead == ',') ADVANCE(149); + 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); + if (lookahead == '<') ADVANCE(156); + if (lookahead == '=') ADVANCE(144); + if (lookahead == '>') ADVANCE(161); + if (lookahead == '?') ADVANCE(164); + if (lookahead == '@') ADVANCE(16); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(343); + if (lookahead == '[') ADVANCE(146); + if (lookahead == '\\') ADVANCE(41); + if (lookahead == ']') ADVANCE(150); + if (lookahead == '^') ADVANCE(200); + if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(344); + if (lookahead == '{') ADVANCE(153); + if (lookahead == '|') ADVANCE(197); + if (lookahead == '}') ADVANCE(154); + if (lookahead == '~') ADVANCE(166); + if (lookahead == 181) ADVANCE(342); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 12288 || lookahead == 65279) SKIP(138) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(273); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); case 139: - if (eof) ADVANCE(141); - if (lookahead == '!') ADVANCE(166); - if (lookahead == '"') ADVANCE(283); - if (lookahead == '#') ADVANCE(53); - if (lookahead == '%') ADVANCE(180); - if (lookahead == '&') ADVANCE(188); - if (lookahead == '\'') ADVANCE(267); - if (lookahead == '(') ADVANCE(150); - if (lookahead == ')') ADVANCE(151); - if (lookahead == '*') ADVANCE(176); - if (lookahead == '+') ADVANCE(170); - if (lookahead == ',') ADVANCE(148); - if (lookahead == '-') ADVANCE(174); - if (lookahead == '.') ADVANCE(202); - if (lookahead == '/') ADVANCE(178); - if (lookahead == '0') ADVANCE(272); - if (lookahead == ':') ADVANCE(146); - if (lookahead == ';') ADVANCE(142); + if (eof) ADVANCE(142); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '"') ADVANCE(284); + if (lookahead == '#') ADVANCE(54); + if (lookahead == '%') ADVANCE(216); + if (lookahead == '&') ADVANCE(195); + if (lookahead == '\'') ADVANCE(268); + if (lookahead == '(') ADVANCE(151); + if (lookahead == ')') ADVANCE(152); + if (lookahead == '*') ADVANCE(173); + if (lookahead == '+') ADVANCE(208); + if (lookahead == ',') ADVANCE(149); + 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); if (lookahead == '<') ADVANCE(156); - if (lookahead == '=') ADVANCE(34); + if (lookahead == '=') ADVANCE(144); if (lookahead == '>') ADVANCE(161); if (lookahead == '?') ADVANCE(164); - if (lookahead == '@') ADVANCE(15); - if (lookahead == '[') ADVANCE(145); - if (lookahead == '\\') ADVANCE(38); - if (lookahead == ']') ADVANCE(149); - if (lookahead == '^') ADVANCE(182); - if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(343); - if (lookahead == '{') ADVANCE(152); - if (lookahead == '|') ADVANCE(186); - if (lookahead == '}') ADVANCE(153); - if (lookahead == '~') ADVANCE(167); - if (lookahead == 181) ADVANCE(341); + if (lookahead == '@') ADVANCE(16); + if (lookahead == '[') ADVANCE(146); + if (lookahead == '\\') ADVANCE(39); + if (lookahead == ']') ADVANCE(150); + if (lookahead == '^') ADVANCE(200); + if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(344); + if (lookahead == '{') ADVANCE(153); + if (lookahead == '|') ADVANCE(197); + if (lookahead == '}') ADVANCE(154); + if (lookahead == '~') ADVANCE(166); + if (lookahead == 181) ADVANCE(342); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 12288 || lookahead == 65279) SKIP(139) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(273); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); case 140: - if (eof) ADVANCE(141); - if (lookahead == '!') ADVANCE(165); - if (lookahead == '"') ADVANCE(283); - if (lookahead == '#') ADVANCE(12); - if (lookahead == '&') ADVANCE(187); - if (lookahead == '\'') ADVANCE(267); - if (lookahead == '(') ADVANCE(150); - if (lookahead == ')') ADVANCE(151); - if (lookahead == '*') ADVANCE(176); - if (lookahead == '+') ADVANCE(170); - if (lookahead == ',') ADVANCE(148); - if (lookahead == '-') ADVANCE(174); - if (lookahead == '.') ADVANCE(202); - if (lookahead == '/') ADVANCE(24); - if (lookahead == '0') ADVANCE(272); + if (eof) ADVANCE(142); + if (lookahead == '!') ADVANCE(220); + if (lookahead == '"') ADVANCE(284); + if (lookahead == '#') ADVANCE(54); + if (lookahead == '%') ADVANCE(215); + if (lookahead == '&') ADVANCE(194); + if (lookahead == '\'') ADVANCE(268); + if (lookahead == '(') ADVANCE(151); + if (lookahead == ')') ADVANCE(152); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(207); + if (lookahead == ',') ADVANCE(149); + if (lookahead == '-') ADVANCE(211); + if (lookahead == '.') ADVANCE(169); + if (lookahead == '/') ADVANCE(213); + if (lookahead == '0') ADVANCE(273); if (lookahead == ':') ADVANCE(147); - if (lookahead == ';') ADVANCE(142); + if (lookahead == ';') ADVANCE(143); if (lookahead == '<') ADVANCE(157); - if (lookahead == '=') ADVANCE(144); - if (lookahead == '>') ADVANCE(159); - if (lookahead == '?') ADVANCE(162); - if (lookahead == '@') ADVANCE(15); - if (lookahead == '[') ADVANCE(145); - if (lookahead == '\\') ADVANCE(38); - if (lookahead == ']') ADVANCE(149); - if (lookahead == '^') ADVANCE(182); - if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(343); - if (lookahead == '{') ADVANCE(152); - if (lookahead == '}') ADVANCE(153); - if (lookahead == '~') ADVANCE(167); - if (lookahead == 181) ADVANCE(341); + if (lookahead == '=') ADVANCE(35); + if (lookahead == '>') ADVANCE(162); + if (lookahead == '?') ADVANCE(165); + if (lookahead == '@') ADVANCE(16); + if (lookahead == '[') ADVANCE(146); + if (lookahead == '\\') ADVANCE(39); + if (lookahead == ']') ADVANCE(150); + if (lookahead == '^') ADVANCE(199); + if (sym__identifier_token_character_set_1(lookahead)) ADVANCE(344); + if (lookahead == '{') ADVANCE(153); + if (lookahead == '|') ADVANCE(198); + if (lookahead == '}') ADVANCE(154); + if (lookahead == '~') ADVANCE(166); + if (lookahead == 181) ADVANCE(342); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 12288 || lookahead == 65279) SKIP(140) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(273); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); case 141: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(142); + if (lookahead == '!') ADVANCE(219); + if (lookahead == '"') ADVANCE(284); + if (lookahead == '#') ADVANCE(13); + if (lookahead == '&') ADVANCE(193); + if (lookahead == '\'') ADVANCE(268); + if (lookahead == '(') ADVANCE(151); + if (lookahead == ')') ADVANCE(152); + if (lookahead == '*') ADVANCE(172); + if (lookahead == '+') ADVANCE(207); + if (lookahead == ',') ADVANCE(149); + if (lookahead == '-') ADVANCE(211); + if (lookahead == '.') ADVANCE(169); + if (lookahead == '/') ADVANCE(25); + if (lookahead == '0') ADVANCE(273); + if (lookahead == ':') ADVANCE(148); + if (lookahead == ';') ADVANCE(143); + if (lookahead == '<') ADVANCE(158); + if (lookahead == '=') ADVANCE(145); + if (lookahead == '>') ADVANCE(160); + if (lookahead == '?') ADVANCE(163); + if (lookahead == '@') ADVANCE(16); + if (lookahead == '[') ADVANCE(146); + if (lookahead == '\\') ADVANCE(39); + if (lookahead == ']') ADVANCE(150); + 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(166); + if (lookahead == 181) ADVANCE(342); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == 160 || + lookahead == 12288 || + lookahead == 65279) SKIP(141) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(196); - if (lookahead == '>') ADVANCE(203); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 144: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(203); + if (lookahead == '=') ADVANCE(189); + if (lookahead == '>') ADVANCE(170); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '>') ADVANCE(170); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 147: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(204); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == ':') ADVANCE(171); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 153: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 155: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(191); - if (lookahead == '=') ADVANCE(199); END_STATE(); case 156: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(190); - if (lookahead == '=') ADVANCE(199); + if (lookahead == '<') ADVANCE(202); + if (lookahead == '=') ADVANCE(175); END_STATE(); case 157: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(199); + if (lookahead == '<') ADVANCE(201); + if (lookahead == '=') ADVANCE(175); END_STATE(); case 158: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(175); END_STATE(); case 159: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(198); END_STATE(); case 160: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(198); - if (lookahead == '>') ADVANCE(192); + if (lookahead == '=') ADVANCE(176); END_STATE(); case 161: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(198); - if (lookahead == '>') ADVANCE(193); + if (lookahead == '=') ADVANCE(176); + if (lookahead == '>') ADVANCE(203); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(176); + if (lookahead == '>') ADVANCE(204); END_STATE(); case 163: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '?') ADVANCE(221); END_STATE(); case 164: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '?') ADVANCE(220); + if (lookahead == '?') ADVANCE(218); END_STATE(); case 165: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '?') ADVANCE(217); END_STATE(); case 166: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(197); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 167: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 168: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(174); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(174); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(282); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(168); + ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); case 171: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(168); - if (lookahead == '=') ADVANCE(206); + ACCEPT_TOKEN(anon_sym_COLON_COLON); END_STATE(); case 172: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(169); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 173: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(169); - if (lookahead == '=') ADVANCE(207); - if (lookahead == '>') ADVANCE(266); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(179); END_STATE(); case 174: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(169); - if (lookahead == '>') ADVANCE(266); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 175: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(266); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 176: - ACCEPT_TOKEN(anon_sym_STAR); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 177: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(208); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 178: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(26); - if (lookahead == '/') ADVANCE(425); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 179: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(26); - if (lookahead == '/') ADVANCE(425); - if (lookahead == '=') ADVANCE(209); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 180: - ACCEPT_TOKEN(anon_sym_PERCENT); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 181: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(210); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 182: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 183: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(212); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 184: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 185: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(213); - if (lookahead == '|') ADVANCE(219); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 186: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(219); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 187: - ACCEPT_TOKEN(anon_sym_AMP); + ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); END_STATE(); case 188: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(218); + ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); END_STATE(); case 189: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(218); - if (lookahead == '=') ADVANCE(211); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 190: - ACCEPT_TOKEN(anon_sym_LT_LT); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 191: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(214); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 192: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(215); - if (lookahead == '>') ADVANCE(195); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 193: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(194); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 194: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(191); END_STATE(); case 195: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(216); + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(191); + if (lookahead == '=') ADVANCE(182); END_STATE(); case 196: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(sym_op_bitwise_or); END_STATE(); case 197: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(sym_op_bitwise_or); + if (lookahead == '=') ADVANCE(184); + if (lookahead == '|') ADVANCE(192); END_STATE(); case 198: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(sym_op_bitwise_or); + if (lookahead == '|') ADVANCE(192); END_STATE(); case 199: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 200: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(183); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(205); + ACCEPT_TOKEN(sym_op_left_shift); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(205); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(281); + ACCEPT_TOKEN(sym_op_left_shift); + if (lookahead == '=') ADVANCE(185); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(sym_op_right_shift); + if (lookahead == '=') ADVANCE(186); + if (lookahead == '>') ADVANCE(206); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_COLON_COLON); + ACCEPT_TOKEN(sym_op_right_shift); + if (lookahead == '>') ADVANCE(205); END_STATE(); case 205: - ACCEPT_TOKEN(anon_sym_DOT_DOT); + ACCEPT_TOKEN(sym_op_unsigned_right_shift); END_STATE(); case 206: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(sym_op_unsigned_right_shift); + if (lookahead == '=') ADVANCE(187); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(221); END_STATE(); case 208: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(221); + if (lookahead == '=') ADVANCE(177); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(222); END_STATE(); case 210: - ACCEPT_TOKEN(anon_sym_PERCENT_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_AMP_EQ); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(222); + if (lookahead == '>') ADVANCE(267); END_STATE(); case 212: - ACCEPT_TOKEN(anon_sym_CARET_EQ); + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '>') ADVANCE(267); END_STATE(); case 213: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(sym_op_divide); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '/') ADVANCE(426); END_STATE(); case 214: - ACCEPT_TOKEN(anon_sym_LT_LT_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_GT_GT_EQ); + ACCEPT_TOKEN(sym_op_modulo); END_STATE(); case 216: - ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); + ACCEPT_TOKEN(sym_op_modulo); + if (lookahead == '=') ADVANCE(181); END_STATE(); case 217: - ACCEPT_TOKEN(anon_sym_QMARK_QMARK_EQ); + ACCEPT_TOKEN(sym_op_coalescing); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(sym_op_coalescing); + if (lookahead == '=') ADVANCE(188); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 220: - ACCEPT_TOKEN(sym_op_coalescing); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(190); END_STATE(); case 221: - ACCEPT_TOKEN(sym_op_coalescing); - if (lookahead == '=') ADVANCE(217); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 222: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 223: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == '#') ADVANCE(231); - if (lookahead == '/') ADVANCE(223); + if (lookahead == '#') ADVANCE(232); + if (lookahead == '/') ADVANCE(224); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 12288 || - lookahead == 65279) ADVANCE(222); + lookahead == 65279) ADVANCE(223); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); - END_STATE(); - case 223: - ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == '*') ADVANCE(225); - if (lookahead == '/') ADVANCE(264); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 224: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == '*') ADVANCE(224); + if (lookahead == '*') ADVANCE(226); if (lookahead == '/') ADVANCE(265); - if (lookahead == '"' || - lookahead == '}') ADVANCE(26); - if (lookahead != 0) ADVANCE(225); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '}') ADVANCE(266); END_STATE(); case 225: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == '*') ADVANCE(224); + if (lookahead == '*') ADVANCE(225); + if (lookahead == '/') ADVANCE(266); if (lookahead == '"' || - lookahead == '}') ADVANCE(26); - if (lookahead != 0) ADVANCE(225); + lookahead == '}') ADVANCE(27); + if (lookahead != 0) ADVANCE(226); END_STATE(); case 226: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'a') ADVANCE(265); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '}') ADVANCE(265); + if (lookahead == '*') ADVANCE(225); + if (lookahead == '"' || + lookahead == '}') ADVANCE(27); + if (lookahead != 0) ADVANCE(226); END_STATE(); case 227: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'a') ADVANCE(230); + if (lookahead == 'a') ADVANCE(266); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 228: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'a') ADVANCE(241); + if (lookahead == 'a') ADVANCE(231); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 229: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'a') ADVANCE(262); + if (lookahead == 'a') ADVANCE(242); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 230: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'b') ADVANCE(247); + if (lookahead == 'a') ADVANCE(263); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 231: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'd') ADVANCE(235); - if (lookahead == 'e') ADVANCE(251); - if (lookahead == 'l') ADVANCE(243); - if (lookahead == 'n') ADVANCE(263); - if (lookahead == 'p') ADVANCE(261); - if (lookahead == 'r') ADVANCE(236); - if (lookahead == 'u') ADVANCE(252); - if (lookahead == 'w') ADVANCE(229); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(231); + if (lookahead == 'b') ADVANCE(248); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 232: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'd') ADVANCE(260); + if (lookahead == 'd') ADVANCE(236); + if (lookahead == 'e') ADVANCE(252); + if (lookahead == 'l') ADVANCE(244); + if (lookahead == 'n') ADVANCE(264); + if (lookahead == 'p') ADVANCE(262); + if (lookahead == 'r') ADVANCE(237); + if (lookahead == 'u') ADVANCE(253); + if (lookahead == 'w') ADVANCE(230); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(232); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 233: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'd') ADVANCE(237); + if (lookahead == 'd') ADVANCE(261); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 234: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'e') ADVANCE(265); + if (lookahead == 'd') ADVANCE(238); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 235: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'e') ADVANCE(239); + if (lookahead == 'e') ADVANCE(266); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 236: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'e') ADVANCE(242); + if (lookahead == 'e') ADVANCE(240); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 237: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'e') ADVANCE(238); + if (lookahead == 'e') ADVANCE(243); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 238: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'f') ADVANCE(265); + if (lookahead == 'e') ADVANCE(239); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 239: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'f') ADVANCE(243); + if (lookahead == 'f') ADVANCE(266); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 240: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'g') ADVANCE(265); + if (lookahead == 'f') ADVANCE(244); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 241: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'g') ADVANCE(249); + if (lookahead == 'g') ADVANCE(266); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 242: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'g') ADVANCE(244); + if (lookahead == 'g') ADVANCE(250); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 243: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'i') ADVANCE(253); + if (lookahead == 'g') ADVANCE(245); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 244: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'i') ADVANCE(256); + if (lookahead == 'i') ADVANCE(254); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 245: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'i') ADVANCE(254); + if (lookahead == 'i') ADVANCE(257); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 246: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'l') ADVANCE(248); + if (lookahead == 'i') ADVANCE(255); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 247: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'l') ADVANCE(234); + if (lookahead == 'l') ADVANCE(249); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 248: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'l') ADVANCE(227); + if (lookahead == 'l') ADVANCE(235); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 249: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'm') ADVANCE(226); + if (lookahead == 'l') ADVANCE(228); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 250: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'n') ADVANCE(265); + if (lookahead == 'm') ADVANCE(227); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 251: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'n') ADVANCE(232); - if (lookahead == 'r') ADVANCE(259); + if (lookahead == 'n') ADVANCE(266); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 252: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); if (lookahead == 'n') ADVANCE(233); + if (lookahead == 'r') ADVANCE(260); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 253: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); if (lookahead == 'n') ADVANCE(234); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 254: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'n') ADVANCE(240); + if (lookahead == 'n') ADVANCE(235); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 255: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'n') ADVANCE(245); + if (lookahead == 'n') ADVANCE(241); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 256: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'o') ADVANCE(250); + if (lookahead == 'n') ADVANCE(246); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 257: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'o') ADVANCE(258); + if (lookahead == 'o') ADVANCE(251); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 258: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'r') ADVANCE(265); + if (lookahead == 'o') ADVANCE(259); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 259: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'r') ADVANCE(257); + if (lookahead == 'r') ADVANCE(266); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 260: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'r') ADVANCE(236); + if (lookahead == 'r') ADVANCE(258); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 261: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'r') ADVANCE(228); + if (lookahead == 'r') ADVANCE(237); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 262: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'r') ADVANCE(255); + if (lookahead == 'r') ADVANCE(229); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 263: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); - if (lookahead == 'u') ADVANCE(246); + if (lookahead == 'r') ADVANCE(256); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); + lookahead != '}') ADVANCE(266); END_STATE(); case 264: + ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); + if (lookahead == 'u') ADVANCE(247); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '}') ADVANCE(266); + END_STATE(); + case 265: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(265); + lookahead == '\r') ADVANCE(266); if (lookahead == '"' || - lookahead == '}') ADVANCE(425); - if (lookahead != 0) ADVANCE(264); + lookahead == '}') ADVANCE(426); + if (lookahead != 0) ADVANCE(265); END_STATE(); - case 265: + case 266: ACCEPT_TOKEN(aux_sym_interpolation_format_clause_token1); if (lookahead != 0 && lookahead != '"' && - lookahead != '}') ADVANCE(265); - END_STATE(); - case 266: - ACCEPT_TOKEN(anon_sym_DASH_GT); + lookahead != '}') ADVANCE(266); END_STATE(); case 267: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 268: - ACCEPT_TOKEN(sym_character_literal_content); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 269: ACCEPT_TOKEN(sym_character_literal_content); - if (lookahead == '*') ADVANCE(26); - if (lookahead == '/') ADVANCE(425); END_STATE(); case 270: ACCEPT_TOKEN(sym_character_literal_content); - if (lookahead == 'd') ADVANCE(65); - if (lookahead == 'e') ADVANCE(92); - if (lookahead == 'l') ADVANCE(77); - if (lookahead == 'n') ADVANCE(105); - if (lookahead == 'p') ADVANCE(102); - if (lookahead == 'r') ADVANCE(60); - if (lookahead == 'u') ADVANCE(91); - if (lookahead == 'w') ADVANCE(51); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(56); + if (lookahead == '*') ADVANCE(27); + if (lookahead == '/') ADVANCE(426); END_STATE(); case 271: - ACCEPT_TOKEN(sym_integer_literal); + ACCEPT_TOKEN(sym_character_literal_content); + if (lookahead == 'd') ADVANCE(66); + if (lookahead == 'e') ADVANCE(93); + if (lookahead == 'l') ADVANCE(78); + if (lookahead == 'n') ADVANCE(106); + if (lookahead == 'p') ADVANCE(103); + if (lookahead == 'r') ADVANCE(61); + if (lookahead == 'u') ADVANCE(92); + if (lookahead == 'w') ADVANCE(52); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(57); END_STATE(); case 272: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '.') ADVANCE(108); - if (lookahead == '_') ADVANCE(43); + END_STATE(); + case 273: + ACCEPT_TOKEN(sym_integer_literal); + if (lookahead == '.') ADVANCE(109); + if (lookahead == '_') ADVANCE(44); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(44); + lookahead == 'b') ADVANCE(45); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(107); + lookahead == 'e') ADVANCE(108); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(279); + lookahead == 'l') ADVANCE(280); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(278); + lookahead == 'u') ADVANCE(279); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(45); + lookahead == 'x') ADVANCE(46); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'M' || ('d' <= lookahead && lookahead <= 'f') || - lookahead == 'm') ADVANCE(280); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); + lookahead == 'm') ADVANCE(281); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); - case 273: + case 274: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '.') ADVANCE(108); - if (lookahead == '_') ADVANCE(43); + if (lookahead == '.') ADVANCE(109); + if (lookahead == '_') ADVANCE(44); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(107); + lookahead == 'e') ADVANCE(108); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(279); + lookahead == 'l') ADVANCE(280); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(278); + lookahead == 'u') ADVANCE(279); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'M' || ('d' <= lookahead && lookahead <= 'f') || - lookahead == 'm') ADVANCE(280); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(273); + lookahead == 'm') ADVANCE(281); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(274); END_STATE(); - case 274: + case 275: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '_') ADVANCE(44); + if (lookahead == '_') ADVANCE(45); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(279); + lookahead == 'l') ADVANCE(280); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(278); + lookahead == 'u') ADVANCE(279); if (lookahead == '0' || - lookahead == '1') ADVANCE(274); + lookahead == '1') ADVANCE(275); END_STATE(); - case 275: + case 276: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '_') ADVANCE(45); + if (lookahead == '_') ADVANCE(46); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(279); + lookahead == 'l') ADVANCE(280); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(278); + lookahead == 'u') ADVANCE(279); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(276); END_STATE(); - case 276: + case 277: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '_') ADVANCE(47); + if (lookahead == '_') ADVANCE(48); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(44); + lookahead == 'b') ADVANCE(45); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(279); + lookahead == 'l') ADVANCE(280); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(278); + lookahead == 'u') ADVANCE(279); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(45); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); + lookahead == 'x') ADVANCE(46); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); END_STATE(); - case 277: + case 278: ACCEPT_TOKEN(sym_integer_literal); - if (lookahead == '_') ADVANCE(47); + if (lookahead == '_') ADVANCE(48); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(279); + lookahead == 'l') ADVANCE(280); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(278); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(277); + lookahead == 'u') ADVANCE(279); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(278); END_STATE(); - case 278: + case 279: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(271); + lookahead == 'l') ADVANCE(272); END_STATE(); - case 279: + case 280: ACCEPT_TOKEN(sym_integer_literal); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(271); + lookahead == 'u') ADVANCE(272); END_STATE(); - case 280: + case 281: ACCEPT_TOKEN(sym_real_literal); END_STATE(); - case 281: + case 282: ACCEPT_TOKEN(sym_real_literal); - if (lookahead == '_') ADVANCE(46); + if (lookahead == '_') ADVANCE(47); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(107); + lookahead == 'e') ADVANCE(108); if (('D' <= lookahead && lookahead <= 'F') || lookahead == 'M' || ('d' <= lookahead && lookahead <= 'f') || - lookahead == 'm') ADVANCE(280); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(281); + lookahead == 'm') ADVANCE(281); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(282); END_STATE(); - case 282: + case 283: ACCEPT_TOKEN(sym_real_literal); if (lookahead == 'D' || lookahead == 'F' || lookahead == 'M' || lookahead == 'd' || lookahead == 'f' || - lookahead == 'm') ADVANCE(280); + lookahead == 'm') ADVANCE(281); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(282); + lookahead == '_') ADVANCE(283); END_STATE(); - case 283: + case 284: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 284: + case 285: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == '\r') ADVANCE(327); + if (lookahead == '\r') ADVANCE(328); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(284); + lookahead != 181) ADVANCE(285); END_STATE(); - case 285: + case 286: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == '#') ADVANCE(294); - if (lookahead == '/') ADVANCE(286); - if (lookahead == 181) ADVANCE(28); + if (lookahead == '#') ADVANCE(295); + if (lookahead == '/') ADVANCE(287); + if (lookahead == 181) ADVANCE(29); if (lookahead == '\t' || (11 <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 160 || lookahead == 12288 || - lookahead == 65279) ADVANCE(285); + lookahead == 65279) ADVANCE(286); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(327); - END_STATE(); - case 286: - ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == '*') ADVANCE(288); - if (lookahead == '/') ADVANCE(284); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '"' && - lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != '\\') ADVANCE(328); END_STATE(); case 287: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == '*') ADVANCE(287); - if (lookahead == '/') ADVANCE(327); + if (lookahead == '*') ADVANCE(289); + if (lookahead == '/') ADVANCE(285); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(288); + lookahead != 181) ADVANCE(328); END_STATE(); case 288: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == '*') ADVANCE(287); + if (lookahead == '*') ADVANCE(288); + if (lookahead == '/') ADVANCE(328); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(288); + lookahead != 181) ADVANCE(289); END_STATE(); case 289: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'a') ADVANCE(327); + if (lookahead == '*') ADVANCE(288); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(289); END_STATE(); case 290: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'a') ADVANCE(293); + if (lookahead == 'a') ADVANCE(328); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 291: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'a') ADVANCE(304); + if (lookahead == 'a') ADVANCE(294); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 292: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'a') ADVANCE(325); + if (lookahead == 'a') ADVANCE(305); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 293: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'b') ADVANCE(310); + if (lookahead == 'a') ADVANCE(326); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 294: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'd') ADVANCE(298); - if (lookahead == 'e') ADVANCE(314); - if (lookahead == 'l') ADVANCE(306); - if (lookahead == 'n') ADVANCE(326); - if (lookahead == 'p') ADVANCE(324); - if (lookahead == 'r') ADVANCE(299); - if (lookahead == 'u') ADVANCE(315); - if (lookahead == 'w') ADVANCE(292); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(294); + if (lookahead == 'b') ADVANCE(311); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 295: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'd') ADVANCE(323); + if (lookahead == 'd') ADVANCE(299); + if (lookahead == 'e') ADVANCE(315); + if (lookahead == 'l') ADVANCE(307); + if (lookahead == 'n') ADVANCE(327); + if (lookahead == 'p') ADVANCE(325); + if (lookahead == 'r') ADVANCE(300); + if (lookahead == 'u') ADVANCE(316); + if (lookahead == 'w') ADVANCE(293); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(295); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 296: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'd') ADVANCE(300); + if (lookahead == 'd') ADVANCE(324); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 297: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'e') ADVANCE(327); + if (lookahead == 'd') ADVANCE(301); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 298: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'e') ADVANCE(302); + if (lookahead == 'e') ADVANCE(328); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 299: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'e') ADVANCE(305); + if (lookahead == 'e') ADVANCE(303); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 300: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'e') ADVANCE(301); + if (lookahead == 'e') ADVANCE(306); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 301: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'f') ADVANCE(327); + if (lookahead == 'e') ADVANCE(302); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 302: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'f') ADVANCE(306); + if (lookahead == 'f') ADVANCE(328); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 303: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'g') ADVANCE(327); + if (lookahead == 'f') ADVANCE(307); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 304: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'g') ADVANCE(312); + if (lookahead == 'g') ADVANCE(328); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 305: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'g') ADVANCE(307); + if (lookahead == 'g') ADVANCE(313); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 306: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'i') ADVANCE(316); + if (lookahead == 'g') ADVANCE(308); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 307: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'i') ADVANCE(319); + if (lookahead == 'i') ADVANCE(317); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 308: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'i') ADVANCE(317); + if (lookahead == 'i') ADVANCE(320); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 309: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'l') ADVANCE(311); + if (lookahead == 'i') ADVANCE(318); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 310: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'l') ADVANCE(297); + if (lookahead == 'l') ADVANCE(312); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 311: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'l') ADVANCE(290); + if (lookahead == 'l') ADVANCE(298); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 312: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'm') ADVANCE(289); + if (lookahead == 'l') ADVANCE(291); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 313: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'n') ADVANCE(327); + if (lookahead == 'm') ADVANCE(290); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 314: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'n') ADVANCE(295); - if (lookahead == 'r') ADVANCE(322); + if (lookahead == 'n') ADVANCE(328); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 315: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); if (lookahead == 'n') ADVANCE(296); + if (lookahead == 'r') ADVANCE(323); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 316: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); @@ -21476,789 +21539,798 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 317: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'n') ADVANCE(303); + if (lookahead == 'n') ADVANCE(298); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 318: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'n') ADVANCE(308); + if (lookahead == 'n') ADVANCE(304); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 319: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'o') ADVANCE(313); + if (lookahead == 'n') ADVANCE(309); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 320: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'o') ADVANCE(321); + if (lookahead == 'o') ADVANCE(314); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 321: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'r') ADVANCE(327); + if (lookahead == 'o') ADVANCE(322); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 322: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'r') ADVANCE(320); + if (lookahead == 'r') ADVANCE(328); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 323: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'r') ADVANCE(299); + if (lookahead == 'r') ADVANCE(321); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 324: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'r') ADVANCE(291); + if (lookahead == 'r') ADVANCE(300); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 325: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'r') ADVANCE(318); + if (lookahead == 'r') ADVANCE(292); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 326: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); - if (lookahead == 'u') ADVANCE(309); + if (lookahead == 'r') ADVANCE(319); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 327: ACCEPT_TOKEN(aux_sym_string_literal_content_token1); + if (lookahead == 'u') ADVANCE(310); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '\\' && - lookahead != 181) ADVANCE(327); + lookahead != 181) ADVANCE(328); END_STATE(); case 328: - ACCEPT_TOKEN(aux_sym_string_literal_content_token2); + ACCEPT_TOKEN(aux_sym_string_literal_content_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '"' && + lookahead != '\\' && + lookahead != 181) ADVANCE(328); END_STATE(); case 329: ACCEPT_TOKEN(aux_sym_string_literal_content_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(112); END_STATE(); case 330: ACCEPT_TOKEN(aux_sym_string_literal_content_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(118); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); END_STATE(); case 331: ACCEPT_TOKEN(aux_sym_string_literal_content_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(120); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(119); END_STATE(); case 332: ACCEPT_TOKEN(aux_sym_string_literal_content_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(130); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(121); END_STATE(); case 333: ACCEPT_TOKEN(aux_sym_string_literal_content_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(132); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(131); END_STATE(); case 334: - ACCEPT_TOKEN(sym_escape_sequence); + ACCEPT_TOKEN(aux_sym_string_literal_content_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(133); END_STATE(); case 335: ACCEPT_TOKEN(sym_escape_sequence); - if (lookahead == '\\') ADVANCE(38); - if (sym__identifier_token_character_set_5(lookahead)) ADVANCE(343); END_STATE(); case 336: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(334); + if (lookahead == '\\') ADVANCE(39); + if (sym__identifier_token_character_set_5(lookahead)) ADVANCE(344); END_STATE(); case 337: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(336); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(335); END_STATE(); case 338: - ACCEPT_TOKEN(sym_verbatim_string_literal); + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(337); END_STATE(); case 339: ACCEPT_TOKEN(sym_verbatim_string_literal); - if (lookahead == '"') ADVANCE(16); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(31); END_STATE(); case 340: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\\') ADVANCE(38); - if (sym__identifier_token_character_set_5(lookahead)) ADVANCE(343); + ACCEPT_TOKEN(sym_verbatim_string_literal); + if (lookahead == '"') ADVANCE(17); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(32); END_STATE(); case 341: - ACCEPT_TOKEN(sym__identifier_token); - if (lookahead == '.') ADVANCE(30); - if (lookahead == '\\') ADVANCE(38); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(345); - if (sym__identifier_token_character_set_6(lookahead)) ADVANCE(343); + ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); + if (lookahead == '\\') ADVANCE(39); + if (sym__identifier_token_character_set_5(lookahead)) ADVANCE(344); END_STATE(); case 342: ACCEPT_TOKEN(sym__identifier_token); - if (lookahead == '8') ADVANCE(340); - if (lookahead == '\\') ADVANCE(38); - if (sym__identifier_token_character_set_5(lookahead)) ADVANCE(343); + if (lookahead == '.') ADVANCE(31); + if (lookahead == '\\') ADVANCE(39); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(346); + if (sym__identifier_token_character_set_6(lookahead)) ADVANCE(344); END_STATE(); case 343: ACCEPT_TOKEN(sym__identifier_token); - if (lookahead == '\\') ADVANCE(38); - if (sym__identifier_token_character_set_5(lookahead)) ADVANCE(343); + if (lookahead == '8') ADVANCE(341); + if (lookahead == '\\') ADVANCE(39); + if (sym__identifier_token_character_set_5(lookahead)) ADVANCE(344); END_STATE(); case 344: - ACCEPT_TOKEN(sym_grit_metavariable); + ACCEPT_TOKEN(sym__identifier_token); + if (lookahead == '\\') ADVANCE(39); + if (sym__identifier_token_character_set_5(lookahead)) ADVANCE(344); END_STATE(); case 345: + ACCEPT_TOKEN(sym_grit_metavariable); + END_STATE(); + case 346: ACCEPT_TOKEN(sym_grit_metavariable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(345); - END_STATE(); - case 346: - ACCEPT_TOKEN(aux_sym_preproc_if_token1); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(346); END_STATE(); case 347: - ACCEPT_TOKEN(aux_sym_preproc_if_token2); - if (lookahead == '\n') ADVANCE(347); - if (lookahead == 181) ADVANCE(341); + ACCEPT_TOKEN(aux_sym_preproc_if_token1); END_STATE(); case 348: ACCEPT_TOKEN(aux_sym_preproc_if_token2); if (lookahead == '\n') ADVANCE(348); + if (lookahead == 181) ADVANCE(342); END_STATE(); case 349: ACCEPT_TOKEN(aux_sym_preproc_if_token2); if (lookahead == '\n') ADVANCE(349); - if (lookahead == 160 || - lookahead == 12288 || - lookahead == 65279) ADVANCE(355); END_STATE(); case 350: - ACCEPT_TOKEN(aux_sym_preproc_if_token3); + ACCEPT_TOKEN(aux_sym_preproc_if_token2); + if (lookahead == '\n') ADVANCE(350); + if (lookahead == 160 || + lookahead == 12288 || + lookahead == 65279) ADVANCE(356); END_STATE(); case 351: - ACCEPT_TOKEN(aux_sym_preproc_else_token1); + ACCEPT_TOKEN(aux_sym_preproc_if_token3); END_STATE(); case 352: - ACCEPT_TOKEN(aux_sym_preproc_elif_token1); + ACCEPT_TOKEN(aux_sym_preproc_else_token1); END_STATE(); case 353: - ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(26); - if (lookahead == '*') ADVANCE(353); - if (lookahead == '/') ADVANCE(421); - if (lookahead == '\\') ADVANCE(406); - if (lookahead != 0) ADVANCE(354); + ACCEPT_TOKEN(aux_sym_preproc_elif_token1); END_STATE(); case 354: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(26); - if (lookahead == '*') ADVANCE(353); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '\\') ADVANCE(406); - if (lookahead != 0) ADVANCE(354); + if (lookahead == '\n') ADVANCE(27); + if (lookahead == '*') ADVANCE(354); + if (lookahead == '/') ADVANCE(422); + if (lookahead == '\\') ADVANCE(407); + if (lookahead != 0) ADVANCE(355); END_STATE(); case 355: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') ADVANCE(349); - if (lookahead == '#') ADVANCE(363); - if (lookahead == '/') ADVANCE(408); + if (lookahead == '\n') ADVANCE(27); + if (lookahead == '*') ADVANCE(354); + if (lookahead == '/') ADVANCE(28); if (lookahead == '\\') ADVANCE(407); - if (lookahead == 160 || - lookahead == 12288 || - lookahead == 65279) ADVANCE(355); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(355); - if (lookahead != 0) ADVANCE(405); + if (lookahead != 0) ADVANCE(355); END_STATE(); case 356: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '\n') SKIP(17) - if (lookahead == '#') ADVANCE(363); - if (lookahead == '/') ADVANCE(408); - if (lookahead == '\\') ADVANCE(407); + if (lookahead == '\n') ADVANCE(350); + if (lookahead == '#') ADVANCE(364); + if (lookahead == '/') ADVANCE(409); + if (lookahead == '\\') ADVANCE(408); if (lookahead == 160 || lookahead == 12288 || lookahead == 65279) ADVANCE(356); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(356); - if (lookahead != 0) ADVANCE(405); + if (lookahead != 0) ADVANCE(406); END_STATE(); case 357: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '*') ADVANCE(354); - if (lookahead == '/') ADVANCE(422); - if (lookahead == '\\') ADVANCE(407); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + if (lookahead == '\n') SKIP(18) + if (lookahead == '#') ADVANCE(364); + if (lookahead == '/') ADVANCE(409); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 160 || + lookahead == 12288 || + lookahead == 65279) ADVANCE(357); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(357); + if (lookahead != 0) ADVANCE(406); END_STATE(); case 358: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'a') ADVANCE(414); + if (lookahead == '*') ADVANCE(355); + if (lookahead == '/') ADVANCE(423); + if (lookahead == '\\') ADVANCE(408); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 359: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'a') ADVANCE(362); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'a') ADVANCE(415); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 360: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'a') ADVANCE(376); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'a') ADVANCE(363); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 361: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'a') ADVANCE(402); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'a') ADVANCE(377); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 362: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'b') ADVANCE(386); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'a') ADVANCE(403); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 363: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'd') ADVANCE(369); - if (lookahead == 'e') ADVANCE(390); - if (lookahead == 'l') ADVANCE(379); - if (lookahead == 'n') ADVANCE(404); - if (lookahead == 'p') ADVANCE(401); - if (lookahead == 'r') ADVANCE(370); - if (lookahead == 'u') ADVANCE(391); - if (lookahead == 'w') ADVANCE(361); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(363); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'b') ADVANCE(387); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 364: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'd') ADVANCE(403); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'd') ADVANCE(370); + if (lookahead == 'e') ADVANCE(391); + if (lookahead == 'l') ADVANCE(380); + if (lookahead == 'n') ADVANCE(405); + if (lookahead == 'p') ADVANCE(402); + if (lookahead == 'r') ADVANCE(371); + if (lookahead == 'u') ADVANCE(392); + if (lookahead == 'w') ADVANCE(362); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(364); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 365: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'd') ADVANCE(371); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'd') ADVANCE(404); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 366: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'e') ADVANCE(413); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'd') ADVANCE(372); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 367: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'e') ADVANCE(418); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'e') ADVANCE(414); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 368: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'e') ADVANCE(415); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'e') ADVANCE(419); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 369: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'e') ADVANCE(374); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'e') ADVANCE(416); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 370: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'e') ADVANCE(377); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'e') ADVANCE(375); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 371: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'e') ADVANCE(373); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'e') ADVANCE(378); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 372: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'e') ADVANCE(378); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'e') ADVANCE(374); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 373: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'f') ADVANCE(419); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'e') ADVANCE(379); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 374: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'f') ADVANCE(382); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'f') ADVANCE(420); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 375: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'g') ADVANCE(417); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'f') ADVANCE(383); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 376: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'g') ADVANCE(387); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'g') ADVANCE(418); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 377: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'g') ADVANCE(380); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'g') ADVANCE(388); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 378: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'g') ADVANCE(383); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'g') ADVANCE(381); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 379: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'i') ADVANCE(392); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'g') ADVANCE(384); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 380: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'i') ADVANCE(396); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'i') ADVANCE(393); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 381: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'i') ADVANCE(393); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'i') ADVANCE(397); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 382: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); if (lookahead == 'i') ADVANCE(394); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 383: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'i') ADVANCE(398); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'i') ADVANCE(395); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 384: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'l') ADVANCE(385); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'i') ADVANCE(399); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 385: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'l') ADVANCE(359); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'l') ADVANCE(386); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 386: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'l') ADVANCE(368); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'l') ADVANCE(360); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 387: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'm') ADVANCE(358); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'l') ADVANCE(369); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 388: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'n') ADVANCE(411); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'm') ADVANCE(359); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 389: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); if (lookahead == 'n') ADVANCE(412); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 390: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'r') ADVANCE(400); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'n') ADVANCE(413); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 391: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); if (lookahead == 'n') ADVANCE(365); + if (lookahead == 'r') ADVANCE(401); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 392: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); if (lookahead == 'n') ADVANCE(366); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 393: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'n') ADVANCE(375); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'n') ADVANCE(367); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 394: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'n') ADVANCE(367); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'n') ADVANCE(376); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 395: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'n') ADVANCE(381); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'n') ADVANCE(368); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 396: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'o') ADVANCE(388); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'n') ADVANCE(382); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 397: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'o') ADVANCE(399); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'o') ADVANCE(389); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 398: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'o') ADVANCE(389); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'o') ADVANCE(400); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 399: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'r') ADVANCE(416); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'o') ADVANCE(390); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 400: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'r') ADVANCE(397); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'r') ADVANCE(417); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 401: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'r') ADVANCE(360); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'r') ADVANCE(398); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 402: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'r') ADVANCE(395); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'r') ADVANCE(361); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 403: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'r') ADVANCE(372); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'r') ADVANCE(396); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 404: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); - if (lookahead == 'u') ADVANCE(384); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'r') ADVANCE(373); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 405: ACCEPT_TOKEN(sym_preproc_arg); - if (lookahead == '/') ADVANCE(136); - if (lookahead == '\\') ADVANCE(407); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); + if (lookahead == 'u') ADVANCE(385); if (lookahead != 0 && - lookahead != '\n') ADVANCE(405); + lookahead != '\n') ADVANCE(406); END_STATE(); case 406: ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); if (lookahead != 0 && - lookahead != '\r' && - lookahead != '*' && - lookahead != '/' && - lookahead != '\\') ADVANCE(354); - if (lookahead == '\r') ADVANCE(409); - if (lookahead == '*') ADVANCE(353); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '\\') ADVANCE(406); + lookahead != '\n') ADVANCE(406); END_STATE(); case 407: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '\r' && + lookahead != '*' && lookahead != '/' && - lookahead != '\\') ADVANCE(405); + lookahead != '\\') ADVANCE(355); if (lookahead == '\r') ADVANCE(410); - if (lookahead == '/') ADVANCE(136); + if (lookahead == '*') ADVANCE(354); + if (lookahead == '/') ADVANCE(28); if (lookahead == '\\') ADVANCE(407); END_STATE(); case 408: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && - lookahead != '*' && + lookahead != '\r' && lookahead != '/' && - lookahead != '\\') ADVANCE(405); - if (lookahead == '*') ADVANCE(354); - if (lookahead == '/') ADVANCE(424); - if (lookahead == '\\') ADVANCE(407); + lookahead != '\\') ADVANCE(406); + if (lookahead == '\r') ADVANCE(411); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); END_STATE(); case 409: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && lookahead != '*' && lookahead != '/' && - lookahead != '\\') ADVANCE(354); - if (lookahead == '*') ADVANCE(353); - if (lookahead == '/') ADVANCE(27); - if (lookahead == '\\') ADVANCE(406); + lookahead != '\\') ADVANCE(406); + if (lookahead == '*') ADVANCE(355); + if (lookahead == '/') ADVANCE(425); + if (lookahead == '\\') ADVANCE(408); END_STATE(); case 410: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead != 0 && + lookahead != '*' && lookahead != '/' && - lookahead != '\\') ADVANCE(405); - if (lookahead == '/') ADVANCE(136); + lookahead != '\\') ADVANCE(355); + if (lookahead == '*') ADVANCE(354); + if (lookahead == '/') ADVANCE(28); if (lookahead == '\\') ADVANCE(407); END_STATE(); case 411: - ACCEPT_TOKEN(aux_sym_preproc_region_token1); + ACCEPT_TOKEN(sym_preproc_arg); + if (lookahead != 0 && + lookahead != '/' && + lookahead != '\\') ADVANCE(406); + if (lookahead == '/') ADVANCE(137); + if (lookahead == '\\') ADVANCE(408); END_STATE(); case 412: - ACCEPT_TOKEN(aux_sym_preproc_endregion_token1); + ACCEPT_TOKEN(aux_sym_preproc_region_token1); END_STATE(); case 413: - ACCEPT_TOKEN(aux_sym_preproc_line_token1); + ACCEPT_TOKEN(aux_sym_preproc_endregion_token1); END_STATE(); case 414: - ACCEPT_TOKEN(aux_sym_preproc_pragma_token1); + ACCEPT_TOKEN(aux_sym_preproc_line_token1); END_STATE(); case 415: - ACCEPT_TOKEN(aux_sym_preproc_nullable_token1); + ACCEPT_TOKEN(aux_sym_preproc_pragma_token1); END_STATE(); case 416: - ACCEPT_TOKEN(aux_sym_preproc_error_token1); + ACCEPT_TOKEN(aux_sym_preproc_nullable_token1); END_STATE(); case 417: - ACCEPT_TOKEN(aux_sym_preproc_warning_token1); + ACCEPT_TOKEN(aux_sym_preproc_error_token1); END_STATE(); case 418: - ACCEPT_TOKEN(aux_sym_preproc_define_token1); + ACCEPT_TOKEN(aux_sym_preproc_warning_token1); END_STATE(); case 419: - ACCEPT_TOKEN(aux_sym_preproc_undef_token1); + ACCEPT_TOKEN(aux_sym_preproc_define_token1); END_STATE(); case 420: + ACCEPT_TOKEN(aux_sym_preproc_undef_token1); + END_STATE(); + case 421: ACCEPT_TOKEN(sym_shebang_directive); if (lookahead != 0 && - lookahead != '\n') ADVANCE(420); + lookahead != '\n') ADVANCE(421); END_STATE(); - case 421: + case 422: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 422: + case 423: ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(425); + if (lookahead == '*') ADVANCE(426); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(423); + lookahead != '\r') ADVANCE(424); END_STATE(); - case 423: + case 424: ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(422); - if (lookahead == '\\') ADVANCE(423); + if (lookahead == '/') ADVANCE(423); + if (lookahead == '\\') ADVANCE(424); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(423); + lookahead != '\r') ADVANCE(424); END_STATE(); - case 424: + case 425: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '/' && - lookahead != '\\') ADVANCE(423); - if (lookahead == '/') ADVANCE(424); - if (lookahead == '\\') ADVANCE(423); + lookahead != '\\') ADVANCE(424); + if (lookahead == '/') ADVANCE(425); + if (lookahead == '\\') ADVANCE(424); END_STATE(); - case 425: + case 426: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(425); + lookahead != '\r') ADVANCE(426); END_STATE(); default: return false; @@ -24162,3217 +24234,3217 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 140, .external_lex_state = 2}, - [2] = {.lex_state = 140, .external_lex_state = 2}, - [3] = {.lex_state = 140, .external_lex_state = 2}, - [4] = {.lex_state = 140, .external_lex_state = 2}, - [5] = {.lex_state = 140, .external_lex_state = 2}, - [6] = {.lex_state = 140, .external_lex_state = 2}, - [7] = {.lex_state = 140, .external_lex_state = 2}, - [8] = {.lex_state = 140, .external_lex_state = 2}, - [9] = {.lex_state = 140, .external_lex_state = 2}, - [10] = {.lex_state = 140, .external_lex_state = 2}, - [11] = {.lex_state = 140, .external_lex_state = 2}, - [12] = {.lex_state = 140, .external_lex_state = 2}, - [13] = {.lex_state = 140, .external_lex_state = 2}, - [14] = {.lex_state = 140, .external_lex_state = 2}, - [15] = {.lex_state = 140, .external_lex_state = 2}, - [16] = {.lex_state = 140, .external_lex_state = 2}, - [17] = {.lex_state = 140, .external_lex_state = 2}, - [18] = {.lex_state = 140, .external_lex_state = 2}, - [19] = {.lex_state = 140, .external_lex_state = 2}, - [20] = {.lex_state = 140, .external_lex_state = 2}, - [21] = {.lex_state = 140, .external_lex_state = 2}, - [22] = {.lex_state = 140, .external_lex_state = 2}, - [23] = {.lex_state = 140, .external_lex_state = 2}, - [24] = {.lex_state = 140, .external_lex_state = 2}, - [25] = {.lex_state = 140, .external_lex_state = 2}, - [26] = {.lex_state = 140, .external_lex_state = 2}, - [27] = {.lex_state = 140, .external_lex_state = 2}, - [28] = {.lex_state = 140, .external_lex_state = 2}, - [29] = {.lex_state = 140, .external_lex_state = 2}, - [30] = {.lex_state = 140, .external_lex_state = 2}, - [31] = {.lex_state = 140, .external_lex_state = 2}, - [32] = {.lex_state = 140, .external_lex_state = 2}, - [33] = {.lex_state = 140, .external_lex_state = 2}, - [34] = {.lex_state = 140, .external_lex_state = 2}, - [35] = {.lex_state = 140, .external_lex_state = 2}, - [36] = {.lex_state = 140, .external_lex_state = 2}, - [37] = {.lex_state = 140, .external_lex_state = 2}, - [38] = {.lex_state = 140, .external_lex_state = 2}, - [39] = {.lex_state = 140, .external_lex_state = 2}, - [40] = {.lex_state = 140, .external_lex_state = 2}, - [41] = {.lex_state = 140, .external_lex_state = 2}, - [42] = {.lex_state = 140, .external_lex_state = 2}, - [43] = {.lex_state = 140, .external_lex_state = 2}, - [44] = {.lex_state = 140, .external_lex_state = 2}, - [45] = {.lex_state = 140, .external_lex_state = 2}, - [46] = {.lex_state = 140, .external_lex_state = 2}, - [47] = {.lex_state = 140, .external_lex_state = 2}, - [48] = {.lex_state = 140, .external_lex_state = 2}, - [49] = {.lex_state = 140, .external_lex_state = 2}, - [50] = {.lex_state = 140, .external_lex_state = 2}, - [51] = {.lex_state = 140, .external_lex_state = 2}, - [52] = {.lex_state = 140, .external_lex_state = 2}, - [53] = {.lex_state = 140, .external_lex_state = 2}, - [54] = {.lex_state = 140, .external_lex_state = 2}, - [55] = {.lex_state = 140, .external_lex_state = 2}, - [56] = {.lex_state = 140, .external_lex_state = 2}, - [57] = {.lex_state = 140, .external_lex_state = 2}, - [58] = {.lex_state = 140, .external_lex_state = 2}, - [59] = {.lex_state = 140, .external_lex_state = 2}, - [60] = {.lex_state = 140, .external_lex_state = 2}, - [61] = {.lex_state = 140, .external_lex_state = 2}, - [62] = {.lex_state = 140, .external_lex_state = 2}, - [63] = {.lex_state = 140, .external_lex_state = 2}, - [64] = {.lex_state = 140, .external_lex_state = 2}, - [65] = {.lex_state = 140, .external_lex_state = 2}, - [66] = {.lex_state = 140, .external_lex_state = 2}, - [67] = {.lex_state = 140, .external_lex_state = 2}, - [68] = {.lex_state = 140, .external_lex_state = 2}, - [69] = {.lex_state = 140, .external_lex_state = 2}, - [70] = {.lex_state = 140, .external_lex_state = 2}, - [71] = {.lex_state = 140, .external_lex_state = 2}, - [72] = {.lex_state = 140, .external_lex_state = 2}, - [73] = {.lex_state = 140, .external_lex_state = 2}, - [74] = {.lex_state = 140, .external_lex_state = 2}, - [75] = {.lex_state = 140, .external_lex_state = 2}, - [76] = {.lex_state = 140, .external_lex_state = 2}, - [77] = {.lex_state = 140, .external_lex_state = 2}, - [78] = {.lex_state = 140, .external_lex_state = 2}, - [79] = {.lex_state = 140, .external_lex_state = 2}, - [80] = {.lex_state = 140, .external_lex_state = 2}, - [81] = {.lex_state = 140, .external_lex_state = 2}, - [82] = {.lex_state = 140, .external_lex_state = 2}, - [83] = {.lex_state = 140, .external_lex_state = 2}, - [84] = {.lex_state = 140, .external_lex_state = 2}, - [85] = {.lex_state = 140, .external_lex_state = 2}, - [86] = {.lex_state = 140, .external_lex_state = 2}, - [87] = {.lex_state = 140, .external_lex_state = 2}, - [88] = {.lex_state = 140, .external_lex_state = 2}, - [89] = {.lex_state = 140, .external_lex_state = 2}, - [90] = {.lex_state = 140, .external_lex_state = 2}, - [91] = {.lex_state = 140, .external_lex_state = 2}, - [92] = {.lex_state = 140, .external_lex_state = 2}, - [93] = {.lex_state = 140, .external_lex_state = 2}, - [94] = {.lex_state = 140, .external_lex_state = 2}, - [95] = {.lex_state = 140, .external_lex_state = 2}, - [96] = {.lex_state = 140, .external_lex_state = 2}, - [97] = {.lex_state = 140, .external_lex_state = 2}, - [98] = {.lex_state = 140, .external_lex_state = 2}, - [99] = {.lex_state = 140, .external_lex_state = 2}, - [100] = {.lex_state = 140, .external_lex_state = 2}, - [101] = {.lex_state = 140, .external_lex_state = 2}, - [102] = {.lex_state = 140, .external_lex_state = 2}, - [103] = {.lex_state = 140, .external_lex_state = 2}, - [104] = {.lex_state = 140, .external_lex_state = 2}, - [105] = {.lex_state = 140, .external_lex_state = 2}, - [106] = {.lex_state = 140, .external_lex_state = 2}, - [107] = {.lex_state = 140, .external_lex_state = 2}, - [108] = {.lex_state = 140, .external_lex_state = 2}, - [109] = {.lex_state = 140, .external_lex_state = 2}, - [110] = {.lex_state = 140, .external_lex_state = 2}, - [111] = {.lex_state = 140, .external_lex_state = 2}, - [112] = {.lex_state = 140, .external_lex_state = 2}, - [113] = {.lex_state = 140, .external_lex_state = 2}, - [114] = {.lex_state = 140, .external_lex_state = 2}, - [115] = {.lex_state = 140, .external_lex_state = 2}, - [116] = {.lex_state = 140, .external_lex_state = 2}, - [117] = {.lex_state = 140, .external_lex_state = 2}, - [118] = {.lex_state = 140, .external_lex_state = 2}, - [119] = {.lex_state = 140, .external_lex_state = 2}, - [120] = {.lex_state = 140, .external_lex_state = 2}, - [121] = {.lex_state = 140, .external_lex_state = 2}, - [122] = {.lex_state = 140, .external_lex_state = 2}, - [123] = {.lex_state = 139, .external_lex_state = 2}, - [124] = {.lex_state = 139, .external_lex_state = 2}, - [125] = {.lex_state = 140, .external_lex_state = 2}, - [126] = {.lex_state = 140, .external_lex_state = 2}, - [127] = {.lex_state = 140, .external_lex_state = 2}, - [128] = {.lex_state = 140, .external_lex_state = 2}, - [129] = {.lex_state = 140, .external_lex_state = 2}, - [130] = {.lex_state = 140, .external_lex_state = 2}, - [131] = {.lex_state = 140, .external_lex_state = 2}, - [132] = {.lex_state = 140, .external_lex_state = 2}, - [133] = {.lex_state = 140, .external_lex_state = 2}, - [134] = {.lex_state = 140, .external_lex_state = 2}, - [135] = {.lex_state = 140, .external_lex_state = 2}, - [136] = {.lex_state = 140, .external_lex_state = 2}, + [1] = {.lex_state = 141, .external_lex_state = 2}, + [2] = {.lex_state = 141, .external_lex_state = 2}, + [3] = {.lex_state = 141, .external_lex_state = 2}, + [4] = {.lex_state = 141, .external_lex_state = 2}, + [5] = {.lex_state = 141, .external_lex_state = 2}, + [6] = {.lex_state = 141, .external_lex_state = 2}, + [7] = {.lex_state = 141, .external_lex_state = 2}, + [8] = {.lex_state = 141, .external_lex_state = 2}, + [9] = {.lex_state = 141, .external_lex_state = 2}, + [10] = {.lex_state = 141, .external_lex_state = 2}, + [11] = {.lex_state = 141, .external_lex_state = 2}, + [12] = {.lex_state = 141, .external_lex_state = 2}, + [13] = {.lex_state = 141, .external_lex_state = 2}, + [14] = {.lex_state = 141, .external_lex_state = 2}, + [15] = {.lex_state = 141, .external_lex_state = 2}, + [16] = {.lex_state = 141, .external_lex_state = 2}, + [17] = {.lex_state = 141, .external_lex_state = 2}, + [18] = {.lex_state = 141, .external_lex_state = 2}, + [19] = {.lex_state = 141, .external_lex_state = 2}, + [20] = {.lex_state = 141, .external_lex_state = 2}, + [21] = {.lex_state = 141, .external_lex_state = 2}, + [22] = {.lex_state = 141, .external_lex_state = 2}, + [23] = {.lex_state = 141, .external_lex_state = 2}, + [24] = {.lex_state = 141, .external_lex_state = 2}, + [25] = {.lex_state = 141, .external_lex_state = 2}, + [26] = {.lex_state = 141, .external_lex_state = 2}, + [27] = {.lex_state = 141, .external_lex_state = 2}, + [28] = {.lex_state = 141, .external_lex_state = 2}, + [29] = {.lex_state = 141, .external_lex_state = 2}, + [30] = {.lex_state = 141, .external_lex_state = 2}, + [31] = {.lex_state = 141, .external_lex_state = 2}, + [32] = {.lex_state = 141, .external_lex_state = 2}, + [33] = {.lex_state = 141, .external_lex_state = 2}, + [34] = {.lex_state = 141, .external_lex_state = 2}, + [35] = {.lex_state = 141, .external_lex_state = 2}, + [36] = {.lex_state = 141, .external_lex_state = 2}, + [37] = {.lex_state = 141, .external_lex_state = 2}, + [38] = {.lex_state = 141, .external_lex_state = 2}, + [39] = {.lex_state = 141, .external_lex_state = 2}, + [40] = {.lex_state = 141, .external_lex_state = 2}, + [41] = {.lex_state = 141, .external_lex_state = 2}, + [42] = {.lex_state = 141, .external_lex_state = 2}, + [43] = {.lex_state = 141, .external_lex_state = 2}, + [44] = {.lex_state = 141, .external_lex_state = 2}, + [45] = {.lex_state = 141, .external_lex_state = 2}, + [46] = {.lex_state = 141, .external_lex_state = 2}, + [47] = {.lex_state = 141, .external_lex_state = 2}, + [48] = {.lex_state = 141, .external_lex_state = 2}, + [49] = {.lex_state = 141, .external_lex_state = 2}, + [50] = {.lex_state = 141, .external_lex_state = 2}, + [51] = {.lex_state = 141, .external_lex_state = 2}, + [52] = {.lex_state = 141, .external_lex_state = 2}, + [53] = {.lex_state = 141, .external_lex_state = 2}, + [54] = {.lex_state = 141, .external_lex_state = 2}, + [55] = {.lex_state = 141, .external_lex_state = 2}, + [56] = {.lex_state = 141, .external_lex_state = 2}, + [57] = {.lex_state = 141, .external_lex_state = 2}, + [58] = {.lex_state = 141, .external_lex_state = 2}, + [59] = {.lex_state = 141, .external_lex_state = 2}, + [60] = {.lex_state = 141, .external_lex_state = 2}, + [61] = {.lex_state = 141, .external_lex_state = 2}, + [62] = {.lex_state = 141, .external_lex_state = 2}, + [63] = {.lex_state = 141, .external_lex_state = 2}, + [64] = {.lex_state = 141, .external_lex_state = 2}, + [65] = {.lex_state = 141, .external_lex_state = 2}, + [66] = {.lex_state = 141, .external_lex_state = 2}, + [67] = {.lex_state = 141, .external_lex_state = 2}, + [68] = {.lex_state = 141, .external_lex_state = 2}, + [69] = {.lex_state = 141, .external_lex_state = 2}, + [70] = {.lex_state = 141, .external_lex_state = 2}, + [71] = {.lex_state = 141, .external_lex_state = 2}, + [72] = {.lex_state = 141, .external_lex_state = 2}, + [73] = {.lex_state = 141, .external_lex_state = 2}, + [74] = {.lex_state = 141, .external_lex_state = 2}, + [75] = {.lex_state = 141, .external_lex_state = 2}, + [76] = {.lex_state = 141, .external_lex_state = 2}, + [77] = {.lex_state = 141, .external_lex_state = 2}, + [78] = {.lex_state = 141, .external_lex_state = 2}, + [79] = {.lex_state = 141, .external_lex_state = 2}, + [80] = {.lex_state = 141, .external_lex_state = 2}, + [81] = {.lex_state = 141, .external_lex_state = 2}, + [82] = {.lex_state = 141, .external_lex_state = 2}, + [83] = {.lex_state = 141, .external_lex_state = 2}, + [84] = {.lex_state = 141, .external_lex_state = 2}, + [85] = {.lex_state = 141, .external_lex_state = 2}, + [86] = {.lex_state = 141, .external_lex_state = 2}, + [87] = {.lex_state = 141, .external_lex_state = 2}, + [88] = {.lex_state = 141, .external_lex_state = 2}, + [89] = {.lex_state = 141, .external_lex_state = 2}, + [90] = {.lex_state = 141, .external_lex_state = 2}, + [91] = {.lex_state = 141, .external_lex_state = 2}, + [92] = {.lex_state = 141, .external_lex_state = 2}, + [93] = {.lex_state = 141, .external_lex_state = 2}, + [94] = {.lex_state = 141, .external_lex_state = 2}, + [95] = {.lex_state = 141, .external_lex_state = 2}, + [96] = {.lex_state = 141, .external_lex_state = 2}, + [97] = {.lex_state = 141, .external_lex_state = 2}, + [98] = {.lex_state = 141, .external_lex_state = 2}, + [99] = {.lex_state = 141, .external_lex_state = 2}, + [100] = {.lex_state = 141, .external_lex_state = 2}, + [101] = {.lex_state = 141, .external_lex_state = 2}, + [102] = {.lex_state = 141, .external_lex_state = 2}, + [103] = {.lex_state = 141, .external_lex_state = 2}, + [104] = {.lex_state = 141, .external_lex_state = 2}, + [105] = {.lex_state = 141, .external_lex_state = 2}, + [106] = {.lex_state = 141, .external_lex_state = 2}, + [107] = {.lex_state = 141, .external_lex_state = 2}, + [108] = {.lex_state = 141, .external_lex_state = 2}, + [109] = {.lex_state = 141, .external_lex_state = 2}, + [110] = {.lex_state = 141, .external_lex_state = 2}, + [111] = {.lex_state = 141, .external_lex_state = 2}, + [112] = {.lex_state = 141, .external_lex_state = 2}, + [113] = {.lex_state = 141, .external_lex_state = 2}, + [114] = {.lex_state = 141, .external_lex_state = 2}, + [115] = {.lex_state = 141, .external_lex_state = 2}, + [116] = {.lex_state = 141, .external_lex_state = 2}, + [117] = {.lex_state = 141, .external_lex_state = 2}, + [118] = {.lex_state = 141, .external_lex_state = 2}, + [119] = {.lex_state = 141, .external_lex_state = 2}, + [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 = 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}, + [128] = {.lex_state = 141, .external_lex_state = 2}, + [129] = {.lex_state = 141, .external_lex_state = 2}, + [130] = {.lex_state = 141, .external_lex_state = 2}, + [131] = {.lex_state = 141, .external_lex_state = 2}, + [132] = {.lex_state = 141, .external_lex_state = 2}, + [133] = {.lex_state = 141, .external_lex_state = 2}, + [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 = 140, .external_lex_state = 2}, - [138] = {.lex_state = 140, .external_lex_state = 2}, - [139] = {.lex_state = 140, .external_lex_state = 2}, - [140] = {.lex_state = 140, .external_lex_state = 2}, - [141] = {.lex_state = 140, .external_lex_state = 2}, - [142] = {.lex_state = 140, .external_lex_state = 2}, - [143] = {.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 = 140, .external_lex_state = 2}, - [145] = {.lex_state = 140, .external_lex_state = 2}, - [146] = {.lex_state = 140, .external_lex_state = 2}, - [147] = {.lex_state = 140, .external_lex_state = 2}, - [148] = {.lex_state = 140, .external_lex_state = 2}, - [149] = {.lex_state = 140, .external_lex_state = 2}, - [150] = {.lex_state = 139, .external_lex_state = 2}, - [151] = {.lex_state = 139, .external_lex_state = 2}, - [152] = {.lex_state = 139, .external_lex_state = 2}, - [153] = {.lex_state = 139, .external_lex_state = 2}, - [154] = {.lex_state = 139, .external_lex_state = 2}, - [155] = {.lex_state = 139, .external_lex_state = 2}, - [156] = {.lex_state = 139, .external_lex_state = 2}, - [157] = {.lex_state = 139, .external_lex_state = 2}, - [158] = {.lex_state = 139, .external_lex_state = 2}, - [159] = {.lex_state = 139, .external_lex_state = 2}, - [160] = {.lex_state = 139, .external_lex_state = 3}, - [161] = {.lex_state = 139, .external_lex_state = 3}, - [162] = {.lex_state = 139, .external_lex_state = 3}, - [163] = {.lex_state = 139, .external_lex_state = 3}, - [164] = {.lex_state = 139, .external_lex_state = 2}, - [165] = {.lex_state = 139, .external_lex_state = 2}, - [166] = {.lex_state = 139, .external_lex_state = 2}, - [167] = {.lex_state = 139, .external_lex_state = 2}, - [168] = {.lex_state = 139, .external_lex_state = 2}, - [169] = {.lex_state = 139, .external_lex_state = 2}, - [170] = {.lex_state = 139, .external_lex_state = 2}, - [171] = {.lex_state = 139, .external_lex_state = 2}, - [172] = {.lex_state = 139, .external_lex_state = 2}, - [173] = {.lex_state = 139, .external_lex_state = 2}, - [174] = {.lex_state = 139, .external_lex_state = 3}, - [175] = {.lex_state = 139, .external_lex_state = 2}, - [176] = {.lex_state = 139, .external_lex_state = 2}, - [177] = {.lex_state = 139, .external_lex_state = 2}, - [178] = {.lex_state = 139, .external_lex_state = 2}, - [179] = {.lex_state = 139, .external_lex_state = 2}, - [180] = {.lex_state = 139, .external_lex_state = 2}, - [181] = {.lex_state = 139, .external_lex_state = 2}, - [182] = {.lex_state = 139, .external_lex_state = 2}, - [183] = {.lex_state = 139, .external_lex_state = 2}, - [184] = {.lex_state = 139, .external_lex_state = 2}, - [185] = {.lex_state = 139, .external_lex_state = 2}, - [186] = {.lex_state = 139, .external_lex_state = 2}, - [187] = {.lex_state = 139, .external_lex_state = 2}, - [188] = {.lex_state = 139, .external_lex_state = 2}, - [189] = {.lex_state = 139, .external_lex_state = 2}, - [190] = {.lex_state = 139, .external_lex_state = 2}, - [191] = {.lex_state = 139, .external_lex_state = 2}, - [192] = {.lex_state = 139, .external_lex_state = 2}, - [193] = {.lex_state = 139, .external_lex_state = 2}, - [194] = {.lex_state = 139, .external_lex_state = 2}, - [195] = {.lex_state = 139, .external_lex_state = 3}, - [196] = {.lex_state = 139, .external_lex_state = 2}, - [197] = {.lex_state = 139, .external_lex_state = 3}, - [198] = {.lex_state = 139, .external_lex_state = 2}, - [199] = {.lex_state = 139, .external_lex_state = 2}, - [200] = {.lex_state = 139, .external_lex_state = 2}, - [201] = {.lex_state = 139, .external_lex_state = 2}, - [202] = {.lex_state = 139, .external_lex_state = 2}, - [203] = {.lex_state = 139, .external_lex_state = 3}, - [204] = {.lex_state = 139, .external_lex_state = 2}, - [205] = {.lex_state = 139, .external_lex_state = 2}, - [206] = {.lex_state = 139, .external_lex_state = 2}, - [207] = {.lex_state = 139, .external_lex_state = 2}, - [208] = {.lex_state = 139, .external_lex_state = 2}, - [209] = {.lex_state = 139, .external_lex_state = 2}, - [210] = {.lex_state = 139, .external_lex_state = 2}, - [211] = {.lex_state = 139, .external_lex_state = 2}, - [212] = {.lex_state = 139, .external_lex_state = 2}, - [213] = {.lex_state = 139, .external_lex_state = 2}, - [214] = {.lex_state = 139, .external_lex_state = 2}, - [215] = {.lex_state = 139, .external_lex_state = 2}, - [216] = {.lex_state = 139, .external_lex_state = 2}, - [217] = {.lex_state = 139, .external_lex_state = 2}, - [218] = {.lex_state = 139, .external_lex_state = 2}, - [219] = {.lex_state = 139, .external_lex_state = 2}, - [220] = {.lex_state = 139, .external_lex_state = 2}, - [221] = {.lex_state = 139, .external_lex_state = 2}, - [222] = {.lex_state = 139, .external_lex_state = 2}, - [223] = {.lex_state = 139, .external_lex_state = 2}, - [224] = {.lex_state = 139, .external_lex_state = 2}, - [225] = {.lex_state = 139, .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}, + [148] = {.lex_state = 141, .external_lex_state = 2}, + [149] = {.lex_state = 141, .external_lex_state = 2}, + [150] = {.lex_state = 140, .external_lex_state = 2}, + [151] = {.lex_state = 140, .external_lex_state = 2}, + [152] = {.lex_state = 140, .external_lex_state = 2}, + [153] = {.lex_state = 140, .external_lex_state = 2}, + [154] = {.lex_state = 140, .external_lex_state = 2}, + [155] = {.lex_state = 140, .external_lex_state = 2}, + [156] = {.lex_state = 140, .external_lex_state = 2}, + [157] = {.lex_state = 140, .external_lex_state = 2}, + [158] = {.lex_state = 140, .external_lex_state = 2}, + [159] = {.lex_state = 140, .external_lex_state = 2}, + [160] = {.lex_state = 140, .external_lex_state = 3}, + [161] = {.lex_state = 140, .external_lex_state = 3}, + [162] = {.lex_state = 140, .external_lex_state = 3}, + [163] = {.lex_state = 140, .external_lex_state = 3}, + [164] = {.lex_state = 140, .external_lex_state = 2}, + [165] = {.lex_state = 140, .external_lex_state = 2}, + [166] = {.lex_state = 140, .external_lex_state = 2}, + [167] = {.lex_state = 140, .external_lex_state = 2}, + [168] = {.lex_state = 140, .external_lex_state = 2}, + [169] = {.lex_state = 140, .external_lex_state = 2}, + [170] = {.lex_state = 140, .external_lex_state = 2}, + [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 = 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}, + [178] = {.lex_state = 140, .external_lex_state = 2}, + [179] = {.lex_state = 140, .external_lex_state = 2}, + [180] = {.lex_state = 140, .external_lex_state = 2}, + [181] = {.lex_state = 140, .external_lex_state = 2}, + [182] = {.lex_state = 140, .external_lex_state = 2}, + [183] = {.lex_state = 140, .external_lex_state = 2}, + [184] = {.lex_state = 140, .external_lex_state = 2}, + [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 = 3}, + [189] = {.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 = 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 = 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}, + [207] = {.lex_state = 140, .external_lex_state = 2}, + [208] = {.lex_state = 140, .external_lex_state = 2}, + [209] = {.lex_state = 140, .external_lex_state = 2}, + [210] = {.lex_state = 140, .external_lex_state = 2}, + [211] = {.lex_state = 140, .external_lex_state = 2}, + [212] = {.lex_state = 140, .external_lex_state = 2}, + [213] = {.lex_state = 140, .external_lex_state = 2}, + [214] = {.lex_state = 140, .external_lex_state = 2}, + [215] = {.lex_state = 140, .external_lex_state = 2}, + [216] = {.lex_state = 140, .external_lex_state = 2}, + [217] = {.lex_state = 140, .external_lex_state = 2}, + [218] = {.lex_state = 140, .external_lex_state = 2}, + [219] = {.lex_state = 140, .external_lex_state = 2}, + [220] = {.lex_state = 140, .external_lex_state = 2}, + [221] = {.lex_state = 140, .external_lex_state = 2}, + [222] = {.lex_state = 140, .external_lex_state = 2}, + [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 = 140, .external_lex_state = 2}, - [227] = {.lex_state = 139, .external_lex_state = 2}, + [227] = {.lex_state = 140, .external_lex_state = 2}, [228] = {.lex_state = 140, .external_lex_state = 2}, - [229] = {.lex_state = 139, .external_lex_state = 2}, - [230] = {.lex_state = 139, .external_lex_state = 2}, - [231] = {.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 = 140, .external_lex_state = 2}, [233] = {.lex_state = 140, .external_lex_state = 2}, - [234] = {.lex_state = 140, .external_lex_state = 2}, - [235] = {.lex_state = 139, .external_lex_state = 2}, - [236] = {.lex_state = 139, .external_lex_state = 2}, - [237] = {.lex_state = 139, .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 = 140, .external_lex_state = 2}, - [239] = {.lex_state = 139, .external_lex_state = 2}, - [240] = {.lex_state = 139, .external_lex_state = 2}, - [241] = {.lex_state = 139, .external_lex_state = 2}, - [242] = {.lex_state = 139, .external_lex_state = 2}, - [243] = {.lex_state = 139, .external_lex_state = 2}, - [244] = {.lex_state = 139, .external_lex_state = 2}, - [245] = {.lex_state = 139, .external_lex_state = 2}, - [246] = {.lex_state = 140, .external_lex_state = 2}, - [247] = {.lex_state = 140, .external_lex_state = 2}, - [248] = {.lex_state = 140, .external_lex_state = 2}, + [239] = {.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 = 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 = 140, .external_lex_state = 2}, - [250] = {.lex_state = 139, .external_lex_state = 2}, - [251] = {.lex_state = 139, .external_lex_state = 2}, - [252] = {.lex_state = 139, .external_lex_state = 2}, - [253] = {.lex_state = 139, .external_lex_state = 2}, - [254] = {.lex_state = 140, .external_lex_state = 2}, - [255] = {.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 = 140, .external_lex_state = 2}, - [257] = {.lex_state = 139, .external_lex_state = 2}, - [258] = {.lex_state = 139, .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 = 139, .external_lex_state = 2}, - [261] = {.lex_state = 139, .external_lex_state = 2}, + [260] = {.lex_state = 141, .external_lex_state = 2}, + [261] = {.lex_state = 140, .external_lex_state = 2}, [262] = {.lex_state = 140, .external_lex_state = 2}, - [263] = {.lex_state = 140, .external_lex_state = 2}, - [264] = {.lex_state = 139, .external_lex_state = 2}, + [263] = {.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 = 140, .external_lex_state = 2}, + [266] = {.lex_state = 141, .external_lex_state = 2}, [267] = {.lex_state = 140, .external_lex_state = 2}, [268] = {.lex_state = 140, .external_lex_state = 2}, - [269] = {.lex_state = 139, .external_lex_state = 2}, + [269] = {.lex_state = 141, .external_lex_state = 2}, [270] = {.lex_state = 140, .external_lex_state = 2}, - [271] = {.lex_state = 139, .external_lex_state = 2}, - [272] = {.lex_state = 139, .external_lex_state = 2}, - [273] = {.lex_state = 139, .external_lex_state = 2}, - [274] = {.lex_state = 139, .external_lex_state = 2}, - [275] = {.lex_state = 140, .external_lex_state = 2}, - [276] = {.lex_state = 139, .external_lex_state = 2}, + [271] = {.lex_state = 141, .external_lex_state = 2}, + [272] = {.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 = 140, .external_lex_state = 2}, - [278] = {.lex_state = 139, .external_lex_state = 2}, - [279] = {.lex_state = 139, .external_lex_state = 2}, - [280] = {.lex_state = 139, .external_lex_state = 2}, - [281] = {.lex_state = 139, .external_lex_state = 2}, - [282] = {.lex_state = 140, .external_lex_state = 2}, - [283] = {.lex_state = 140, .external_lex_state = 2}, - [284] = {.lex_state = 139, .external_lex_state = 2}, - [285] = {.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 = 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 = 140, .external_lex_state = 2}, - [287] = {.lex_state = 140, .external_lex_state = 2}, - [288] = {.lex_state = 140, .external_lex_state = 2}, - [289] = {.lex_state = 140, .external_lex_state = 2}, - [290] = {.lex_state = 140, .external_lex_state = 2}, - [291] = {.lex_state = 140, .external_lex_state = 2}, - [292] = {.lex_state = 140, .external_lex_state = 2}, - [293] = {.lex_state = 140, .external_lex_state = 2}, - [294] = {.lex_state = 140, .external_lex_state = 2}, - [295] = {.lex_state = 140, .external_lex_state = 2}, - [296] = {.lex_state = 140, .external_lex_state = 2}, - [297] = {.lex_state = 140, .external_lex_state = 2}, - [298] = {.lex_state = 140, .external_lex_state = 2}, - [299] = {.lex_state = 140, .external_lex_state = 2}, - [300] = {.lex_state = 140, .external_lex_state = 2}, - [301] = {.lex_state = 140, .external_lex_state = 2}, - [302] = {.lex_state = 140, .external_lex_state = 2}, - [303] = {.lex_state = 140, .external_lex_state = 2}, - [304] = {.lex_state = 140, .external_lex_state = 2}, - [305] = {.lex_state = 140, .external_lex_state = 2}, - [306] = {.lex_state = 140, .external_lex_state = 2}, - [307] = {.lex_state = 140, .external_lex_state = 2}, - [308] = {.lex_state = 140, .external_lex_state = 2}, - [309] = {.lex_state = 140, .external_lex_state = 2}, - [310] = {.lex_state = 140, .external_lex_state = 2}, - [311] = {.lex_state = 140, .external_lex_state = 2}, - [312] = {.lex_state = 140, .external_lex_state = 2}, - [313] = {.lex_state = 140, .external_lex_state = 2}, - [314] = {.lex_state = 140, .external_lex_state = 2}, - [315] = {.lex_state = 140, .external_lex_state = 2}, - [316] = {.lex_state = 140, .external_lex_state = 2}, - [317] = {.lex_state = 140, .external_lex_state = 2}, - [318] = {.lex_state = 140, .external_lex_state = 2}, - [319] = {.lex_state = 140, .external_lex_state = 2}, - [320] = {.lex_state = 140, .external_lex_state = 2}, - [321] = {.lex_state = 140, .external_lex_state = 2}, - [322] = {.lex_state = 140, .external_lex_state = 2}, - [323] = {.lex_state = 140, .external_lex_state = 2}, - [324] = {.lex_state = 140, .external_lex_state = 2}, - [325] = {.lex_state = 140, .external_lex_state = 2}, - [326] = {.lex_state = 140, .external_lex_state = 2}, - [327] = {.lex_state = 140, .external_lex_state = 2}, - [328] = {.lex_state = 140, .external_lex_state = 2}, - [329] = {.lex_state = 140, .external_lex_state = 2}, - [330] = {.lex_state = 140, .external_lex_state = 2}, - [331] = {.lex_state = 140, .external_lex_state = 2}, - [332] = {.lex_state = 140, .external_lex_state = 2}, - [333] = {.lex_state = 140, .external_lex_state = 2}, - [334] = {.lex_state = 140, .external_lex_state = 2}, - [335] = {.lex_state = 140, .external_lex_state = 2}, - [336] = {.lex_state = 140, .external_lex_state = 2}, - [337] = {.lex_state = 140, .external_lex_state = 2}, - [338] = {.lex_state = 140, .external_lex_state = 2}, - [339] = {.lex_state = 140, .external_lex_state = 2}, - [340] = {.lex_state = 140, .external_lex_state = 2}, - [341] = {.lex_state = 140, .external_lex_state = 2}, - [342] = {.lex_state = 140, .external_lex_state = 2}, - [343] = {.lex_state = 140, .external_lex_state = 2}, - [344] = {.lex_state = 140, .external_lex_state = 2}, - [345] = {.lex_state = 140, .external_lex_state = 2}, - [346] = {.lex_state = 140, .external_lex_state = 2}, - [347] = {.lex_state = 140, .external_lex_state = 2}, - [348] = {.lex_state = 140, .external_lex_state = 2}, - [349] = {.lex_state = 140, .external_lex_state = 2}, - [350] = {.lex_state = 140, .external_lex_state = 2}, - [351] = {.lex_state = 140, .external_lex_state = 2}, - [352] = {.lex_state = 140, .external_lex_state = 2}, - [353] = {.lex_state = 140, .external_lex_state = 2}, - [354] = {.lex_state = 140, .external_lex_state = 2}, - [355] = {.lex_state = 140, .external_lex_state = 2}, - [356] = {.lex_state = 140, .external_lex_state = 2}, - [357] = {.lex_state = 140, .external_lex_state = 2}, - [358] = {.lex_state = 140, .external_lex_state = 2}, - [359] = {.lex_state = 140, .external_lex_state = 2}, - [360] = {.lex_state = 140, .external_lex_state = 2}, - [361] = {.lex_state = 140, .external_lex_state = 2}, - [362] = {.lex_state = 140, .external_lex_state = 2}, - [363] = {.lex_state = 140, .external_lex_state = 2}, - [364] = {.lex_state = 140, .external_lex_state = 2}, - [365] = {.lex_state = 140, .external_lex_state = 2}, - [366] = {.lex_state = 140, .external_lex_state = 2}, - [367] = {.lex_state = 140, .external_lex_state = 2}, - [368] = {.lex_state = 140, .external_lex_state = 2}, - [369] = {.lex_state = 140, .external_lex_state = 2}, - [370] = {.lex_state = 140, .external_lex_state = 2}, - [371] = {.lex_state = 140, .external_lex_state = 2}, - [372] = {.lex_state = 140, .external_lex_state = 2}, - [373] = {.lex_state = 140, .external_lex_state = 2}, - [374] = {.lex_state = 140, .external_lex_state = 2}, - [375] = {.lex_state = 140, .external_lex_state = 2}, - [376] = {.lex_state = 140, .external_lex_state = 2}, - [377] = {.lex_state = 140, .external_lex_state = 2}, - [378] = {.lex_state = 140, .external_lex_state = 2}, - [379] = {.lex_state = 140, .external_lex_state = 2}, - [380] = {.lex_state = 140, .external_lex_state = 2}, - [381] = {.lex_state = 140, .external_lex_state = 2}, - [382] = {.lex_state = 140, .external_lex_state = 2}, - [383] = {.lex_state = 140, .external_lex_state = 2}, - [384] = {.lex_state = 140, .external_lex_state = 2}, - [385] = {.lex_state = 140, .external_lex_state = 2}, - [386] = {.lex_state = 140, .external_lex_state = 2}, - [387] = {.lex_state = 140, .external_lex_state = 2}, - [388] = {.lex_state = 140, .external_lex_state = 2}, - [389] = {.lex_state = 140, .external_lex_state = 2}, - [390] = {.lex_state = 140, .external_lex_state = 2}, - [391] = {.lex_state = 140, .external_lex_state = 2}, - [392] = {.lex_state = 140, .external_lex_state = 2}, - [393] = {.lex_state = 140, .external_lex_state = 2}, - [394] = {.lex_state = 140, .external_lex_state = 2}, - [395] = {.lex_state = 140, .external_lex_state = 2}, - [396] = {.lex_state = 140, .external_lex_state = 2}, - [397] = {.lex_state = 140, .external_lex_state = 2}, - [398] = {.lex_state = 140, .external_lex_state = 2}, - [399] = {.lex_state = 140, .external_lex_state = 2}, - [400] = {.lex_state = 140, .external_lex_state = 2}, - [401] = {.lex_state = 140, .external_lex_state = 2}, - [402] = {.lex_state = 140, .external_lex_state = 2}, - [403] = {.lex_state = 140, .external_lex_state = 2}, - [404] = {.lex_state = 140, .external_lex_state = 2}, - [405] = {.lex_state = 140, .external_lex_state = 2}, - [406] = {.lex_state = 140, .external_lex_state = 2}, - [407] = {.lex_state = 140, .external_lex_state = 2}, - [408] = {.lex_state = 140, .external_lex_state = 2}, - [409] = {.lex_state = 140, .external_lex_state = 2}, - [410] = {.lex_state = 140, .external_lex_state = 2}, - [411] = {.lex_state = 140, .external_lex_state = 2}, - [412] = {.lex_state = 140, .external_lex_state = 2}, - [413] = {.lex_state = 140, .external_lex_state = 2}, - [414] = {.lex_state = 140, .external_lex_state = 2}, - [415] = {.lex_state = 140, .external_lex_state = 2}, - [416] = {.lex_state = 140, .external_lex_state = 2}, - [417] = {.lex_state = 140, .external_lex_state = 2}, - [418] = {.lex_state = 140, .external_lex_state = 2}, - [419] = {.lex_state = 140, .external_lex_state = 2}, - [420] = {.lex_state = 140, .external_lex_state = 2}, - [421] = {.lex_state = 140, .external_lex_state = 2}, - [422] = {.lex_state = 140, .external_lex_state = 2}, - [423] = {.lex_state = 140, .external_lex_state = 2}, - [424] = {.lex_state = 140, .external_lex_state = 2}, - [425] = {.lex_state = 140, .external_lex_state = 2}, - [426] = {.lex_state = 140, .external_lex_state = 2}, - [427] = {.lex_state = 140, .external_lex_state = 2}, - [428] = {.lex_state = 140, .external_lex_state = 2}, - [429] = {.lex_state = 140, .external_lex_state = 2}, - [430] = {.lex_state = 140, .external_lex_state = 2}, - [431] = {.lex_state = 140, .external_lex_state = 2}, - [432] = {.lex_state = 140, .external_lex_state = 2}, - [433] = {.lex_state = 140, .external_lex_state = 2}, - [434] = {.lex_state = 140, .external_lex_state = 2}, - [435] = {.lex_state = 140, .external_lex_state = 2}, - [436] = {.lex_state = 140, .external_lex_state = 2}, - [437] = {.lex_state = 140, .external_lex_state = 2}, - [438] = {.lex_state = 140, .external_lex_state = 2}, - [439] = {.lex_state = 140, .external_lex_state = 2}, - [440] = {.lex_state = 140, .external_lex_state = 2}, - [441] = {.lex_state = 140, .external_lex_state = 2}, - [442] = {.lex_state = 140, .external_lex_state = 2}, - [443] = {.lex_state = 140, .external_lex_state = 2}, - [444] = {.lex_state = 140, .external_lex_state = 2}, - [445] = {.lex_state = 140, .external_lex_state = 2}, - [446] = {.lex_state = 140, .external_lex_state = 2}, - [447] = {.lex_state = 140, .external_lex_state = 2}, - [448] = {.lex_state = 140, .external_lex_state = 2}, - [449] = {.lex_state = 140, .external_lex_state = 2}, - [450] = {.lex_state = 140, .external_lex_state = 2}, - [451] = {.lex_state = 140, .external_lex_state = 2}, - [452] = {.lex_state = 140, .external_lex_state = 2}, - [453] = {.lex_state = 140, .external_lex_state = 2}, - [454] = {.lex_state = 140, .external_lex_state = 2}, - [455] = {.lex_state = 140, .external_lex_state = 2}, - [456] = {.lex_state = 140, .external_lex_state = 2}, - [457] = {.lex_state = 140, .external_lex_state = 2}, - [458] = {.lex_state = 140, .external_lex_state = 2}, - [459] = {.lex_state = 140, .external_lex_state = 2}, - [460] = {.lex_state = 140, .external_lex_state = 2}, - [461] = {.lex_state = 140, .external_lex_state = 2}, - [462] = {.lex_state = 140, .external_lex_state = 2}, - [463] = {.lex_state = 140, .external_lex_state = 2}, - [464] = {.lex_state = 140, .external_lex_state = 2}, - [465] = {.lex_state = 140, .external_lex_state = 2}, - [466] = {.lex_state = 140, .external_lex_state = 2}, - [467] = {.lex_state = 140, .external_lex_state = 2}, - [468] = {.lex_state = 140, .external_lex_state = 2}, - [469] = {.lex_state = 140, .external_lex_state = 2}, - [470] = {.lex_state = 140, .external_lex_state = 2}, - [471] = {.lex_state = 140, .external_lex_state = 2}, - [472] = {.lex_state = 140, .external_lex_state = 2}, - [473] = {.lex_state = 140, .external_lex_state = 2}, - [474] = {.lex_state = 140, .external_lex_state = 2}, - [475] = {.lex_state = 140, .external_lex_state = 2}, - [476] = {.lex_state = 140, .external_lex_state = 2}, - [477] = {.lex_state = 140, .external_lex_state = 2}, - [478] = {.lex_state = 140, .external_lex_state = 2}, - [479] = {.lex_state = 140, .external_lex_state = 2}, - [480] = {.lex_state = 140, .external_lex_state = 2}, - [481] = {.lex_state = 140, .external_lex_state = 2}, - [482] = {.lex_state = 140, .external_lex_state = 2}, - [483] = {.lex_state = 140, .external_lex_state = 2}, - [484] = {.lex_state = 140, .external_lex_state = 2}, - [485] = {.lex_state = 140, .external_lex_state = 2}, - [486] = {.lex_state = 140, .external_lex_state = 2}, - [487] = {.lex_state = 140, .external_lex_state = 2}, - [488] = {.lex_state = 140, .external_lex_state = 2}, - [489] = {.lex_state = 140, .external_lex_state = 2}, - [490] = {.lex_state = 140, .external_lex_state = 2}, - [491] = {.lex_state = 140, .external_lex_state = 2}, - [492] = {.lex_state = 140, .external_lex_state = 2}, - [493] = {.lex_state = 140, .external_lex_state = 2}, - [494] = {.lex_state = 140, .external_lex_state = 2}, - [495] = {.lex_state = 140, .external_lex_state = 2}, - [496] = {.lex_state = 140, .external_lex_state = 2}, - [497] = {.lex_state = 140, .external_lex_state = 2}, - [498] = {.lex_state = 140, .external_lex_state = 2}, - [499] = {.lex_state = 140, .external_lex_state = 2}, - [500] = {.lex_state = 140, .external_lex_state = 2}, - [501] = {.lex_state = 140, .external_lex_state = 2}, - [502] = {.lex_state = 140, .external_lex_state = 2}, - [503] = {.lex_state = 140, .external_lex_state = 2}, - [504] = {.lex_state = 140, .external_lex_state = 2}, - [505] = {.lex_state = 140, .external_lex_state = 2}, - [506] = {.lex_state = 140, .external_lex_state = 2}, - [507] = {.lex_state = 140, .external_lex_state = 2}, - [508] = {.lex_state = 140, .external_lex_state = 2}, - [509] = {.lex_state = 140, .external_lex_state = 2}, - [510] = {.lex_state = 140, .external_lex_state = 2}, - [511] = {.lex_state = 140, .external_lex_state = 2}, - [512] = {.lex_state = 140, .external_lex_state = 2}, - [513] = {.lex_state = 140, .external_lex_state = 2}, - [514] = {.lex_state = 140, .external_lex_state = 2}, - [515] = {.lex_state = 140, .external_lex_state = 2}, - [516] = {.lex_state = 140, .external_lex_state = 2}, - [517] = {.lex_state = 140, .external_lex_state = 2}, - [518] = {.lex_state = 140, .external_lex_state = 2}, - [519] = {.lex_state = 140, .external_lex_state = 2}, - [520] = {.lex_state = 140, .external_lex_state = 2}, - [521] = {.lex_state = 140, .external_lex_state = 2}, - [522] = {.lex_state = 140, .external_lex_state = 2}, - [523] = {.lex_state = 140, .external_lex_state = 2}, - [524] = {.lex_state = 140, .external_lex_state = 2}, - [525] = {.lex_state = 140, .external_lex_state = 2}, - [526] = {.lex_state = 140, .external_lex_state = 2}, - [527] = {.lex_state = 140, .external_lex_state = 2}, - [528] = {.lex_state = 140, .external_lex_state = 2}, - [529] = {.lex_state = 140, .external_lex_state = 2}, - [530] = {.lex_state = 140, .external_lex_state = 2}, - [531] = {.lex_state = 140, .external_lex_state = 2}, - [532] = {.lex_state = 140, .external_lex_state = 2}, - [533] = {.lex_state = 140, .external_lex_state = 2}, - [534] = {.lex_state = 140, .external_lex_state = 2}, - [535] = {.lex_state = 140, .external_lex_state = 2}, - [536] = {.lex_state = 140, .external_lex_state = 2}, - [537] = {.lex_state = 140, .external_lex_state = 2}, - [538] = {.lex_state = 140, .external_lex_state = 2}, - [539] = {.lex_state = 140, .external_lex_state = 2}, - [540] = {.lex_state = 140, .external_lex_state = 2}, - [541] = {.lex_state = 140, .external_lex_state = 2}, - [542] = {.lex_state = 140, .external_lex_state = 2}, - [543] = {.lex_state = 140, .external_lex_state = 2}, - [544] = {.lex_state = 140, .external_lex_state = 2}, - [545] = {.lex_state = 140, .external_lex_state = 2}, - [546] = {.lex_state = 140, .external_lex_state = 2}, - [547] = {.lex_state = 140, .external_lex_state = 2}, - [548] = {.lex_state = 140, .external_lex_state = 2}, - [549] = {.lex_state = 140, .external_lex_state = 2}, - [550] = {.lex_state = 140, .external_lex_state = 2}, - [551] = {.lex_state = 140, .external_lex_state = 2}, - [552] = {.lex_state = 140, .external_lex_state = 2}, - [553] = {.lex_state = 140, .external_lex_state = 2}, - [554] = {.lex_state = 140, .external_lex_state = 2}, - [555] = {.lex_state = 140, .external_lex_state = 2}, - [556] = {.lex_state = 140, .external_lex_state = 2}, - [557] = {.lex_state = 140, .external_lex_state = 2}, - [558] = {.lex_state = 140, .external_lex_state = 2}, - [559] = {.lex_state = 140, .external_lex_state = 2}, - [560] = {.lex_state = 140, .external_lex_state = 2}, - [561] = {.lex_state = 140, .external_lex_state = 2}, - [562] = {.lex_state = 140, .external_lex_state = 2}, - [563] = {.lex_state = 140, .external_lex_state = 2}, - [564] = {.lex_state = 140, .external_lex_state = 2}, - [565] = {.lex_state = 140, .external_lex_state = 2}, - [566] = {.lex_state = 140, .external_lex_state = 2}, - [567] = {.lex_state = 140, .external_lex_state = 2}, - [568] = {.lex_state = 140, .external_lex_state = 2}, - [569] = {.lex_state = 140, .external_lex_state = 2}, - [570] = {.lex_state = 140, .external_lex_state = 2}, - [571] = {.lex_state = 140, .external_lex_state = 2}, - [572] = {.lex_state = 140, .external_lex_state = 2}, - [573] = {.lex_state = 140, .external_lex_state = 2}, - [574] = {.lex_state = 140, .external_lex_state = 2}, - [575] = {.lex_state = 140, .external_lex_state = 2}, - [576] = {.lex_state = 140, .external_lex_state = 2}, - [577] = {.lex_state = 140, .external_lex_state = 2}, - [578] = {.lex_state = 140, .external_lex_state = 2}, - [579] = {.lex_state = 140, .external_lex_state = 2}, - [580] = {.lex_state = 140, .external_lex_state = 2}, - [581] = {.lex_state = 140, .external_lex_state = 2}, - [582] = {.lex_state = 140, .external_lex_state = 2}, - [583] = {.lex_state = 140, .external_lex_state = 2}, - [584] = {.lex_state = 140, .external_lex_state = 2}, - [585] = {.lex_state = 140, .external_lex_state = 2}, - [586] = {.lex_state = 140, .external_lex_state = 2}, - [587] = {.lex_state = 140, .external_lex_state = 2}, - [588] = {.lex_state = 140, .external_lex_state = 2}, - [589] = {.lex_state = 140, .external_lex_state = 2}, - [590] = {.lex_state = 140, .external_lex_state = 2}, - [591] = {.lex_state = 140, .external_lex_state = 2}, - [592] = {.lex_state = 140, .external_lex_state = 2}, - [593] = {.lex_state = 140, .external_lex_state = 2}, - [594] = {.lex_state = 140, .external_lex_state = 2}, - [595] = {.lex_state = 140, .external_lex_state = 2}, - [596] = {.lex_state = 140, .external_lex_state = 2}, - [597] = {.lex_state = 140, .external_lex_state = 2}, - [598] = {.lex_state = 140, .external_lex_state = 2}, - [599] = {.lex_state = 140, .external_lex_state = 2}, - [600] = {.lex_state = 140, .external_lex_state = 2}, - [601] = {.lex_state = 140, .external_lex_state = 2}, - [602] = {.lex_state = 140, .external_lex_state = 2}, - [603] = {.lex_state = 140, .external_lex_state = 2}, - [604] = {.lex_state = 140, .external_lex_state = 2}, - [605] = {.lex_state = 140, .external_lex_state = 2}, - [606] = {.lex_state = 140, .external_lex_state = 2}, - [607] = {.lex_state = 140, .external_lex_state = 2}, - [608] = {.lex_state = 140, .external_lex_state = 2}, - [609] = {.lex_state = 140, .external_lex_state = 2}, - [610] = {.lex_state = 140, .external_lex_state = 2}, - [611] = {.lex_state = 140, .external_lex_state = 2}, - [612] = {.lex_state = 140, .external_lex_state = 2}, - [613] = {.lex_state = 140, .external_lex_state = 2}, - [614] = {.lex_state = 140, .external_lex_state = 2}, - [615] = {.lex_state = 140, .external_lex_state = 2}, - [616] = {.lex_state = 140, .external_lex_state = 2}, - [617] = {.lex_state = 140, .external_lex_state = 2}, - [618] = {.lex_state = 140, .external_lex_state = 2}, - [619] = {.lex_state = 140, .external_lex_state = 2}, - [620] = {.lex_state = 140, .external_lex_state = 2}, - [621] = {.lex_state = 140, .external_lex_state = 2}, - [622] = {.lex_state = 140, .external_lex_state = 2}, - [623] = {.lex_state = 140, .external_lex_state = 2}, - [624] = {.lex_state = 140, .external_lex_state = 2}, - [625] = {.lex_state = 140, .external_lex_state = 2}, - [626] = {.lex_state = 140, .external_lex_state = 2}, - [627] = {.lex_state = 140, .external_lex_state = 2}, - [628] = {.lex_state = 140, .external_lex_state = 2}, - [629] = {.lex_state = 140, .external_lex_state = 2}, - [630] = {.lex_state = 140, .external_lex_state = 2}, - [631] = {.lex_state = 140, .external_lex_state = 2}, - [632] = {.lex_state = 140, .external_lex_state = 2}, - [633] = {.lex_state = 140, .external_lex_state = 2}, - [634] = {.lex_state = 140, .external_lex_state = 2}, - [635] = {.lex_state = 140, .external_lex_state = 2}, - [636] = {.lex_state = 140, .external_lex_state = 2}, - [637] = {.lex_state = 140, .external_lex_state = 2}, - [638] = {.lex_state = 140, .external_lex_state = 2}, - [639] = {.lex_state = 140, .external_lex_state = 2}, - [640] = {.lex_state = 140, .external_lex_state = 2}, - [641] = {.lex_state = 140, .external_lex_state = 2}, - [642] = {.lex_state = 140, .external_lex_state = 2}, - [643] = {.lex_state = 140, .external_lex_state = 2}, - [644] = {.lex_state = 140, .external_lex_state = 2}, - [645] = {.lex_state = 140, .external_lex_state = 2}, - [646] = {.lex_state = 140, .external_lex_state = 2}, - [647] = {.lex_state = 140, .external_lex_state = 2}, - [648] = {.lex_state = 140, .external_lex_state = 2}, - [649] = {.lex_state = 140, .external_lex_state = 2}, - [650] = {.lex_state = 140, .external_lex_state = 2}, - [651] = {.lex_state = 140, .external_lex_state = 2}, - [652] = {.lex_state = 140, .external_lex_state = 2}, - [653] = {.lex_state = 140, .external_lex_state = 2}, - [654] = {.lex_state = 140, .external_lex_state = 2}, - [655] = {.lex_state = 140, .external_lex_state = 2}, - [656] = {.lex_state = 140, .external_lex_state = 2}, - [657] = {.lex_state = 140, .external_lex_state = 2}, - [658] = {.lex_state = 140, .external_lex_state = 2}, - [659] = {.lex_state = 140, .external_lex_state = 2}, - [660] = {.lex_state = 140, .external_lex_state = 2}, - [661] = {.lex_state = 140, .external_lex_state = 2}, - [662] = {.lex_state = 140, .external_lex_state = 2}, - [663] = {.lex_state = 140, .external_lex_state = 2}, - [664] = {.lex_state = 140, .external_lex_state = 2}, - [665] = {.lex_state = 140, .external_lex_state = 2}, - [666] = {.lex_state = 140, .external_lex_state = 2}, - [667] = {.lex_state = 140, .external_lex_state = 2}, - [668] = {.lex_state = 140, .external_lex_state = 2}, - [669] = {.lex_state = 140, .external_lex_state = 2}, - [670] = {.lex_state = 140, .external_lex_state = 2}, - [671] = {.lex_state = 140, .external_lex_state = 2}, - [672] = {.lex_state = 140, .external_lex_state = 2}, - [673] = {.lex_state = 140, .external_lex_state = 2}, - [674] = {.lex_state = 140, .external_lex_state = 2}, - [675] = {.lex_state = 140, .external_lex_state = 2}, - [676] = {.lex_state = 140, .external_lex_state = 2}, - [677] = {.lex_state = 140, .external_lex_state = 2}, - [678] = {.lex_state = 140, .external_lex_state = 2}, - [679] = {.lex_state = 140, .external_lex_state = 2}, - [680] = {.lex_state = 140, .external_lex_state = 2}, - [681] = {.lex_state = 140, .external_lex_state = 2}, - [682] = {.lex_state = 140, .external_lex_state = 2}, - [683] = {.lex_state = 140, .external_lex_state = 2}, - [684] = {.lex_state = 140, .external_lex_state = 2}, - [685] = {.lex_state = 140, .external_lex_state = 2}, - [686] = {.lex_state = 140, .external_lex_state = 2}, - [687] = {.lex_state = 140, .external_lex_state = 2}, - [688] = {.lex_state = 140, .external_lex_state = 2}, - [689] = {.lex_state = 140, .external_lex_state = 2}, - [690] = {.lex_state = 140, .external_lex_state = 2}, - [691] = {.lex_state = 140, .external_lex_state = 2}, - [692] = {.lex_state = 140, .external_lex_state = 2}, - [693] = {.lex_state = 140, .external_lex_state = 2}, - [694] = {.lex_state = 140, .external_lex_state = 2}, - [695] = {.lex_state = 140, .external_lex_state = 2}, - [696] = {.lex_state = 140, .external_lex_state = 2}, - [697] = {.lex_state = 140, .external_lex_state = 2}, - [698] = {.lex_state = 140, .external_lex_state = 2}, - [699] = {.lex_state = 140, .external_lex_state = 2}, - [700] = {.lex_state = 140, .external_lex_state = 2}, - [701] = {.lex_state = 140, .external_lex_state = 2}, - [702] = {.lex_state = 140, .external_lex_state = 2}, - [703] = {.lex_state = 140, .external_lex_state = 2}, - [704] = {.lex_state = 140, .external_lex_state = 2}, - [705] = {.lex_state = 140, .external_lex_state = 2}, - [706] = {.lex_state = 140, .external_lex_state = 2}, - [707] = {.lex_state = 140, .external_lex_state = 2}, - [708] = {.lex_state = 140, .external_lex_state = 2}, - [709] = {.lex_state = 140, .external_lex_state = 2}, - [710] = {.lex_state = 140, .external_lex_state = 2}, - [711] = {.lex_state = 140, .external_lex_state = 2}, - [712] = {.lex_state = 140, .external_lex_state = 2}, - [713] = {.lex_state = 140, .external_lex_state = 2}, - [714] = {.lex_state = 140, .external_lex_state = 2}, - [715] = {.lex_state = 140, .external_lex_state = 2}, - [716] = {.lex_state = 140, .external_lex_state = 2}, - [717] = {.lex_state = 140, .external_lex_state = 2}, - [718] = {.lex_state = 140, .external_lex_state = 2}, - [719] = {.lex_state = 140, .external_lex_state = 2}, - [720] = {.lex_state = 140, .external_lex_state = 2}, - [721] = {.lex_state = 140, .external_lex_state = 2}, - [722] = {.lex_state = 140, .external_lex_state = 2}, - [723] = {.lex_state = 140, .external_lex_state = 2}, - [724] = {.lex_state = 140, .external_lex_state = 2}, - [725] = {.lex_state = 140, .external_lex_state = 2}, - [726] = {.lex_state = 140, .external_lex_state = 2}, - [727] = {.lex_state = 140, .external_lex_state = 2}, - [728] = {.lex_state = 140, .external_lex_state = 2}, - [729] = {.lex_state = 140, .external_lex_state = 2}, - [730] = {.lex_state = 140, .external_lex_state = 2}, - [731] = {.lex_state = 140, .external_lex_state = 2}, - [732] = {.lex_state = 140, .external_lex_state = 2}, - [733] = {.lex_state = 140, .external_lex_state = 2}, - [734] = {.lex_state = 140, .external_lex_state = 2}, - [735] = {.lex_state = 140, .external_lex_state = 2}, - [736] = {.lex_state = 140, .external_lex_state = 2}, - [737] = {.lex_state = 140, .external_lex_state = 2}, - [738] = {.lex_state = 140, .external_lex_state = 2}, - [739] = {.lex_state = 140, .external_lex_state = 2}, - [740] = {.lex_state = 140, .external_lex_state = 2}, - [741] = {.lex_state = 140, .external_lex_state = 2}, - [742] = {.lex_state = 140, .external_lex_state = 2}, - [743] = {.lex_state = 140, .external_lex_state = 2}, - [744] = {.lex_state = 140, .external_lex_state = 2}, - [745] = {.lex_state = 140, .external_lex_state = 2}, - [746] = {.lex_state = 140, .external_lex_state = 2}, - [747] = {.lex_state = 140, .external_lex_state = 2}, - [748] = {.lex_state = 140, .external_lex_state = 2}, - [749] = {.lex_state = 140, .external_lex_state = 2}, - [750] = {.lex_state = 140, .external_lex_state = 2}, - [751] = {.lex_state = 140, .external_lex_state = 2}, - [752] = {.lex_state = 140, .external_lex_state = 2}, - [753] = {.lex_state = 140, .external_lex_state = 2}, - [754] = {.lex_state = 140, .external_lex_state = 2}, - [755] = {.lex_state = 140, .external_lex_state = 2}, - [756] = {.lex_state = 140, .external_lex_state = 2}, - [757] = {.lex_state = 140, .external_lex_state = 2}, - [758] = {.lex_state = 140, .external_lex_state = 2}, - [759] = {.lex_state = 140, .external_lex_state = 2}, - [760] = {.lex_state = 140, .external_lex_state = 2}, - [761] = {.lex_state = 140, .external_lex_state = 2}, - [762] = {.lex_state = 140, .external_lex_state = 2}, - [763] = {.lex_state = 140, .external_lex_state = 2}, - [764] = {.lex_state = 140, .external_lex_state = 2}, - [765] = {.lex_state = 140, .external_lex_state = 2}, - [766] = {.lex_state = 140, .external_lex_state = 2}, - [767] = {.lex_state = 140, .external_lex_state = 2}, - [768] = {.lex_state = 140, .external_lex_state = 2}, - [769] = {.lex_state = 140, .external_lex_state = 2}, - [770] = {.lex_state = 140, .external_lex_state = 2}, - [771] = {.lex_state = 140, .external_lex_state = 2}, - [772] = {.lex_state = 140, .external_lex_state = 2}, - [773] = {.lex_state = 140, .external_lex_state = 2}, - [774] = {.lex_state = 140, .external_lex_state = 2}, - [775] = {.lex_state = 140, .external_lex_state = 2}, - [776] = {.lex_state = 140, .external_lex_state = 2}, - [777] = {.lex_state = 140, .external_lex_state = 2}, - [778] = {.lex_state = 140, .external_lex_state = 2}, - [779] = {.lex_state = 140, .external_lex_state = 2}, - [780] = {.lex_state = 140, .external_lex_state = 2}, - [781] = {.lex_state = 140, .external_lex_state = 2}, - [782] = {.lex_state = 140, .external_lex_state = 2}, - [783] = {.lex_state = 140, .external_lex_state = 2}, - [784] = {.lex_state = 140, .external_lex_state = 2}, - [785] = {.lex_state = 140, .external_lex_state = 2}, - [786] = {.lex_state = 140, .external_lex_state = 2}, - [787] = {.lex_state = 140, .external_lex_state = 2}, - [788] = {.lex_state = 140, .external_lex_state = 2}, - [789] = {.lex_state = 140, .external_lex_state = 2}, - [790] = {.lex_state = 140, .external_lex_state = 2}, - [791] = {.lex_state = 140, .external_lex_state = 2}, - [792] = {.lex_state = 140, .external_lex_state = 2}, - [793] = {.lex_state = 140, .external_lex_state = 2}, - [794] = {.lex_state = 140, .external_lex_state = 2}, - [795] = {.lex_state = 140, .external_lex_state = 2}, - [796] = {.lex_state = 140, .external_lex_state = 2}, - [797] = {.lex_state = 140, .external_lex_state = 2}, - [798] = {.lex_state = 140, .external_lex_state = 2}, - [799] = {.lex_state = 140, .external_lex_state = 2}, - [800] = {.lex_state = 140, .external_lex_state = 2}, - [801] = {.lex_state = 140, .external_lex_state = 2}, - [802] = {.lex_state = 140, .external_lex_state = 2}, - [803] = {.lex_state = 140, .external_lex_state = 2}, - [804] = {.lex_state = 140, .external_lex_state = 2}, - [805] = {.lex_state = 140, .external_lex_state = 2}, - [806] = {.lex_state = 140, .external_lex_state = 2}, - [807] = {.lex_state = 140, .external_lex_state = 2}, - [808] = {.lex_state = 140, .external_lex_state = 2}, - [809] = {.lex_state = 140, .external_lex_state = 2}, - [810] = {.lex_state = 140, .external_lex_state = 2}, - [811] = {.lex_state = 140, .external_lex_state = 2}, - [812] = {.lex_state = 140, .external_lex_state = 2}, - [813] = {.lex_state = 140, .external_lex_state = 2}, - [814] = {.lex_state = 140, .external_lex_state = 2}, - [815] = {.lex_state = 140, .external_lex_state = 2}, - [816] = {.lex_state = 140, .external_lex_state = 2}, - [817] = {.lex_state = 140, .external_lex_state = 2}, - [818] = {.lex_state = 140, .external_lex_state = 2}, - [819] = {.lex_state = 140, .external_lex_state = 2}, - [820] = {.lex_state = 140, .external_lex_state = 2}, - [821] = {.lex_state = 140, .external_lex_state = 2}, - [822] = {.lex_state = 140, .external_lex_state = 2}, - [823] = {.lex_state = 140, .external_lex_state = 2}, - [824] = {.lex_state = 140, .external_lex_state = 2}, - [825] = {.lex_state = 140, .external_lex_state = 2}, - [826] = {.lex_state = 140, .external_lex_state = 2}, - [827] = {.lex_state = 140, .external_lex_state = 2}, - [828] = {.lex_state = 140, .external_lex_state = 2}, - [829] = {.lex_state = 140, .external_lex_state = 2}, - [830] = {.lex_state = 140, .external_lex_state = 2}, - [831] = {.lex_state = 140, .external_lex_state = 2}, - [832] = {.lex_state = 140, .external_lex_state = 2}, - [833] = {.lex_state = 140, .external_lex_state = 2}, - [834] = {.lex_state = 140, .external_lex_state = 2}, - [835] = {.lex_state = 140, .external_lex_state = 2}, - [836] = {.lex_state = 140, .external_lex_state = 2}, - [837] = {.lex_state = 140, .external_lex_state = 2}, - [838] = {.lex_state = 140, .external_lex_state = 2}, - [839] = {.lex_state = 140, .external_lex_state = 2}, - [840] = {.lex_state = 140, .external_lex_state = 2}, - [841] = {.lex_state = 140, .external_lex_state = 2}, - [842] = {.lex_state = 140, .external_lex_state = 2}, - [843] = {.lex_state = 140, .external_lex_state = 2}, - [844] = {.lex_state = 140, .external_lex_state = 2}, - [845] = {.lex_state = 140, .external_lex_state = 2}, - [846] = {.lex_state = 140, .external_lex_state = 2}, - [847] = {.lex_state = 140, .external_lex_state = 2}, - [848] = {.lex_state = 140, .external_lex_state = 2}, - [849] = {.lex_state = 140, .external_lex_state = 2}, - [850] = {.lex_state = 140, .external_lex_state = 2}, - [851] = {.lex_state = 140, .external_lex_state = 2}, - [852] = {.lex_state = 140, .external_lex_state = 2}, - [853] = {.lex_state = 140, .external_lex_state = 2}, - [854] = {.lex_state = 140, .external_lex_state = 2}, - [855] = {.lex_state = 140, .external_lex_state = 2}, - [856] = {.lex_state = 140, .external_lex_state = 2}, - [857] = {.lex_state = 140, .external_lex_state = 2}, - [858] = {.lex_state = 140, .external_lex_state = 2}, - [859] = {.lex_state = 140, .external_lex_state = 2}, - [860] = {.lex_state = 140, .external_lex_state = 2}, - [861] = {.lex_state = 140, .external_lex_state = 2}, - [862] = {.lex_state = 140, .external_lex_state = 2}, - [863] = {.lex_state = 140, .external_lex_state = 2}, - [864] = {.lex_state = 140, .external_lex_state = 2}, - [865] = {.lex_state = 140, .external_lex_state = 2}, - [866] = {.lex_state = 140, .external_lex_state = 2}, - [867] = {.lex_state = 140, .external_lex_state = 2}, - [868] = {.lex_state = 140, .external_lex_state = 2}, - [869] = {.lex_state = 140, .external_lex_state = 2}, - [870] = {.lex_state = 140, .external_lex_state = 2}, - [871] = {.lex_state = 140, .external_lex_state = 2}, - [872] = {.lex_state = 140, .external_lex_state = 2}, - [873] = {.lex_state = 140, .external_lex_state = 2}, - [874] = {.lex_state = 140, .external_lex_state = 2}, - [875] = {.lex_state = 140, .external_lex_state = 2}, - [876] = {.lex_state = 140, .external_lex_state = 2}, - [877] = {.lex_state = 140, .external_lex_state = 2}, - [878] = {.lex_state = 140, .external_lex_state = 2}, - [879] = {.lex_state = 140, .external_lex_state = 2}, - [880] = {.lex_state = 140, .external_lex_state = 2}, - [881] = {.lex_state = 140, .external_lex_state = 2}, - [882] = {.lex_state = 140, .external_lex_state = 2}, - [883] = {.lex_state = 140, .external_lex_state = 2}, - [884] = {.lex_state = 140, .external_lex_state = 2}, - [885] = {.lex_state = 140, .external_lex_state = 2}, - [886] = {.lex_state = 140, .external_lex_state = 2}, - [887] = {.lex_state = 140, .external_lex_state = 2}, - [888] = {.lex_state = 140, .external_lex_state = 2}, - [889] = {.lex_state = 140, .external_lex_state = 2}, - [890] = {.lex_state = 140, .external_lex_state = 2}, - [891] = {.lex_state = 140, .external_lex_state = 2}, - [892] = {.lex_state = 140, .external_lex_state = 2}, - [893] = {.lex_state = 140, .external_lex_state = 2}, - [894] = {.lex_state = 140, .external_lex_state = 2}, - [895] = {.lex_state = 140, .external_lex_state = 2}, - [896] = {.lex_state = 140, .external_lex_state = 2}, - [897] = {.lex_state = 140, .external_lex_state = 2}, - [898] = {.lex_state = 140, .external_lex_state = 2}, - [899] = {.lex_state = 140, .external_lex_state = 2}, - [900] = {.lex_state = 140, .external_lex_state = 2}, - [901] = {.lex_state = 140, .external_lex_state = 2}, - [902] = {.lex_state = 140, .external_lex_state = 2}, - [903] = {.lex_state = 140, .external_lex_state = 2}, - [904] = {.lex_state = 140, .external_lex_state = 2}, - [905] = {.lex_state = 140, .external_lex_state = 2}, - [906] = {.lex_state = 140, .external_lex_state = 2}, - [907] = {.lex_state = 140, .external_lex_state = 2}, - [908] = {.lex_state = 140, .external_lex_state = 2}, - [909] = {.lex_state = 140, .external_lex_state = 2}, - [910] = {.lex_state = 140, .external_lex_state = 2}, - [911] = {.lex_state = 140, .external_lex_state = 2}, - [912] = {.lex_state = 140, .external_lex_state = 2}, - [913] = {.lex_state = 140, .external_lex_state = 2}, - [914] = {.lex_state = 140, .external_lex_state = 2}, - [915] = {.lex_state = 140, .external_lex_state = 2}, - [916] = {.lex_state = 140, .external_lex_state = 2}, - [917] = {.lex_state = 140, .external_lex_state = 2}, - [918] = {.lex_state = 140, .external_lex_state = 2}, - [919] = {.lex_state = 140, .external_lex_state = 2}, - [920] = {.lex_state = 140, .external_lex_state = 2}, - [921] = {.lex_state = 140, .external_lex_state = 2}, - [922] = {.lex_state = 140, .external_lex_state = 2}, - [923] = {.lex_state = 140, .external_lex_state = 2}, - [924] = {.lex_state = 140, .external_lex_state = 2}, - [925] = {.lex_state = 140, .external_lex_state = 2}, - [926] = {.lex_state = 140, .external_lex_state = 2}, - [927] = {.lex_state = 140, .external_lex_state = 2}, - [928] = {.lex_state = 140, .external_lex_state = 2}, - [929] = {.lex_state = 140, .external_lex_state = 2}, - [930] = {.lex_state = 140, .external_lex_state = 2}, - [931] = {.lex_state = 140, .external_lex_state = 2}, - [932] = {.lex_state = 140, .external_lex_state = 2}, - [933] = {.lex_state = 140, .external_lex_state = 2}, - [934] = {.lex_state = 140, .external_lex_state = 2}, - [935] = {.lex_state = 140, .external_lex_state = 2}, - [936] = {.lex_state = 140, .external_lex_state = 2}, - [937] = {.lex_state = 140, .external_lex_state = 2}, - [938] = {.lex_state = 140, .external_lex_state = 2}, - [939] = {.lex_state = 140, .external_lex_state = 2}, - [940] = {.lex_state = 140, .external_lex_state = 2}, - [941] = {.lex_state = 140, .external_lex_state = 2}, - [942] = {.lex_state = 140, .external_lex_state = 2}, - [943] = {.lex_state = 140, .external_lex_state = 2}, - [944] = {.lex_state = 140, .external_lex_state = 2}, - [945] = {.lex_state = 140, .external_lex_state = 2}, - [946] = {.lex_state = 140, .external_lex_state = 2}, - [947] = {.lex_state = 140, .external_lex_state = 2}, - [948] = {.lex_state = 140, .external_lex_state = 2}, - [949] = {.lex_state = 140, .external_lex_state = 2}, - [950] = {.lex_state = 140, .external_lex_state = 2}, - [951] = {.lex_state = 140, .external_lex_state = 2}, - [952] = {.lex_state = 140, .external_lex_state = 2}, - [953] = {.lex_state = 140, .external_lex_state = 2}, - [954] = {.lex_state = 140, .external_lex_state = 2}, - [955] = {.lex_state = 140, .external_lex_state = 2}, - [956] = {.lex_state = 140, .external_lex_state = 2}, - [957] = {.lex_state = 140, .external_lex_state = 2}, - [958] = {.lex_state = 140, .external_lex_state = 2}, - [959] = {.lex_state = 140, .external_lex_state = 2}, - [960] = {.lex_state = 140, .external_lex_state = 2}, - [961] = {.lex_state = 140, .external_lex_state = 2}, - [962] = {.lex_state = 140, .external_lex_state = 2}, - [963] = {.lex_state = 140, .external_lex_state = 2}, - [964] = {.lex_state = 140, .external_lex_state = 2}, - [965] = {.lex_state = 140, .external_lex_state = 2}, - [966] = {.lex_state = 140, .external_lex_state = 2}, - [967] = {.lex_state = 140, .external_lex_state = 2}, - [968] = {.lex_state = 140, .external_lex_state = 2}, - [969] = {.lex_state = 140, .external_lex_state = 2}, - [970] = {.lex_state = 140, .external_lex_state = 2}, - [971] = {.lex_state = 140, .external_lex_state = 2}, - [972] = {.lex_state = 140, .external_lex_state = 2}, - [973] = {.lex_state = 140, .external_lex_state = 2}, - [974] = {.lex_state = 140, .external_lex_state = 2}, - [975] = {.lex_state = 140, .external_lex_state = 2}, - [976] = {.lex_state = 140, .external_lex_state = 2}, - [977] = {.lex_state = 140, .external_lex_state = 2}, - [978] = {.lex_state = 140, .external_lex_state = 2}, - [979] = {.lex_state = 140, .external_lex_state = 2}, - [980] = {.lex_state = 140, .external_lex_state = 2}, - [981] = {.lex_state = 140, .external_lex_state = 2}, - [982] = {.lex_state = 140, .external_lex_state = 2}, - [983] = {.lex_state = 140, .external_lex_state = 2}, - [984] = {.lex_state = 140, .external_lex_state = 2}, - [985] = {.lex_state = 140, .external_lex_state = 2}, - [986] = {.lex_state = 140, .external_lex_state = 2}, - [987] = {.lex_state = 140, .external_lex_state = 2}, - [988] = {.lex_state = 140, .external_lex_state = 2}, - [989] = {.lex_state = 140, .external_lex_state = 2}, - [990] = {.lex_state = 140, .external_lex_state = 2}, - [991] = {.lex_state = 140, .external_lex_state = 2}, - [992] = {.lex_state = 140, .external_lex_state = 2}, - [993] = {.lex_state = 140, .external_lex_state = 2}, - [994] = {.lex_state = 140, .external_lex_state = 2}, - [995] = {.lex_state = 140, .external_lex_state = 2}, - [996] = {.lex_state = 140, .external_lex_state = 2}, - [997] = {.lex_state = 140, .external_lex_state = 2}, - [998] = {.lex_state = 140, .external_lex_state = 2}, - [999] = {.lex_state = 140, .external_lex_state = 2}, - [1000] = {.lex_state = 140, .external_lex_state = 2}, - [1001] = {.lex_state = 140, .external_lex_state = 2}, - [1002] = {.lex_state = 140, .external_lex_state = 2}, - [1003] = {.lex_state = 140, .external_lex_state = 2}, - [1004] = {.lex_state = 140, .external_lex_state = 2}, - [1005] = {.lex_state = 140, .external_lex_state = 2}, - [1006] = {.lex_state = 140, .external_lex_state = 2}, - [1007] = {.lex_state = 140, .external_lex_state = 2}, - [1008] = {.lex_state = 140, .external_lex_state = 2}, - [1009] = {.lex_state = 140, .external_lex_state = 2}, - [1010] = {.lex_state = 140, .external_lex_state = 2}, - [1011] = {.lex_state = 140, .external_lex_state = 2}, - [1012] = {.lex_state = 140, .external_lex_state = 2}, - [1013] = {.lex_state = 140, .external_lex_state = 2}, - [1014] = {.lex_state = 140, .external_lex_state = 2}, - [1015] = {.lex_state = 140, .external_lex_state = 2}, - [1016] = {.lex_state = 140, .external_lex_state = 2}, - [1017] = {.lex_state = 140, .external_lex_state = 2}, - [1018] = {.lex_state = 140, .external_lex_state = 2}, - [1019] = {.lex_state = 140, .external_lex_state = 2}, - [1020] = {.lex_state = 140, .external_lex_state = 2}, - [1021] = {.lex_state = 140, .external_lex_state = 2}, - [1022] = {.lex_state = 140, .external_lex_state = 2}, - [1023] = {.lex_state = 140, .external_lex_state = 2}, - [1024] = {.lex_state = 140, .external_lex_state = 2}, - [1025] = {.lex_state = 140, .external_lex_state = 2}, - [1026] = {.lex_state = 140, .external_lex_state = 2}, - [1027] = {.lex_state = 140, .external_lex_state = 2}, - [1028] = {.lex_state = 140, .external_lex_state = 2}, - [1029] = {.lex_state = 140, .external_lex_state = 2}, - [1030] = {.lex_state = 140, .external_lex_state = 2}, - [1031] = {.lex_state = 140, .external_lex_state = 2}, - [1032] = {.lex_state = 140, .external_lex_state = 2}, - [1033] = {.lex_state = 140, .external_lex_state = 2}, - [1034] = {.lex_state = 140, .external_lex_state = 2}, - [1035] = {.lex_state = 140, .external_lex_state = 2}, - [1036] = {.lex_state = 140, .external_lex_state = 2}, - [1037] = {.lex_state = 140, .external_lex_state = 2}, - [1038] = {.lex_state = 140, .external_lex_state = 2}, - [1039] = {.lex_state = 140, .external_lex_state = 2}, - [1040] = {.lex_state = 140, .external_lex_state = 2}, - [1041] = {.lex_state = 140, .external_lex_state = 2}, - [1042] = {.lex_state = 140, .external_lex_state = 2}, - [1043] = {.lex_state = 140, .external_lex_state = 2}, - [1044] = {.lex_state = 140, .external_lex_state = 2}, - [1045] = {.lex_state = 140, .external_lex_state = 2}, - [1046] = {.lex_state = 140, .external_lex_state = 2}, - [1047] = {.lex_state = 140, .external_lex_state = 2}, - [1048] = {.lex_state = 140, .external_lex_state = 2}, - [1049] = {.lex_state = 140, .external_lex_state = 2}, - [1050] = {.lex_state = 140, .external_lex_state = 2}, - [1051] = {.lex_state = 140, .external_lex_state = 2}, - [1052] = {.lex_state = 140, .external_lex_state = 2}, - [1053] = {.lex_state = 140, .external_lex_state = 2}, - [1054] = {.lex_state = 140, .external_lex_state = 2}, - [1055] = {.lex_state = 140, .external_lex_state = 2}, - [1056] = {.lex_state = 140, .external_lex_state = 2}, - [1057] = {.lex_state = 140, .external_lex_state = 2}, - [1058] = {.lex_state = 140, .external_lex_state = 2}, - [1059] = {.lex_state = 140, .external_lex_state = 2}, - [1060] = {.lex_state = 140, .external_lex_state = 2}, - [1061] = {.lex_state = 140, .external_lex_state = 2}, - [1062] = {.lex_state = 140, .external_lex_state = 2}, - [1063] = {.lex_state = 140, .external_lex_state = 2}, - [1064] = {.lex_state = 140, .external_lex_state = 2}, - [1065] = {.lex_state = 140, .external_lex_state = 2}, - [1066] = {.lex_state = 140, .external_lex_state = 2}, - [1067] = {.lex_state = 140, .external_lex_state = 2}, - [1068] = {.lex_state = 140, .external_lex_state = 2}, - [1069] = {.lex_state = 140, .external_lex_state = 2}, - [1070] = {.lex_state = 140, .external_lex_state = 2}, - [1071] = {.lex_state = 140, .external_lex_state = 2}, - [1072] = {.lex_state = 140, .external_lex_state = 2}, - [1073] = {.lex_state = 140, .external_lex_state = 2}, - [1074] = {.lex_state = 140, .external_lex_state = 2}, - [1075] = {.lex_state = 140, .external_lex_state = 2}, - [1076] = {.lex_state = 140, .external_lex_state = 2}, - [1077] = {.lex_state = 140, .external_lex_state = 2}, - [1078] = {.lex_state = 140, .external_lex_state = 2}, - [1079] = {.lex_state = 140, .external_lex_state = 2}, - [1080] = {.lex_state = 140, .external_lex_state = 2}, - [1081] = {.lex_state = 140, .external_lex_state = 2}, - [1082] = {.lex_state = 140, .external_lex_state = 2}, - [1083] = {.lex_state = 140, .external_lex_state = 2}, - [1084] = {.lex_state = 140, .external_lex_state = 2}, - [1085] = {.lex_state = 140, .external_lex_state = 2}, - [1086] = {.lex_state = 140, .external_lex_state = 2}, - [1087] = {.lex_state = 140, .external_lex_state = 2}, - [1088] = {.lex_state = 140, .external_lex_state = 2}, - [1089] = {.lex_state = 140, .external_lex_state = 2}, - [1090] = {.lex_state = 140, .external_lex_state = 2}, - [1091] = {.lex_state = 140, .external_lex_state = 2}, - [1092] = {.lex_state = 140, .external_lex_state = 2}, - [1093] = {.lex_state = 140, .external_lex_state = 2}, - [1094] = {.lex_state = 140, .external_lex_state = 2}, - [1095] = {.lex_state = 140, .external_lex_state = 2}, - [1096] = {.lex_state = 140, .external_lex_state = 2}, - [1097] = {.lex_state = 140, .external_lex_state = 2}, - [1098] = {.lex_state = 140, .external_lex_state = 2}, - [1099] = {.lex_state = 140, .external_lex_state = 2}, - [1100] = {.lex_state = 140, .external_lex_state = 2}, - [1101] = {.lex_state = 140, .external_lex_state = 2}, - [1102] = {.lex_state = 140, .external_lex_state = 2}, - [1103] = {.lex_state = 140, .external_lex_state = 2}, - [1104] = {.lex_state = 140, .external_lex_state = 2}, - [1105] = {.lex_state = 140, .external_lex_state = 2}, - [1106] = {.lex_state = 140, .external_lex_state = 2}, - [1107] = {.lex_state = 140, .external_lex_state = 2}, - [1108] = {.lex_state = 140, .external_lex_state = 2}, - [1109] = {.lex_state = 140, .external_lex_state = 2}, - [1110] = {.lex_state = 140, .external_lex_state = 2}, - [1111] = {.lex_state = 140, .external_lex_state = 2}, - [1112] = {.lex_state = 140, .external_lex_state = 2}, - [1113] = {.lex_state = 140, .external_lex_state = 2}, - [1114] = {.lex_state = 140, .external_lex_state = 2}, - [1115] = {.lex_state = 140, .external_lex_state = 2}, - [1116] = {.lex_state = 140, .external_lex_state = 2}, - [1117] = {.lex_state = 140, .external_lex_state = 2}, - [1118] = {.lex_state = 140, .external_lex_state = 2}, - [1119] = {.lex_state = 140, .external_lex_state = 2}, - [1120] = {.lex_state = 140, .external_lex_state = 2}, - [1121] = {.lex_state = 140, .external_lex_state = 2}, - [1122] = {.lex_state = 140, .external_lex_state = 2}, - [1123] = {.lex_state = 140, .external_lex_state = 2}, - [1124] = {.lex_state = 140, .external_lex_state = 2}, - [1125] = {.lex_state = 140, .external_lex_state = 2}, - [1126] = {.lex_state = 140, .external_lex_state = 2}, - [1127] = {.lex_state = 140, .external_lex_state = 2}, - [1128] = {.lex_state = 140, .external_lex_state = 2}, - [1129] = {.lex_state = 140, .external_lex_state = 2}, - [1130] = {.lex_state = 140, .external_lex_state = 2}, - [1131] = {.lex_state = 140, .external_lex_state = 2}, - [1132] = {.lex_state = 140, .external_lex_state = 2}, - [1133] = {.lex_state = 140, .external_lex_state = 2}, - [1134] = {.lex_state = 140, .external_lex_state = 2}, - [1135] = {.lex_state = 140, .external_lex_state = 2}, - [1136] = {.lex_state = 140, .external_lex_state = 2}, - [1137] = {.lex_state = 140, .external_lex_state = 2}, - [1138] = {.lex_state = 140, .external_lex_state = 2}, - [1139] = {.lex_state = 140, .external_lex_state = 2}, - [1140] = {.lex_state = 140, .external_lex_state = 2}, - [1141] = {.lex_state = 140, .external_lex_state = 2}, - [1142] = {.lex_state = 140, .external_lex_state = 2}, - [1143] = {.lex_state = 140, .external_lex_state = 2}, - [1144] = {.lex_state = 140, .external_lex_state = 2}, - [1145] = {.lex_state = 140, .external_lex_state = 2}, - [1146] = {.lex_state = 140, .external_lex_state = 2}, - [1147] = {.lex_state = 140, .external_lex_state = 2}, - [1148] = {.lex_state = 140, .external_lex_state = 2}, - [1149] = {.lex_state = 140, .external_lex_state = 2}, - [1150] = {.lex_state = 140, .external_lex_state = 2}, - [1151] = {.lex_state = 140, .external_lex_state = 2}, - [1152] = {.lex_state = 140, .external_lex_state = 2}, - [1153] = {.lex_state = 140, .external_lex_state = 2}, - [1154] = {.lex_state = 140, .external_lex_state = 2}, - [1155] = {.lex_state = 140, .external_lex_state = 2}, - [1156] = {.lex_state = 140, .external_lex_state = 2}, - [1157] = {.lex_state = 140, .external_lex_state = 2}, - [1158] = {.lex_state = 140, .external_lex_state = 2}, - [1159] = {.lex_state = 140, .external_lex_state = 2}, - [1160] = {.lex_state = 140, .external_lex_state = 2}, - [1161] = {.lex_state = 140, .external_lex_state = 2}, - [1162] = {.lex_state = 140, .external_lex_state = 2}, - [1163] = {.lex_state = 140, .external_lex_state = 2}, - [1164] = {.lex_state = 140, .external_lex_state = 2}, - [1165] = {.lex_state = 140, .external_lex_state = 2}, - [1166] = {.lex_state = 140, .external_lex_state = 2}, - [1167] = {.lex_state = 140, .external_lex_state = 2}, - [1168] = {.lex_state = 140, .external_lex_state = 2}, - [1169] = {.lex_state = 140, .external_lex_state = 2}, - [1170] = {.lex_state = 140, .external_lex_state = 2}, - [1171] = {.lex_state = 140, .external_lex_state = 2}, - [1172] = {.lex_state = 140, .external_lex_state = 2}, - [1173] = {.lex_state = 140, .external_lex_state = 2}, - [1174] = {.lex_state = 140, .external_lex_state = 2}, - [1175] = {.lex_state = 140, .external_lex_state = 2}, - [1176] = {.lex_state = 140, .external_lex_state = 2}, - [1177] = {.lex_state = 140, .external_lex_state = 2}, - [1178] = {.lex_state = 140, .external_lex_state = 2}, - [1179] = {.lex_state = 140, .external_lex_state = 2}, - [1180] = {.lex_state = 140, .external_lex_state = 2}, - [1181] = {.lex_state = 140, .external_lex_state = 2}, - [1182] = {.lex_state = 140, .external_lex_state = 2}, - [1183] = {.lex_state = 140, .external_lex_state = 2}, - [1184] = {.lex_state = 140, .external_lex_state = 2}, - [1185] = {.lex_state = 140, .external_lex_state = 2}, - [1186] = {.lex_state = 140, .external_lex_state = 2}, - [1187] = {.lex_state = 140, .external_lex_state = 2}, - [1188] = {.lex_state = 140, .external_lex_state = 2}, - [1189] = {.lex_state = 140, .external_lex_state = 2}, - [1190] = {.lex_state = 140, .external_lex_state = 2}, - [1191] = {.lex_state = 140, .external_lex_state = 2}, - [1192] = {.lex_state = 140, .external_lex_state = 2}, - [1193] = {.lex_state = 140, .external_lex_state = 2}, - [1194] = {.lex_state = 140, .external_lex_state = 2}, - [1195] = {.lex_state = 140, .external_lex_state = 2}, - [1196] = {.lex_state = 140, .external_lex_state = 2}, - [1197] = {.lex_state = 140, .external_lex_state = 2}, - [1198] = {.lex_state = 140, .external_lex_state = 2}, - [1199] = {.lex_state = 140, .external_lex_state = 2}, - [1200] = {.lex_state = 140, .external_lex_state = 2}, - [1201] = {.lex_state = 140, .external_lex_state = 2}, - [1202] = {.lex_state = 140, .external_lex_state = 2}, - [1203] = {.lex_state = 140, .external_lex_state = 2}, - [1204] = {.lex_state = 140, .external_lex_state = 2}, - [1205] = {.lex_state = 140, .external_lex_state = 2}, - [1206] = {.lex_state = 140, .external_lex_state = 2}, - [1207] = {.lex_state = 140, .external_lex_state = 2}, - [1208] = {.lex_state = 140, .external_lex_state = 2}, - [1209] = {.lex_state = 140, .external_lex_state = 2}, - [1210] = {.lex_state = 140, .external_lex_state = 2}, - [1211] = {.lex_state = 140, .external_lex_state = 2}, - [1212] = {.lex_state = 140, .external_lex_state = 2}, - [1213] = {.lex_state = 140, .external_lex_state = 2}, - [1214] = {.lex_state = 140, .external_lex_state = 2}, - [1215] = {.lex_state = 140, .external_lex_state = 2}, - [1216] = {.lex_state = 140, .external_lex_state = 2}, - [1217] = {.lex_state = 140, .external_lex_state = 2}, - [1218] = {.lex_state = 140, .external_lex_state = 2}, - [1219] = {.lex_state = 140, .external_lex_state = 2}, - [1220] = {.lex_state = 140, .external_lex_state = 2}, - [1221] = {.lex_state = 140, .external_lex_state = 2}, - [1222] = {.lex_state = 140, .external_lex_state = 2}, - [1223] = {.lex_state = 140, .external_lex_state = 2}, - [1224] = {.lex_state = 140, .external_lex_state = 2}, - [1225] = {.lex_state = 140, .external_lex_state = 2}, - [1226] = {.lex_state = 140, .external_lex_state = 2}, - [1227] = {.lex_state = 140, .external_lex_state = 2}, - [1228] = {.lex_state = 140, .external_lex_state = 2}, - [1229] = {.lex_state = 140, .external_lex_state = 2}, - [1230] = {.lex_state = 140, .external_lex_state = 2}, - [1231] = {.lex_state = 140, .external_lex_state = 2}, - [1232] = {.lex_state = 140, .external_lex_state = 2}, - [1233] = {.lex_state = 140, .external_lex_state = 2}, - [1234] = {.lex_state = 140, .external_lex_state = 2}, - [1235] = {.lex_state = 140, .external_lex_state = 2}, - [1236] = {.lex_state = 140, .external_lex_state = 2}, - [1237] = {.lex_state = 140, .external_lex_state = 2}, - [1238] = {.lex_state = 140, .external_lex_state = 2}, - [1239] = {.lex_state = 140, .external_lex_state = 2}, - [1240] = {.lex_state = 140, .external_lex_state = 2}, - [1241] = {.lex_state = 140, .external_lex_state = 2}, - [1242] = {.lex_state = 140, .external_lex_state = 2}, - [1243] = {.lex_state = 140, .external_lex_state = 2}, - [1244] = {.lex_state = 140, .external_lex_state = 2}, - [1245] = {.lex_state = 140, .external_lex_state = 2}, - [1246] = {.lex_state = 140, .external_lex_state = 2}, - [1247] = {.lex_state = 140, .external_lex_state = 2}, - [1248] = {.lex_state = 140, .external_lex_state = 2}, - [1249] = {.lex_state = 140, .external_lex_state = 2}, - [1250] = {.lex_state = 140, .external_lex_state = 2}, - [1251] = {.lex_state = 140, .external_lex_state = 2}, - [1252] = {.lex_state = 140, .external_lex_state = 2}, - [1253] = {.lex_state = 140, .external_lex_state = 2}, - [1254] = {.lex_state = 140, .external_lex_state = 2}, - [1255] = {.lex_state = 140, .external_lex_state = 2}, - [1256] = {.lex_state = 140, .external_lex_state = 2}, - [1257] = {.lex_state = 140, .external_lex_state = 2}, - [1258] = {.lex_state = 140, .external_lex_state = 2}, - [1259] = {.lex_state = 140, .external_lex_state = 2}, - [1260] = {.lex_state = 140, .external_lex_state = 2}, - [1261] = {.lex_state = 140, .external_lex_state = 2}, - [1262] = {.lex_state = 140, .external_lex_state = 2}, - [1263] = {.lex_state = 140, .external_lex_state = 2}, - [1264] = {.lex_state = 140, .external_lex_state = 2}, - [1265] = {.lex_state = 140, .external_lex_state = 2}, - [1266] = {.lex_state = 140, .external_lex_state = 2}, - [1267] = {.lex_state = 140, .external_lex_state = 2}, - [1268] = {.lex_state = 140, .external_lex_state = 2}, - [1269] = {.lex_state = 140, .external_lex_state = 2}, - [1270] = {.lex_state = 140, .external_lex_state = 2}, - [1271] = {.lex_state = 140, .external_lex_state = 2}, - [1272] = {.lex_state = 140, .external_lex_state = 2}, - [1273] = {.lex_state = 140, .external_lex_state = 2}, - [1274] = {.lex_state = 140, .external_lex_state = 2}, - [1275] = {.lex_state = 140, .external_lex_state = 2}, - [1276] = {.lex_state = 140, .external_lex_state = 2}, - [1277] = {.lex_state = 140, .external_lex_state = 2}, - [1278] = {.lex_state = 140, .external_lex_state = 2}, - [1279] = {.lex_state = 140, .external_lex_state = 2}, - [1280] = {.lex_state = 140, .external_lex_state = 2}, - [1281] = {.lex_state = 140, .external_lex_state = 2}, - [1282] = {.lex_state = 140, .external_lex_state = 2}, - [1283] = {.lex_state = 140, .external_lex_state = 2}, - [1284] = {.lex_state = 140, .external_lex_state = 2}, - [1285] = {.lex_state = 140, .external_lex_state = 2}, - [1286] = {.lex_state = 140, .external_lex_state = 2}, - [1287] = {.lex_state = 140, .external_lex_state = 2}, - [1288] = {.lex_state = 140, .external_lex_state = 2}, - [1289] = {.lex_state = 140, .external_lex_state = 2}, - [1290] = {.lex_state = 140, .external_lex_state = 2}, - [1291] = {.lex_state = 140, .external_lex_state = 2}, - [1292] = {.lex_state = 140, .external_lex_state = 2}, - [1293] = {.lex_state = 140, .external_lex_state = 2}, - [1294] = {.lex_state = 140, .external_lex_state = 2}, - [1295] = {.lex_state = 140, .external_lex_state = 2}, - [1296] = {.lex_state = 140, .external_lex_state = 2}, - [1297] = {.lex_state = 140, .external_lex_state = 2}, - [1298] = {.lex_state = 140, .external_lex_state = 2}, - [1299] = {.lex_state = 140, .external_lex_state = 2}, - [1300] = {.lex_state = 140, .external_lex_state = 2}, - [1301] = {.lex_state = 140, .external_lex_state = 2}, - [1302] = {.lex_state = 140, .external_lex_state = 2}, - [1303] = {.lex_state = 140, .external_lex_state = 2}, - [1304] = {.lex_state = 140, .external_lex_state = 2}, - [1305] = {.lex_state = 140, .external_lex_state = 2}, - [1306] = {.lex_state = 140, .external_lex_state = 2}, - [1307] = {.lex_state = 140, .external_lex_state = 2}, - [1308] = {.lex_state = 140, .external_lex_state = 2}, - [1309] = {.lex_state = 140, .external_lex_state = 2}, - [1310] = {.lex_state = 140, .external_lex_state = 2}, - [1311] = {.lex_state = 140, .external_lex_state = 2}, - [1312] = {.lex_state = 140, .external_lex_state = 2}, - [1313] = {.lex_state = 140, .external_lex_state = 2}, - [1314] = {.lex_state = 140, .external_lex_state = 2}, - [1315] = {.lex_state = 140, .external_lex_state = 2}, - [1316] = {.lex_state = 140, .external_lex_state = 2}, - [1317] = {.lex_state = 140, .external_lex_state = 2}, - [1318] = {.lex_state = 140, .external_lex_state = 2}, - [1319] = {.lex_state = 140, .external_lex_state = 2}, - [1320] = {.lex_state = 140, .external_lex_state = 2}, - [1321] = {.lex_state = 140, .external_lex_state = 2}, - [1322] = {.lex_state = 140, .external_lex_state = 2}, - [1323] = {.lex_state = 140, .external_lex_state = 2}, - [1324] = {.lex_state = 140, .external_lex_state = 2}, - [1325] = {.lex_state = 140, .external_lex_state = 2}, - [1326] = {.lex_state = 140, .external_lex_state = 2}, - [1327] = {.lex_state = 140, .external_lex_state = 2}, - [1328] = {.lex_state = 140, .external_lex_state = 2}, - [1329] = {.lex_state = 140, .external_lex_state = 2}, - [1330] = {.lex_state = 140, .external_lex_state = 2}, - [1331] = {.lex_state = 140, .external_lex_state = 2}, - [1332] = {.lex_state = 140, .external_lex_state = 2}, - [1333] = {.lex_state = 140, .external_lex_state = 2}, - [1334] = {.lex_state = 140, .external_lex_state = 2}, - [1335] = {.lex_state = 140, .external_lex_state = 2}, - [1336] = {.lex_state = 140, .external_lex_state = 2}, - [1337] = {.lex_state = 140, .external_lex_state = 2}, - [1338] = {.lex_state = 140, .external_lex_state = 2}, - [1339] = {.lex_state = 140, .external_lex_state = 2}, - [1340] = {.lex_state = 140, .external_lex_state = 2}, - [1341] = {.lex_state = 140, .external_lex_state = 2}, - [1342] = {.lex_state = 140, .external_lex_state = 2}, - [1343] = {.lex_state = 140, .external_lex_state = 2}, - [1344] = {.lex_state = 140, .external_lex_state = 2}, - [1345] = {.lex_state = 140, .external_lex_state = 2}, - [1346] = {.lex_state = 140, .external_lex_state = 2}, - [1347] = {.lex_state = 140, .external_lex_state = 2}, - [1348] = {.lex_state = 140, .external_lex_state = 2}, - [1349] = {.lex_state = 140, .external_lex_state = 2}, - [1350] = {.lex_state = 140, .external_lex_state = 2}, - [1351] = {.lex_state = 140, .external_lex_state = 2}, - [1352] = {.lex_state = 140, .external_lex_state = 2}, - [1353] = {.lex_state = 140, .external_lex_state = 2}, - [1354] = {.lex_state = 140, .external_lex_state = 2}, - [1355] = {.lex_state = 140, .external_lex_state = 2}, - [1356] = {.lex_state = 140, .external_lex_state = 2}, - [1357] = {.lex_state = 140, .external_lex_state = 2}, - [1358] = {.lex_state = 140, .external_lex_state = 2}, - [1359] = {.lex_state = 140, .external_lex_state = 2}, - [1360] = {.lex_state = 140, .external_lex_state = 2}, - [1361] = {.lex_state = 140, .external_lex_state = 2}, - [1362] = {.lex_state = 140, .external_lex_state = 2}, - [1363] = {.lex_state = 140, .external_lex_state = 2}, - [1364] = {.lex_state = 140, .external_lex_state = 2}, - [1365] = {.lex_state = 140, .external_lex_state = 2}, - [1366] = {.lex_state = 140, .external_lex_state = 2}, - [1367] = {.lex_state = 140, .external_lex_state = 2}, - [1368] = {.lex_state = 140, .external_lex_state = 2}, - [1369] = {.lex_state = 140, .external_lex_state = 2}, - [1370] = {.lex_state = 140, .external_lex_state = 2}, - [1371] = {.lex_state = 140, .external_lex_state = 2}, - [1372] = {.lex_state = 140, .external_lex_state = 2}, - [1373] = {.lex_state = 140, .external_lex_state = 2}, - [1374] = {.lex_state = 140, .external_lex_state = 2}, - [1375] = {.lex_state = 140, .external_lex_state = 2}, - [1376] = {.lex_state = 140, .external_lex_state = 2}, - [1377] = {.lex_state = 140, .external_lex_state = 2}, - [1378] = {.lex_state = 140, .external_lex_state = 2}, - [1379] = {.lex_state = 140, .external_lex_state = 2}, - [1380] = {.lex_state = 140, .external_lex_state = 2}, - [1381] = {.lex_state = 140, .external_lex_state = 2}, - [1382] = {.lex_state = 140, .external_lex_state = 2}, - [1383] = {.lex_state = 140, .external_lex_state = 2}, - [1384] = {.lex_state = 140, .external_lex_state = 2}, - [1385] = {.lex_state = 140, .external_lex_state = 2}, - [1386] = {.lex_state = 140, .external_lex_state = 2}, - [1387] = {.lex_state = 140, .external_lex_state = 2}, - [1388] = {.lex_state = 140, .external_lex_state = 2}, - [1389] = {.lex_state = 140, .external_lex_state = 2}, - [1390] = {.lex_state = 140, .external_lex_state = 2}, - [1391] = {.lex_state = 140, .external_lex_state = 2}, - [1392] = {.lex_state = 140, .external_lex_state = 2}, - [1393] = {.lex_state = 140, .external_lex_state = 2}, - [1394] = {.lex_state = 140, .external_lex_state = 2}, - [1395] = {.lex_state = 140, .external_lex_state = 2}, - [1396] = {.lex_state = 140, .external_lex_state = 2}, - [1397] = {.lex_state = 140, .external_lex_state = 2}, - [1398] = {.lex_state = 140, .external_lex_state = 2}, - [1399] = {.lex_state = 140, .external_lex_state = 2}, - [1400] = {.lex_state = 140, .external_lex_state = 2}, - [1401] = {.lex_state = 140, .external_lex_state = 2}, - [1402] = {.lex_state = 140, .external_lex_state = 2}, - [1403] = {.lex_state = 140, .external_lex_state = 2}, - [1404] = {.lex_state = 140, .external_lex_state = 2}, - [1405] = {.lex_state = 140, .external_lex_state = 2}, - [1406] = {.lex_state = 140, .external_lex_state = 2}, - [1407] = {.lex_state = 140, .external_lex_state = 2}, - [1408] = {.lex_state = 140, .external_lex_state = 2}, - [1409] = {.lex_state = 140, .external_lex_state = 2}, - [1410] = {.lex_state = 140, .external_lex_state = 2}, - [1411] = {.lex_state = 140, .external_lex_state = 2}, - [1412] = {.lex_state = 140, .external_lex_state = 2}, - [1413] = {.lex_state = 140, .external_lex_state = 2}, - [1414] = {.lex_state = 140, .external_lex_state = 2}, - [1415] = {.lex_state = 140, .external_lex_state = 2}, - [1416] = {.lex_state = 140, .external_lex_state = 2}, - [1417] = {.lex_state = 140, .external_lex_state = 2}, - [1418] = {.lex_state = 140, .external_lex_state = 2}, - [1419] = {.lex_state = 140, .external_lex_state = 2}, - [1420] = {.lex_state = 140, .external_lex_state = 2}, - [1421] = {.lex_state = 140, .external_lex_state = 2}, - [1422] = {.lex_state = 140, .external_lex_state = 2}, - [1423] = {.lex_state = 140, .external_lex_state = 2}, - [1424] = {.lex_state = 140, .external_lex_state = 2}, - [1425] = {.lex_state = 140, .external_lex_state = 2}, - [1426] = {.lex_state = 140, .external_lex_state = 2}, - [1427] = {.lex_state = 140, .external_lex_state = 2}, - [1428] = {.lex_state = 140, .external_lex_state = 2}, - [1429] = {.lex_state = 140, .external_lex_state = 2}, - [1430] = {.lex_state = 140, .external_lex_state = 2}, - [1431] = {.lex_state = 140, .external_lex_state = 2}, - [1432] = {.lex_state = 140, .external_lex_state = 2}, - [1433] = {.lex_state = 140, .external_lex_state = 2}, - [1434] = {.lex_state = 140, .external_lex_state = 2}, - [1435] = {.lex_state = 140, .external_lex_state = 2}, - [1436] = {.lex_state = 140, .external_lex_state = 2}, - [1437] = {.lex_state = 140, .external_lex_state = 2}, - [1438] = {.lex_state = 140, .external_lex_state = 2}, - [1439] = {.lex_state = 140, .external_lex_state = 2}, - [1440] = {.lex_state = 140, .external_lex_state = 2}, - [1441] = {.lex_state = 140, .external_lex_state = 2}, - [1442] = {.lex_state = 140, .external_lex_state = 2}, - [1443] = {.lex_state = 140, .external_lex_state = 2}, - [1444] = {.lex_state = 140, .external_lex_state = 2}, - [1445] = {.lex_state = 140, .external_lex_state = 2}, - [1446] = {.lex_state = 140, .external_lex_state = 2}, - [1447] = {.lex_state = 140, .external_lex_state = 2}, - [1448] = {.lex_state = 140, .external_lex_state = 2}, - [1449] = {.lex_state = 140, .external_lex_state = 2}, - [1450] = {.lex_state = 140, .external_lex_state = 2}, - [1451] = {.lex_state = 140, .external_lex_state = 2}, - [1452] = {.lex_state = 140, .external_lex_state = 2}, - [1453] = {.lex_state = 140, .external_lex_state = 2}, - [1454] = {.lex_state = 140, .external_lex_state = 2}, - [1455] = {.lex_state = 140, .external_lex_state = 2}, - [1456] = {.lex_state = 140, .external_lex_state = 2}, - [1457] = {.lex_state = 140, .external_lex_state = 2}, - [1458] = {.lex_state = 140, .external_lex_state = 2}, - [1459] = {.lex_state = 140, .external_lex_state = 2}, - [1460] = {.lex_state = 140, .external_lex_state = 2}, - [1461] = {.lex_state = 140, .external_lex_state = 2}, - [1462] = {.lex_state = 140, .external_lex_state = 2}, - [1463] = {.lex_state = 140, .external_lex_state = 2}, - [1464] = {.lex_state = 140, .external_lex_state = 2}, - [1465] = {.lex_state = 140, .external_lex_state = 2}, - [1466] = {.lex_state = 140, .external_lex_state = 2}, - [1467] = {.lex_state = 140, .external_lex_state = 2}, - [1468] = {.lex_state = 140, .external_lex_state = 2}, - [1469] = {.lex_state = 140, .external_lex_state = 2}, - [1470] = {.lex_state = 140, .external_lex_state = 2}, - [1471] = {.lex_state = 140, .external_lex_state = 2}, - [1472] = {.lex_state = 140, .external_lex_state = 2}, - [1473] = {.lex_state = 140, .external_lex_state = 2}, - [1474] = {.lex_state = 140, .external_lex_state = 2}, - [1475] = {.lex_state = 140, .external_lex_state = 2}, - [1476] = {.lex_state = 140, .external_lex_state = 2}, - [1477] = {.lex_state = 140, .external_lex_state = 2}, - [1478] = {.lex_state = 140, .external_lex_state = 2}, - [1479] = {.lex_state = 140, .external_lex_state = 2}, - [1480] = {.lex_state = 140, .external_lex_state = 2}, - [1481] = {.lex_state = 140, .external_lex_state = 2}, - [1482] = {.lex_state = 140, .external_lex_state = 2}, - [1483] = {.lex_state = 140, .external_lex_state = 2}, - [1484] = {.lex_state = 140, .external_lex_state = 2}, - [1485] = {.lex_state = 140, .external_lex_state = 2}, - [1486] = {.lex_state = 140, .external_lex_state = 2}, - [1487] = {.lex_state = 140, .external_lex_state = 2}, - [1488] = {.lex_state = 140, .external_lex_state = 2}, - [1489] = {.lex_state = 140, .external_lex_state = 2}, - [1490] = {.lex_state = 140, .external_lex_state = 2}, - [1491] = {.lex_state = 140, .external_lex_state = 2}, - [1492] = {.lex_state = 140, .external_lex_state = 2}, - [1493] = {.lex_state = 140, .external_lex_state = 2}, - [1494] = {.lex_state = 140, .external_lex_state = 2}, - [1495] = {.lex_state = 140, .external_lex_state = 2}, - [1496] = {.lex_state = 140, .external_lex_state = 2}, - [1497] = {.lex_state = 140, .external_lex_state = 2}, - [1498] = {.lex_state = 140, .external_lex_state = 2}, - [1499] = {.lex_state = 140, .external_lex_state = 2}, - [1500] = {.lex_state = 140, .external_lex_state = 2}, - [1501] = {.lex_state = 140, .external_lex_state = 2}, - [1502] = {.lex_state = 140, .external_lex_state = 2}, - [1503] = {.lex_state = 140, .external_lex_state = 2}, - [1504] = {.lex_state = 140, .external_lex_state = 2}, - [1505] = {.lex_state = 140, .external_lex_state = 2}, - [1506] = {.lex_state = 140, .external_lex_state = 2}, - [1507] = {.lex_state = 140, .external_lex_state = 2}, - [1508] = {.lex_state = 140, .external_lex_state = 2}, - [1509] = {.lex_state = 140, .external_lex_state = 2}, - [1510] = {.lex_state = 140, .external_lex_state = 2}, - [1511] = {.lex_state = 140, .external_lex_state = 2}, - [1512] = {.lex_state = 140, .external_lex_state = 2}, - [1513] = {.lex_state = 140, .external_lex_state = 2}, - [1514] = {.lex_state = 140, .external_lex_state = 2}, - [1515] = {.lex_state = 140, .external_lex_state = 2}, - [1516] = {.lex_state = 140, .external_lex_state = 2}, - [1517] = {.lex_state = 140, .external_lex_state = 2}, - [1518] = {.lex_state = 140, .external_lex_state = 2}, - [1519] = {.lex_state = 140, .external_lex_state = 2}, - [1520] = {.lex_state = 140, .external_lex_state = 2}, - [1521] = {.lex_state = 140, .external_lex_state = 2}, - [1522] = {.lex_state = 140, .external_lex_state = 2}, - [1523] = {.lex_state = 140, .external_lex_state = 2}, - [1524] = {.lex_state = 140, .external_lex_state = 2}, - [1525] = {.lex_state = 140, .external_lex_state = 2}, - [1526] = {.lex_state = 140, .external_lex_state = 2}, - [1527] = {.lex_state = 140, .external_lex_state = 2}, - [1528] = {.lex_state = 140, .external_lex_state = 2}, - [1529] = {.lex_state = 140, .external_lex_state = 2}, - [1530] = {.lex_state = 140, .external_lex_state = 2}, - [1531] = {.lex_state = 140, .external_lex_state = 2}, - [1532] = {.lex_state = 140, .external_lex_state = 2}, - [1533] = {.lex_state = 140, .external_lex_state = 2}, - [1534] = {.lex_state = 140, .external_lex_state = 2}, - [1535] = {.lex_state = 140, .external_lex_state = 2}, - [1536] = {.lex_state = 140, .external_lex_state = 2}, - [1537] = {.lex_state = 140, .external_lex_state = 2}, - [1538] = {.lex_state = 140, .external_lex_state = 2}, - [1539] = {.lex_state = 140, .external_lex_state = 2}, - [1540] = {.lex_state = 140, .external_lex_state = 2}, - [1541] = {.lex_state = 140, .external_lex_state = 2}, - [1542] = {.lex_state = 140, .external_lex_state = 2}, - [1543] = {.lex_state = 140, .external_lex_state = 2}, - [1544] = {.lex_state = 140, .external_lex_state = 2}, - [1545] = {.lex_state = 140, .external_lex_state = 2}, - [1546] = {.lex_state = 140, .external_lex_state = 2}, - [1547] = {.lex_state = 140, .external_lex_state = 2}, - [1548] = {.lex_state = 140, .external_lex_state = 2}, - [1549] = {.lex_state = 140, .external_lex_state = 2}, - [1550] = {.lex_state = 140, .external_lex_state = 2}, - [1551] = {.lex_state = 140, .external_lex_state = 2}, - [1552] = {.lex_state = 140, .external_lex_state = 2}, - [1553] = {.lex_state = 140, .external_lex_state = 2}, - [1554] = {.lex_state = 140, .external_lex_state = 2}, - [1555] = {.lex_state = 140, .external_lex_state = 2}, - [1556] = {.lex_state = 140, .external_lex_state = 2}, - [1557] = {.lex_state = 140, .external_lex_state = 2}, - [1558] = {.lex_state = 140, .external_lex_state = 2}, - [1559] = {.lex_state = 140, .external_lex_state = 2}, - [1560] = {.lex_state = 140, .external_lex_state = 2}, - [1561] = {.lex_state = 140, .external_lex_state = 2}, - [1562] = {.lex_state = 140, .external_lex_state = 2}, - [1563] = {.lex_state = 140, .external_lex_state = 2}, - [1564] = {.lex_state = 140, .external_lex_state = 2}, - [1565] = {.lex_state = 140, .external_lex_state = 2}, - [1566] = {.lex_state = 140, .external_lex_state = 2}, - [1567] = {.lex_state = 140, .external_lex_state = 2}, - [1568] = {.lex_state = 140, .external_lex_state = 2}, - [1569] = {.lex_state = 140, .external_lex_state = 2}, - [1570] = {.lex_state = 140, .external_lex_state = 2}, - [1571] = {.lex_state = 140, .external_lex_state = 2}, - [1572] = {.lex_state = 140, .external_lex_state = 2}, - [1573] = {.lex_state = 140, .external_lex_state = 2}, - [1574] = {.lex_state = 140, .external_lex_state = 2}, - [1575] = {.lex_state = 140, .external_lex_state = 2}, - [1576] = {.lex_state = 140, .external_lex_state = 2}, - [1577] = {.lex_state = 140, .external_lex_state = 2}, - [1578] = {.lex_state = 140, .external_lex_state = 2}, - [1579] = {.lex_state = 140, .external_lex_state = 2}, - [1580] = {.lex_state = 140, .external_lex_state = 2}, - [1581] = {.lex_state = 140, .external_lex_state = 2}, - [1582] = {.lex_state = 140, .external_lex_state = 2}, - [1583] = {.lex_state = 140, .external_lex_state = 2}, - [1584] = {.lex_state = 140, .external_lex_state = 2}, - [1585] = {.lex_state = 140, .external_lex_state = 2}, - [1586] = {.lex_state = 140, .external_lex_state = 2}, - [1587] = {.lex_state = 140, .external_lex_state = 2}, - [1588] = {.lex_state = 140, .external_lex_state = 2}, - [1589] = {.lex_state = 140, .external_lex_state = 2}, - [1590] = {.lex_state = 140, .external_lex_state = 2}, - [1591] = {.lex_state = 140, .external_lex_state = 2}, - [1592] = {.lex_state = 140, .external_lex_state = 2}, - [1593] = {.lex_state = 140, .external_lex_state = 2}, - [1594] = {.lex_state = 140, .external_lex_state = 2}, - [1595] = {.lex_state = 140, .external_lex_state = 2}, - [1596] = {.lex_state = 140, .external_lex_state = 2}, - [1597] = {.lex_state = 140, .external_lex_state = 2}, - [1598] = {.lex_state = 140, .external_lex_state = 2}, - [1599] = {.lex_state = 140, .external_lex_state = 2}, - [1600] = {.lex_state = 140, .external_lex_state = 2}, - [1601] = {.lex_state = 140, .external_lex_state = 2}, - [1602] = {.lex_state = 140, .external_lex_state = 2}, - [1603] = {.lex_state = 140, .external_lex_state = 2}, - [1604] = {.lex_state = 140, .external_lex_state = 2}, - [1605] = {.lex_state = 140, .external_lex_state = 2}, - [1606] = {.lex_state = 140, .external_lex_state = 2}, - [1607] = {.lex_state = 140, .external_lex_state = 2}, - [1608] = {.lex_state = 140, .external_lex_state = 2}, - [1609] = {.lex_state = 140, .external_lex_state = 2}, - [1610] = {.lex_state = 140, .external_lex_state = 2}, - [1611] = {.lex_state = 140, .external_lex_state = 2}, - [1612] = {.lex_state = 140, .external_lex_state = 2}, - [1613] = {.lex_state = 140, .external_lex_state = 2}, - [1614] = {.lex_state = 140, .external_lex_state = 2}, - [1615] = {.lex_state = 140, .external_lex_state = 2}, - [1616] = {.lex_state = 140, .external_lex_state = 2}, - [1617] = {.lex_state = 140, .external_lex_state = 2}, - [1618] = {.lex_state = 140, .external_lex_state = 2}, - [1619] = {.lex_state = 140, .external_lex_state = 2}, - [1620] = {.lex_state = 140, .external_lex_state = 2}, - [1621] = {.lex_state = 140, .external_lex_state = 2}, - [1622] = {.lex_state = 140, .external_lex_state = 2}, - [1623] = {.lex_state = 140, .external_lex_state = 2}, - [1624] = {.lex_state = 140, .external_lex_state = 2}, - [1625] = {.lex_state = 140, .external_lex_state = 2}, - [1626] = {.lex_state = 140, .external_lex_state = 2}, - [1627] = {.lex_state = 140, .external_lex_state = 2}, - [1628] = {.lex_state = 140, .external_lex_state = 2}, - [1629] = {.lex_state = 140, .external_lex_state = 2}, - [1630] = {.lex_state = 140, .external_lex_state = 2}, - [1631] = {.lex_state = 140, .external_lex_state = 2}, - [1632] = {.lex_state = 140, .external_lex_state = 2}, - [1633] = {.lex_state = 140, .external_lex_state = 2}, - [1634] = {.lex_state = 140, .external_lex_state = 2}, - [1635] = {.lex_state = 140, .external_lex_state = 2}, - [1636] = {.lex_state = 140, .external_lex_state = 2}, - [1637] = {.lex_state = 140, .external_lex_state = 2}, - [1638] = {.lex_state = 140, .external_lex_state = 2}, - [1639] = {.lex_state = 140, .external_lex_state = 2}, - [1640] = {.lex_state = 140, .external_lex_state = 2}, - [1641] = {.lex_state = 140, .external_lex_state = 2}, - [1642] = {.lex_state = 140, .external_lex_state = 2}, - [1643] = {.lex_state = 140, .external_lex_state = 2}, - [1644] = {.lex_state = 140, .external_lex_state = 2}, - [1645] = {.lex_state = 140, .external_lex_state = 2}, - [1646] = {.lex_state = 140, .external_lex_state = 2}, - [1647] = {.lex_state = 140, .external_lex_state = 2}, - [1648] = {.lex_state = 140, .external_lex_state = 2}, - [1649] = {.lex_state = 140, .external_lex_state = 2}, - [1650] = {.lex_state = 140, .external_lex_state = 2}, - [1651] = {.lex_state = 140, .external_lex_state = 2}, - [1652] = {.lex_state = 140, .external_lex_state = 2}, - [1653] = {.lex_state = 140, .external_lex_state = 2}, - [1654] = {.lex_state = 140, .external_lex_state = 2}, - [1655] = {.lex_state = 140, .external_lex_state = 2}, - [1656] = {.lex_state = 140, .external_lex_state = 2}, - [1657] = {.lex_state = 140, .external_lex_state = 2}, - [1658] = {.lex_state = 140, .external_lex_state = 2}, - [1659] = {.lex_state = 140, .external_lex_state = 2}, - [1660] = {.lex_state = 140, .external_lex_state = 2}, - [1661] = {.lex_state = 140, .external_lex_state = 2}, - [1662] = {.lex_state = 140, .external_lex_state = 2}, - [1663] = {.lex_state = 140, .external_lex_state = 2}, - [1664] = {.lex_state = 140, .external_lex_state = 2}, - [1665] = {.lex_state = 140, .external_lex_state = 2}, - [1666] = {.lex_state = 140, .external_lex_state = 2}, - [1667] = {.lex_state = 140, .external_lex_state = 2}, - [1668] = {.lex_state = 140, .external_lex_state = 2}, - [1669] = {.lex_state = 140, .external_lex_state = 2}, - [1670] = {.lex_state = 140, .external_lex_state = 2}, - [1671] = {.lex_state = 140, .external_lex_state = 2}, - [1672] = {.lex_state = 140, .external_lex_state = 2}, - [1673] = {.lex_state = 140, .external_lex_state = 2}, - [1674] = {.lex_state = 140, .external_lex_state = 2}, - [1675] = {.lex_state = 140, .external_lex_state = 2}, - [1676] = {.lex_state = 140, .external_lex_state = 2}, - [1677] = {.lex_state = 140, .external_lex_state = 2}, - [1678] = {.lex_state = 140, .external_lex_state = 2}, - [1679] = {.lex_state = 140, .external_lex_state = 2}, - [1680] = {.lex_state = 140, .external_lex_state = 2}, - [1681] = {.lex_state = 140, .external_lex_state = 2}, - [1682] = {.lex_state = 140, .external_lex_state = 2}, - [1683] = {.lex_state = 140, .external_lex_state = 2}, - [1684] = {.lex_state = 140, .external_lex_state = 2}, - [1685] = {.lex_state = 140, .external_lex_state = 2}, - [1686] = {.lex_state = 140, .external_lex_state = 2}, - [1687] = {.lex_state = 140, .external_lex_state = 2}, - [1688] = {.lex_state = 140, .external_lex_state = 2}, - [1689] = {.lex_state = 140, .external_lex_state = 2}, - [1690] = {.lex_state = 140, .external_lex_state = 2}, - [1691] = {.lex_state = 140, .external_lex_state = 2}, - [1692] = {.lex_state = 140, .external_lex_state = 2}, - [1693] = {.lex_state = 140, .external_lex_state = 2}, - [1694] = {.lex_state = 140, .external_lex_state = 2}, - [1695] = {.lex_state = 140, .external_lex_state = 2}, - [1696] = {.lex_state = 140, .external_lex_state = 2}, - [1697] = {.lex_state = 140, .external_lex_state = 2}, - [1698] = {.lex_state = 140, .external_lex_state = 2}, - [1699] = {.lex_state = 140, .external_lex_state = 2}, - [1700] = {.lex_state = 140, .external_lex_state = 2}, - [1701] = {.lex_state = 140, .external_lex_state = 2}, - [1702] = {.lex_state = 140, .external_lex_state = 2}, - [1703] = {.lex_state = 140, .external_lex_state = 2}, - [1704] = {.lex_state = 140, .external_lex_state = 2}, - [1705] = {.lex_state = 140, .external_lex_state = 2}, - [1706] = {.lex_state = 140, .external_lex_state = 2}, - [1707] = {.lex_state = 140, .external_lex_state = 2}, - [1708] = {.lex_state = 140, .external_lex_state = 2}, - [1709] = {.lex_state = 140, .external_lex_state = 2}, - [1710] = {.lex_state = 140, .external_lex_state = 2}, - [1711] = {.lex_state = 140, .external_lex_state = 2}, - [1712] = {.lex_state = 140, .external_lex_state = 2}, - [1713] = {.lex_state = 140, .external_lex_state = 2}, - [1714] = {.lex_state = 140, .external_lex_state = 2}, - [1715] = {.lex_state = 140, .external_lex_state = 2}, - [1716] = {.lex_state = 140, .external_lex_state = 2}, - [1717] = {.lex_state = 140, .external_lex_state = 2}, - [1718] = {.lex_state = 140, .external_lex_state = 2}, - [1719] = {.lex_state = 140, .external_lex_state = 2}, - [1720] = {.lex_state = 140, .external_lex_state = 2}, - [1721] = {.lex_state = 140, .external_lex_state = 2}, - [1722] = {.lex_state = 140, .external_lex_state = 2}, - [1723] = {.lex_state = 140, .external_lex_state = 2}, - [1724] = {.lex_state = 140, .external_lex_state = 2}, - [1725] = {.lex_state = 140, .external_lex_state = 2}, - [1726] = {.lex_state = 140, .external_lex_state = 2}, - [1727] = {.lex_state = 140, .external_lex_state = 2}, - [1728] = {.lex_state = 140, .external_lex_state = 2}, - [1729] = {.lex_state = 140, .external_lex_state = 2}, - [1730] = {.lex_state = 140, .external_lex_state = 2}, - [1731] = {.lex_state = 140, .external_lex_state = 2}, - [1732] = {.lex_state = 140, .external_lex_state = 2}, - [1733] = {.lex_state = 140, .external_lex_state = 2}, - [1734] = {.lex_state = 140, .external_lex_state = 2}, - [1735] = {.lex_state = 140, .external_lex_state = 2}, - [1736] = {.lex_state = 140, .external_lex_state = 2}, - [1737] = {.lex_state = 140, .external_lex_state = 2}, - [1738] = {.lex_state = 140, .external_lex_state = 2}, - [1739] = {.lex_state = 140, .external_lex_state = 2}, - [1740] = {.lex_state = 140, .external_lex_state = 2}, - [1741] = {.lex_state = 140, .external_lex_state = 2}, - [1742] = {.lex_state = 140, .external_lex_state = 2}, - [1743] = {.lex_state = 140, .external_lex_state = 2}, - [1744] = {.lex_state = 140, .external_lex_state = 2}, - [1745] = {.lex_state = 140, .external_lex_state = 2}, - [1746] = {.lex_state = 140, .external_lex_state = 2}, - [1747] = {.lex_state = 140, .external_lex_state = 2}, - [1748] = {.lex_state = 140, .external_lex_state = 2}, - [1749] = {.lex_state = 140, .external_lex_state = 2}, - [1750] = {.lex_state = 140, .external_lex_state = 2}, - [1751] = {.lex_state = 140, .external_lex_state = 2}, - [1752] = {.lex_state = 140, .external_lex_state = 2}, - [1753] = {.lex_state = 140, .external_lex_state = 2}, - [1754] = {.lex_state = 140, .external_lex_state = 2}, - [1755] = {.lex_state = 140, .external_lex_state = 2}, - [1756] = {.lex_state = 140, .external_lex_state = 2}, - [1757] = {.lex_state = 140, .external_lex_state = 2}, - [1758] = {.lex_state = 140, .external_lex_state = 2}, - [1759] = {.lex_state = 140, .external_lex_state = 2}, - [1760] = {.lex_state = 140, .external_lex_state = 2}, - [1761] = {.lex_state = 140, .external_lex_state = 2}, - [1762] = {.lex_state = 140, .external_lex_state = 2}, - [1763] = {.lex_state = 140, .external_lex_state = 2}, - [1764] = {.lex_state = 140, .external_lex_state = 2}, - [1765] = {.lex_state = 140, .external_lex_state = 2}, - [1766] = {.lex_state = 140, .external_lex_state = 2}, - [1767] = {.lex_state = 140, .external_lex_state = 2}, - [1768] = {.lex_state = 140, .external_lex_state = 2}, - [1769] = {.lex_state = 140, .external_lex_state = 2}, - [1770] = {.lex_state = 140, .external_lex_state = 2}, - [1771] = {.lex_state = 140, .external_lex_state = 2}, - [1772] = {.lex_state = 140, .external_lex_state = 2}, - [1773] = {.lex_state = 140, .external_lex_state = 2}, - [1774] = {.lex_state = 140, .external_lex_state = 2}, - [1775] = {.lex_state = 140, .external_lex_state = 2}, - [1776] = {.lex_state = 140, .external_lex_state = 2}, - [1777] = {.lex_state = 140, .external_lex_state = 2}, - [1778] = {.lex_state = 140, .external_lex_state = 2}, - [1779] = {.lex_state = 140, .external_lex_state = 2}, - [1780] = {.lex_state = 140, .external_lex_state = 2}, - [1781] = {.lex_state = 140, .external_lex_state = 2}, - [1782] = {.lex_state = 140, .external_lex_state = 2}, - [1783] = {.lex_state = 140, .external_lex_state = 2}, - [1784] = {.lex_state = 140, .external_lex_state = 2}, - [1785] = {.lex_state = 140, .external_lex_state = 2}, - [1786] = {.lex_state = 140, .external_lex_state = 2}, - [1787] = {.lex_state = 140, .external_lex_state = 2}, - [1788] = {.lex_state = 140, .external_lex_state = 2}, - [1789] = {.lex_state = 140, .external_lex_state = 2}, - [1790] = {.lex_state = 140, .external_lex_state = 2}, - [1791] = {.lex_state = 140, .external_lex_state = 2}, - [1792] = {.lex_state = 140, .external_lex_state = 2}, - [1793] = {.lex_state = 140, .external_lex_state = 2}, - [1794] = {.lex_state = 140, .external_lex_state = 2}, - [1795] = {.lex_state = 140, .external_lex_state = 2}, - [1796] = {.lex_state = 140, .external_lex_state = 2}, - [1797] = {.lex_state = 140, .external_lex_state = 2}, - [1798] = {.lex_state = 140, .external_lex_state = 2}, - [1799] = {.lex_state = 140, .external_lex_state = 2}, - [1800] = {.lex_state = 140, .external_lex_state = 2}, - [1801] = {.lex_state = 140, .external_lex_state = 2}, - [1802] = {.lex_state = 140, .external_lex_state = 2}, - [1803] = {.lex_state = 140, .external_lex_state = 2}, - [1804] = {.lex_state = 140, .external_lex_state = 2}, - [1805] = {.lex_state = 140, .external_lex_state = 2}, - [1806] = {.lex_state = 140, .external_lex_state = 2}, - [1807] = {.lex_state = 140, .external_lex_state = 2}, - [1808] = {.lex_state = 140, .external_lex_state = 2}, - [1809] = {.lex_state = 140, .external_lex_state = 2}, - [1810] = {.lex_state = 140, .external_lex_state = 2}, - [1811] = {.lex_state = 140, .external_lex_state = 2}, - [1812] = {.lex_state = 140, .external_lex_state = 2}, - [1813] = {.lex_state = 140, .external_lex_state = 2}, - [1814] = {.lex_state = 140, .external_lex_state = 2}, - [1815] = {.lex_state = 140, .external_lex_state = 2}, - [1816] = {.lex_state = 140, .external_lex_state = 2}, - [1817] = {.lex_state = 140, .external_lex_state = 2}, - [1818] = {.lex_state = 140, .external_lex_state = 2}, - [1819] = {.lex_state = 140, .external_lex_state = 2}, - [1820] = {.lex_state = 140, .external_lex_state = 2}, - [1821] = {.lex_state = 140, .external_lex_state = 2}, - [1822] = {.lex_state = 140, .external_lex_state = 2}, - [1823] = {.lex_state = 140, .external_lex_state = 2}, - [1824] = {.lex_state = 140, .external_lex_state = 2}, - [1825] = {.lex_state = 140, .external_lex_state = 2}, - [1826] = {.lex_state = 140, .external_lex_state = 2}, - [1827] = {.lex_state = 140, .external_lex_state = 2}, - [1828] = {.lex_state = 140, .external_lex_state = 2}, - [1829] = {.lex_state = 140, .external_lex_state = 2}, - [1830] = {.lex_state = 140, .external_lex_state = 2}, - [1831] = {.lex_state = 140, .external_lex_state = 2}, - [1832] = {.lex_state = 140, .external_lex_state = 2}, - [1833] = {.lex_state = 140, .external_lex_state = 2}, - [1834] = {.lex_state = 140, .external_lex_state = 2}, - [1835] = {.lex_state = 140, .external_lex_state = 2}, - [1836] = {.lex_state = 140, .external_lex_state = 2}, - [1837] = {.lex_state = 140, .external_lex_state = 2}, - [1838] = {.lex_state = 140, .external_lex_state = 2}, - [1839] = {.lex_state = 140, .external_lex_state = 2}, - [1840] = {.lex_state = 140, .external_lex_state = 2}, - [1841] = {.lex_state = 140, .external_lex_state = 2}, - [1842] = {.lex_state = 140, .external_lex_state = 2}, - [1843] = {.lex_state = 140, .external_lex_state = 2}, - [1844] = {.lex_state = 140, .external_lex_state = 2}, - [1845] = {.lex_state = 140, .external_lex_state = 2}, - [1846] = {.lex_state = 140, .external_lex_state = 2}, - [1847] = {.lex_state = 140, .external_lex_state = 2}, - [1848] = {.lex_state = 140, .external_lex_state = 2}, - [1849] = {.lex_state = 140, .external_lex_state = 2}, - [1850] = {.lex_state = 140, .external_lex_state = 2}, - [1851] = {.lex_state = 140, .external_lex_state = 2}, - [1852] = {.lex_state = 140, .external_lex_state = 2}, - [1853] = {.lex_state = 140, .external_lex_state = 2}, - [1854] = {.lex_state = 140, .external_lex_state = 2}, - [1855] = {.lex_state = 140, .external_lex_state = 2}, - [1856] = {.lex_state = 140, .external_lex_state = 2}, - [1857] = {.lex_state = 140, .external_lex_state = 2}, - [1858] = {.lex_state = 140, .external_lex_state = 2}, - [1859] = {.lex_state = 140, .external_lex_state = 2}, - [1860] = {.lex_state = 140, .external_lex_state = 2}, - [1861] = {.lex_state = 140, .external_lex_state = 2}, - [1862] = {.lex_state = 140, .external_lex_state = 2}, - [1863] = {.lex_state = 140, .external_lex_state = 2}, - [1864] = {.lex_state = 140, .external_lex_state = 2}, - [1865] = {.lex_state = 140, .external_lex_state = 2}, - [1866] = {.lex_state = 140, .external_lex_state = 2}, - [1867] = {.lex_state = 140, .external_lex_state = 2}, - [1868] = {.lex_state = 140, .external_lex_state = 2}, - [1869] = {.lex_state = 140, .external_lex_state = 2}, - [1870] = {.lex_state = 140, .external_lex_state = 2}, - [1871] = {.lex_state = 140, .external_lex_state = 2}, - [1872] = {.lex_state = 140, .external_lex_state = 2}, - [1873] = {.lex_state = 140, .external_lex_state = 2}, - [1874] = {.lex_state = 140, .external_lex_state = 2}, - [1875] = {.lex_state = 140, .external_lex_state = 2}, - [1876] = {.lex_state = 140, .external_lex_state = 2}, - [1877] = {.lex_state = 140, .external_lex_state = 2}, - [1878] = {.lex_state = 140, .external_lex_state = 2}, - [1879] = {.lex_state = 140, .external_lex_state = 2}, - [1880] = {.lex_state = 140, .external_lex_state = 2}, - [1881] = {.lex_state = 140, .external_lex_state = 2}, - [1882] = {.lex_state = 140, .external_lex_state = 2}, - [1883] = {.lex_state = 140, .external_lex_state = 2}, - [1884] = {.lex_state = 140, .external_lex_state = 2}, - [1885] = {.lex_state = 140, .external_lex_state = 2}, - [1886] = {.lex_state = 140, .external_lex_state = 2}, - [1887] = {.lex_state = 140, .external_lex_state = 2}, - [1888] = {.lex_state = 140, .external_lex_state = 2}, - [1889] = {.lex_state = 140, .external_lex_state = 2}, - [1890] = {.lex_state = 140, .external_lex_state = 2}, - [1891] = {.lex_state = 140, .external_lex_state = 2}, - [1892] = {.lex_state = 140, .external_lex_state = 2}, - [1893] = {.lex_state = 140, .external_lex_state = 2}, - [1894] = {.lex_state = 140, .external_lex_state = 2}, - [1895] = {.lex_state = 140, .external_lex_state = 2}, - [1896] = {.lex_state = 140, .external_lex_state = 2}, - [1897] = {.lex_state = 140, .external_lex_state = 2}, - [1898] = {.lex_state = 140, .external_lex_state = 2}, - [1899] = {.lex_state = 140, .external_lex_state = 2}, - [1900] = {.lex_state = 140, .external_lex_state = 2}, - [1901] = {.lex_state = 140, .external_lex_state = 2}, - [1902] = {.lex_state = 140, .external_lex_state = 2}, - [1903] = {.lex_state = 140, .external_lex_state = 2}, - [1904] = {.lex_state = 140, .external_lex_state = 2}, - [1905] = {.lex_state = 140, .external_lex_state = 2}, - [1906] = {.lex_state = 140, .external_lex_state = 2}, - [1907] = {.lex_state = 140, .external_lex_state = 2}, - [1908] = {.lex_state = 140, .external_lex_state = 2}, - [1909] = {.lex_state = 140, .external_lex_state = 2}, - [1910] = {.lex_state = 140, .external_lex_state = 2}, - [1911] = {.lex_state = 140, .external_lex_state = 2}, - [1912] = {.lex_state = 140, .external_lex_state = 2}, - [1913] = {.lex_state = 140, .external_lex_state = 2}, - [1914] = {.lex_state = 140, .external_lex_state = 2}, - [1915] = {.lex_state = 140, .external_lex_state = 2}, - [1916] = {.lex_state = 140, .external_lex_state = 2}, - [1917] = {.lex_state = 138, .external_lex_state = 2}, - [1918] = {.lex_state = 138, .external_lex_state = 2}, - [1919] = {.lex_state = 138, .external_lex_state = 2}, - [1920] = {.lex_state = 139, .external_lex_state = 2}, - [1921] = {.lex_state = 139, .external_lex_state = 2}, - [1922] = {.lex_state = 139, .external_lex_state = 2}, - [1923] = {.lex_state = 139, .external_lex_state = 2}, - [1924] = {.lex_state = 139, .external_lex_state = 2}, - [1925] = {.lex_state = 139, .external_lex_state = 2}, - [1926] = {.lex_state = 140}, - [1927] = {.lex_state = 140}, - [1928] = {.lex_state = 140}, - [1929] = {.lex_state = 140}, - [1930] = {.lex_state = 140}, - [1931] = {.lex_state = 140}, - [1932] = {.lex_state = 140, .external_lex_state = 2}, - [1933] = {.lex_state = 140, .external_lex_state = 2}, - [1934] = {.lex_state = 140}, - [1935] = {.lex_state = 140}, - [1936] = {.lex_state = 140}, - [1937] = {.lex_state = 140}, - [1938] = {.lex_state = 140, .external_lex_state = 2}, - [1939] = {.lex_state = 140}, - [1940] = {.lex_state = 140, .external_lex_state = 2}, - [1941] = {.lex_state = 140, .external_lex_state = 2}, - [1942] = {.lex_state = 140, .external_lex_state = 2}, - [1943] = {.lex_state = 140, .external_lex_state = 2}, - [1944] = {.lex_state = 140, .external_lex_state = 2}, - [1945] = {.lex_state = 140, .external_lex_state = 2}, - [1946] = {.lex_state = 140, .external_lex_state = 2}, - [1947] = {.lex_state = 140, .external_lex_state = 2}, - [1948] = {.lex_state = 140, .external_lex_state = 2}, - [1949] = {.lex_state = 140, .external_lex_state = 2}, - [1950] = {.lex_state = 140, .external_lex_state = 2}, - [1951] = {.lex_state = 140, .external_lex_state = 2}, - [1952] = {.lex_state = 140, .external_lex_state = 2}, - [1953] = {.lex_state = 140, .external_lex_state = 2}, - [1954] = {.lex_state = 140, .external_lex_state = 2}, - [1955] = {.lex_state = 140, .external_lex_state = 2}, - [1956] = {.lex_state = 140, .external_lex_state = 2}, - [1957] = {.lex_state = 140, .external_lex_state = 2}, - [1958] = {.lex_state = 140, .external_lex_state = 2}, - [1959] = {.lex_state = 140, .external_lex_state = 2}, - [1960] = {.lex_state = 140, .external_lex_state = 2}, - [1961] = {.lex_state = 140, .external_lex_state = 2}, - [1962] = {.lex_state = 140, .external_lex_state = 2}, - [1963] = {.lex_state = 140, .external_lex_state = 2}, - [1964] = {.lex_state = 140, .external_lex_state = 2}, - [1965] = {.lex_state = 140, .external_lex_state = 2}, - [1966] = {.lex_state = 140, .external_lex_state = 2}, - [1967] = {.lex_state = 140, .external_lex_state = 2}, - [1968] = {.lex_state = 140, .external_lex_state = 2}, - [1969] = {.lex_state = 140, .external_lex_state = 2}, - [1970] = {.lex_state = 140, .external_lex_state = 2}, - [1971] = {.lex_state = 140, .external_lex_state = 2}, - [1972] = {.lex_state = 140, .external_lex_state = 2}, - [1973] = {.lex_state = 140, .external_lex_state = 2}, - [1974] = {.lex_state = 140, .external_lex_state = 2}, - [1975] = {.lex_state = 140, .external_lex_state = 2}, - [1976] = {.lex_state = 140, .external_lex_state = 2}, - [1977] = {.lex_state = 140, .external_lex_state = 2}, - [1978] = {.lex_state = 140, .external_lex_state = 2}, - [1979] = {.lex_state = 140, .external_lex_state = 2}, - [1980] = {.lex_state = 140, .external_lex_state = 2}, - [1981] = {.lex_state = 140, .external_lex_state = 2}, - [1982] = {.lex_state = 140, .external_lex_state = 2}, - [1983] = {.lex_state = 140, .external_lex_state = 2}, - [1984] = {.lex_state = 140, .external_lex_state = 2}, - [1985] = {.lex_state = 140, .external_lex_state = 2}, - [1986] = {.lex_state = 140, .external_lex_state = 2}, - [1987] = {.lex_state = 140, .external_lex_state = 2}, - [1988] = {.lex_state = 140, .external_lex_state = 2}, - [1989] = {.lex_state = 140, .external_lex_state = 2}, - [1990] = {.lex_state = 140, .external_lex_state = 2}, - [1991] = {.lex_state = 140, .external_lex_state = 2}, - [1992] = {.lex_state = 140, .external_lex_state = 2}, - [1993] = {.lex_state = 140, .external_lex_state = 2}, - [1994] = {.lex_state = 140, .external_lex_state = 2}, - [1995] = {.lex_state = 140, .external_lex_state = 2}, - [1996] = {.lex_state = 140, .external_lex_state = 2}, - [1997] = {.lex_state = 140, .external_lex_state = 2}, - [1998] = {.lex_state = 140, .external_lex_state = 2}, - [1999] = {.lex_state = 140, .external_lex_state = 2}, - [2000] = {.lex_state = 140, .external_lex_state = 2}, - [2001] = {.lex_state = 140, .external_lex_state = 2}, - [2002] = {.lex_state = 140, .external_lex_state = 2}, - [2003] = {.lex_state = 140, .external_lex_state = 2}, - [2004] = {.lex_state = 140, .external_lex_state = 2}, - [2005] = {.lex_state = 140, .external_lex_state = 2}, - [2006] = {.lex_state = 140, .external_lex_state = 2}, - [2007] = {.lex_state = 140, .external_lex_state = 2}, - [2008] = {.lex_state = 140, .external_lex_state = 2}, - [2009] = {.lex_state = 140, .external_lex_state = 2}, - [2010] = {.lex_state = 140, .external_lex_state = 2}, - [2011] = {.lex_state = 140, .external_lex_state = 2}, - [2012] = {.lex_state = 140, .external_lex_state = 2}, - [2013] = {.lex_state = 140, .external_lex_state = 2}, - [2014] = {.lex_state = 140, .external_lex_state = 2}, - [2015] = {.lex_state = 140, .external_lex_state = 2}, - [2016] = {.lex_state = 140, .external_lex_state = 2}, - [2017] = {.lex_state = 140, .external_lex_state = 2}, - [2018] = {.lex_state = 140, .external_lex_state = 2}, - [2019] = {.lex_state = 140, .external_lex_state = 2}, - [2020] = {.lex_state = 140, .external_lex_state = 2}, - [2021] = {.lex_state = 140, .external_lex_state = 2}, - [2022] = {.lex_state = 140, .external_lex_state = 2}, - [2023] = {.lex_state = 140, .external_lex_state = 2}, - [2024] = {.lex_state = 140, .external_lex_state = 2}, - [2025] = {.lex_state = 140, .external_lex_state = 2}, - [2026] = {.lex_state = 140, .external_lex_state = 2}, - [2027] = {.lex_state = 140, .external_lex_state = 2}, - [2028] = {.lex_state = 140, .external_lex_state = 2}, - [2029] = {.lex_state = 140, .external_lex_state = 2}, - [2030] = {.lex_state = 140, .external_lex_state = 2}, - [2031] = {.lex_state = 140, .external_lex_state = 2}, - [2032] = {.lex_state = 140, .external_lex_state = 2}, - [2033] = {.lex_state = 140, .external_lex_state = 2}, - [2034] = {.lex_state = 140, .external_lex_state = 2}, - [2035] = {.lex_state = 140, .external_lex_state = 2}, - [2036] = {.lex_state = 140, .external_lex_state = 2}, - [2037] = {.lex_state = 140, .external_lex_state = 2}, - [2038] = {.lex_state = 140, .external_lex_state = 2}, - [2039] = {.lex_state = 140, .external_lex_state = 2}, - [2040] = {.lex_state = 140, .external_lex_state = 2}, - [2041] = {.lex_state = 140, .external_lex_state = 2}, - [2042] = {.lex_state = 140, .external_lex_state = 2}, - [2043] = {.lex_state = 140, .external_lex_state = 2}, - [2044] = {.lex_state = 140, .external_lex_state = 2}, - [2045] = {.lex_state = 140, .external_lex_state = 2}, - [2046] = {.lex_state = 140, .external_lex_state = 2}, - [2047] = {.lex_state = 140, .external_lex_state = 2}, - [2048] = {.lex_state = 140, .external_lex_state = 2}, - [2049] = {.lex_state = 140, .external_lex_state = 2}, - [2050] = {.lex_state = 140, .external_lex_state = 2}, - [2051] = {.lex_state = 140, .external_lex_state = 2}, - [2052] = {.lex_state = 140, .external_lex_state = 2}, - [2053] = {.lex_state = 140, .external_lex_state = 2}, - [2054] = {.lex_state = 140, .external_lex_state = 2}, - [2055] = {.lex_state = 140, .external_lex_state = 2}, - [2056] = {.lex_state = 140, .external_lex_state = 2}, - [2057] = {.lex_state = 140, .external_lex_state = 2}, - [2058] = {.lex_state = 140, .external_lex_state = 2}, - [2059] = {.lex_state = 140, .external_lex_state = 2}, - [2060] = {.lex_state = 140, .external_lex_state = 2}, - [2061] = {.lex_state = 140, .external_lex_state = 2}, - [2062] = {.lex_state = 140, .external_lex_state = 2}, - [2063] = {.lex_state = 140, .external_lex_state = 2}, - [2064] = {.lex_state = 140, .external_lex_state = 2}, - [2065] = {.lex_state = 140, .external_lex_state = 2}, - [2066] = {.lex_state = 140, .external_lex_state = 2}, - [2067] = {.lex_state = 140, .external_lex_state = 2}, - [2068] = {.lex_state = 140, .external_lex_state = 2}, - [2069] = {.lex_state = 140, .external_lex_state = 2}, - [2070] = {.lex_state = 140, .external_lex_state = 2}, - [2071] = {.lex_state = 140, .external_lex_state = 2}, - [2072] = {.lex_state = 140, .external_lex_state = 2}, - [2073] = {.lex_state = 140, .external_lex_state = 2}, - [2074] = {.lex_state = 140, .external_lex_state = 2}, - [2075] = {.lex_state = 140, .external_lex_state = 2}, - [2076] = {.lex_state = 140, .external_lex_state = 2}, - [2077] = {.lex_state = 140, .external_lex_state = 2}, - [2078] = {.lex_state = 140, .external_lex_state = 2}, - [2079] = {.lex_state = 138}, - [2080] = {.lex_state = 140, .external_lex_state = 2}, - [2081] = {.lex_state = 140, .external_lex_state = 2}, - [2082] = {.lex_state = 140, .external_lex_state = 2}, - [2083] = {.lex_state = 140, .external_lex_state = 2}, - [2084] = {.lex_state = 140, .external_lex_state = 2}, - [2085] = {.lex_state = 140, .external_lex_state = 2}, - [2086] = {.lex_state = 140, .external_lex_state = 2}, - [2087] = {.lex_state = 140, .external_lex_state = 2}, - [2088] = {.lex_state = 140, .external_lex_state = 2}, - [2089] = {.lex_state = 140, .external_lex_state = 2}, - [2090] = {.lex_state = 140, .external_lex_state = 2}, - [2091] = {.lex_state = 140, .external_lex_state = 2}, - [2092] = {.lex_state = 140, .external_lex_state = 2}, - [2093] = {.lex_state = 140, .external_lex_state = 2}, - [2094] = {.lex_state = 140, .external_lex_state = 2}, - [2095] = {.lex_state = 140, .external_lex_state = 2}, - [2096] = {.lex_state = 140, .external_lex_state = 2}, - [2097] = {.lex_state = 140, .external_lex_state = 2}, - [2098] = {.lex_state = 140, .external_lex_state = 2}, - [2099] = {.lex_state = 140, .external_lex_state = 2}, - [2100] = {.lex_state = 140, .external_lex_state = 2}, - [2101] = {.lex_state = 140, .external_lex_state = 2}, - [2102] = {.lex_state = 140, .external_lex_state = 2}, - [2103] = {.lex_state = 140, .external_lex_state = 2}, - [2104] = {.lex_state = 140, .external_lex_state = 2}, - [2105] = {.lex_state = 140, .external_lex_state = 2}, - [2106] = {.lex_state = 140, .external_lex_state = 2}, - [2107] = {.lex_state = 140, .external_lex_state = 2}, - [2108] = {.lex_state = 140, .external_lex_state = 2}, - [2109] = {.lex_state = 140, .external_lex_state = 2}, - [2110] = {.lex_state = 140, .external_lex_state = 2}, - [2111] = {.lex_state = 140, .external_lex_state = 2}, - [2112] = {.lex_state = 140, .external_lex_state = 2}, - [2113] = {.lex_state = 140, .external_lex_state = 2}, - [2114] = {.lex_state = 140, .external_lex_state = 2}, - [2115] = {.lex_state = 140, .external_lex_state = 2}, - [2116] = {.lex_state = 138}, - [2117] = {.lex_state = 140, .external_lex_state = 2}, - [2118] = {.lex_state = 140, .external_lex_state = 2}, - [2119] = {.lex_state = 140, .external_lex_state = 2}, - [2120] = {.lex_state = 140, .external_lex_state = 2}, - [2121] = {.lex_state = 140, .external_lex_state = 2}, - [2122] = {.lex_state = 140, .external_lex_state = 2}, - [2123] = {.lex_state = 140, .external_lex_state = 2}, - [2124] = {.lex_state = 140, .external_lex_state = 2}, - [2125] = {.lex_state = 140, .external_lex_state = 2}, - [2126] = {.lex_state = 140, .external_lex_state = 2}, - [2127] = {.lex_state = 140, .external_lex_state = 2}, - [2128] = {.lex_state = 140, .external_lex_state = 2}, - [2129] = {.lex_state = 140, .external_lex_state = 2}, - [2130] = {.lex_state = 140, .external_lex_state = 2}, - [2131] = {.lex_state = 140, .external_lex_state = 2}, - [2132] = {.lex_state = 140, .external_lex_state = 2}, - [2133] = {.lex_state = 140, .external_lex_state = 2}, - [2134] = {.lex_state = 140, .external_lex_state = 2}, - [2135] = {.lex_state = 140, .external_lex_state = 2}, - [2136] = {.lex_state = 140, .external_lex_state = 2}, - [2137] = {.lex_state = 140, .external_lex_state = 2}, - [2138] = {.lex_state = 140, .external_lex_state = 2}, - [2139] = {.lex_state = 140, .external_lex_state = 2}, - [2140] = {.lex_state = 140, .external_lex_state = 2}, - [2141] = {.lex_state = 140, .external_lex_state = 2}, - [2142] = {.lex_state = 140, .external_lex_state = 2}, - [2143] = {.lex_state = 140, .external_lex_state = 2}, - [2144] = {.lex_state = 140, .external_lex_state = 2}, - [2145] = {.lex_state = 140, .external_lex_state = 2}, - [2146] = {.lex_state = 140, .external_lex_state = 2}, - [2147] = {.lex_state = 140, .external_lex_state = 2}, - [2148] = {.lex_state = 140, .external_lex_state = 2}, - [2149] = {.lex_state = 140, .external_lex_state = 2}, - [2150] = {.lex_state = 140, .external_lex_state = 2}, - [2151] = {.lex_state = 140, .external_lex_state = 2}, - [2152] = {.lex_state = 140, .external_lex_state = 2}, - [2153] = {.lex_state = 140, .external_lex_state = 2}, - [2154] = {.lex_state = 140, .external_lex_state = 2}, - [2155] = {.lex_state = 140, .external_lex_state = 2}, - [2156] = {.lex_state = 140, .external_lex_state = 2}, - [2157] = {.lex_state = 140, .external_lex_state = 2}, - [2158] = {.lex_state = 140, .external_lex_state = 2}, - [2159] = {.lex_state = 140, .external_lex_state = 2}, - [2160] = {.lex_state = 140, .external_lex_state = 2}, - [2161] = {.lex_state = 140, .external_lex_state = 2}, - [2162] = {.lex_state = 140, .external_lex_state = 2}, - [2163] = {.lex_state = 140, .external_lex_state = 2}, - [2164] = {.lex_state = 140, .external_lex_state = 2}, - [2165] = {.lex_state = 138}, - [2166] = {.lex_state = 140, .external_lex_state = 2}, - [2167] = {.lex_state = 140, .external_lex_state = 2}, - [2168] = {.lex_state = 138, .external_lex_state = 4}, - [2169] = {.lex_state = 140, .external_lex_state = 2}, - [2170] = {.lex_state = 140, .external_lex_state = 2}, - [2171] = {.lex_state = 140, .external_lex_state = 2}, - [2172] = {.lex_state = 140, .external_lex_state = 2}, - [2173] = {.lex_state = 140, .external_lex_state = 2}, - [2174] = {.lex_state = 140, .external_lex_state = 2}, - [2175] = {.lex_state = 140, .external_lex_state = 2}, - [2176] = {.lex_state = 140, .external_lex_state = 2}, - [2177] = {.lex_state = 140, .external_lex_state = 2}, - [2178] = {.lex_state = 140, .external_lex_state = 2}, - [2179] = {.lex_state = 140, .external_lex_state = 2}, - [2180] = {.lex_state = 140, .external_lex_state = 2}, - [2181] = {.lex_state = 140, .external_lex_state = 2}, - [2182] = {.lex_state = 140, .external_lex_state = 2}, - [2183] = {.lex_state = 140, .external_lex_state = 2}, - [2184] = {.lex_state = 140, .external_lex_state = 2}, - [2185] = {.lex_state = 140, .external_lex_state = 2}, - [2186] = {.lex_state = 140, .external_lex_state = 2}, - [2187] = {.lex_state = 140, .external_lex_state = 2}, - [2188] = {.lex_state = 140, .external_lex_state = 2}, - [2189] = {.lex_state = 140, .external_lex_state = 2}, - [2190] = {.lex_state = 140, .external_lex_state = 2}, - [2191] = {.lex_state = 140, .external_lex_state = 2}, - [2192] = {.lex_state = 140, .external_lex_state = 2}, - [2193] = {.lex_state = 140, .external_lex_state = 2}, - [2194] = {.lex_state = 140, .external_lex_state = 2}, - [2195] = {.lex_state = 140, .external_lex_state = 2}, - [2196] = {.lex_state = 140, .external_lex_state = 2}, - [2197] = {.lex_state = 138}, - [2198] = {.lex_state = 138}, - [2199] = {.lex_state = 138}, - [2200] = {.lex_state = 138}, - [2201] = {.lex_state = 138}, - [2202] = {.lex_state = 138}, - [2203] = {.lex_state = 138}, - [2204] = {.lex_state = 138}, - [2205] = {.lex_state = 138, .external_lex_state = 4}, - [2206] = {.lex_state = 138}, - [2207] = {.lex_state = 138}, - [2208] = {.lex_state = 138}, - [2209] = {.lex_state = 5}, - [2210] = {.lex_state = 138}, + [287] = {.lex_state = 141, .external_lex_state = 2}, + [288] = {.lex_state = 141, .external_lex_state = 2}, + [289] = {.lex_state = 141, .external_lex_state = 2}, + [290] = {.lex_state = 141, .external_lex_state = 2}, + [291] = {.lex_state = 141, .external_lex_state = 2}, + [292] = {.lex_state = 141, .external_lex_state = 2}, + [293] = {.lex_state = 141, .external_lex_state = 2}, + [294] = {.lex_state = 141, .external_lex_state = 2}, + [295] = {.lex_state = 141, .external_lex_state = 2}, + [296] = {.lex_state = 141, .external_lex_state = 2}, + [297] = {.lex_state = 141, .external_lex_state = 2}, + [298] = {.lex_state = 141, .external_lex_state = 2}, + [299] = {.lex_state = 141, .external_lex_state = 2}, + [300] = {.lex_state = 141, .external_lex_state = 2}, + [301] = {.lex_state = 141, .external_lex_state = 2}, + [302] = {.lex_state = 141, .external_lex_state = 2}, + [303] = {.lex_state = 141, .external_lex_state = 2}, + [304] = {.lex_state = 141, .external_lex_state = 2}, + [305] = {.lex_state = 141, .external_lex_state = 2}, + [306] = {.lex_state = 141, .external_lex_state = 2}, + [307] = {.lex_state = 141, .external_lex_state = 2}, + [308] = {.lex_state = 141, .external_lex_state = 2}, + [309] = {.lex_state = 141, .external_lex_state = 2}, + [310] = {.lex_state = 141, .external_lex_state = 2}, + [311] = {.lex_state = 141, .external_lex_state = 2}, + [312] = {.lex_state = 141, .external_lex_state = 2}, + [313] = {.lex_state = 141, .external_lex_state = 2}, + [314] = {.lex_state = 141, .external_lex_state = 2}, + [315] = {.lex_state = 141, .external_lex_state = 2}, + [316] = {.lex_state = 141, .external_lex_state = 2}, + [317] = {.lex_state = 141, .external_lex_state = 2}, + [318] = {.lex_state = 141, .external_lex_state = 2}, + [319] = {.lex_state = 141, .external_lex_state = 2}, + [320] = {.lex_state = 141, .external_lex_state = 2}, + [321] = {.lex_state = 141, .external_lex_state = 2}, + [322] = {.lex_state = 141, .external_lex_state = 2}, + [323] = {.lex_state = 141, .external_lex_state = 2}, + [324] = {.lex_state = 141, .external_lex_state = 2}, + [325] = {.lex_state = 141, .external_lex_state = 2}, + [326] = {.lex_state = 141, .external_lex_state = 2}, + [327] = {.lex_state = 141, .external_lex_state = 2}, + [328] = {.lex_state = 141, .external_lex_state = 2}, + [329] = {.lex_state = 141, .external_lex_state = 2}, + [330] = {.lex_state = 141, .external_lex_state = 2}, + [331] = {.lex_state = 141, .external_lex_state = 2}, + [332] = {.lex_state = 141, .external_lex_state = 2}, + [333] = {.lex_state = 141, .external_lex_state = 2}, + [334] = {.lex_state = 141, .external_lex_state = 2}, + [335] = {.lex_state = 141, .external_lex_state = 2}, + [336] = {.lex_state = 141, .external_lex_state = 2}, + [337] = {.lex_state = 141, .external_lex_state = 2}, + [338] = {.lex_state = 141, .external_lex_state = 2}, + [339] = {.lex_state = 141, .external_lex_state = 2}, + [340] = {.lex_state = 141, .external_lex_state = 2}, + [341] = {.lex_state = 141, .external_lex_state = 2}, + [342] = {.lex_state = 141, .external_lex_state = 2}, + [343] = {.lex_state = 141, .external_lex_state = 2}, + [344] = {.lex_state = 141, .external_lex_state = 2}, + [345] = {.lex_state = 141, .external_lex_state = 2}, + [346] = {.lex_state = 141, .external_lex_state = 2}, + [347] = {.lex_state = 141, .external_lex_state = 2}, + [348] = {.lex_state = 141, .external_lex_state = 2}, + [349] = {.lex_state = 141, .external_lex_state = 2}, + [350] = {.lex_state = 141, .external_lex_state = 2}, + [351] = {.lex_state = 141, .external_lex_state = 2}, + [352] = {.lex_state = 141, .external_lex_state = 2}, + [353] = {.lex_state = 141, .external_lex_state = 2}, + [354] = {.lex_state = 141, .external_lex_state = 2}, + [355] = {.lex_state = 141, .external_lex_state = 2}, + [356] = {.lex_state = 141, .external_lex_state = 2}, + [357] = {.lex_state = 141, .external_lex_state = 2}, + [358] = {.lex_state = 141, .external_lex_state = 2}, + [359] = {.lex_state = 141, .external_lex_state = 2}, + [360] = {.lex_state = 141, .external_lex_state = 2}, + [361] = {.lex_state = 141, .external_lex_state = 2}, + [362] = {.lex_state = 141, .external_lex_state = 2}, + [363] = {.lex_state = 141, .external_lex_state = 2}, + [364] = {.lex_state = 141, .external_lex_state = 2}, + [365] = {.lex_state = 141, .external_lex_state = 2}, + [366] = {.lex_state = 141, .external_lex_state = 2}, + [367] = {.lex_state = 141, .external_lex_state = 2}, + [368] = {.lex_state = 141, .external_lex_state = 2}, + [369] = {.lex_state = 141, .external_lex_state = 2}, + [370] = {.lex_state = 141, .external_lex_state = 2}, + [371] = {.lex_state = 141, .external_lex_state = 2}, + [372] = {.lex_state = 141, .external_lex_state = 2}, + [373] = {.lex_state = 141, .external_lex_state = 2}, + [374] = {.lex_state = 141, .external_lex_state = 2}, + [375] = {.lex_state = 141, .external_lex_state = 2}, + [376] = {.lex_state = 141, .external_lex_state = 2}, + [377] = {.lex_state = 141, .external_lex_state = 2}, + [378] = {.lex_state = 141, .external_lex_state = 2}, + [379] = {.lex_state = 141, .external_lex_state = 2}, + [380] = {.lex_state = 141, .external_lex_state = 2}, + [381] = {.lex_state = 141, .external_lex_state = 2}, + [382] = {.lex_state = 141, .external_lex_state = 2}, + [383] = {.lex_state = 141, .external_lex_state = 2}, + [384] = {.lex_state = 141, .external_lex_state = 2}, + [385] = {.lex_state = 141, .external_lex_state = 2}, + [386] = {.lex_state = 141, .external_lex_state = 2}, + [387] = {.lex_state = 141, .external_lex_state = 2}, + [388] = {.lex_state = 141, .external_lex_state = 2}, + [389] = {.lex_state = 141, .external_lex_state = 2}, + [390] = {.lex_state = 141, .external_lex_state = 2}, + [391] = {.lex_state = 141, .external_lex_state = 2}, + [392] = {.lex_state = 141, .external_lex_state = 2}, + [393] = {.lex_state = 141, .external_lex_state = 2}, + [394] = {.lex_state = 141, .external_lex_state = 2}, + [395] = {.lex_state = 141, .external_lex_state = 2}, + [396] = {.lex_state = 141, .external_lex_state = 2}, + [397] = {.lex_state = 141, .external_lex_state = 2}, + [398] = {.lex_state = 141, .external_lex_state = 2}, + [399] = {.lex_state = 141, .external_lex_state = 2}, + [400] = {.lex_state = 141, .external_lex_state = 2}, + [401] = {.lex_state = 141, .external_lex_state = 2}, + [402] = {.lex_state = 141, .external_lex_state = 2}, + [403] = {.lex_state = 141, .external_lex_state = 2}, + [404] = {.lex_state = 141, .external_lex_state = 2}, + [405] = {.lex_state = 141, .external_lex_state = 2}, + [406] = {.lex_state = 141, .external_lex_state = 2}, + [407] = {.lex_state = 141, .external_lex_state = 2}, + [408] = {.lex_state = 141, .external_lex_state = 2}, + [409] = {.lex_state = 141, .external_lex_state = 2}, + [410] = {.lex_state = 141, .external_lex_state = 2}, + [411] = {.lex_state = 141, .external_lex_state = 2}, + [412] = {.lex_state = 141, .external_lex_state = 2}, + [413] = {.lex_state = 141, .external_lex_state = 2}, + [414] = {.lex_state = 141, .external_lex_state = 2}, + [415] = {.lex_state = 141, .external_lex_state = 2}, + [416] = {.lex_state = 141, .external_lex_state = 2}, + [417] = {.lex_state = 141, .external_lex_state = 2}, + [418] = {.lex_state = 141, .external_lex_state = 2}, + [419] = {.lex_state = 141, .external_lex_state = 2}, + [420] = {.lex_state = 141, .external_lex_state = 2}, + [421] = {.lex_state = 141, .external_lex_state = 2}, + [422] = {.lex_state = 141, .external_lex_state = 2}, + [423] = {.lex_state = 141, .external_lex_state = 2}, + [424] = {.lex_state = 141, .external_lex_state = 2}, + [425] = {.lex_state = 141, .external_lex_state = 2}, + [426] = {.lex_state = 141, .external_lex_state = 2}, + [427] = {.lex_state = 141, .external_lex_state = 2}, + [428] = {.lex_state = 141, .external_lex_state = 2}, + [429] = {.lex_state = 141, .external_lex_state = 2}, + [430] = {.lex_state = 141, .external_lex_state = 2}, + [431] = {.lex_state = 141, .external_lex_state = 2}, + [432] = {.lex_state = 141, .external_lex_state = 2}, + [433] = {.lex_state = 141, .external_lex_state = 2}, + [434] = {.lex_state = 141, .external_lex_state = 2}, + [435] = {.lex_state = 141, .external_lex_state = 2}, + [436] = {.lex_state = 141, .external_lex_state = 2}, + [437] = {.lex_state = 141, .external_lex_state = 2}, + [438] = {.lex_state = 141, .external_lex_state = 2}, + [439] = {.lex_state = 141, .external_lex_state = 2}, + [440] = {.lex_state = 141, .external_lex_state = 2}, + [441] = {.lex_state = 141, .external_lex_state = 2}, + [442] = {.lex_state = 141, .external_lex_state = 2}, + [443] = {.lex_state = 141, .external_lex_state = 2}, + [444] = {.lex_state = 141, .external_lex_state = 2}, + [445] = {.lex_state = 141, .external_lex_state = 2}, + [446] = {.lex_state = 141, .external_lex_state = 2}, + [447] = {.lex_state = 141, .external_lex_state = 2}, + [448] = {.lex_state = 141, .external_lex_state = 2}, + [449] = {.lex_state = 141, .external_lex_state = 2}, + [450] = {.lex_state = 141, .external_lex_state = 2}, + [451] = {.lex_state = 141, .external_lex_state = 2}, + [452] = {.lex_state = 141, .external_lex_state = 2}, + [453] = {.lex_state = 141, .external_lex_state = 2}, + [454] = {.lex_state = 141, .external_lex_state = 2}, + [455] = {.lex_state = 141, .external_lex_state = 2}, + [456] = {.lex_state = 141, .external_lex_state = 2}, + [457] = {.lex_state = 141, .external_lex_state = 2}, + [458] = {.lex_state = 141, .external_lex_state = 2}, + [459] = {.lex_state = 141, .external_lex_state = 2}, + [460] = {.lex_state = 141, .external_lex_state = 2}, + [461] = {.lex_state = 141, .external_lex_state = 2}, + [462] = {.lex_state = 141, .external_lex_state = 2}, + [463] = {.lex_state = 141, .external_lex_state = 2}, + [464] = {.lex_state = 141, .external_lex_state = 2}, + [465] = {.lex_state = 141, .external_lex_state = 2}, + [466] = {.lex_state = 141, .external_lex_state = 2}, + [467] = {.lex_state = 141, .external_lex_state = 2}, + [468] = {.lex_state = 141, .external_lex_state = 2}, + [469] = {.lex_state = 141, .external_lex_state = 2}, + [470] = {.lex_state = 141, .external_lex_state = 2}, + [471] = {.lex_state = 141, .external_lex_state = 2}, + [472] = {.lex_state = 141, .external_lex_state = 2}, + [473] = {.lex_state = 141, .external_lex_state = 2}, + [474] = {.lex_state = 141, .external_lex_state = 2}, + [475] = {.lex_state = 141, .external_lex_state = 2}, + [476] = {.lex_state = 141, .external_lex_state = 2}, + [477] = {.lex_state = 141, .external_lex_state = 2}, + [478] = {.lex_state = 141, .external_lex_state = 2}, + [479] = {.lex_state = 141, .external_lex_state = 2}, + [480] = {.lex_state = 141, .external_lex_state = 2}, + [481] = {.lex_state = 141, .external_lex_state = 2}, + [482] = {.lex_state = 141, .external_lex_state = 2}, + [483] = {.lex_state = 141, .external_lex_state = 2}, + [484] = {.lex_state = 141, .external_lex_state = 2}, + [485] = {.lex_state = 141, .external_lex_state = 2}, + [486] = {.lex_state = 141, .external_lex_state = 2}, + [487] = {.lex_state = 141, .external_lex_state = 2}, + [488] = {.lex_state = 141, .external_lex_state = 2}, + [489] = {.lex_state = 141, .external_lex_state = 2}, + [490] = {.lex_state = 141, .external_lex_state = 2}, + [491] = {.lex_state = 141, .external_lex_state = 2}, + [492] = {.lex_state = 141, .external_lex_state = 2}, + [493] = {.lex_state = 141, .external_lex_state = 2}, + [494] = {.lex_state = 141, .external_lex_state = 2}, + [495] = {.lex_state = 141, .external_lex_state = 2}, + [496] = {.lex_state = 141, .external_lex_state = 2}, + [497] = {.lex_state = 141, .external_lex_state = 2}, + [498] = {.lex_state = 141, .external_lex_state = 2}, + [499] = {.lex_state = 141, .external_lex_state = 2}, + [500] = {.lex_state = 141, .external_lex_state = 2}, + [501] = {.lex_state = 141, .external_lex_state = 2}, + [502] = {.lex_state = 141, .external_lex_state = 2}, + [503] = {.lex_state = 141, .external_lex_state = 2}, + [504] = {.lex_state = 141, .external_lex_state = 2}, + [505] = {.lex_state = 141, .external_lex_state = 2}, + [506] = {.lex_state = 141, .external_lex_state = 2}, + [507] = {.lex_state = 141, .external_lex_state = 2}, + [508] = {.lex_state = 141, .external_lex_state = 2}, + [509] = {.lex_state = 141, .external_lex_state = 2}, + [510] = {.lex_state = 141, .external_lex_state = 2}, + [511] = {.lex_state = 141, .external_lex_state = 2}, + [512] = {.lex_state = 141, .external_lex_state = 2}, + [513] = {.lex_state = 141, .external_lex_state = 2}, + [514] = {.lex_state = 141, .external_lex_state = 2}, + [515] = {.lex_state = 141, .external_lex_state = 2}, + [516] = {.lex_state = 141, .external_lex_state = 2}, + [517] = {.lex_state = 141, .external_lex_state = 2}, + [518] = {.lex_state = 141, .external_lex_state = 2}, + [519] = {.lex_state = 141, .external_lex_state = 2}, + [520] = {.lex_state = 141, .external_lex_state = 2}, + [521] = {.lex_state = 141, .external_lex_state = 2}, + [522] = {.lex_state = 141, .external_lex_state = 2}, + [523] = {.lex_state = 141, .external_lex_state = 2}, + [524] = {.lex_state = 141, .external_lex_state = 2}, + [525] = {.lex_state = 141, .external_lex_state = 2}, + [526] = {.lex_state = 141, .external_lex_state = 2}, + [527] = {.lex_state = 141, .external_lex_state = 2}, + [528] = {.lex_state = 141, .external_lex_state = 2}, + [529] = {.lex_state = 141, .external_lex_state = 2}, + [530] = {.lex_state = 141, .external_lex_state = 2}, + [531] = {.lex_state = 141, .external_lex_state = 2}, + [532] = {.lex_state = 141, .external_lex_state = 2}, + [533] = {.lex_state = 141, .external_lex_state = 2}, + [534] = {.lex_state = 141, .external_lex_state = 2}, + [535] = {.lex_state = 141, .external_lex_state = 2}, + [536] = {.lex_state = 141, .external_lex_state = 2}, + [537] = {.lex_state = 141, .external_lex_state = 2}, + [538] = {.lex_state = 141, .external_lex_state = 2}, + [539] = {.lex_state = 141, .external_lex_state = 2}, + [540] = {.lex_state = 141, .external_lex_state = 2}, + [541] = {.lex_state = 141, .external_lex_state = 2}, + [542] = {.lex_state = 141, .external_lex_state = 2}, + [543] = {.lex_state = 141, .external_lex_state = 2}, + [544] = {.lex_state = 141, .external_lex_state = 2}, + [545] = {.lex_state = 141, .external_lex_state = 2}, + [546] = {.lex_state = 141, .external_lex_state = 2}, + [547] = {.lex_state = 141, .external_lex_state = 2}, + [548] = {.lex_state = 141, .external_lex_state = 2}, + [549] = {.lex_state = 141, .external_lex_state = 2}, + [550] = {.lex_state = 141, .external_lex_state = 2}, + [551] = {.lex_state = 141, .external_lex_state = 2}, + [552] = {.lex_state = 141, .external_lex_state = 2}, + [553] = {.lex_state = 141, .external_lex_state = 2}, + [554] = {.lex_state = 141, .external_lex_state = 2}, + [555] = {.lex_state = 141, .external_lex_state = 2}, + [556] = {.lex_state = 141, .external_lex_state = 2}, + [557] = {.lex_state = 141, .external_lex_state = 2}, + [558] = {.lex_state = 141, .external_lex_state = 2}, + [559] = {.lex_state = 141, .external_lex_state = 2}, + [560] = {.lex_state = 141, .external_lex_state = 2}, + [561] = {.lex_state = 141, .external_lex_state = 2}, + [562] = {.lex_state = 141, .external_lex_state = 2}, + [563] = {.lex_state = 141, .external_lex_state = 2}, + [564] = {.lex_state = 141, .external_lex_state = 2}, + [565] = {.lex_state = 141, .external_lex_state = 2}, + [566] = {.lex_state = 141, .external_lex_state = 2}, + [567] = {.lex_state = 141, .external_lex_state = 2}, + [568] = {.lex_state = 141, .external_lex_state = 2}, + [569] = {.lex_state = 141, .external_lex_state = 2}, + [570] = {.lex_state = 141, .external_lex_state = 2}, + [571] = {.lex_state = 141, .external_lex_state = 2}, + [572] = {.lex_state = 141, .external_lex_state = 2}, + [573] = {.lex_state = 141, .external_lex_state = 2}, + [574] = {.lex_state = 141, .external_lex_state = 2}, + [575] = {.lex_state = 141, .external_lex_state = 2}, + [576] = {.lex_state = 141, .external_lex_state = 2}, + [577] = {.lex_state = 141, .external_lex_state = 2}, + [578] = {.lex_state = 141, .external_lex_state = 2}, + [579] = {.lex_state = 141, .external_lex_state = 2}, + [580] = {.lex_state = 141, .external_lex_state = 2}, + [581] = {.lex_state = 141, .external_lex_state = 2}, + [582] = {.lex_state = 141, .external_lex_state = 2}, + [583] = {.lex_state = 141, .external_lex_state = 2}, + [584] = {.lex_state = 141, .external_lex_state = 2}, + [585] = {.lex_state = 141, .external_lex_state = 2}, + [586] = {.lex_state = 141, .external_lex_state = 2}, + [587] = {.lex_state = 141, .external_lex_state = 2}, + [588] = {.lex_state = 141, .external_lex_state = 2}, + [589] = {.lex_state = 141, .external_lex_state = 2}, + [590] = {.lex_state = 141, .external_lex_state = 2}, + [591] = {.lex_state = 141, .external_lex_state = 2}, + [592] = {.lex_state = 141, .external_lex_state = 2}, + [593] = {.lex_state = 141, .external_lex_state = 2}, + [594] = {.lex_state = 141, .external_lex_state = 2}, + [595] = {.lex_state = 141, .external_lex_state = 2}, + [596] = {.lex_state = 141, .external_lex_state = 2}, + [597] = {.lex_state = 141, .external_lex_state = 2}, + [598] = {.lex_state = 141, .external_lex_state = 2}, + [599] = {.lex_state = 141, .external_lex_state = 2}, + [600] = {.lex_state = 141, .external_lex_state = 2}, + [601] = {.lex_state = 141, .external_lex_state = 2}, + [602] = {.lex_state = 141, .external_lex_state = 2}, + [603] = {.lex_state = 141, .external_lex_state = 2}, + [604] = {.lex_state = 141, .external_lex_state = 2}, + [605] = {.lex_state = 141, .external_lex_state = 2}, + [606] = {.lex_state = 141, .external_lex_state = 2}, + [607] = {.lex_state = 141, .external_lex_state = 2}, + [608] = {.lex_state = 141, .external_lex_state = 2}, + [609] = {.lex_state = 141, .external_lex_state = 2}, + [610] = {.lex_state = 141, .external_lex_state = 2}, + [611] = {.lex_state = 141, .external_lex_state = 2}, + [612] = {.lex_state = 141, .external_lex_state = 2}, + [613] = {.lex_state = 141, .external_lex_state = 2}, + [614] = {.lex_state = 141, .external_lex_state = 2}, + [615] = {.lex_state = 141, .external_lex_state = 2}, + [616] = {.lex_state = 141, .external_lex_state = 2}, + [617] = {.lex_state = 141, .external_lex_state = 2}, + [618] = {.lex_state = 141, .external_lex_state = 2}, + [619] = {.lex_state = 141, .external_lex_state = 2}, + [620] = {.lex_state = 141, .external_lex_state = 2}, + [621] = {.lex_state = 141, .external_lex_state = 2}, + [622] = {.lex_state = 141, .external_lex_state = 2}, + [623] = {.lex_state = 141, .external_lex_state = 2}, + [624] = {.lex_state = 141, .external_lex_state = 2}, + [625] = {.lex_state = 141, .external_lex_state = 2}, + [626] = {.lex_state = 141, .external_lex_state = 2}, + [627] = {.lex_state = 141, .external_lex_state = 2}, + [628] = {.lex_state = 141, .external_lex_state = 2}, + [629] = {.lex_state = 141, .external_lex_state = 2}, + [630] = {.lex_state = 141, .external_lex_state = 2}, + [631] = {.lex_state = 141, .external_lex_state = 2}, + [632] = {.lex_state = 141, .external_lex_state = 2}, + [633] = {.lex_state = 141, .external_lex_state = 2}, + [634] = {.lex_state = 141, .external_lex_state = 2}, + [635] = {.lex_state = 141, .external_lex_state = 2}, + [636] = {.lex_state = 141, .external_lex_state = 2}, + [637] = {.lex_state = 141, .external_lex_state = 2}, + [638] = {.lex_state = 141, .external_lex_state = 2}, + [639] = {.lex_state = 141, .external_lex_state = 2}, + [640] = {.lex_state = 141, .external_lex_state = 2}, + [641] = {.lex_state = 141, .external_lex_state = 2}, + [642] = {.lex_state = 141, .external_lex_state = 2}, + [643] = {.lex_state = 141, .external_lex_state = 2}, + [644] = {.lex_state = 141, .external_lex_state = 2}, + [645] = {.lex_state = 141, .external_lex_state = 2}, + [646] = {.lex_state = 141, .external_lex_state = 2}, + [647] = {.lex_state = 141, .external_lex_state = 2}, + [648] = {.lex_state = 141, .external_lex_state = 2}, + [649] = {.lex_state = 141, .external_lex_state = 2}, + [650] = {.lex_state = 141, .external_lex_state = 2}, + [651] = {.lex_state = 141, .external_lex_state = 2}, + [652] = {.lex_state = 141, .external_lex_state = 2}, + [653] = {.lex_state = 141, .external_lex_state = 2}, + [654] = {.lex_state = 141, .external_lex_state = 2}, + [655] = {.lex_state = 141, .external_lex_state = 2}, + [656] = {.lex_state = 141, .external_lex_state = 2}, + [657] = {.lex_state = 141, .external_lex_state = 2}, + [658] = {.lex_state = 141, .external_lex_state = 2}, + [659] = {.lex_state = 141, .external_lex_state = 2}, + [660] = {.lex_state = 141, .external_lex_state = 2}, + [661] = {.lex_state = 141, .external_lex_state = 2}, + [662] = {.lex_state = 141, .external_lex_state = 2}, + [663] = {.lex_state = 141, .external_lex_state = 2}, + [664] = {.lex_state = 141, .external_lex_state = 2}, + [665] = {.lex_state = 141, .external_lex_state = 2}, + [666] = {.lex_state = 141, .external_lex_state = 2}, + [667] = {.lex_state = 141, .external_lex_state = 2}, + [668] = {.lex_state = 141, .external_lex_state = 2}, + [669] = {.lex_state = 141, .external_lex_state = 2}, + [670] = {.lex_state = 141, .external_lex_state = 2}, + [671] = {.lex_state = 141, .external_lex_state = 2}, + [672] = {.lex_state = 141, .external_lex_state = 2}, + [673] = {.lex_state = 141, .external_lex_state = 2}, + [674] = {.lex_state = 141, .external_lex_state = 2}, + [675] = {.lex_state = 141, .external_lex_state = 2}, + [676] = {.lex_state = 141, .external_lex_state = 2}, + [677] = {.lex_state = 141, .external_lex_state = 2}, + [678] = {.lex_state = 141, .external_lex_state = 2}, + [679] = {.lex_state = 141, .external_lex_state = 2}, + [680] = {.lex_state = 141, .external_lex_state = 2}, + [681] = {.lex_state = 141, .external_lex_state = 2}, + [682] = {.lex_state = 141, .external_lex_state = 2}, + [683] = {.lex_state = 141, .external_lex_state = 2}, + [684] = {.lex_state = 141, .external_lex_state = 2}, + [685] = {.lex_state = 141, .external_lex_state = 2}, + [686] = {.lex_state = 141, .external_lex_state = 2}, + [687] = {.lex_state = 141, .external_lex_state = 2}, + [688] = {.lex_state = 141, .external_lex_state = 2}, + [689] = {.lex_state = 141, .external_lex_state = 2}, + [690] = {.lex_state = 141, .external_lex_state = 2}, + [691] = {.lex_state = 141, .external_lex_state = 2}, + [692] = {.lex_state = 141, .external_lex_state = 2}, + [693] = {.lex_state = 141, .external_lex_state = 2}, + [694] = {.lex_state = 141, .external_lex_state = 2}, + [695] = {.lex_state = 141, .external_lex_state = 2}, + [696] = {.lex_state = 141, .external_lex_state = 2}, + [697] = {.lex_state = 141, .external_lex_state = 2}, + [698] = {.lex_state = 141, .external_lex_state = 2}, + [699] = {.lex_state = 141, .external_lex_state = 2}, + [700] = {.lex_state = 141, .external_lex_state = 2}, + [701] = {.lex_state = 141, .external_lex_state = 2}, + [702] = {.lex_state = 141, .external_lex_state = 2}, + [703] = {.lex_state = 141, .external_lex_state = 2}, + [704] = {.lex_state = 141, .external_lex_state = 2}, + [705] = {.lex_state = 141, .external_lex_state = 2}, + [706] = {.lex_state = 141, .external_lex_state = 2}, + [707] = {.lex_state = 141, .external_lex_state = 2}, + [708] = {.lex_state = 141, .external_lex_state = 2}, + [709] = {.lex_state = 141, .external_lex_state = 2}, + [710] = {.lex_state = 141, .external_lex_state = 2}, + [711] = {.lex_state = 141, .external_lex_state = 2}, + [712] = {.lex_state = 141, .external_lex_state = 2}, + [713] = {.lex_state = 141, .external_lex_state = 2}, + [714] = {.lex_state = 141, .external_lex_state = 2}, + [715] = {.lex_state = 141, .external_lex_state = 2}, + [716] = {.lex_state = 141, .external_lex_state = 2}, + [717] = {.lex_state = 141, .external_lex_state = 2}, + [718] = {.lex_state = 141, .external_lex_state = 2}, + [719] = {.lex_state = 141, .external_lex_state = 2}, + [720] = {.lex_state = 141, .external_lex_state = 2}, + [721] = {.lex_state = 141, .external_lex_state = 2}, + [722] = {.lex_state = 141, .external_lex_state = 2}, + [723] = {.lex_state = 141, .external_lex_state = 2}, + [724] = {.lex_state = 141, .external_lex_state = 2}, + [725] = {.lex_state = 141, .external_lex_state = 2}, + [726] = {.lex_state = 141, .external_lex_state = 2}, + [727] = {.lex_state = 141, .external_lex_state = 2}, + [728] = {.lex_state = 141, .external_lex_state = 2}, + [729] = {.lex_state = 141, .external_lex_state = 2}, + [730] = {.lex_state = 141, .external_lex_state = 2}, + [731] = {.lex_state = 141, .external_lex_state = 2}, + [732] = {.lex_state = 141, .external_lex_state = 2}, + [733] = {.lex_state = 141, .external_lex_state = 2}, + [734] = {.lex_state = 141, .external_lex_state = 2}, + [735] = {.lex_state = 141, .external_lex_state = 2}, + [736] = {.lex_state = 141, .external_lex_state = 2}, + [737] = {.lex_state = 141, .external_lex_state = 2}, + [738] = {.lex_state = 141, .external_lex_state = 2}, + [739] = {.lex_state = 141, .external_lex_state = 2}, + [740] = {.lex_state = 141, .external_lex_state = 2}, + [741] = {.lex_state = 141, .external_lex_state = 2}, + [742] = {.lex_state = 141, .external_lex_state = 2}, + [743] = {.lex_state = 141, .external_lex_state = 2}, + [744] = {.lex_state = 141, .external_lex_state = 2}, + [745] = {.lex_state = 141, .external_lex_state = 2}, + [746] = {.lex_state = 141, .external_lex_state = 2}, + [747] = {.lex_state = 141, .external_lex_state = 2}, + [748] = {.lex_state = 141, .external_lex_state = 2}, + [749] = {.lex_state = 141, .external_lex_state = 2}, + [750] = {.lex_state = 141, .external_lex_state = 2}, + [751] = {.lex_state = 141, .external_lex_state = 2}, + [752] = {.lex_state = 141, .external_lex_state = 2}, + [753] = {.lex_state = 141, .external_lex_state = 2}, + [754] = {.lex_state = 141, .external_lex_state = 2}, + [755] = {.lex_state = 141, .external_lex_state = 2}, + [756] = {.lex_state = 141, .external_lex_state = 2}, + [757] = {.lex_state = 141, .external_lex_state = 2}, + [758] = {.lex_state = 141, .external_lex_state = 2}, + [759] = {.lex_state = 141, .external_lex_state = 2}, + [760] = {.lex_state = 141, .external_lex_state = 2}, + [761] = {.lex_state = 141, .external_lex_state = 2}, + [762] = {.lex_state = 141, .external_lex_state = 2}, + [763] = {.lex_state = 141, .external_lex_state = 2}, + [764] = {.lex_state = 141, .external_lex_state = 2}, + [765] = {.lex_state = 141, .external_lex_state = 2}, + [766] = {.lex_state = 141, .external_lex_state = 2}, + [767] = {.lex_state = 141, .external_lex_state = 2}, + [768] = {.lex_state = 141, .external_lex_state = 2}, + [769] = {.lex_state = 141, .external_lex_state = 2}, + [770] = {.lex_state = 141, .external_lex_state = 2}, + [771] = {.lex_state = 141, .external_lex_state = 2}, + [772] = {.lex_state = 141, .external_lex_state = 2}, + [773] = {.lex_state = 141, .external_lex_state = 2}, + [774] = {.lex_state = 141, .external_lex_state = 2}, + [775] = {.lex_state = 141, .external_lex_state = 2}, + [776] = {.lex_state = 141, .external_lex_state = 2}, + [777] = {.lex_state = 141, .external_lex_state = 2}, + [778] = {.lex_state = 141, .external_lex_state = 2}, + [779] = {.lex_state = 141, .external_lex_state = 2}, + [780] = {.lex_state = 141, .external_lex_state = 2}, + [781] = {.lex_state = 141, .external_lex_state = 2}, + [782] = {.lex_state = 141, .external_lex_state = 2}, + [783] = {.lex_state = 141, .external_lex_state = 2}, + [784] = {.lex_state = 141, .external_lex_state = 2}, + [785] = {.lex_state = 141, .external_lex_state = 2}, + [786] = {.lex_state = 141, .external_lex_state = 2}, + [787] = {.lex_state = 141, .external_lex_state = 2}, + [788] = {.lex_state = 141, .external_lex_state = 2}, + [789] = {.lex_state = 141, .external_lex_state = 2}, + [790] = {.lex_state = 141, .external_lex_state = 2}, + [791] = {.lex_state = 141, .external_lex_state = 2}, + [792] = {.lex_state = 141, .external_lex_state = 2}, + [793] = {.lex_state = 141, .external_lex_state = 2}, + [794] = {.lex_state = 141, .external_lex_state = 2}, + [795] = {.lex_state = 141, .external_lex_state = 2}, + [796] = {.lex_state = 141, .external_lex_state = 2}, + [797] = {.lex_state = 141, .external_lex_state = 2}, + [798] = {.lex_state = 141, .external_lex_state = 2}, + [799] = {.lex_state = 141, .external_lex_state = 2}, + [800] = {.lex_state = 141, .external_lex_state = 2}, + [801] = {.lex_state = 141, .external_lex_state = 2}, + [802] = {.lex_state = 141, .external_lex_state = 2}, + [803] = {.lex_state = 141, .external_lex_state = 2}, + [804] = {.lex_state = 141, .external_lex_state = 2}, + [805] = {.lex_state = 141, .external_lex_state = 2}, + [806] = {.lex_state = 141, .external_lex_state = 2}, + [807] = {.lex_state = 141, .external_lex_state = 2}, + [808] = {.lex_state = 141, .external_lex_state = 2}, + [809] = {.lex_state = 141, .external_lex_state = 2}, + [810] = {.lex_state = 141, .external_lex_state = 2}, + [811] = {.lex_state = 141, .external_lex_state = 2}, + [812] = {.lex_state = 141, .external_lex_state = 2}, + [813] = {.lex_state = 141, .external_lex_state = 2}, + [814] = {.lex_state = 141, .external_lex_state = 2}, + [815] = {.lex_state = 141, .external_lex_state = 2}, + [816] = {.lex_state = 141, .external_lex_state = 2}, + [817] = {.lex_state = 141, .external_lex_state = 2}, + [818] = {.lex_state = 141, .external_lex_state = 2}, + [819] = {.lex_state = 141, .external_lex_state = 2}, + [820] = {.lex_state = 141, .external_lex_state = 2}, + [821] = {.lex_state = 141, .external_lex_state = 2}, + [822] = {.lex_state = 141, .external_lex_state = 2}, + [823] = {.lex_state = 141, .external_lex_state = 2}, + [824] = {.lex_state = 141, .external_lex_state = 2}, + [825] = {.lex_state = 141, .external_lex_state = 2}, + [826] = {.lex_state = 141, .external_lex_state = 2}, + [827] = {.lex_state = 141, .external_lex_state = 2}, + [828] = {.lex_state = 141, .external_lex_state = 2}, + [829] = {.lex_state = 141, .external_lex_state = 2}, + [830] = {.lex_state = 141, .external_lex_state = 2}, + [831] = {.lex_state = 141, .external_lex_state = 2}, + [832] = {.lex_state = 141, .external_lex_state = 2}, + [833] = {.lex_state = 141, .external_lex_state = 2}, + [834] = {.lex_state = 141, .external_lex_state = 2}, + [835] = {.lex_state = 141, .external_lex_state = 2}, + [836] = {.lex_state = 141, .external_lex_state = 2}, + [837] = {.lex_state = 141, .external_lex_state = 2}, + [838] = {.lex_state = 141, .external_lex_state = 2}, + [839] = {.lex_state = 141, .external_lex_state = 2}, + [840] = {.lex_state = 141, .external_lex_state = 2}, + [841] = {.lex_state = 141, .external_lex_state = 2}, + [842] = {.lex_state = 141, .external_lex_state = 2}, + [843] = {.lex_state = 141, .external_lex_state = 2}, + [844] = {.lex_state = 141, .external_lex_state = 2}, + [845] = {.lex_state = 141, .external_lex_state = 2}, + [846] = {.lex_state = 141, .external_lex_state = 2}, + [847] = {.lex_state = 141, .external_lex_state = 2}, + [848] = {.lex_state = 141, .external_lex_state = 2}, + [849] = {.lex_state = 141, .external_lex_state = 2}, + [850] = {.lex_state = 141, .external_lex_state = 2}, + [851] = {.lex_state = 141, .external_lex_state = 2}, + [852] = {.lex_state = 141, .external_lex_state = 2}, + [853] = {.lex_state = 141, .external_lex_state = 2}, + [854] = {.lex_state = 141, .external_lex_state = 2}, + [855] = {.lex_state = 141, .external_lex_state = 2}, + [856] = {.lex_state = 141, .external_lex_state = 2}, + [857] = {.lex_state = 141, .external_lex_state = 2}, + [858] = {.lex_state = 141, .external_lex_state = 2}, + [859] = {.lex_state = 141, .external_lex_state = 2}, + [860] = {.lex_state = 141, .external_lex_state = 2}, + [861] = {.lex_state = 141, .external_lex_state = 2}, + [862] = {.lex_state = 141, .external_lex_state = 2}, + [863] = {.lex_state = 141, .external_lex_state = 2}, + [864] = {.lex_state = 141, .external_lex_state = 2}, + [865] = {.lex_state = 141, .external_lex_state = 2}, + [866] = {.lex_state = 141, .external_lex_state = 2}, + [867] = {.lex_state = 141, .external_lex_state = 2}, + [868] = {.lex_state = 141, .external_lex_state = 2}, + [869] = {.lex_state = 141, .external_lex_state = 2}, + [870] = {.lex_state = 141, .external_lex_state = 2}, + [871] = {.lex_state = 141, .external_lex_state = 2}, + [872] = {.lex_state = 141, .external_lex_state = 2}, + [873] = {.lex_state = 141, .external_lex_state = 2}, + [874] = {.lex_state = 141, .external_lex_state = 2}, + [875] = {.lex_state = 141, .external_lex_state = 2}, + [876] = {.lex_state = 141, .external_lex_state = 2}, + [877] = {.lex_state = 141, .external_lex_state = 2}, + [878] = {.lex_state = 141, .external_lex_state = 2}, + [879] = {.lex_state = 141, .external_lex_state = 2}, + [880] = {.lex_state = 141, .external_lex_state = 2}, + [881] = {.lex_state = 141, .external_lex_state = 2}, + [882] = {.lex_state = 141, .external_lex_state = 2}, + [883] = {.lex_state = 141, .external_lex_state = 2}, + [884] = {.lex_state = 141, .external_lex_state = 2}, + [885] = {.lex_state = 141, .external_lex_state = 2}, + [886] = {.lex_state = 141, .external_lex_state = 2}, + [887] = {.lex_state = 141, .external_lex_state = 2}, + [888] = {.lex_state = 141, .external_lex_state = 2}, + [889] = {.lex_state = 141, .external_lex_state = 2}, + [890] = {.lex_state = 141, .external_lex_state = 2}, + [891] = {.lex_state = 141, .external_lex_state = 2}, + [892] = {.lex_state = 141, .external_lex_state = 2}, + [893] = {.lex_state = 141, .external_lex_state = 2}, + [894] = {.lex_state = 141, .external_lex_state = 2}, + [895] = {.lex_state = 141, .external_lex_state = 2}, + [896] = {.lex_state = 141, .external_lex_state = 2}, + [897] = {.lex_state = 141, .external_lex_state = 2}, + [898] = {.lex_state = 141, .external_lex_state = 2}, + [899] = {.lex_state = 141, .external_lex_state = 2}, + [900] = {.lex_state = 141, .external_lex_state = 2}, + [901] = {.lex_state = 141, .external_lex_state = 2}, + [902] = {.lex_state = 141, .external_lex_state = 2}, + [903] = {.lex_state = 141, .external_lex_state = 2}, + [904] = {.lex_state = 141, .external_lex_state = 2}, + [905] = {.lex_state = 141, .external_lex_state = 2}, + [906] = {.lex_state = 141, .external_lex_state = 2}, + [907] = {.lex_state = 141, .external_lex_state = 2}, + [908] = {.lex_state = 141, .external_lex_state = 2}, + [909] = {.lex_state = 141, .external_lex_state = 2}, + [910] = {.lex_state = 141, .external_lex_state = 2}, + [911] = {.lex_state = 141, .external_lex_state = 2}, + [912] = {.lex_state = 141, .external_lex_state = 2}, + [913] = {.lex_state = 141, .external_lex_state = 2}, + [914] = {.lex_state = 141, .external_lex_state = 2}, + [915] = {.lex_state = 141, .external_lex_state = 2}, + [916] = {.lex_state = 141, .external_lex_state = 2}, + [917] = {.lex_state = 141, .external_lex_state = 2}, + [918] = {.lex_state = 141, .external_lex_state = 2}, + [919] = {.lex_state = 141, .external_lex_state = 2}, + [920] = {.lex_state = 141, .external_lex_state = 2}, + [921] = {.lex_state = 141, .external_lex_state = 2}, + [922] = {.lex_state = 141, .external_lex_state = 2}, + [923] = {.lex_state = 141, .external_lex_state = 2}, + [924] = {.lex_state = 141, .external_lex_state = 2}, + [925] = {.lex_state = 141, .external_lex_state = 2}, + [926] = {.lex_state = 141, .external_lex_state = 2}, + [927] = {.lex_state = 141, .external_lex_state = 2}, + [928] = {.lex_state = 141, .external_lex_state = 2}, + [929] = {.lex_state = 141, .external_lex_state = 2}, + [930] = {.lex_state = 141, .external_lex_state = 2}, + [931] = {.lex_state = 141, .external_lex_state = 2}, + [932] = {.lex_state = 141, .external_lex_state = 2}, + [933] = {.lex_state = 141, .external_lex_state = 2}, + [934] = {.lex_state = 141, .external_lex_state = 2}, + [935] = {.lex_state = 141, .external_lex_state = 2}, + [936] = {.lex_state = 141, .external_lex_state = 2}, + [937] = {.lex_state = 141, .external_lex_state = 2}, + [938] = {.lex_state = 141, .external_lex_state = 2}, + [939] = {.lex_state = 141, .external_lex_state = 2}, + [940] = {.lex_state = 141, .external_lex_state = 2}, + [941] = {.lex_state = 141, .external_lex_state = 2}, + [942] = {.lex_state = 141, .external_lex_state = 2}, + [943] = {.lex_state = 141, .external_lex_state = 2}, + [944] = {.lex_state = 141, .external_lex_state = 2}, + [945] = {.lex_state = 141, .external_lex_state = 2}, + [946] = {.lex_state = 141, .external_lex_state = 2}, + [947] = {.lex_state = 141, .external_lex_state = 2}, + [948] = {.lex_state = 141, .external_lex_state = 2}, + [949] = {.lex_state = 141, .external_lex_state = 2}, + [950] = {.lex_state = 141, .external_lex_state = 2}, + [951] = {.lex_state = 141, .external_lex_state = 2}, + [952] = {.lex_state = 141, .external_lex_state = 2}, + [953] = {.lex_state = 141, .external_lex_state = 2}, + [954] = {.lex_state = 141, .external_lex_state = 2}, + [955] = {.lex_state = 141, .external_lex_state = 2}, + [956] = {.lex_state = 141, .external_lex_state = 2}, + [957] = {.lex_state = 141, .external_lex_state = 2}, + [958] = {.lex_state = 141, .external_lex_state = 2}, + [959] = {.lex_state = 141, .external_lex_state = 2}, + [960] = {.lex_state = 141, .external_lex_state = 2}, + [961] = {.lex_state = 141, .external_lex_state = 2}, + [962] = {.lex_state = 141, .external_lex_state = 2}, + [963] = {.lex_state = 141, .external_lex_state = 2}, + [964] = {.lex_state = 141, .external_lex_state = 2}, + [965] = {.lex_state = 141, .external_lex_state = 2}, + [966] = {.lex_state = 141, .external_lex_state = 2}, + [967] = {.lex_state = 141, .external_lex_state = 2}, + [968] = {.lex_state = 141, .external_lex_state = 2}, + [969] = {.lex_state = 141, .external_lex_state = 2}, + [970] = {.lex_state = 141, .external_lex_state = 2}, + [971] = {.lex_state = 141, .external_lex_state = 2}, + [972] = {.lex_state = 141, .external_lex_state = 2}, + [973] = {.lex_state = 141, .external_lex_state = 2}, + [974] = {.lex_state = 141, .external_lex_state = 2}, + [975] = {.lex_state = 141, .external_lex_state = 2}, + [976] = {.lex_state = 141, .external_lex_state = 2}, + [977] = {.lex_state = 141, .external_lex_state = 2}, + [978] = {.lex_state = 141, .external_lex_state = 2}, + [979] = {.lex_state = 141, .external_lex_state = 2}, + [980] = {.lex_state = 141, .external_lex_state = 2}, + [981] = {.lex_state = 141, .external_lex_state = 2}, + [982] = {.lex_state = 141, .external_lex_state = 2}, + [983] = {.lex_state = 141, .external_lex_state = 2}, + [984] = {.lex_state = 141, .external_lex_state = 2}, + [985] = {.lex_state = 141, .external_lex_state = 2}, + [986] = {.lex_state = 141, .external_lex_state = 2}, + [987] = {.lex_state = 141, .external_lex_state = 2}, + [988] = {.lex_state = 141, .external_lex_state = 2}, + [989] = {.lex_state = 141, .external_lex_state = 2}, + [990] = {.lex_state = 141, .external_lex_state = 2}, + [991] = {.lex_state = 141, .external_lex_state = 2}, + [992] = {.lex_state = 141, .external_lex_state = 2}, + [993] = {.lex_state = 141, .external_lex_state = 2}, + [994] = {.lex_state = 141, .external_lex_state = 2}, + [995] = {.lex_state = 141, .external_lex_state = 2}, + [996] = {.lex_state = 141, .external_lex_state = 2}, + [997] = {.lex_state = 141, .external_lex_state = 2}, + [998] = {.lex_state = 141, .external_lex_state = 2}, + [999] = {.lex_state = 141, .external_lex_state = 2}, + [1000] = {.lex_state = 141, .external_lex_state = 2}, + [1001] = {.lex_state = 141, .external_lex_state = 2}, + [1002] = {.lex_state = 141, .external_lex_state = 2}, + [1003] = {.lex_state = 141, .external_lex_state = 2}, + [1004] = {.lex_state = 141, .external_lex_state = 2}, + [1005] = {.lex_state = 141, .external_lex_state = 2}, + [1006] = {.lex_state = 141, .external_lex_state = 2}, + [1007] = {.lex_state = 141, .external_lex_state = 2}, + [1008] = {.lex_state = 141, .external_lex_state = 2}, + [1009] = {.lex_state = 141, .external_lex_state = 2}, + [1010] = {.lex_state = 141, .external_lex_state = 2}, + [1011] = {.lex_state = 141, .external_lex_state = 2}, + [1012] = {.lex_state = 141, .external_lex_state = 2}, + [1013] = {.lex_state = 141, .external_lex_state = 2}, + [1014] = {.lex_state = 141, .external_lex_state = 2}, + [1015] = {.lex_state = 141, .external_lex_state = 2}, + [1016] = {.lex_state = 141, .external_lex_state = 2}, + [1017] = {.lex_state = 141, .external_lex_state = 2}, + [1018] = {.lex_state = 141, .external_lex_state = 2}, + [1019] = {.lex_state = 141, .external_lex_state = 2}, + [1020] = {.lex_state = 141, .external_lex_state = 2}, + [1021] = {.lex_state = 141, .external_lex_state = 2}, + [1022] = {.lex_state = 141, .external_lex_state = 2}, + [1023] = {.lex_state = 141, .external_lex_state = 2}, + [1024] = {.lex_state = 141, .external_lex_state = 2}, + [1025] = {.lex_state = 141, .external_lex_state = 2}, + [1026] = {.lex_state = 141, .external_lex_state = 2}, + [1027] = {.lex_state = 141, .external_lex_state = 2}, + [1028] = {.lex_state = 141, .external_lex_state = 2}, + [1029] = {.lex_state = 141, .external_lex_state = 2}, + [1030] = {.lex_state = 141, .external_lex_state = 2}, + [1031] = {.lex_state = 141, .external_lex_state = 2}, + [1032] = {.lex_state = 141, .external_lex_state = 2}, + [1033] = {.lex_state = 141, .external_lex_state = 2}, + [1034] = {.lex_state = 141, .external_lex_state = 2}, + [1035] = {.lex_state = 141, .external_lex_state = 2}, + [1036] = {.lex_state = 141, .external_lex_state = 2}, + [1037] = {.lex_state = 141, .external_lex_state = 2}, + [1038] = {.lex_state = 141, .external_lex_state = 2}, + [1039] = {.lex_state = 141, .external_lex_state = 2}, + [1040] = {.lex_state = 141, .external_lex_state = 2}, + [1041] = {.lex_state = 141, .external_lex_state = 2}, + [1042] = {.lex_state = 141, .external_lex_state = 2}, + [1043] = {.lex_state = 141, .external_lex_state = 2}, + [1044] = {.lex_state = 141, .external_lex_state = 2}, + [1045] = {.lex_state = 141, .external_lex_state = 2}, + [1046] = {.lex_state = 141, .external_lex_state = 2}, + [1047] = {.lex_state = 141, .external_lex_state = 2}, + [1048] = {.lex_state = 141, .external_lex_state = 2}, + [1049] = {.lex_state = 141, .external_lex_state = 2}, + [1050] = {.lex_state = 141, .external_lex_state = 2}, + [1051] = {.lex_state = 141, .external_lex_state = 2}, + [1052] = {.lex_state = 141, .external_lex_state = 2}, + [1053] = {.lex_state = 141, .external_lex_state = 2}, + [1054] = {.lex_state = 141, .external_lex_state = 2}, + [1055] = {.lex_state = 141, .external_lex_state = 2}, + [1056] = {.lex_state = 141, .external_lex_state = 2}, + [1057] = {.lex_state = 141, .external_lex_state = 2}, + [1058] = {.lex_state = 141, .external_lex_state = 2}, + [1059] = {.lex_state = 141, .external_lex_state = 2}, + [1060] = {.lex_state = 141, .external_lex_state = 2}, + [1061] = {.lex_state = 141, .external_lex_state = 2}, + [1062] = {.lex_state = 141, .external_lex_state = 2}, + [1063] = {.lex_state = 141, .external_lex_state = 2}, + [1064] = {.lex_state = 141, .external_lex_state = 2}, + [1065] = {.lex_state = 141, .external_lex_state = 2}, + [1066] = {.lex_state = 141, .external_lex_state = 2}, + [1067] = {.lex_state = 141, .external_lex_state = 2}, + [1068] = {.lex_state = 141, .external_lex_state = 2}, + [1069] = {.lex_state = 141, .external_lex_state = 2}, + [1070] = {.lex_state = 141, .external_lex_state = 2}, + [1071] = {.lex_state = 141, .external_lex_state = 2}, + [1072] = {.lex_state = 141, .external_lex_state = 2}, + [1073] = {.lex_state = 141, .external_lex_state = 2}, + [1074] = {.lex_state = 141, .external_lex_state = 2}, + [1075] = {.lex_state = 141, .external_lex_state = 2}, + [1076] = {.lex_state = 141, .external_lex_state = 2}, + [1077] = {.lex_state = 141, .external_lex_state = 2}, + [1078] = {.lex_state = 141, .external_lex_state = 2}, + [1079] = {.lex_state = 141, .external_lex_state = 2}, + [1080] = {.lex_state = 141, .external_lex_state = 2}, + [1081] = {.lex_state = 141, .external_lex_state = 2}, + [1082] = {.lex_state = 141, .external_lex_state = 2}, + [1083] = {.lex_state = 141, .external_lex_state = 2}, + [1084] = {.lex_state = 141, .external_lex_state = 2}, + [1085] = {.lex_state = 141, .external_lex_state = 2}, + [1086] = {.lex_state = 141, .external_lex_state = 2}, + [1087] = {.lex_state = 141, .external_lex_state = 2}, + [1088] = {.lex_state = 141, .external_lex_state = 2}, + [1089] = {.lex_state = 141, .external_lex_state = 2}, + [1090] = {.lex_state = 141, .external_lex_state = 2}, + [1091] = {.lex_state = 141, .external_lex_state = 2}, + [1092] = {.lex_state = 141, .external_lex_state = 2}, + [1093] = {.lex_state = 141, .external_lex_state = 2}, + [1094] = {.lex_state = 141, .external_lex_state = 2}, + [1095] = {.lex_state = 141, .external_lex_state = 2}, + [1096] = {.lex_state = 141, .external_lex_state = 2}, + [1097] = {.lex_state = 141, .external_lex_state = 2}, + [1098] = {.lex_state = 141, .external_lex_state = 2}, + [1099] = {.lex_state = 141, .external_lex_state = 2}, + [1100] = {.lex_state = 141, .external_lex_state = 2}, + [1101] = {.lex_state = 141, .external_lex_state = 2}, + [1102] = {.lex_state = 141, .external_lex_state = 2}, + [1103] = {.lex_state = 141, .external_lex_state = 2}, + [1104] = {.lex_state = 141, .external_lex_state = 2}, + [1105] = {.lex_state = 141, .external_lex_state = 2}, + [1106] = {.lex_state = 141, .external_lex_state = 2}, + [1107] = {.lex_state = 141, .external_lex_state = 2}, + [1108] = {.lex_state = 141, .external_lex_state = 2}, + [1109] = {.lex_state = 141, .external_lex_state = 2}, + [1110] = {.lex_state = 141, .external_lex_state = 2}, + [1111] = {.lex_state = 141, .external_lex_state = 2}, + [1112] = {.lex_state = 141, .external_lex_state = 2}, + [1113] = {.lex_state = 141, .external_lex_state = 2}, + [1114] = {.lex_state = 141, .external_lex_state = 2}, + [1115] = {.lex_state = 141, .external_lex_state = 2}, + [1116] = {.lex_state = 141, .external_lex_state = 2}, + [1117] = {.lex_state = 141, .external_lex_state = 2}, + [1118] = {.lex_state = 141, .external_lex_state = 2}, + [1119] = {.lex_state = 141, .external_lex_state = 2}, + [1120] = {.lex_state = 141, .external_lex_state = 2}, + [1121] = {.lex_state = 141, .external_lex_state = 2}, + [1122] = {.lex_state = 141, .external_lex_state = 2}, + [1123] = {.lex_state = 141, .external_lex_state = 2}, + [1124] = {.lex_state = 141, .external_lex_state = 2}, + [1125] = {.lex_state = 141, .external_lex_state = 2}, + [1126] = {.lex_state = 141, .external_lex_state = 2}, + [1127] = {.lex_state = 141, .external_lex_state = 2}, + [1128] = {.lex_state = 141, .external_lex_state = 2}, + [1129] = {.lex_state = 141, .external_lex_state = 2}, + [1130] = {.lex_state = 141, .external_lex_state = 2}, + [1131] = {.lex_state = 141, .external_lex_state = 2}, + [1132] = {.lex_state = 141, .external_lex_state = 2}, + [1133] = {.lex_state = 141, .external_lex_state = 2}, + [1134] = {.lex_state = 141, .external_lex_state = 2}, + [1135] = {.lex_state = 141, .external_lex_state = 2}, + [1136] = {.lex_state = 141, .external_lex_state = 2}, + [1137] = {.lex_state = 141, .external_lex_state = 2}, + [1138] = {.lex_state = 141, .external_lex_state = 2}, + [1139] = {.lex_state = 141, .external_lex_state = 2}, + [1140] = {.lex_state = 141, .external_lex_state = 2}, + [1141] = {.lex_state = 141, .external_lex_state = 2}, + [1142] = {.lex_state = 141, .external_lex_state = 2}, + [1143] = {.lex_state = 141, .external_lex_state = 2}, + [1144] = {.lex_state = 141, .external_lex_state = 2}, + [1145] = {.lex_state = 141, .external_lex_state = 2}, + [1146] = {.lex_state = 141, .external_lex_state = 2}, + [1147] = {.lex_state = 141, .external_lex_state = 2}, + [1148] = {.lex_state = 141, .external_lex_state = 2}, + [1149] = {.lex_state = 141, .external_lex_state = 2}, + [1150] = {.lex_state = 141, .external_lex_state = 2}, + [1151] = {.lex_state = 141, .external_lex_state = 2}, + [1152] = {.lex_state = 141, .external_lex_state = 2}, + [1153] = {.lex_state = 141, .external_lex_state = 2}, + [1154] = {.lex_state = 141, .external_lex_state = 2}, + [1155] = {.lex_state = 141, .external_lex_state = 2}, + [1156] = {.lex_state = 141, .external_lex_state = 2}, + [1157] = {.lex_state = 141, .external_lex_state = 2}, + [1158] = {.lex_state = 141, .external_lex_state = 2}, + [1159] = {.lex_state = 141, .external_lex_state = 2}, + [1160] = {.lex_state = 141, .external_lex_state = 2}, + [1161] = {.lex_state = 141, .external_lex_state = 2}, + [1162] = {.lex_state = 141, .external_lex_state = 2}, + [1163] = {.lex_state = 141, .external_lex_state = 2}, + [1164] = {.lex_state = 141, .external_lex_state = 2}, + [1165] = {.lex_state = 141, .external_lex_state = 2}, + [1166] = {.lex_state = 141, .external_lex_state = 2}, + [1167] = {.lex_state = 141, .external_lex_state = 2}, + [1168] = {.lex_state = 141, .external_lex_state = 2}, + [1169] = {.lex_state = 141, .external_lex_state = 2}, + [1170] = {.lex_state = 141, .external_lex_state = 2}, + [1171] = {.lex_state = 141, .external_lex_state = 2}, + [1172] = {.lex_state = 141, .external_lex_state = 2}, + [1173] = {.lex_state = 141, .external_lex_state = 2}, + [1174] = {.lex_state = 141, .external_lex_state = 2}, + [1175] = {.lex_state = 141, .external_lex_state = 2}, + [1176] = {.lex_state = 141, .external_lex_state = 2}, + [1177] = {.lex_state = 141, .external_lex_state = 2}, + [1178] = {.lex_state = 141, .external_lex_state = 2}, + [1179] = {.lex_state = 141, .external_lex_state = 2}, + [1180] = {.lex_state = 141, .external_lex_state = 2}, + [1181] = {.lex_state = 141, .external_lex_state = 2}, + [1182] = {.lex_state = 141, .external_lex_state = 2}, + [1183] = {.lex_state = 141, .external_lex_state = 2}, + [1184] = {.lex_state = 141, .external_lex_state = 2}, + [1185] = {.lex_state = 141, .external_lex_state = 2}, + [1186] = {.lex_state = 141, .external_lex_state = 2}, + [1187] = {.lex_state = 141, .external_lex_state = 2}, + [1188] = {.lex_state = 141, .external_lex_state = 2}, + [1189] = {.lex_state = 141, .external_lex_state = 2}, + [1190] = {.lex_state = 141, .external_lex_state = 2}, + [1191] = {.lex_state = 141, .external_lex_state = 2}, + [1192] = {.lex_state = 141, .external_lex_state = 2}, + [1193] = {.lex_state = 141, .external_lex_state = 2}, + [1194] = {.lex_state = 141, .external_lex_state = 2}, + [1195] = {.lex_state = 141, .external_lex_state = 2}, + [1196] = {.lex_state = 141, .external_lex_state = 2}, + [1197] = {.lex_state = 141, .external_lex_state = 2}, + [1198] = {.lex_state = 141, .external_lex_state = 2}, + [1199] = {.lex_state = 141, .external_lex_state = 2}, + [1200] = {.lex_state = 141, .external_lex_state = 2}, + [1201] = {.lex_state = 141, .external_lex_state = 2}, + [1202] = {.lex_state = 141, .external_lex_state = 2}, + [1203] = {.lex_state = 141, .external_lex_state = 2}, + [1204] = {.lex_state = 141, .external_lex_state = 2}, + [1205] = {.lex_state = 141, .external_lex_state = 2}, + [1206] = {.lex_state = 141, .external_lex_state = 2}, + [1207] = {.lex_state = 141, .external_lex_state = 2}, + [1208] = {.lex_state = 141, .external_lex_state = 2}, + [1209] = {.lex_state = 141, .external_lex_state = 2}, + [1210] = {.lex_state = 141, .external_lex_state = 2}, + [1211] = {.lex_state = 141, .external_lex_state = 2}, + [1212] = {.lex_state = 141, .external_lex_state = 2}, + [1213] = {.lex_state = 141, .external_lex_state = 2}, + [1214] = {.lex_state = 141, .external_lex_state = 2}, + [1215] = {.lex_state = 141, .external_lex_state = 2}, + [1216] = {.lex_state = 141, .external_lex_state = 2}, + [1217] = {.lex_state = 141, .external_lex_state = 2}, + [1218] = {.lex_state = 141, .external_lex_state = 2}, + [1219] = {.lex_state = 141, .external_lex_state = 2}, + [1220] = {.lex_state = 141, .external_lex_state = 2}, + [1221] = {.lex_state = 141, .external_lex_state = 2}, + [1222] = {.lex_state = 141, .external_lex_state = 2}, + [1223] = {.lex_state = 141, .external_lex_state = 2}, + [1224] = {.lex_state = 141, .external_lex_state = 2}, + [1225] = {.lex_state = 141, .external_lex_state = 2}, + [1226] = {.lex_state = 141, .external_lex_state = 2}, + [1227] = {.lex_state = 141, .external_lex_state = 2}, + [1228] = {.lex_state = 141, .external_lex_state = 2}, + [1229] = {.lex_state = 141, .external_lex_state = 2}, + [1230] = {.lex_state = 141, .external_lex_state = 2}, + [1231] = {.lex_state = 141, .external_lex_state = 2}, + [1232] = {.lex_state = 141, .external_lex_state = 2}, + [1233] = {.lex_state = 141, .external_lex_state = 2}, + [1234] = {.lex_state = 141, .external_lex_state = 2}, + [1235] = {.lex_state = 141, .external_lex_state = 2}, + [1236] = {.lex_state = 141, .external_lex_state = 2}, + [1237] = {.lex_state = 141, .external_lex_state = 2}, + [1238] = {.lex_state = 141, .external_lex_state = 2}, + [1239] = {.lex_state = 141, .external_lex_state = 2}, + [1240] = {.lex_state = 141, .external_lex_state = 2}, + [1241] = {.lex_state = 141, .external_lex_state = 2}, + [1242] = {.lex_state = 141, .external_lex_state = 2}, + [1243] = {.lex_state = 141, .external_lex_state = 2}, + [1244] = {.lex_state = 141, .external_lex_state = 2}, + [1245] = {.lex_state = 141, .external_lex_state = 2}, + [1246] = {.lex_state = 141, .external_lex_state = 2}, + [1247] = {.lex_state = 141, .external_lex_state = 2}, + [1248] = {.lex_state = 141, .external_lex_state = 2}, + [1249] = {.lex_state = 141, .external_lex_state = 2}, + [1250] = {.lex_state = 141, .external_lex_state = 2}, + [1251] = {.lex_state = 141, .external_lex_state = 2}, + [1252] = {.lex_state = 141, .external_lex_state = 2}, + [1253] = {.lex_state = 141, .external_lex_state = 2}, + [1254] = {.lex_state = 141, .external_lex_state = 2}, + [1255] = {.lex_state = 141, .external_lex_state = 2}, + [1256] = {.lex_state = 141, .external_lex_state = 2}, + [1257] = {.lex_state = 141, .external_lex_state = 2}, + [1258] = {.lex_state = 141, .external_lex_state = 2}, + [1259] = {.lex_state = 141, .external_lex_state = 2}, + [1260] = {.lex_state = 141, .external_lex_state = 2}, + [1261] = {.lex_state = 141, .external_lex_state = 2}, + [1262] = {.lex_state = 141, .external_lex_state = 2}, + [1263] = {.lex_state = 141, .external_lex_state = 2}, + [1264] = {.lex_state = 141, .external_lex_state = 2}, + [1265] = {.lex_state = 141, .external_lex_state = 2}, + [1266] = {.lex_state = 141, .external_lex_state = 2}, + [1267] = {.lex_state = 141, .external_lex_state = 2}, + [1268] = {.lex_state = 141, .external_lex_state = 2}, + [1269] = {.lex_state = 141, .external_lex_state = 2}, + [1270] = {.lex_state = 141, .external_lex_state = 2}, + [1271] = {.lex_state = 141, .external_lex_state = 2}, + [1272] = {.lex_state = 141, .external_lex_state = 2}, + [1273] = {.lex_state = 141, .external_lex_state = 2}, + [1274] = {.lex_state = 141, .external_lex_state = 2}, + [1275] = {.lex_state = 141, .external_lex_state = 2}, + [1276] = {.lex_state = 141, .external_lex_state = 2}, + [1277] = {.lex_state = 141, .external_lex_state = 2}, + [1278] = {.lex_state = 141, .external_lex_state = 2}, + [1279] = {.lex_state = 141, .external_lex_state = 2}, + [1280] = {.lex_state = 141, .external_lex_state = 2}, + [1281] = {.lex_state = 141, .external_lex_state = 2}, + [1282] = {.lex_state = 141, .external_lex_state = 2}, + [1283] = {.lex_state = 141, .external_lex_state = 2}, + [1284] = {.lex_state = 141, .external_lex_state = 2}, + [1285] = {.lex_state = 141, .external_lex_state = 2}, + [1286] = {.lex_state = 141, .external_lex_state = 2}, + [1287] = {.lex_state = 141, .external_lex_state = 2}, + [1288] = {.lex_state = 141, .external_lex_state = 2}, + [1289] = {.lex_state = 141, .external_lex_state = 2}, + [1290] = {.lex_state = 141, .external_lex_state = 2}, + [1291] = {.lex_state = 141, .external_lex_state = 2}, + [1292] = {.lex_state = 141, .external_lex_state = 2}, + [1293] = {.lex_state = 141, .external_lex_state = 2}, + [1294] = {.lex_state = 141, .external_lex_state = 2}, + [1295] = {.lex_state = 141, .external_lex_state = 2}, + [1296] = {.lex_state = 141, .external_lex_state = 2}, + [1297] = {.lex_state = 141, .external_lex_state = 2}, + [1298] = {.lex_state = 141, .external_lex_state = 2}, + [1299] = {.lex_state = 141, .external_lex_state = 2}, + [1300] = {.lex_state = 141, .external_lex_state = 2}, + [1301] = {.lex_state = 141, .external_lex_state = 2}, + [1302] = {.lex_state = 141, .external_lex_state = 2}, + [1303] = {.lex_state = 141, .external_lex_state = 2}, + [1304] = {.lex_state = 141, .external_lex_state = 2}, + [1305] = {.lex_state = 141, .external_lex_state = 2}, + [1306] = {.lex_state = 141, .external_lex_state = 2}, + [1307] = {.lex_state = 141, .external_lex_state = 2}, + [1308] = {.lex_state = 141, .external_lex_state = 2}, + [1309] = {.lex_state = 141, .external_lex_state = 2}, + [1310] = {.lex_state = 141, .external_lex_state = 2}, + [1311] = {.lex_state = 141, .external_lex_state = 2}, + [1312] = {.lex_state = 141, .external_lex_state = 2}, + [1313] = {.lex_state = 141, .external_lex_state = 2}, + [1314] = {.lex_state = 141, .external_lex_state = 2}, + [1315] = {.lex_state = 141, .external_lex_state = 2}, + [1316] = {.lex_state = 141, .external_lex_state = 2}, + [1317] = {.lex_state = 141, .external_lex_state = 2}, + [1318] = {.lex_state = 141, .external_lex_state = 2}, + [1319] = {.lex_state = 141, .external_lex_state = 2}, + [1320] = {.lex_state = 141, .external_lex_state = 2}, + [1321] = {.lex_state = 141, .external_lex_state = 2}, + [1322] = {.lex_state = 141, .external_lex_state = 2}, + [1323] = {.lex_state = 141, .external_lex_state = 2}, + [1324] = {.lex_state = 141, .external_lex_state = 2}, + [1325] = {.lex_state = 141, .external_lex_state = 2}, + [1326] = {.lex_state = 141, .external_lex_state = 2}, + [1327] = {.lex_state = 141, .external_lex_state = 2}, + [1328] = {.lex_state = 141, .external_lex_state = 2}, + [1329] = {.lex_state = 141, .external_lex_state = 2}, + [1330] = {.lex_state = 141, .external_lex_state = 2}, + [1331] = {.lex_state = 141, .external_lex_state = 2}, + [1332] = {.lex_state = 141, .external_lex_state = 2}, + [1333] = {.lex_state = 141, .external_lex_state = 2}, + [1334] = {.lex_state = 141, .external_lex_state = 2}, + [1335] = {.lex_state = 141, .external_lex_state = 2}, + [1336] = {.lex_state = 141, .external_lex_state = 2}, + [1337] = {.lex_state = 141, .external_lex_state = 2}, + [1338] = {.lex_state = 141, .external_lex_state = 2}, + [1339] = {.lex_state = 141, .external_lex_state = 2}, + [1340] = {.lex_state = 141, .external_lex_state = 2}, + [1341] = {.lex_state = 141, .external_lex_state = 2}, + [1342] = {.lex_state = 141, .external_lex_state = 2}, + [1343] = {.lex_state = 141, .external_lex_state = 2}, + [1344] = {.lex_state = 141, .external_lex_state = 2}, + [1345] = {.lex_state = 141, .external_lex_state = 2}, + [1346] = {.lex_state = 141, .external_lex_state = 2}, + [1347] = {.lex_state = 141, .external_lex_state = 2}, + [1348] = {.lex_state = 141, .external_lex_state = 2}, + [1349] = {.lex_state = 141, .external_lex_state = 2}, + [1350] = {.lex_state = 141, .external_lex_state = 2}, + [1351] = {.lex_state = 141, .external_lex_state = 2}, + [1352] = {.lex_state = 141, .external_lex_state = 2}, + [1353] = {.lex_state = 141, .external_lex_state = 2}, + [1354] = {.lex_state = 141, .external_lex_state = 2}, + [1355] = {.lex_state = 141, .external_lex_state = 2}, + [1356] = {.lex_state = 141, .external_lex_state = 2}, + [1357] = {.lex_state = 141, .external_lex_state = 2}, + [1358] = {.lex_state = 141, .external_lex_state = 2}, + [1359] = {.lex_state = 141, .external_lex_state = 2}, + [1360] = {.lex_state = 141, .external_lex_state = 2}, + [1361] = {.lex_state = 141, .external_lex_state = 2}, + [1362] = {.lex_state = 141, .external_lex_state = 2}, + [1363] = {.lex_state = 141, .external_lex_state = 2}, + [1364] = {.lex_state = 141, .external_lex_state = 2}, + [1365] = {.lex_state = 141, .external_lex_state = 2}, + [1366] = {.lex_state = 141, .external_lex_state = 2}, + [1367] = {.lex_state = 141, .external_lex_state = 2}, + [1368] = {.lex_state = 141, .external_lex_state = 2}, + [1369] = {.lex_state = 141, .external_lex_state = 2}, + [1370] = {.lex_state = 141, .external_lex_state = 2}, + [1371] = {.lex_state = 141, .external_lex_state = 2}, + [1372] = {.lex_state = 141, .external_lex_state = 2}, + [1373] = {.lex_state = 141, .external_lex_state = 2}, + [1374] = {.lex_state = 141, .external_lex_state = 2}, + [1375] = {.lex_state = 141, .external_lex_state = 2}, + [1376] = {.lex_state = 141, .external_lex_state = 2}, + [1377] = {.lex_state = 141, .external_lex_state = 2}, + [1378] = {.lex_state = 141, .external_lex_state = 2}, + [1379] = {.lex_state = 141, .external_lex_state = 2}, + [1380] = {.lex_state = 141, .external_lex_state = 2}, + [1381] = {.lex_state = 141, .external_lex_state = 2}, + [1382] = {.lex_state = 141, .external_lex_state = 2}, + [1383] = {.lex_state = 141, .external_lex_state = 2}, + [1384] = {.lex_state = 141, .external_lex_state = 2}, + [1385] = {.lex_state = 141, .external_lex_state = 2}, + [1386] = {.lex_state = 141, .external_lex_state = 2}, + [1387] = {.lex_state = 141, .external_lex_state = 2}, + [1388] = {.lex_state = 141, .external_lex_state = 2}, + [1389] = {.lex_state = 141, .external_lex_state = 2}, + [1390] = {.lex_state = 141, .external_lex_state = 2}, + [1391] = {.lex_state = 141, .external_lex_state = 2}, + [1392] = {.lex_state = 141, .external_lex_state = 2}, + [1393] = {.lex_state = 141, .external_lex_state = 2}, + [1394] = {.lex_state = 141, .external_lex_state = 2}, + [1395] = {.lex_state = 141, .external_lex_state = 2}, + [1396] = {.lex_state = 141, .external_lex_state = 2}, + [1397] = {.lex_state = 141, .external_lex_state = 2}, + [1398] = {.lex_state = 141, .external_lex_state = 2}, + [1399] = {.lex_state = 141, .external_lex_state = 2}, + [1400] = {.lex_state = 141, .external_lex_state = 2}, + [1401] = {.lex_state = 141, .external_lex_state = 2}, + [1402] = {.lex_state = 141, .external_lex_state = 2}, + [1403] = {.lex_state = 141, .external_lex_state = 2}, + [1404] = {.lex_state = 141, .external_lex_state = 2}, + [1405] = {.lex_state = 141, .external_lex_state = 2}, + [1406] = {.lex_state = 141, .external_lex_state = 2}, + [1407] = {.lex_state = 141, .external_lex_state = 2}, + [1408] = {.lex_state = 141, .external_lex_state = 2}, + [1409] = {.lex_state = 141, .external_lex_state = 2}, + [1410] = {.lex_state = 141, .external_lex_state = 2}, + [1411] = {.lex_state = 141, .external_lex_state = 2}, + [1412] = {.lex_state = 141, .external_lex_state = 2}, + [1413] = {.lex_state = 141, .external_lex_state = 2}, + [1414] = {.lex_state = 141, .external_lex_state = 2}, + [1415] = {.lex_state = 141, .external_lex_state = 2}, + [1416] = {.lex_state = 141, .external_lex_state = 2}, + [1417] = {.lex_state = 141, .external_lex_state = 2}, + [1418] = {.lex_state = 141, .external_lex_state = 2}, + [1419] = {.lex_state = 141, .external_lex_state = 2}, + [1420] = {.lex_state = 141, .external_lex_state = 2}, + [1421] = {.lex_state = 141, .external_lex_state = 2}, + [1422] = {.lex_state = 141, .external_lex_state = 2}, + [1423] = {.lex_state = 141, .external_lex_state = 2}, + [1424] = {.lex_state = 141, .external_lex_state = 2}, + [1425] = {.lex_state = 141, .external_lex_state = 2}, + [1426] = {.lex_state = 141, .external_lex_state = 2}, + [1427] = {.lex_state = 141, .external_lex_state = 2}, + [1428] = {.lex_state = 141, .external_lex_state = 2}, + [1429] = {.lex_state = 141, .external_lex_state = 2}, + [1430] = {.lex_state = 141, .external_lex_state = 2}, + [1431] = {.lex_state = 141, .external_lex_state = 2}, + [1432] = {.lex_state = 141, .external_lex_state = 2}, + [1433] = {.lex_state = 141, .external_lex_state = 2}, + [1434] = {.lex_state = 141, .external_lex_state = 2}, + [1435] = {.lex_state = 141, .external_lex_state = 2}, + [1436] = {.lex_state = 141, .external_lex_state = 2}, + [1437] = {.lex_state = 141, .external_lex_state = 2}, + [1438] = {.lex_state = 141, .external_lex_state = 2}, + [1439] = {.lex_state = 141, .external_lex_state = 2}, + [1440] = {.lex_state = 141, .external_lex_state = 2}, + [1441] = {.lex_state = 141, .external_lex_state = 2}, + [1442] = {.lex_state = 141, .external_lex_state = 2}, + [1443] = {.lex_state = 141, .external_lex_state = 2}, + [1444] = {.lex_state = 141, .external_lex_state = 2}, + [1445] = {.lex_state = 141, .external_lex_state = 2}, + [1446] = {.lex_state = 141, .external_lex_state = 2}, + [1447] = {.lex_state = 141, .external_lex_state = 2}, + [1448] = {.lex_state = 141, .external_lex_state = 2}, + [1449] = {.lex_state = 141, .external_lex_state = 2}, + [1450] = {.lex_state = 141, .external_lex_state = 2}, + [1451] = {.lex_state = 141, .external_lex_state = 2}, + [1452] = {.lex_state = 141, .external_lex_state = 2}, + [1453] = {.lex_state = 141, .external_lex_state = 2}, + [1454] = {.lex_state = 141, .external_lex_state = 2}, + [1455] = {.lex_state = 141, .external_lex_state = 2}, + [1456] = {.lex_state = 141, .external_lex_state = 2}, + [1457] = {.lex_state = 141, .external_lex_state = 2}, + [1458] = {.lex_state = 141, .external_lex_state = 2}, + [1459] = {.lex_state = 141, .external_lex_state = 2}, + [1460] = {.lex_state = 141, .external_lex_state = 2}, + [1461] = {.lex_state = 141, .external_lex_state = 2}, + [1462] = {.lex_state = 141, .external_lex_state = 2}, + [1463] = {.lex_state = 141, .external_lex_state = 2}, + [1464] = {.lex_state = 141, .external_lex_state = 2}, + [1465] = {.lex_state = 141, .external_lex_state = 2}, + [1466] = {.lex_state = 141, .external_lex_state = 2}, + [1467] = {.lex_state = 141, .external_lex_state = 2}, + [1468] = {.lex_state = 141, .external_lex_state = 2}, + [1469] = {.lex_state = 141, .external_lex_state = 2}, + [1470] = {.lex_state = 141, .external_lex_state = 2}, + [1471] = {.lex_state = 141, .external_lex_state = 2}, + [1472] = {.lex_state = 141, .external_lex_state = 2}, + [1473] = {.lex_state = 141, .external_lex_state = 2}, + [1474] = {.lex_state = 141, .external_lex_state = 2}, + [1475] = {.lex_state = 141, .external_lex_state = 2}, + [1476] = {.lex_state = 141, .external_lex_state = 2}, + [1477] = {.lex_state = 141, .external_lex_state = 2}, + [1478] = {.lex_state = 141, .external_lex_state = 2}, + [1479] = {.lex_state = 141, .external_lex_state = 2}, + [1480] = {.lex_state = 141, .external_lex_state = 2}, + [1481] = {.lex_state = 141, .external_lex_state = 2}, + [1482] = {.lex_state = 141, .external_lex_state = 2}, + [1483] = {.lex_state = 141, .external_lex_state = 2}, + [1484] = {.lex_state = 141, .external_lex_state = 2}, + [1485] = {.lex_state = 141, .external_lex_state = 2}, + [1486] = {.lex_state = 141, .external_lex_state = 2}, + [1487] = {.lex_state = 141, .external_lex_state = 2}, + [1488] = {.lex_state = 141, .external_lex_state = 2}, + [1489] = {.lex_state = 141, .external_lex_state = 2}, + [1490] = {.lex_state = 141, .external_lex_state = 2}, + [1491] = {.lex_state = 141, .external_lex_state = 2}, + [1492] = {.lex_state = 141, .external_lex_state = 2}, + [1493] = {.lex_state = 141, .external_lex_state = 2}, + [1494] = {.lex_state = 141, .external_lex_state = 2}, + [1495] = {.lex_state = 141, .external_lex_state = 2}, + [1496] = {.lex_state = 141, .external_lex_state = 2}, + [1497] = {.lex_state = 141, .external_lex_state = 2}, + [1498] = {.lex_state = 141, .external_lex_state = 2}, + [1499] = {.lex_state = 141, .external_lex_state = 2}, + [1500] = {.lex_state = 141, .external_lex_state = 2}, + [1501] = {.lex_state = 141, .external_lex_state = 2}, + [1502] = {.lex_state = 141, .external_lex_state = 2}, + [1503] = {.lex_state = 141, .external_lex_state = 2}, + [1504] = {.lex_state = 141, .external_lex_state = 2}, + [1505] = {.lex_state = 141, .external_lex_state = 2}, + [1506] = {.lex_state = 141, .external_lex_state = 2}, + [1507] = {.lex_state = 141, .external_lex_state = 2}, + [1508] = {.lex_state = 141, .external_lex_state = 2}, + [1509] = {.lex_state = 141, .external_lex_state = 2}, + [1510] = {.lex_state = 141, .external_lex_state = 2}, + [1511] = {.lex_state = 141, .external_lex_state = 2}, + [1512] = {.lex_state = 141, .external_lex_state = 2}, + [1513] = {.lex_state = 141, .external_lex_state = 2}, + [1514] = {.lex_state = 141, .external_lex_state = 2}, + [1515] = {.lex_state = 141, .external_lex_state = 2}, + [1516] = {.lex_state = 141, .external_lex_state = 2}, + [1517] = {.lex_state = 141, .external_lex_state = 2}, + [1518] = {.lex_state = 141, .external_lex_state = 2}, + [1519] = {.lex_state = 141, .external_lex_state = 2}, + [1520] = {.lex_state = 141, .external_lex_state = 2}, + [1521] = {.lex_state = 141, .external_lex_state = 2}, + [1522] = {.lex_state = 141, .external_lex_state = 2}, + [1523] = {.lex_state = 141, .external_lex_state = 2}, + [1524] = {.lex_state = 141, .external_lex_state = 2}, + [1525] = {.lex_state = 141, .external_lex_state = 2}, + [1526] = {.lex_state = 141, .external_lex_state = 2}, + [1527] = {.lex_state = 141, .external_lex_state = 2}, + [1528] = {.lex_state = 141, .external_lex_state = 2}, + [1529] = {.lex_state = 141, .external_lex_state = 2}, + [1530] = {.lex_state = 141, .external_lex_state = 2}, + [1531] = {.lex_state = 141, .external_lex_state = 2}, + [1532] = {.lex_state = 141, .external_lex_state = 2}, + [1533] = {.lex_state = 141, .external_lex_state = 2}, + [1534] = {.lex_state = 141, .external_lex_state = 2}, + [1535] = {.lex_state = 141, .external_lex_state = 2}, + [1536] = {.lex_state = 141, .external_lex_state = 2}, + [1537] = {.lex_state = 141, .external_lex_state = 2}, + [1538] = {.lex_state = 141, .external_lex_state = 2}, + [1539] = {.lex_state = 141, .external_lex_state = 2}, + [1540] = {.lex_state = 141, .external_lex_state = 2}, + [1541] = {.lex_state = 141, .external_lex_state = 2}, + [1542] = {.lex_state = 141, .external_lex_state = 2}, + [1543] = {.lex_state = 141, .external_lex_state = 2}, + [1544] = {.lex_state = 141, .external_lex_state = 2}, + [1545] = {.lex_state = 141, .external_lex_state = 2}, + [1546] = {.lex_state = 141, .external_lex_state = 2}, + [1547] = {.lex_state = 141, .external_lex_state = 2}, + [1548] = {.lex_state = 141, .external_lex_state = 2}, + [1549] = {.lex_state = 141, .external_lex_state = 2}, + [1550] = {.lex_state = 141, .external_lex_state = 2}, + [1551] = {.lex_state = 141, .external_lex_state = 2}, + [1552] = {.lex_state = 141, .external_lex_state = 2}, + [1553] = {.lex_state = 141, .external_lex_state = 2}, + [1554] = {.lex_state = 141, .external_lex_state = 2}, + [1555] = {.lex_state = 141, .external_lex_state = 2}, + [1556] = {.lex_state = 141, .external_lex_state = 2}, + [1557] = {.lex_state = 141, .external_lex_state = 2}, + [1558] = {.lex_state = 141, .external_lex_state = 2}, + [1559] = {.lex_state = 141, .external_lex_state = 2}, + [1560] = {.lex_state = 141, .external_lex_state = 2}, + [1561] = {.lex_state = 141, .external_lex_state = 2}, + [1562] = {.lex_state = 141, .external_lex_state = 2}, + [1563] = {.lex_state = 141, .external_lex_state = 2}, + [1564] = {.lex_state = 141, .external_lex_state = 2}, + [1565] = {.lex_state = 141, .external_lex_state = 2}, + [1566] = {.lex_state = 141, .external_lex_state = 2}, + [1567] = {.lex_state = 141, .external_lex_state = 2}, + [1568] = {.lex_state = 141, .external_lex_state = 2}, + [1569] = {.lex_state = 141, .external_lex_state = 2}, + [1570] = {.lex_state = 141, .external_lex_state = 2}, + [1571] = {.lex_state = 141, .external_lex_state = 2}, + [1572] = {.lex_state = 141, .external_lex_state = 2}, + [1573] = {.lex_state = 141, .external_lex_state = 2}, + [1574] = {.lex_state = 141, .external_lex_state = 2}, + [1575] = {.lex_state = 141, .external_lex_state = 2}, + [1576] = {.lex_state = 141, .external_lex_state = 2}, + [1577] = {.lex_state = 141, .external_lex_state = 2}, + [1578] = {.lex_state = 141, .external_lex_state = 2}, + [1579] = {.lex_state = 141, .external_lex_state = 2}, + [1580] = {.lex_state = 141, .external_lex_state = 2}, + [1581] = {.lex_state = 141, .external_lex_state = 2}, + [1582] = {.lex_state = 141, .external_lex_state = 2}, + [1583] = {.lex_state = 141, .external_lex_state = 2}, + [1584] = {.lex_state = 141, .external_lex_state = 2}, + [1585] = {.lex_state = 141, .external_lex_state = 2}, + [1586] = {.lex_state = 141, .external_lex_state = 2}, + [1587] = {.lex_state = 141, .external_lex_state = 2}, + [1588] = {.lex_state = 141, .external_lex_state = 2}, + [1589] = {.lex_state = 141, .external_lex_state = 2}, + [1590] = {.lex_state = 141, .external_lex_state = 2}, + [1591] = {.lex_state = 141, .external_lex_state = 2}, + [1592] = {.lex_state = 141, .external_lex_state = 2}, + [1593] = {.lex_state = 141, .external_lex_state = 2}, + [1594] = {.lex_state = 141, .external_lex_state = 2}, + [1595] = {.lex_state = 141, .external_lex_state = 2}, + [1596] = {.lex_state = 141, .external_lex_state = 2}, + [1597] = {.lex_state = 141, .external_lex_state = 2}, + [1598] = {.lex_state = 141, .external_lex_state = 2}, + [1599] = {.lex_state = 141, .external_lex_state = 2}, + [1600] = {.lex_state = 141, .external_lex_state = 2}, + [1601] = {.lex_state = 141, .external_lex_state = 2}, + [1602] = {.lex_state = 141, .external_lex_state = 2}, + [1603] = {.lex_state = 141, .external_lex_state = 2}, + [1604] = {.lex_state = 141, .external_lex_state = 2}, + [1605] = {.lex_state = 141, .external_lex_state = 2}, + [1606] = {.lex_state = 141, .external_lex_state = 2}, + [1607] = {.lex_state = 141, .external_lex_state = 2}, + [1608] = {.lex_state = 141, .external_lex_state = 2}, + [1609] = {.lex_state = 141, .external_lex_state = 2}, + [1610] = {.lex_state = 141, .external_lex_state = 2}, + [1611] = {.lex_state = 141, .external_lex_state = 2}, + [1612] = {.lex_state = 141, .external_lex_state = 2}, + [1613] = {.lex_state = 141, .external_lex_state = 2}, + [1614] = {.lex_state = 141, .external_lex_state = 2}, + [1615] = {.lex_state = 141, .external_lex_state = 2}, + [1616] = {.lex_state = 141, .external_lex_state = 2}, + [1617] = {.lex_state = 141, .external_lex_state = 2}, + [1618] = {.lex_state = 141, .external_lex_state = 2}, + [1619] = {.lex_state = 141, .external_lex_state = 2}, + [1620] = {.lex_state = 141, .external_lex_state = 2}, + [1621] = {.lex_state = 141, .external_lex_state = 2}, + [1622] = {.lex_state = 141, .external_lex_state = 2}, + [1623] = {.lex_state = 141, .external_lex_state = 2}, + [1624] = {.lex_state = 141, .external_lex_state = 2}, + [1625] = {.lex_state = 141, .external_lex_state = 2}, + [1626] = {.lex_state = 141, .external_lex_state = 2}, + [1627] = {.lex_state = 141, .external_lex_state = 2}, + [1628] = {.lex_state = 141, .external_lex_state = 2}, + [1629] = {.lex_state = 141, .external_lex_state = 2}, + [1630] = {.lex_state = 141, .external_lex_state = 2}, + [1631] = {.lex_state = 141, .external_lex_state = 2}, + [1632] = {.lex_state = 141, .external_lex_state = 2}, + [1633] = {.lex_state = 141, .external_lex_state = 2}, + [1634] = {.lex_state = 141, .external_lex_state = 2}, + [1635] = {.lex_state = 141, .external_lex_state = 2}, + [1636] = {.lex_state = 141, .external_lex_state = 2}, + [1637] = {.lex_state = 141, .external_lex_state = 2}, + [1638] = {.lex_state = 141, .external_lex_state = 2}, + [1639] = {.lex_state = 141, .external_lex_state = 2}, + [1640] = {.lex_state = 141, .external_lex_state = 2}, + [1641] = {.lex_state = 141, .external_lex_state = 2}, + [1642] = {.lex_state = 141, .external_lex_state = 2}, + [1643] = {.lex_state = 141, .external_lex_state = 2}, + [1644] = {.lex_state = 141, .external_lex_state = 2}, + [1645] = {.lex_state = 141, .external_lex_state = 2}, + [1646] = {.lex_state = 141, .external_lex_state = 2}, + [1647] = {.lex_state = 141, .external_lex_state = 2}, + [1648] = {.lex_state = 141, .external_lex_state = 2}, + [1649] = {.lex_state = 141, .external_lex_state = 2}, + [1650] = {.lex_state = 141, .external_lex_state = 2}, + [1651] = {.lex_state = 141, .external_lex_state = 2}, + [1652] = {.lex_state = 141, .external_lex_state = 2}, + [1653] = {.lex_state = 141, .external_lex_state = 2}, + [1654] = {.lex_state = 141, .external_lex_state = 2}, + [1655] = {.lex_state = 141, .external_lex_state = 2}, + [1656] = {.lex_state = 141, .external_lex_state = 2}, + [1657] = {.lex_state = 141, .external_lex_state = 2}, + [1658] = {.lex_state = 141, .external_lex_state = 2}, + [1659] = {.lex_state = 141, .external_lex_state = 2}, + [1660] = {.lex_state = 141, .external_lex_state = 2}, + [1661] = {.lex_state = 141, .external_lex_state = 2}, + [1662] = {.lex_state = 141, .external_lex_state = 2}, + [1663] = {.lex_state = 141, .external_lex_state = 2}, + [1664] = {.lex_state = 141, .external_lex_state = 2}, + [1665] = {.lex_state = 141, .external_lex_state = 2}, + [1666] = {.lex_state = 141, .external_lex_state = 2}, + [1667] = {.lex_state = 141, .external_lex_state = 2}, + [1668] = {.lex_state = 141, .external_lex_state = 2}, + [1669] = {.lex_state = 141, .external_lex_state = 2}, + [1670] = {.lex_state = 141, .external_lex_state = 2}, + [1671] = {.lex_state = 141, .external_lex_state = 2}, + [1672] = {.lex_state = 141, .external_lex_state = 2}, + [1673] = {.lex_state = 141, .external_lex_state = 2}, + [1674] = {.lex_state = 141, .external_lex_state = 2}, + [1675] = {.lex_state = 141, .external_lex_state = 2}, + [1676] = {.lex_state = 141, .external_lex_state = 2}, + [1677] = {.lex_state = 141, .external_lex_state = 2}, + [1678] = {.lex_state = 141, .external_lex_state = 2}, + [1679] = {.lex_state = 141, .external_lex_state = 2}, + [1680] = {.lex_state = 141, .external_lex_state = 2}, + [1681] = {.lex_state = 141, .external_lex_state = 2}, + [1682] = {.lex_state = 141, .external_lex_state = 2}, + [1683] = {.lex_state = 141, .external_lex_state = 2}, + [1684] = {.lex_state = 141, .external_lex_state = 2}, + [1685] = {.lex_state = 141, .external_lex_state = 2}, + [1686] = {.lex_state = 141, .external_lex_state = 2}, + [1687] = {.lex_state = 141, .external_lex_state = 2}, + [1688] = {.lex_state = 141, .external_lex_state = 2}, + [1689] = {.lex_state = 141, .external_lex_state = 2}, + [1690] = {.lex_state = 141, .external_lex_state = 2}, + [1691] = {.lex_state = 141, .external_lex_state = 2}, + [1692] = {.lex_state = 141, .external_lex_state = 2}, + [1693] = {.lex_state = 141, .external_lex_state = 2}, + [1694] = {.lex_state = 141, .external_lex_state = 2}, + [1695] = {.lex_state = 141, .external_lex_state = 2}, + [1696] = {.lex_state = 141, .external_lex_state = 2}, + [1697] = {.lex_state = 141, .external_lex_state = 2}, + [1698] = {.lex_state = 141, .external_lex_state = 2}, + [1699] = {.lex_state = 141, .external_lex_state = 2}, + [1700] = {.lex_state = 141, .external_lex_state = 2}, + [1701] = {.lex_state = 141, .external_lex_state = 2}, + [1702] = {.lex_state = 141, .external_lex_state = 2}, + [1703] = {.lex_state = 141, .external_lex_state = 2}, + [1704] = {.lex_state = 141, .external_lex_state = 2}, + [1705] = {.lex_state = 141, .external_lex_state = 2}, + [1706] = {.lex_state = 141, .external_lex_state = 2}, + [1707] = {.lex_state = 141, .external_lex_state = 2}, + [1708] = {.lex_state = 141, .external_lex_state = 2}, + [1709] = {.lex_state = 141, .external_lex_state = 2}, + [1710] = {.lex_state = 141, .external_lex_state = 2}, + [1711] = {.lex_state = 141, .external_lex_state = 2}, + [1712] = {.lex_state = 141, .external_lex_state = 2}, + [1713] = {.lex_state = 141, .external_lex_state = 2}, + [1714] = {.lex_state = 141, .external_lex_state = 2}, + [1715] = {.lex_state = 141, .external_lex_state = 2}, + [1716] = {.lex_state = 141, .external_lex_state = 2}, + [1717] = {.lex_state = 141, .external_lex_state = 2}, + [1718] = {.lex_state = 141, .external_lex_state = 2}, + [1719] = {.lex_state = 141, .external_lex_state = 2}, + [1720] = {.lex_state = 141, .external_lex_state = 2}, + [1721] = {.lex_state = 141, .external_lex_state = 2}, + [1722] = {.lex_state = 141, .external_lex_state = 2}, + [1723] = {.lex_state = 141, .external_lex_state = 2}, + [1724] = {.lex_state = 141, .external_lex_state = 2}, + [1725] = {.lex_state = 141, .external_lex_state = 2}, + [1726] = {.lex_state = 141, .external_lex_state = 2}, + [1727] = {.lex_state = 141, .external_lex_state = 2}, + [1728] = {.lex_state = 141, .external_lex_state = 2}, + [1729] = {.lex_state = 141, .external_lex_state = 2}, + [1730] = {.lex_state = 141, .external_lex_state = 2}, + [1731] = {.lex_state = 141, .external_lex_state = 2}, + [1732] = {.lex_state = 141, .external_lex_state = 2}, + [1733] = {.lex_state = 141, .external_lex_state = 2}, + [1734] = {.lex_state = 141, .external_lex_state = 2}, + [1735] = {.lex_state = 141, .external_lex_state = 2}, + [1736] = {.lex_state = 141, .external_lex_state = 2}, + [1737] = {.lex_state = 141, .external_lex_state = 2}, + [1738] = {.lex_state = 141, .external_lex_state = 2}, + [1739] = {.lex_state = 141, .external_lex_state = 2}, + [1740] = {.lex_state = 141, .external_lex_state = 2}, + [1741] = {.lex_state = 141, .external_lex_state = 2}, + [1742] = {.lex_state = 141, .external_lex_state = 2}, + [1743] = {.lex_state = 141, .external_lex_state = 2}, + [1744] = {.lex_state = 141, .external_lex_state = 2}, + [1745] = {.lex_state = 141, .external_lex_state = 2}, + [1746] = {.lex_state = 141, .external_lex_state = 2}, + [1747] = {.lex_state = 141, .external_lex_state = 2}, + [1748] = {.lex_state = 141, .external_lex_state = 2}, + [1749] = {.lex_state = 141, .external_lex_state = 2}, + [1750] = {.lex_state = 141, .external_lex_state = 2}, + [1751] = {.lex_state = 141, .external_lex_state = 2}, + [1752] = {.lex_state = 141, .external_lex_state = 2}, + [1753] = {.lex_state = 141, .external_lex_state = 2}, + [1754] = {.lex_state = 141, .external_lex_state = 2}, + [1755] = {.lex_state = 141, .external_lex_state = 2}, + [1756] = {.lex_state = 141, .external_lex_state = 2}, + [1757] = {.lex_state = 141, .external_lex_state = 2}, + [1758] = {.lex_state = 141, .external_lex_state = 2}, + [1759] = {.lex_state = 141, .external_lex_state = 2}, + [1760] = {.lex_state = 141, .external_lex_state = 2}, + [1761] = {.lex_state = 141, .external_lex_state = 2}, + [1762] = {.lex_state = 141, .external_lex_state = 2}, + [1763] = {.lex_state = 141, .external_lex_state = 2}, + [1764] = {.lex_state = 141, .external_lex_state = 2}, + [1765] = {.lex_state = 141, .external_lex_state = 2}, + [1766] = {.lex_state = 141, .external_lex_state = 2}, + [1767] = {.lex_state = 141, .external_lex_state = 2}, + [1768] = {.lex_state = 141, .external_lex_state = 2}, + [1769] = {.lex_state = 141, .external_lex_state = 2}, + [1770] = {.lex_state = 141, .external_lex_state = 2}, + [1771] = {.lex_state = 141, .external_lex_state = 2}, + [1772] = {.lex_state = 141, .external_lex_state = 2}, + [1773] = {.lex_state = 141, .external_lex_state = 2}, + [1774] = {.lex_state = 141, .external_lex_state = 2}, + [1775] = {.lex_state = 141, .external_lex_state = 2}, + [1776] = {.lex_state = 141, .external_lex_state = 2}, + [1777] = {.lex_state = 141, .external_lex_state = 2}, + [1778] = {.lex_state = 141, .external_lex_state = 2}, + [1779] = {.lex_state = 141, .external_lex_state = 2}, + [1780] = {.lex_state = 141, .external_lex_state = 2}, + [1781] = {.lex_state = 141, .external_lex_state = 2}, + [1782] = {.lex_state = 141, .external_lex_state = 2}, + [1783] = {.lex_state = 141, .external_lex_state = 2}, + [1784] = {.lex_state = 141, .external_lex_state = 2}, + [1785] = {.lex_state = 141, .external_lex_state = 2}, + [1786] = {.lex_state = 141, .external_lex_state = 2}, + [1787] = {.lex_state = 141, .external_lex_state = 2}, + [1788] = {.lex_state = 141, .external_lex_state = 2}, + [1789] = {.lex_state = 141, .external_lex_state = 2}, + [1790] = {.lex_state = 141, .external_lex_state = 2}, + [1791] = {.lex_state = 141, .external_lex_state = 2}, + [1792] = {.lex_state = 141, .external_lex_state = 2}, + [1793] = {.lex_state = 141, .external_lex_state = 2}, + [1794] = {.lex_state = 141, .external_lex_state = 2}, + [1795] = {.lex_state = 141, .external_lex_state = 2}, + [1796] = {.lex_state = 141, .external_lex_state = 2}, + [1797] = {.lex_state = 141, .external_lex_state = 2}, + [1798] = {.lex_state = 141, .external_lex_state = 2}, + [1799] = {.lex_state = 141, .external_lex_state = 2}, + [1800] = {.lex_state = 141, .external_lex_state = 2}, + [1801] = {.lex_state = 141, .external_lex_state = 2}, + [1802] = {.lex_state = 141, .external_lex_state = 2}, + [1803] = {.lex_state = 141, .external_lex_state = 2}, + [1804] = {.lex_state = 141, .external_lex_state = 2}, + [1805] = {.lex_state = 141, .external_lex_state = 2}, + [1806] = {.lex_state = 141, .external_lex_state = 2}, + [1807] = {.lex_state = 141, .external_lex_state = 2}, + [1808] = {.lex_state = 141, .external_lex_state = 2}, + [1809] = {.lex_state = 141, .external_lex_state = 2}, + [1810] = {.lex_state = 141, .external_lex_state = 2}, + [1811] = {.lex_state = 141, .external_lex_state = 2}, + [1812] = {.lex_state = 141, .external_lex_state = 2}, + [1813] = {.lex_state = 141, .external_lex_state = 2}, + [1814] = {.lex_state = 141, .external_lex_state = 2}, + [1815] = {.lex_state = 141, .external_lex_state = 2}, + [1816] = {.lex_state = 141, .external_lex_state = 2}, + [1817] = {.lex_state = 141, .external_lex_state = 2}, + [1818] = {.lex_state = 141, .external_lex_state = 2}, + [1819] = {.lex_state = 141, .external_lex_state = 2}, + [1820] = {.lex_state = 141, .external_lex_state = 2}, + [1821] = {.lex_state = 141, .external_lex_state = 2}, + [1822] = {.lex_state = 141, .external_lex_state = 2}, + [1823] = {.lex_state = 141, .external_lex_state = 2}, + [1824] = {.lex_state = 141, .external_lex_state = 2}, + [1825] = {.lex_state = 141, .external_lex_state = 2}, + [1826] = {.lex_state = 141, .external_lex_state = 2}, + [1827] = {.lex_state = 141, .external_lex_state = 2}, + [1828] = {.lex_state = 141, .external_lex_state = 2}, + [1829] = {.lex_state = 141, .external_lex_state = 2}, + [1830] = {.lex_state = 141, .external_lex_state = 2}, + [1831] = {.lex_state = 141, .external_lex_state = 2}, + [1832] = {.lex_state = 141, .external_lex_state = 2}, + [1833] = {.lex_state = 141, .external_lex_state = 2}, + [1834] = {.lex_state = 141, .external_lex_state = 2}, + [1835] = {.lex_state = 141, .external_lex_state = 2}, + [1836] = {.lex_state = 141, .external_lex_state = 2}, + [1837] = {.lex_state = 141, .external_lex_state = 2}, + [1838] = {.lex_state = 141, .external_lex_state = 2}, + [1839] = {.lex_state = 141, .external_lex_state = 2}, + [1840] = {.lex_state = 141, .external_lex_state = 2}, + [1841] = {.lex_state = 141, .external_lex_state = 2}, + [1842] = {.lex_state = 141, .external_lex_state = 2}, + [1843] = {.lex_state = 141, .external_lex_state = 2}, + [1844] = {.lex_state = 141, .external_lex_state = 2}, + [1845] = {.lex_state = 141, .external_lex_state = 2}, + [1846] = {.lex_state = 141, .external_lex_state = 2}, + [1847] = {.lex_state = 141, .external_lex_state = 2}, + [1848] = {.lex_state = 141, .external_lex_state = 2}, + [1849] = {.lex_state = 141, .external_lex_state = 2}, + [1850] = {.lex_state = 141, .external_lex_state = 2}, + [1851] = {.lex_state = 141, .external_lex_state = 2}, + [1852] = {.lex_state = 141, .external_lex_state = 2}, + [1853] = {.lex_state = 141, .external_lex_state = 2}, + [1854] = {.lex_state = 141, .external_lex_state = 2}, + [1855] = {.lex_state = 141, .external_lex_state = 2}, + [1856] = {.lex_state = 141, .external_lex_state = 2}, + [1857] = {.lex_state = 141, .external_lex_state = 2}, + [1858] = {.lex_state = 141, .external_lex_state = 2}, + [1859] = {.lex_state = 141, .external_lex_state = 2}, + [1860] = {.lex_state = 141, .external_lex_state = 2}, + [1861] = {.lex_state = 141, .external_lex_state = 2}, + [1862] = {.lex_state = 141, .external_lex_state = 2}, + [1863] = {.lex_state = 141, .external_lex_state = 2}, + [1864] = {.lex_state = 141, .external_lex_state = 2}, + [1865] = {.lex_state = 141, .external_lex_state = 2}, + [1866] = {.lex_state = 141, .external_lex_state = 2}, + [1867] = {.lex_state = 141, .external_lex_state = 2}, + [1868] = {.lex_state = 141, .external_lex_state = 2}, + [1869] = {.lex_state = 141, .external_lex_state = 2}, + [1870] = {.lex_state = 141, .external_lex_state = 2}, + [1871] = {.lex_state = 141, .external_lex_state = 2}, + [1872] = {.lex_state = 141, .external_lex_state = 2}, + [1873] = {.lex_state = 141, .external_lex_state = 2}, + [1874] = {.lex_state = 141, .external_lex_state = 2}, + [1875] = {.lex_state = 141, .external_lex_state = 2}, + [1876] = {.lex_state = 141, .external_lex_state = 2}, + [1877] = {.lex_state = 141, .external_lex_state = 2}, + [1878] = {.lex_state = 141, .external_lex_state = 2}, + [1879] = {.lex_state = 141, .external_lex_state = 2}, + [1880] = {.lex_state = 141, .external_lex_state = 2}, + [1881] = {.lex_state = 141, .external_lex_state = 2}, + [1882] = {.lex_state = 141, .external_lex_state = 2}, + [1883] = {.lex_state = 141, .external_lex_state = 2}, + [1884] = {.lex_state = 141, .external_lex_state = 2}, + [1885] = {.lex_state = 141, .external_lex_state = 2}, + [1886] = {.lex_state = 141, .external_lex_state = 2}, + [1887] = {.lex_state = 141, .external_lex_state = 2}, + [1888] = {.lex_state = 141, .external_lex_state = 2}, + [1889] = {.lex_state = 141, .external_lex_state = 2}, + [1890] = {.lex_state = 141, .external_lex_state = 2}, + [1891] = {.lex_state = 141, .external_lex_state = 2}, + [1892] = {.lex_state = 141, .external_lex_state = 2}, + [1893] = {.lex_state = 141, .external_lex_state = 2}, + [1894] = {.lex_state = 141, .external_lex_state = 2}, + [1895] = {.lex_state = 141, .external_lex_state = 2}, + [1896] = {.lex_state = 141, .external_lex_state = 2}, + [1897] = {.lex_state = 141, .external_lex_state = 2}, + [1898] = {.lex_state = 141, .external_lex_state = 2}, + [1899] = {.lex_state = 141, .external_lex_state = 2}, + [1900] = {.lex_state = 141, .external_lex_state = 2}, + [1901] = {.lex_state = 141, .external_lex_state = 2}, + [1902] = {.lex_state = 141, .external_lex_state = 2}, + [1903] = {.lex_state = 141, .external_lex_state = 2}, + [1904] = {.lex_state = 141, .external_lex_state = 2}, + [1905] = {.lex_state = 141, .external_lex_state = 2}, + [1906] = {.lex_state = 141, .external_lex_state = 2}, + [1907] = {.lex_state = 141, .external_lex_state = 2}, + [1908] = {.lex_state = 141, .external_lex_state = 2}, + [1909] = {.lex_state = 141, .external_lex_state = 2}, + [1910] = {.lex_state = 141, .external_lex_state = 2}, + [1911] = {.lex_state = 141, .external_lex_state = 2}, + [1912] = {.lex_state = 141, .external_lex_state = 2}, + [1913] = {.lex_state = 141, .external_lex_state = 2}, + [1914] = {.lex_state = 141, .external_lex_state = 2}, + [1915] = {.lex_state = 141, .external_lex_state = 2}, + [1916] = {.lex_state = 141, .external_lex_state = 2}, + [1917] = {.lex_state = 139, .external_lex_state = 2}, + [1918] = {.lex_state = 139, .external_lex_state = 2}, + [1919] = {.lex_state = 139, .external_lex_state = 2}, + [1920] = {.lex_state = 140, .external_lex_state = 2}, + [1921] = {.lex_state = 140, .external_lex_state = 2}, + [1922] = {.lex_state = 140, .external_lex_state = 2}, + [1923] = {.lex_state = 140, .external_lex_state = 2}, + [1924] = {.lex_state = 140, .external_lex_state = 2}, + [1925] = {.lex_state = 140, .external_lex_state = 2}, + [1926] = {.lex_state = 141}, + [1927] = {.lex_state = 141}, + [1928] = {.lex_state = 141}, + [1929] = {.lex_state = 141}, + [1930] = {.lex_state = 141}, + [1931] = {.lex_state = 141}, + [1932] = {.lex_state = 141, .external_lex_state = 2}, + [1933] = {.lex_state = 141, .external_lex_state = 2}, + [1934] = {.lex_state = 141}, + [1935] = {.lex_state = 141, .external_lex_state = 2}, + [1936] = {.lex_state = 141}, + [1937] = {.lex_state = 141}, + [1938] = {.lex_state = 141}, + [1939] = {.lex_state = 141}, + [1940] = {.lex_state = 141, .external_lex_state = 2}, + [1941] = {.lex_state = 141, .external_lex_state = 2}, + [1942] = {.lex_state = 141, .external_lex_state = 2}, + [1943] = {.lex_state = 141, .external_lex_state = 2}, + [1944] = {.lex_state = 141, .external_lex_state = 2}, + [1945] = {.lex_state = 141, .external_lex_state = 2}, + [1946] = {.lex_state = 141, .external_lex_state = 2}, + [1947] = {.lex_state = 141, .external_lex_state = 2}, + [1948] = {.lex_state = 141, .external_lex_state = 2}, + [1949] = {.lex_state = 141, .external_lex_state = 2}, + [1950] = {.lex_state = 141, .external_lex_state = 2}, + [1951] = {.lex_state = 141, .external_lex_state = 2}, + [1952] = {.lex_state = 141, .external_lex_state = 2}, + [1953] = {.lex_state = 141, .external_lex_state = 2}, + [1954] = {.lex_state = 141, .external_lex_state = 2}, + [1955] = {.lex_state = 141, .external_lex_state = 2}, + [1956] = {.lex_state = 141, .external_lex_state = 2}, + [1957] = {.lex_state = 141, .external_lex_state = 2}, + [1958] = {.lex_state = 141, .external_lex_state = 2}, + [1959] = {.lex_state = 141, .external_lex_state = 2}, + [1960] = {.lex_state = 141, .external_lex_state = 2}, + [1961] = {.lex_state = 141, .external_lex_state = 2}, + [1962] = {.lex_state = 141, .external_lex_state = 2}, + [1963] = {.lex_state = 141, .external_lex_state = 2}, + [1964] = {.lex_state = 141, .external_lex_state = 2}, + [1965] = {.lex_state = 141, .external_lex_state = 2}, + [1966] = {.lex_state = 141, .external_lex_state = 2}, + [1967] = {.lex_state = 141, .external_lex_state = 2}, + [1968] = {.lex_state = 141, .external_lex_state = 2}, + [1969] = {.lex_state = 141, .external_lex_state = 2}, + [1970] = {.lex_state = 141, .external_lex_state = 2}, + [1971] = {.lex_state = 141, .external_lex_state = 2}, + [1972] = {.lex_state = 141, .external_lex_state = 2}, + [1973] = {.lex_state = 141, .external_lex_state = 2}, + [1974] = {.lex_state = 141, .external_lex_state = 2}, + [1975] = {.lex_state = 141, .external_lex_state = 2}, + [1976] = {.lex_state = 141, .external_lex_state = 2}, + [1977] = {.lex_state = 141, .external_lex_state = 2}, + [1978] = {.lex_state = 141, .external_lex_state = 2}, + [1979] = {.lex_state = 141, .external_lex_state = 2}, + [1980] = {.lex_state = 141, .external_lex_state = 2}, + [1981] = {.lex_state = 141, .external_lex_state = 2}, + [1982] = {.lex_state = 141, .external_lex_state = 2}, + [1983] = {.lex_state = 141, .external_lex_state = 2}, + [1984] = {.lex_state = 141, .external_lex_state = 2}, + [1985] = {.lex_state = 141, .external_lex_state = 2}, + [1986] = {.lex_state = 141, .external_lex_state = 2}, + [1987] = {.lex_state = 141, .external_lex_state = 2}, + [1988] = {.lex_state = 141, .external_lex_state = 2}, + [1989] = {.lex_state = 141, .external_lex_state = 2}, + [1990] = {.lex_state = 141, .external_lex_state = 2}, + [1991] = {.lex_state = 141, .external_lex_state = 2}, + [1992] = {.lex_state = 141, .external_lex_state = 2}, + [1993] = {.lex_state = 141, .external_lex_state = 2}, + [1994] = {.lex_state = 141, .external_lex_state = 2}, + [1995] = {.lex_state = 141, .external_lex_state = 2}, + [1996] = {.lex_state = 141, .external_lex_state = 2}, + [1997] = {.lex_state = 141, .external_lex_state = 2}, + [1998] = {.lex_state = 141, .external_lex_state = 2}, + [1999] = {.lex_state = 141, .external_lex_state = 2}, + [2000] = {.lex_state = 141, .external_lex_state = 2}, + [2001] = {.lex_state = 141, .external_lex_state = 2}, + [2002] = {.lex_state = 141, .external_lex_state = 2}, + [2003] = {.lex_state = 141, .external_lex_state = 2}, + [2004] = {.lex_state = 141, .external_lex_state = 2}, + [2005] = {.lex_state = 141, .external_lex_state = 2}, + [2006] = {.lex_state = 141, .external_lex_state = 2}, + [2007] = {.lex_state = 141, .external_lex_state = 2}, + [2008] = {.lex_state = 141, .external_lex_state = 2}, + [2009] = {.lex_state = 141, .external_lex_state = 2}, + [2010] = {.lex_state = 141, .external_lex_state = 2}, + [2011] = {.lex_state = 141, .external_lex_state = 2}, + [2012] = {.lex_state = 141, .external_lex_state = 2}, + [2013] = {.lex_state = 141, .external_lex_state = 2}, + [2014] = {.lex_state = 141, .external_lex_state = 2}, + [2015] = {.lex_state = 141, .external_lex_state = 2}, + [2016] = {.lex_state = 141, .external_lex_state = 2}, + [2017] = {.lex_state = 141, .external_lex_state = 2}, + [2018] = {.lex_state = 141, .external_lex_state = 2}, + [2019] = {.lex_state = 141, .external_lex_state = 2}, + [2020] = {.lex_state = 141, .external_lex_state = 2}, + [2021] = {.lex_state = 141, .external_lex_state = 2}, + [2022] = {.lex_state = 141, .external_lex_state = 2}, + [2023] = {.lex_state = 141, .external_lex_state = 2}, + [2024] = {.lex_state = 141, .external_lex_state = 2}, + [2025] = {.lex_state = 141, .external_lex_state = 2}, + [2026] = {.lex_state = 141, .external_lex_state = 2}, + [2027] = {.lex_state = 141, .external_lex_state = 2}, + [2028] = {.lex_state = 141, .external_lex_state = 2}, + [2029] = {.lex_state = 141, .external_lex_state = 2}, + [2030] = {.lex_state = 141, .external_lex_state = 2}, + [2031] = {.lex_state = 141, .external_lex_state = 2}, + [2032] = {.lex_state = 141, .external_lex_state = 2}, + [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 = 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}, + [2041] = {.lex_state = 141, .external_lex_state = 2}, + [2042] = {.lex_state = 141, .external_lex_state = 2}, + [2043] = {.lex_state = 141, .external_lex_state = 2}, + [2044] = {.lex_state = 141, .external_lex_state = 2}, + [2045] = {.lex_state = 141, .external_lex_state = 2}, + [2046] = {.lex_state = 141, .external_lex_state = 2}, + [2047] = {.lex_state = 141, .external_lex_state = 2}, + [2048] = {.lex_state = 141, .external_lex_state = 2}, + [2049] = {.lex_state = 141, .external_lex_state = 2}, + [2050] = {.lex_state = 141, .external_lex_state = 2}, + [2051] = {.lex_state = 141, .external_lex_state = 2}, + [2052] = {.lex_state = 141, .external_lex_state = 2}, + [2053] = {.lex_state = 141, .external_lex_state = 2}, + [2054] = {.lex_state = 141, .external_lex_state = 2}, + [2055] = {.lex_state = 141, .external_lex_state = 2}, + [2056] = {.lex_state = 141, .external_lex_state = 2}, + [2057] = {.lex_state = 141, .external_lex_state = 2}, + [2058] = {.lex_state = 141, .external_lex_state = 2}, + [2059] = {.lex_state = 141, .external_lex_state = 2}, + [2060] = {.lex_state = 141, .external_lex_state = 2}, + [2061] = {.lex_state = 141, .external_lex_state = 2}, + [2062] = {.lex_state = 141, .external_lex_state = 2}, + [2063] = {.lex_state = 141, .external_lex_state = 2}, + [2064] = {.lex_state = 141, .external_lex_state = 2}, + [2065] = {.lex_state = 141, .external_lex_state = 2}, + [2066] = {.lex_state = 141, .external_lex_state = 2}, + [2067] = {.lex_state = 141, .external_lex_state = 2}, + [2068] = {.lex_state = 141, .external_lex_state = 2}, + [2069] = {.lex_state = 141, .external_lex_state = 2}, + [2070] = {.lex_state = 141, .external_lex_state = 2}, + [2071] = {.lex_state = 141, .external_lex_state = 2}, + [2072] = {.lex_state = 141, .external_lex_state = 2}, + [2073] = {.lex_state = 141, .external_lex_state = 2}, + [2074] = {.lex_state = 141, .external_lex_state = 2}, + [2075] = {.lex_state = 141, .external_lex_state = 2}, + [2076] = {.lex_state = 141, .external_lex_state = 2}, + [2077] = {.lex_state = 141, .external_lex_state = 2}, + [2078] = {.lex_state = 141, .external_lex_state = 2}, + [2079] = {.lex_state = 141, .external_lex_state = 2}, + [2080] = {.lex_state = 141, .external_lex_state = 2}, + [2081] = {.lex_state = 141, .external_lex_state = 2}, + [2082] = {.lex_state = 141, .external_lex_state = 2}, + [2083] = {.lex_state = 141, .external_lex_state = 2}, + [2084] = {.lex_state = 141, .external_lex_state = 2}, + [2085] = {.lex_state = 141, .external_lex_state = 2}, + [2086] = {.lex_state = 141, .external_lex_state = 2}, + [2087] = {.lex_state = 141, .external_lex_state = 2}, + [2088] = {.lex_state = 141, .external_lex_state = 2}, + [2089] = {.lex_state = 141, .external_lex_state = 2}, + [2090] = {.lex_state = 141, .external_lex_state = 2}, + [2091] = {.lex_state = 141, .external_lex_state = 2}, + [2092] = {.lex_state = 141, .external_lex_state = 2}, + [2093] = {.lex_state = 141, .external_lex_state = 2}, + [2094] = {.lex_state = 141, .external_lex_state = 2}, + [2095] = {.lex_state = 141, .external_lex_state = 2}, + [2096] = {.lex_state = 141, .external_lex_state = 2}, + [2097] = {.lex_state = 141, .external_lex_state = 2}, + [2098] = {.lex_state = 141, .external_lex_state = 2}, + [2099] = {.lex_state = 141, .external_lex_state = 2}, + [2100] = {.lex_state = 141, .external_lex_state = 2}, + [2101] = {.lex_state = 141, .external_lex_state = 2}, + [2102] = {.lex_state = 141, .external_lex_state = 2}, + [2103] = {.lex_state = 141, .external_lex_state = 2}, + [2104] = {.lex_state = 141, .external_lex_state = 2}, + [2105] = {.lex_state = 141, .external_lex_state = 2}, + [2106] = {.lex_state = 141, .external_lex_state = 2}, + [2107] = {.lex_state = 141, .external_lex_state = 2}, + [2108] = {.lex_state = 141, .external_lex_state = 2}, + [2109] = {.lex_state = 141, .external_lex_state = 2}, + [2110] = {.lex_state = 141, .external_lex_state = 2}, + [2111] = {.lex_state = 141, .external_lex_state = 2}, + [2112] = {.lex_state = 141, .external_lex_state = 2}, + [2113] = {.lex_state = 141, .external_lex_state = 2}, + [2114] = {.lex_state = 141, .external_lex_state = 2}, + [2115] = {.lex_state = 141, .external_lex_state = 2}, + [2116] = {.lex_state = 139}, + [2117] = {.lex_state = 141, .external_lex_state = 2}, + [2118] = {.lex_state = 141, .external_lex_state = 2}, + [2119] = {.lex_state = 141, .external_lex_state = 2}, + [2120] = {.lex_state = 141, .external_lex_state = 2}, + [2121] = {.lex_state = 141, .external_lex_state = 2}, + [2122] = {.lex_state = 141, .external_lex_state = 2}, + [2123] = {.lex_state = 141, .external_lex_state = 2}, + [2124] = {.lex_state = 141, .external_lex_state = 2}, + [2125] = {.lex_state = 141, .external_lex_state = 2}, + [2126] = {.lex_state = 141, .external_lex_state = 2}, + [2127] = {.lex_state = 141, .external_lex_state = 2}, + [2128] = {.lex_state = 141, .external_lex_state = 2}, + [2129] = {.lex_state = 141, .external_lex_state = 2}, + [2130] = {.lex_state = 141, .external_lex_state = 2}, + [2131] = {.lex_state = 141, .external_lex_state = 2}, + [2132] = {.lex_state = 141, .external_lex_state = 2}, + [2133] = {.lex_state = 141, .external_lex_state = 2}, + [2134] = {.lex_state = 141, .external_lex_state = 2}, + [2135] = {.lex_state = 141, .external_lex_state = 2}, + [2136] = {.lex_state = 141, .external_lex_state = 2}, + [2137] = {.lex_state = 141, .external_lex_state = 2}, + [2138] = {.lex_state = 141, .external_lex_state = 2}, + [2139] = {.lex_state = 141, .external_lex_state = 2}, + [2140] = {.lex_state = 141, .external_lex_state = 2}, + [2141] = {.lex_state = 141, .external_lex_state = 2}, + [2142] = {.lex_state = 141, .external_lex_state = 2}, + [2143] = {.lex_state = 141, .external_lex_state = 2}, + [2144] = {.lex_state = 141, .external_lex_state = 2}, + [2145] = {.lex_state = 141, .external_lex_state = 2}, + [2146] = {.lex_state = 141, .external_lex_state = 2}, + [2147] = {.lex_state = 141, .external_lex_state = 2}, + [2148] = {.lex_state = 141, .external_lex_state = 2}, + [2149] = {.lex_state = 141, .external_lex_state = 2}, + [2150] = {.lex_state = 141, .external_lex_state = 2}, + [2151] = {.lex_state = 141, .external_lex_state = 2}, + [2152] = {.lex_state = 141, .external_lex_state = 2}, + [2153] = {.lex_state = 141, .external_lex_state = 2}, + [2154] = {.lex_state = 141, .external_lex_state = 2}, + [2155] = {.lex_state = 141, .external_lex_state = 2}, + [2156] = {.lex_state = 141, .external_lex_state = 2}, + [2157] = {.lex_state = 141, .external_lex_state = 2}, + [2158] = {.lex_state = 141, .external_lex_state = 2}, + [2159] = {.lex_state = 141, .external_lex_state = 2}, + [2160] = {.lex_state = 141, .external_lex_state = 2}, + [2161] = {.lex_state = 141, .external_lex_state = 2}, + [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 = 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}, + [2172] = {.lex_state = 141, .external_lex_state = 2}, + [2173] = {.lex_state = 141, .external_lex_state = 2}, + [2174] = {.lex_state = 141, .external_lex_state = 2}, + [2175] = {.lex_state = 141, .external_lex_state = 2}, + [2176] = {.lex_state = 141, .external_lex_state = 2}, + [2177] = {.lex_state = 141, .external_lex_state = 2}, + [2178] = {.lex_state = 141, .external_lex_state = 2}, + [2179] = {.lex_state = 141, .external_lex_state = 2}, + [2180] = {.lex_state = 141, .external_lex_state = 2}, + [2181] = {.lex_state = 141, .external_lex_state = 2}, + [2182] = {.lex_state = 141, .external_lex_state = 2}, + [2183] = {.lex_state = 141, .external_lex_state = 2}, + [2184] = {.lex_state = 141, .external_lex_state = 2}, + [2185] = {.lex_state = 141, .external_lex_state = 2}, + [2186] = {.lex_state = 141, .external_lex_state = 2}, + [2187] = {.lex_state = 141, .external_lex_state = 2}, + [2188] = {.lex_state = 141, .external_lex_state = 2}, + [2189] = {.lex_state = 141, .external_lex_state = 2}, + [2190] = {.lex_state = 141, .external_lex_state = 2}, + [2191] = {.lex_state = 141, .external_lex_state = 2}, + [2192] = {.lex_state = 141, .external_lex_state = 2}, + [2193] = {.lex_state = 141, .external_lex_state = 2}, + [2194] = {.lex_state = 141, .external_lex_state = 2}, + [2195] = {.lex_state = 141, .external_lex_state = 2}, + [2196] = {.lex_state = 141, .external_lex_state = 2}, + [2197] = {.lex_state = 139}, + [2198] = {.lex_state = 139}, + [2199] = {.lex_state = 139}, + [2200] = {.lex_state = 139}, + [2201] = {.lex_state = 139}, + [2202] = {.lex_state = 139}, + [2203] = {.lex_state = 139}, + [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 = 139, .external_lex_state = 4}, + [2210] = {.lex_state = 5}, [2211] = {.lex_state = 5}, - [2212] = {.lex_state = 138, .external_lex_state = 4}, + [2212] = {.lex_state = 139}, [2213] = {.lex_state = 5}, [2214] = {.lex_state = 5}, - [2215] = {.lex_state = 5}, + [2215] = {.lex_state = 139}, [2216] = {.lex_state = 5}, - [2217] = {.lex_state = 138}, - [2218] = {.lex_state = 138}, - [2219] = {.lex_state = 5}, + [2217] = {.lex_state = 5}, + [2218] = {.lex_state = 139}, + [2219] = {.lex_state = 139}, [2220] = {.lex_state = 5}, [2221] = {.lex_state = 5}, [2222] = {.lex_state = 5}, [2223] = {.lex_state = 5}, [2224] = {.lex_state = 5}, - [2225] = {.lex_state = 138}, + [2225] = {.lex_state = 139}, [2226] = {.lex_state = 5}, [2227] = {.lex_state = 5}, - [2228] = {.lex_state = 138}, + [2228] = {.lex_state = 139}, [2229] = {.lex_state = 5}, - [2230] = {.lex_state = 138}, - [2231] = {.lex_state = 138, .external_lex_state = 4}, - [2232] = {.lex_state = 5}, + [2230] = {.lex_state = 5}, + [2231] = {.lex_state = 139, .external_lex_state = 4}, + [2232] = {.lex_state = 141}, [2233] = {.lex_state = 5}, - [2234] = {.lex_state = 140}, - [2235] = {.lex_state = 8}, - [2236] = {.lex_state = 5}, - [2237] = {.lex_state = 139}, - [2238] = {.lex_state = 8}, - [2239] = {.lex_state = 140}, - [2240] = {.lex_state = 8}, - [2241] = {.lex_state = 138}, - [2242] = {.lex_state = 138}, - [2243] = {.lex_state = 138}, - [2244] = {.lex_state = 138}, - [2245] = {.lex_state = 140}, - [2246] = {.lex_state = 138}, - [2247] = {.lex_state = 138}, - [2248] = {.lex_state = 138}, - [2249] = {.lex_state = 5}, - [2250] = {.lex_state = 5}, - [2251] = {.lex_state = 8}, - [2252] = {.lex_state = 138}, - [2253] = {.lex_state = 138}, - [2254] = {.lex_state = 138}, - [2255] = {.lex_state = 138}, - [2256] = {.lex_state = 138, .external_lex_state = 4}, - [2257] = {.lex_state = 138}, - [2258] = {.lex_state = 138}, - [2259] = {.lex_state = 138}, - [2260] = {.lex_state = 138}, - [2261] = {.lex_state = 139}, - [2262] = {.lex_state = 5}, - [2263] = {.lex_state = 138, .external_lex_state = 4}, - [2264] = {.lex_state = 138, .external_lex_state = 4}, - [2265] = {.lex_state = 139}, - [2266] = {.lex_state = 139}, + [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 = 8}, + [2242] = {.lex_state = 139}, + [2243] = {.lex_state = 139}, + [2244] = {.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 = 8}, + [2255] = {.lex_state = 139}, + [2256] = {.lex_state = 139, .external_lex_state = 4}, + [2257] = {.lex_state = 139}, + [2258] = {.lex_state = 5}, + [2259] = {.lex_state = 5}, + [2260] = {.lex_state = 139}, + [2261] = {.lex_state = 5}, + [2262] = {.lex_state = 139}, + [2263] = {.lex_state = 8}, + [2264] = {.lex_state = 140}, + [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 = 139}, - [2270] = {.lex_state = 8}, + [2269] = {.lex_state = 140}, + [2270] = {.lex_state = 5}, [2271] = {.lex_state = 5}, - [2272] = {.lex_state = 5}, - [2273] = {.lex_state = 138, .external_lex_state = 4}, - [2274] = {.lex_state = 5}, - [2275] = {.lex_state = 138}, + [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 = 138}, - [2278] = {.lex_state = 139}, + [2277] = {.lex_state = 5}, + [2278] = {.lex_state = 139, .external_lex_state = 4}, [2279] = {.lex_state = 5}, - [2280] = {.lex_state = 5}, - [2281] = {.lex_state = 139}, - [2282] = {.lex_state = 138, .external_lex_state = 4}, + [2280] = {.lex_state = 140}, + [2281] = {.lex_state = 140}, + [2282] = {.lex_state = 5}, [2283] = {.lex_state = 5, .external_lex_state = 4}, - [2284] = {.lex_state = 5, .external_lex_state = 4}, + [2284] = {.lex_state = 139}, [2285] = {.lex_state = 5, .external_lex_state = 4}, - [2286] = {.lex_state = 5}, + [2286] = {.lex_state = 139}, [2287] = {.lex_state = 5, .external_lex_state = 4}, - [2288] = {.lex_state = 5, .external_lex_state = 4}, - [2289] = {.lex_state = 5}, - [2290] = {.lex_state = 5}, + [2288] = {.lex_state = 5}, + [2289] = {.lex_state = 139}, + [2290] = {.lex_state = 5, .external_lex_state = 4}, [2291] = {.lex_state = 5, .external_lex_state = 4}, - [2292] = {.lex_state = 138}, - [2293] = {.lex_state = 138, .external_lex_state = 4}, - [2294] = {.lex_state = 138}, + [2292] = {.lex_state = 5}, + [2293] = {.lex_state = 5, .external_lex_state = 4}, + [2294] = {.lex_state = 5}, [2295] = {.lex_state = 5, .external_lex_state = 4}, - [2296] = {.lex_state = 5, .external_lex_state = 4}, - [2297] = {.lex_state = 139}, - [2298] = {.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}, - [2301] = {.lex_state = 5, .external_lex_state = 4}, - [2302] = {.lex_state = 5, .external_lex_state = 4}, + [2300] = {.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 = 138}, - [2306] = {.lex_state = 5, .external_lex_state = 4}, - [2307] = {.lex_state = 139}, - [2308] = {.lex_state = 138}, - [2309] = {.lex_state = 138}, - [2310] = {.lex_state = 139}, - [2311] = {.lex_state = 5}, - [2312] = {.lex_state = 138}, - [2313] = {.lex_state = 140}, + [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 = 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 = 5}, - [2316] = {.lex_state = 138}, - [2317] = {.lex_state = 5}, - [2318] = {.lex_state = 5}, - [2319] = {.lex_state = 138}, - [2320] = {.lex_state = 5}, - [2321] = {.lex_state = 140}, - [2322] = {.lex_state = 5}, - [2323] = {.lex_state = 138}, - [2324] = {.lex_state = 139}, + [2315] = {.lex_state = 140}, + [2316] = {.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 = 139}, - [2327] = {.lex_state = 138}, - [2328] = {.lex_state = 5}, - [2329] = {.lex_state = 5, .external_lex_state = 4}, - [2330] = {.lex_state = 5, .external_lex_state = 4}, - [2331] = {.lex_state = 139}, + [2326] = {.lex_state = 5}, + [2327] = {.lex_state = 139}, + [2328] = {.lex_state = 8, .external_lex_state = 4}, + [2329] = {.lex_state = 139}, + [2330] = {.lex_state = 139}, + [2331] = {.lex_state = 5}, [2332] = {.lex_state = 5}, - [2333] = {.lex_state = 138}, + [2333] = {.lex_state = 5, .external_lex_state = 4}, [2334] = {.lex_state = 139}, [2335] = {.lex_state = 139}, [2336] = {.lex_state = 139}, - [2337] = {.lex_state = 138}, - [2338] = {.lex_state = 138}, + [2337] = {.lex_state = 5, .external_lex_state = 4}, + [2338] = {.lex_state = 140}, [2339] = {.lex_state = 5, .external_lex_state = 4}, - [2340] = {.lex_state = 138}, - [2341] = {.lex_state = 138}, - [2342] = {.lex_state = 5, .external_lex_state = 4}, - [2343] = {.lex_state = 8, .external_lex_state = 4}, - [2344] = {.lex_state = 138}, - [2345] = {.lex_state = 5}, - [2346] = {.lex_state = 5}, - [2347] = {.lex_state = 138}, - [2348] = {.lex_state = 138}, + [2340] = {.lex_state = 140}, + [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}, - [2350] = {.lex_state = 138}, - [2351] = {.lex_state = 139}, + [2350] = {.lex_state = 140}, + [2351] = {.lex_state = 140}, [2352] = {.lex_state = 139}, - [2353] = {.lex_state = 138}, + [2353] = {.lex_state = 139}, [2354] = {.lex_state = 139}, - [2355] = {.lex_state = 138}, - [2356] = {.lex_state = 138}, - [2357] = {.lex_state = 138}, + [2355] = {.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 = 138}, - [2361] = {.lex_state = 5}, - [2362] = {.lex_state = 139}, - [2363] = {.lex_state = 138}, - [2364] = {.lex_state = 138}, - [2365] = {.lex_state = 138}, - [2366] = {.lex_state = 139}, - [2367] = {.lex_state = 138}, - [2368] = {.lex_state = 139}, - [2369] = {.lex_state = 138}, - [2370] = {.lex_state = 8, .external_lex_state = 4}, - [2371] = {.lex_state = 138}, + [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 = 139}, + [2366] = {.lex_state = 140}, + [2367] = {.lex_state = 140}, + [2368] = {.lex_state = 140}, + [2369] = {.lex_state = 140}, + [2370] = {.lex_state = 140}, + [2371] = {.lex_state = 140}, [2372] = {.lex_state = 139}, - [2373] = {.lex_state = 138}, - [2374] = {.lex_state = 138}, - [2375] = {.lex_state = 5}, - [2376] = {.lex_state = 139}, - [2377] = {.lex_state = 138}, - [2378] = {.lex_state = 138}, - [2379] = {.lex_state = 138}, - [2380] = {.lex_state = 138}, - [2381] = {.lex_state = 5}, - [2382] = {.lex_state = 138}, - [2383] = {.lex_state = 8, .external_lex_state = 4}, - [2384] = {.lex_state = 139}, + [2373] = {.lex_state = 139}, + [2374] = {.lex_state = 140}, + [2375] = {.lex_state = 140}, + [2376] = {.lex_state = 140}, + [2377] = {.lex_state = 5}, + [2378] = {.lex_state = 139}, + [2379] = {.lex_state = 139}, + [2380] = {.lex_state = 5}, + [2381] = {.lex_state = 139}, + [2382] = {.lex_state = 139}, + [2383] = {.lex_state = 139}, + [2384] = {.lex_state = 140}, [2385] = {.lex_state = 139}, [2386] = {.lex_state = 139}, - [2387] = {.lex_state = 5}, + [2387] = {.lex_state = 139}, [2388] = {.lex_state = 8}, - [2389] = {.lex_state = 139}, - [2390] = {.lex_state = 138}, - [2391] = {.lex_state = 140}, - [2392] = {.lex_state = 138}, + [2389] = {.lex_state = 141}, + [2390] = {.lex_state = 141}, + [2391] = {.lex_state = 139}, + [2392] = {.lex_state = 8}, [2393] = {.lex_state = 8}, - [2394] = {.lex_state = 138}, - [2395] = {.lex_state = 138}, - [2396] = {.lex_state = 8}, - [2397] = {.lex_state = 140}, - [2398] = {.lex_state = 140}, + [2394] = {.lex_state = 140}, + [2395] = {.lex_state = 8}, + [2396] = {.lex_state = 139}, + [2397] = {.lex_state = 8}, + [2398] = {.lex_state = 139}, [2399] = {.lex_state = 8}, - [2400] = {.lex_state = 8}, - [2401] = {.lex_state = 8}, + [2400] = {.lex_state = 141}, + [2401] = {.lex_state = 139}, [2402] = {.lex_state = 8}, - [2403] = {.lex_state = 139}, + [2403] = {.lex_state = 140}, [2404] = {.lex_state = 139}, - [2405] = {.lex_state = 139}, + [2405] = {.lex_state = 140}, [2406] = {.lex_state = 139}, - [2407] = {.lex_state = 139, .external_lex_state = 4}, + [2407] = {.lex_state = 140}, [2408] = {.lex_state = 139}, - [2409] = {.lex_state = 138}, + [2409] = {.lex_state = 140}, [2410] = {.lex_state = 139}, [2411] = {.lex_state = 139}, [2412] = {.lex_state = 139}, - [2413] = {.lex_state = 139, .external_lex_state = 4}, - [2414] = {.lex_state = 8}, - [2415] = {.lex_state = 8}, - [2416] = {.lex_state = 139}, + [2413] = {.lex_state = 140}, + [2414] = {.lex_state = 139}, + [2415] = {.lex_state = 140}, + [2416] = {.lex_state = 141}, [2417] = {.lex_state = 140}, - [2418] = {.lex_state = 138}, - [2419] = {.lex_state = 139}, - [2420] = {.lex_state = 139}, - [2421] = {.lex_state = 140}, - [2422] = {.lex_state = 138}, - [2423] = {.lex_state = 139}, - [2424] = {.lex_state = 138}, - [2425] = {.lex_state = 138}, - [2426] = {.lex_state = 138}, - [2427] = {.lex_state = 138}, - [2428] = {.lex_state = 138}, - [2429] = {.lex_state = 138}, - [2430] = {.lex_state = 139}, - [2431] = {.lex_state = 138}, - [2432] = {.lex_state = 138}, + [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 = 140, .external_lex_state = 4}, + [2424] = {.lex_state = 140}, + [2425] = {.lex_state = 140}, + [2426] = {.lex_state = 140}, + [2427] = {.lex_state = 139}, + [2428] = {.lex_state = 139}, + [2429] = {.lex_state = 140}, + [2430] = {.lex_state = 140}, + [2431] = {.lex_state = 140}, + [2432] = {.lex_state = 139}, [2433] = {.lex_state = 139}, - [2434] = {.lex_state = 138}, - [2435] = {.lex_state = 139, .external_lex_state = 4}, - [2436] = {.lex_state = 139, .external_lex_state = 4}, + [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 = 138}, - [2439] = {.lex_state = 139}, + [2438] = {.lex_state = 140}, + [2439] = {.lex_state = 140}, [2440] = {.lex_state = 139}, - [2441] = {.lex_state = 139, .external_lex_state = 4}, - [2442] = {.lex_state = 138}, - [2443] = {.lex_state = 139}, - [2444] = {.lex_state = 138}, - [2445] = {.lex_state = 139}, - [2446] = {.lex_state = 139}, - [2447] = {.lex_state = 139}, - [2448] = {.lex_state = 139}, - [2449] = {.lex_state = 138}, - [2450] = {.lex_state = 139, .external_lex_state = 4}, + [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 = 139}, - [2453] = {.lex_state = 139}, - [2454] = {.lex_state = 139}, - [2455] = {.lex_state = 139}, + [2452] = {.lex_state = 140}, + [2453] = {.lex_state = 8}, + [2454] = {.lex_state = 140}, + [2455] = {.lex_state = 8}, [2456] = {.lex_state = 8}, - [2457] = {.lex_state = 8}, - [2458] = {.lex_state = 8}, - [2459] = {.lex_state = 139}, - [2460] = {.lex_state = 139}, + [2457] = {.lex_state = 140}, + [2458] = {.lex_state = 140}, + [2459] = {.lex_state = 141}, + [2460] = {.lex_state = 140}, [2461] = {.lex_state = 8}, - [2462] = {.lex_state = 139}, + [2462] = {.lex_state = 8}, [2463] = {.lex_state = 8}, - [2464] = {.lex_state = 139}, - [2465] = {.lex_state = 140}, - [2466] = {.lex_state = 7}, - [2467] = {.lex_state = 8}, - [2468] = {.lex_state = 8}, - [2469] = {.lex_state = 139}, - [2470] = {.lex_state = 139}, - [2471] = {.lex_state = 139}, - [2472] = {.lex_state = 8}, - [2473] = {.lex_state = 139}, + [2464] = {.lex_state = 140}, + [2465] = {.lex_state = 8}, + [2466] = {.lex_state = 140}, + [2467] = {.lex_state = 140}, + [2468] = {.lex_state = 7}, + [2469] = {.lex_state = 140}, + [2470] = {.lex_state = 8}, + [2471] = {.lex_state = 140}, + [2472] = {.lex_state = 140}, + [2473] = {.lex_state = 140}, [2474] = {.lex_state = 7}, [2475] = {.lex_state = 7}, - [2476] = {.lex_state = 139}, - [2477] = {.lex_state = 139}, - [2478] = {.lex_state = 139}, - [2479] = {.lex_state = 139}, - [2480] = {.lex_state = 7}, - [2481] = {.lex_state = 7}, + [2476] = {.lex_state = 140}, + [2477] = {.lex_state = 7}, + [2478] = {.lex_state = 140}, + [2479] = {.lex_state = 140}, + [2480] = {.lex_state = 140}, + [2481] = {.lex_state = 140}, [2482] = {.lex_state = 7}, - [2483] = {.lex_state = 139}, + [2483] = {.lex_state = 140}, [2484] = {.lex_state = 7}, - [2485] = {.lex_state = 139}, - [2486] = {.lex_state = 139}, - [2487] = {.lex_state = 7}, - [2488] = {.lex_state = 139}, + [2485] = {.lex_state = 140}, + [2486] = {.lex_state = 140}, + [2487] = {.lex_state = 140}, + [2488] = {.lex_state = 140}, [2489] = {.lex_state = 7}, - [2490] = {.lex_state = 139}, - [2491] = {.lex_state = 7}, - [2492] = {.lex_state = 139}, - [2493] = {.lex_state = 139}, - [2494] = {.lex_state = 139}, - [2495] = {.lex_state = 139}, + [2490] = {.lex_state = 7}, + [2491] = {.lex_state = 140}, + [2492] = {.lex_state = 140}, + [2493] = {.lex_state = 7}, + [2494] = {.lex_state = 7}, + [2495] = {.lex_state = 140}, [2496] = {.lex_state = 7}, - [2497] = {.lex_state = 7}, - [2498] = {.lex_state = 139}, - [2499] = {.lex_state = 139}, - [2500] = {.lex_state = 139}, - [2501] = {.lex_state = 139}, + [2497] = {.lex_state = 140}, + [2498] = {.lex_state = 140}, + [2499] = {.lex_state = 7}, + [2500] = {.lex_state = 140}, + [2501] = {.lex_state = 140}, [2502] = {.lex_state = 7}, - [2503] = {.lex_state = 7}, + [2503] = {.lex_state = 140}, [2504] = {.lex_state = 7}, - [2505] = {.lex_state = 139}, + [2505] = {.lex_state = 7}, [2506] = {.lex_state = 7}, - [2507] = {.lex_state = 139}, + [2507] = {.lex_state = 7}, [2508] = {.lex_state = 7}, - [2509] = {.lex_state = 139}, - [2510] = {.lex_state = 139}, + [2509] = {.lex_state = 140}, + [2510] = {.lex_state = 7}, [2511] = {.lex_state = 7}, - [2512] = {.lex_state = 7}, - [2513] = {.lex_state = 139}, - [2514] = {.lex_state = 139}, - [2515] = {.lex_state = 7}, - [2516] = {.lex_state = 7}, - [2517] = {.lex_state = 139}, - [2518] = {.lex_state = 8}, - [2519] = {.lex_state = 139}, - [2520] = {.lex_state = 7}, - [2521] = {.lex_state = 140, .external_lex_state = 2}, - [2522] = {.lex_state = 139}, - [2523] = {.lex_state = 139}, - [2524] = {.lex_state = 8}, - [2525] = {.lex_state = 140, .external_lex_state = 2}, - [2526] = {.lex_state = 140, .external_lex_state = 2}, - [2527] = {.lex_state = 140, .external_lex_state = 2}, - [2528] = {.lex_state = 139, .external_lex_state = 4}, - [2529] = {.lex_state = 8}, - [2530] = {.lex_state = 140, .external_lex_state = 2}, - [2531] = {.lex_state = 8}, - [2532] = {.lex_state = 140, .external_lex_state = 2}, - [2533] = {.lex_state = 139}, - [2534] = {.lex_state = 139, .external_lex_state = 4}, - [2535] = {.lex_state = 139}, - [2536] = {.lex_state = 140, .external_lex_state = 2}, - [2537] = {.lex_state = 139}, - [2538] = {.lex_state = 140, .external_lex_state = 2}, - [2539] = {.lex_state = 140, .external_lex_state = 2}, - [2540] = {.lex_state = 7}, - [2541] = {.lex_state = 139}, - [2542] = {.lex_state = 139}, - [2543] = {.lex_state = 140, .external_lex_state = 2}, - [2544] = {.lex_state = 7}, - [2545] = {.lex_state = 139}, - [2546] = {.lex_state = 139}, - [2547] = {.lex_state = 139}, - [2548] = {.lex_state = 139, .external_lex_state = 4}, - [2549] = {.lex_state = 7}, - [2550] = {.lex_state = 139}, - [2551] = {.lex_state = 139}, - [2552] = {.lex_state = 140, .external_lex_state = 2}, - [2553] = {.lex_state = 140, .external_lex_state = 2}, - [2554] = {.lex_state = 8}, - [2555] = {.lex_state = 140, .external_lex_state = 2}, - [2556] = {.lex_state = 139}, - [2557] = {.lex_state = 8}, + [2512] = {.lex_state = 140}, + [2513] = {.lex_state = 140}, + [2514] = {.lex_state = 7}, + [2515] = {.lex_state = 140}, + [2516] = {.lex_state = 140}, + [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 = 7}, + [2523] = {.lex_state = 7}, + [2524] = {.lex_state = 140}, + [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 = 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 = 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 = 140}, + [2540] = {.lex_state = 8}, + [2541] = {.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 = 7}, + [2553] = {.lex_state = 140}, + [2554] = {.lex_state = 140}, + [2555] = {.lex_state = 140}, + [2556] = {.lex_state = 140}, + [2557] = {.lex_state = 7}, [2558] = {.lex_state = 140}, - [2559] = {.lex_state = 139}, - [2560] = {.lex_state = 139, .external_lex_state = 4}, + [2559] = {.lex_state = 8}, + [2560] = {.lex_state = 141, .external_lex_state = 2}, [2561] = {.lex_state = 7}, - [2562] = {.lex_state = 139}, - [2563] = {.lex_state = 140, .external_lex_state = 2}, - [2564] = {.lex_state = 140, .external_lex_state = 2}, - [2565] = {.lex_state = 139}, - [2566] = {.lex_state = 140}, - [2567] = {.lex_state = 139}, + [2562] = {.lex_state = 140}, + [2563] = {.lex_state = 140}, + [2564] = {.lex_state = 141}, + [2565] = {.lex_state = 141, .external_lex_state = 2}, + [2566] = {.lex_state = 8}, + [2567] = {.lex_state = 140}, [2568] = {.lex_state = 7}, - [2569] = {.lex_state = 140, .external_lex_state = 2}, - [2570] = {.lex_state = 139}, - [2571] = {.lex_state = 7}, - [2572] = {.lex_state = 139}, - [2573] = {.lex_state = 139}, - [2574] = {.lex_state = 7}, - [2575] = {.lex_state = 139}, - [2576] = {.lex_state = 7}, - [2577] = {.lex_state = 139}, - [2578] = {.lex_state = 140, .external_lex_state = 2}, - [2579] = {.lex_state = 140, .external_lex_state = 2}, - [2580] = {.lex_state = 140, .external_lex_state = 2}, - [2581] = {.lex_state = 140, .external_lex_state = 2}, - [2582] = {.lex_state = 7}, - [2583] = {.lex_state = 140}, + [2569] = {.lex_state = 7}, + [2570] = {.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 = 139}, - [2586] = {.lex_state = 140}, - [2587] = {.lex_state = 139}, - [2588] = {.lex_state = 140}, + [2585] = {.lex_state = 141}, + [2586] = {.lex_state = 141}, + [2587] = {.lex_state = 141}, + [2588] = {.lex_state = 141}, [2589] = {.lex_state = 140}, - [2590] = {.lex_state = 140}, - [2591] = {.lex_state = 140}, - [2592] = {.lex_state = 139}, - [2593] = {.lex_state = 139, .external_lex_state = 4}, + [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 = 139, .external_lex_state = 4}, - [2596] = {.lex_state = 140}, - [2597] = {.lex_state = 139}, - [2598] = {.lex_state = 140}, - [2599] = {.lex_state = 140}, - [2600] = {.lex_state = 140}, - [2601] = {.lex_state = 140}, - [2602] = {.lex_state = 140}, - [2603] = {.lex_state = 140}, - [2604] = {.lex_state = 140}, + [2595] = {.lex_state = 141}, + [2596] = {.lex_state = 141}, + [2597] = {.lex_state = 141}, + [2598] = {.lex_state = 141}, + [2599] = {.lex_state = 141}, + [2600] = {.lex_state = 141}, + [2601] = {.lex_state = 141}, + [2602] = {.lex_state = 141}, + [2603] = {.lex_state = 141}, + [2604] = {.lex_state = 141}, [2605] = {.lex_state = 140}, - [2606] = {.lex_state = 140}, + [2606] = {.lex_state = 140, .external_lex_state = 4}, [2607] = {.lex_state = 140}, - [2608] = {.lex_state = 140}, - [2609] = {.lex_state = 140}, - [2610] = {.lex_state = 140}, - [2611] = {.lex_state = 139}, - [2612] = {.lex_state = 6}, - [2613] = {.lex_state = 6}, - [2614] = {.lex_state = 6}, - [2615] = {.lex_state = 6}, - [2616] = {.lex_state = 139, .external_lex_state = 4}, - [2617] = {.lex_state = 6}, - [2618] = {.lex_state = 139, .external_lex_state = 4}, - [2619] = {.lex_state = 6}, - [2620] = {.lex_state = 139, .external_lex_state = 4}, - [2621] = {.lex_state = 6}, - [2622] = {.lex_state = 139, .external_lex_state = 4}, - [2623] = {.lex_state = 139}, - [2624] = {.lex_state = 139}, - [2625] = {.lex_state = 6}, - [2626] = {.lex_state = 6}, - [2627] = {.lex_state = 6}, - [2628] = {.lex_state = 6}, - [2629] = {.lex_state = 6}, - [2630] = {.lex_state = 6}, + [2608] = {.lex_state = 141}, + [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 = 8}, + [2620] = {.lex_state = 140}, + [2621] = {.lex_state = 140}, + [2622] = {.lex_state = 140}, + [2623] = {.lex_state = 140}, + [2624] = {.lex_state = 140}, + [2625] = {.lex_state = 140}, + [2626] = {.lex_state = 140}, + [2627] = {.lex_state = 141}, + [2628] = {.lex_state = 140}, + [2629] = {.lex_state = 141}, + [2630] = {.lex_state = 140}, [2631] = {.lex_state = 140}, - [2632] = {.lex_state = 6}, - [2633] = {.lex_state = 6}, - [2634] = {.lex_state = 6}, - [2635] = {.lex_state = 6}, - [2636] = {.lex_state = 8}, - [2637] = {.lex_state = 139}, - [2638] = {.lex_state = 139, .external_lex_state = 4}, - [2639] = {.lex_state = 139, .external_lex_state = 4}, - [2640] = {.lex_state = 6}, - [2641] = {.lex_state = 6}, - [2642] = {.lex_state = 139}, - [2643] = {.lex_state = 139, .external_lex_state = 4}, - [2644] = {.lex_state = 6}, - [2645] = {.lex_state = 139, .external_lex_state = 4}, - [2646] = {.lex_state = 6}, - [2647] = {.lex_state = 6}, - [2648] = {.lex_state = 6}, - [2649] = {.lex_state = 6}, - [2650] = {.lex_state = 139}, - [2651] = {.lex_state = 139}, - [2652] = {.lex_state = 8, .external_lex_state = 4}, - [2653] = {.lex_state = 139}, - [2654] = {.lex_state = 140}, - [2655] = {.lex_state = 139}, - [2656] = {.lex_state = 139}, - [2657] = {.lex_state = 139}, - [2658] = {.lex_state = 139}, - [2659] = {.lex_state = 139}, - [2660] = {.lex_state = 6}, - [2661] = {.lex_state = 6}, - [2662] = {.lex_state = 6}, - [2663] = {.lex_state = 6}, - [2664] = {.lex_state = 139}, - [2665] = {.lex_state = 6}, - [2666] = {.lex_state = 6}, - [2667] = {.lex_state = 139}, - [2668] = {.lex_state = 139}, - [2669] = {.lex_state = 6}, - [2670] = {.lex_state = 139}, - [2671] = {.lex_state = 6}, - [2672] = {.lex_state = 139}, - [2673] = {.lex_state = 139}, - [2674] = {.lex_state = 6}, - [2675] = {.lex_state = 139}, - [2676] = {.lex_state = 139}, - [2677] = {.lex_state = 6}, - [2678] = {.lex_state = 139}, - [2679] = {.lex_state = 139}, - [2680] = {.lex_state = 6}, - [2681] = {.lex_state = 139}, - [2682] = {.lex_state = 139}, - [2683] = {.lex_state = 6}, - [2684] = {.lex_state = 139}, + [2632] = {.lex_state = 140}, + [2633] = {.lex_state = 140}, + [2634] = {.lex_state = 140}, + [2635] = {.lex_state = 140}, + [2636] = {.lex_state = 140}, + [2637] = {.lex_state = 140}, + [2638] = {.lex_state = 140}, + [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 = 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 = 7}, + [2653] = {.lex_state = 141}, + [2654] = {.lex_state = 141}, + [2655] = {.lex_state = 7}, + [2656] = {.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}, + [2666] = {.lex_state = 140, .external_lex_state = 4}, + [2667] = {.lex_state = 140}, + [2668] = {.lex_state = 140}, + [2669] = {.lex_state = 140}, + [2670] = {.lex_state = 141}, + [2671] = {.lex_state = 140}, + [2672] = {.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 = 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, .external_lex_state = 4}, + [2684] = {.lex_state = 140}, [2685] = {.lex_state = 140}, - [2686] = {.lex_state = 139}, - [2687] = {.lex_state = 139}, - [2688] = {.lex_state = 139}, - [2689] = {.lex_state = 6}, - [2690] = {.lex_state = 6}, - [2691] = {.lex_state = 139}, - [2692] = {.lex_state = 6}, - [2693] = {.lex_state = 6}, - [2694] = {.lex_state = 6}, - [2695] = {.lex_state = 139}, - [2696] = {.lex_state = 6}, - [2697] = {.lex_state = 6}, - [2698] = {.lex_state = 139}, - [2699] = {.lex_state = 6}, - [2700] = {.lex_state = 6}, - [2701] = {.lex_state = 139}, - [2702] = {.lex_state = 6}, - [2703] = {.lex_state = 140}, - [2704] = {.lex_state = 140}, - [2705] = {.lex_state = 6}, - [2706] = {.lex_state = 6}, - [2707] = {.lex_state = 139}, - [2708] = {.lex_state = 140}, - [2709] = {.lex_state = 139}, - [2710] = {.lex_state = 6}, - [2711] = {.lex_state = 6}, - [2712] = {.lex_state = 6}, - [2713] = {.lex_state = 6}, - [2714] = {.lex_state = 6}, - [2715] = {.lex_state = 6}, - [2716] = {.lex_state = 6}, - [2717] = {.lex_state = 6}, - [2718] = {.lex_state = 139}, - [2719] = {.lex_state = 6}, - [2720] = {.lex_state = 6}, - [2721] = {.lex_state = 140}, - [2722] = {.lex_state = 140}, - [2723] = {.lex_state = 139}, - [2724] = {.lex_state = 6}, - [2725] = {.lex_state = 6}, - [2726] = {.lex_state = 139, .external_lex_state = 4}, - [2727] = {.lex_state = 139}, - [2728] = {.lex_state = 6}, - [2729] = {.lex_state = 6}, - [2730] = {.lex_state = 6}, - [2731] = {.lex_state = 139}, - [2732] = {.lex_state = 139}, - [2733] = {.lex_state = 139, .external_lex_state = 4}, - [2734] = {.lex_state = 6}, - [2735] = {.lex_state = 139}, - [2736] = {.lex_state = 139}, - [2737] = {.lex_state = 140}, - [2738] = {.lex_state = 6}, - [2739] = {.lex_state = 6}, - [2740] = {.lex_state = 139}, - [2741] = {.lex_state = 140}, - [2742] = {.lex_state = 6}, - [2743] = {.lex_state = 140}, - [2744] = {.lex_state = 140}, - [2745] = {.lex_state = 6}, + [2686] = {.lex_state = 141}, + [2687] = {.lex_state = 141}, + [2688] = {.lex_state = 7}, + [2689] = {.lex_state = 141}, + [2690] = {.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 = 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 = 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 = 6}, - [2748] = {.lex_state = 139}, - [2749] = {.lex_state = 6}, - [2750] = {.lex_state = 6}, - [2751] = {.lex_state = 6}, - [2752] = {.lex_state = 6}, - [2753] = {.lex_state = 8, .external_lex_state = 4}, - [2754] = {.lex_state = 6}, - [2755] = {.lex_state = 8, .external_lex_state = 4}, - [2756] = {.lex_state = 6}, - [2757] = {.lex_state = 6}, - [2758] = {.lex_state = 6}, - [2759] = {.lex_state = 6}, - [2760] = {.lex_state = 6}, - [2761] = {.lex_state = 8, .external_lex_state = 4}, - [2762] = {.lex_state = 6}, - [2763] = {.lex_state = 139, .external_lex_state = 4}, - [2764] = {.lex_state = 139}, - [2765] = {.lex_state = 139}, - [2766] = {.lex_state = 6}, - [2767] = {.lex_state = 139}, - [2768] = {.lex_state = 6}, - [2769] = {.lex_state = 139}, - [2770] = {.lex_state = 139}, - [2771] = {.lex_state = 6}, - [2772] = {.lex_state = 6}, - [2773] = {.lex_state = 6}, - [2774] = {.lex_state = 139}, - [2775] = {.lex_state = 6}, - [2776] = {.lex_state = 6}, - [2777] = {.lex_state = 6}, - [2778] = {.lex_state = 6}, - [2779] = {.lex_state = 139}, - [2780] = {.lex_state = 6}, - [2781] = {.lex_state = 6}, + [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 = 141}, + [2754] = {.lex_state = 141}, + [2755] = {.lex_state = 141}, + [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 = 141}, + [2774] = {.lex_state = 141}, + [2775] = {.lex_state = 140}, + [2776] = {.lex_state = 140}, + [2777] = {.lex_state = 141}, + [2778] = {.lex_state = 141}, + [2779] = {.lex_state = 140}, + [2780] = {.lex_state = 141}, + [2781] = {.lex_state = 7}, [2782] = {.lex_state = 140}, - [2783] = {.lex_state = 6}, - [2784] = {.lex_state = 139}, - [2785] = {.lex_state = 6}, - [2786] = {.lex_state = 140}, - [2787] = {.lex_state = 7}, - [2788] = {.lex_state = 7}, - [2789] = {.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 = 141}, [2790] = {.lex_state = 140}, - [2791] = {.lex_state = 140}, - [2792] = {.lex_state = 7}, - [2793] = {.lex_state = 139, .external_lex_state = 4}, - [2794] = {.lex_state = 140}, - [2795] = {.lex_state = 6}, - [2796] = {.lex_state = 140}, - [2797] = {.lex_state = 139}, + [2791] = {.lex_state = 141}, + [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, .external_lex_state = 4}, [2798] = {.lex_state = 140}, [2799] = {.lex_state = 7}, - [2800] = {.lex_state = 6}, - [2801] = {.lex_state = 139}, - [2802] = {.lex_state = 7}, - [2803] = {.lex_state = 6}, - [2804] = {.lex_state = 7}, - [2805] = {.lex_state = 139}, - [2806] = {.lex_state = 140}, - [2807] = {.lex_state = 6}, - [2808] = {.lex_state = 139}, - [2809] = {.lex_state = 139}, - [2810] = {.lex_state = 7}, - [2811] = {.lex_state = 7}, - [2812] = {.lex_state = 140}, - [2813] = {.lex_state = 139}, - [2814] = {.lex_state = 140}, - [2815] = {.lex_state = 140}, + [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 = 140, .external_lex_state = 4}, + [2813] = {.lex_state = 141}, + [2814] = {.lex_state = 141}, + [2815] = {.lex_state = 141}, [2816] = {.lex_state = 7}, - [2817] = {.lex_state = 6}, - [2818] = {.lex_state = 7}, - [2819] = {.lex_state = 7}, - [2820] = {.lex_state = 140}, - [2821] = {.lex_state = 6}, - [2822] = {.lex_state = 7}, - [2823] = {.lex_state = 6}, - [2824] = {.lex_state = 140}, - [2825] = {.lex_state = 140}, - [2826] = {.lex_state = 139}, - [2827] = {.lex_state = 140}, - [2828] = {.lex_state = 140}, - [2829] = {.lex_state = 7}, - [2830] = {.lex_state = 139}, - [2831] = {.lex_state = 6}, - [2832] = {.lex_state = 6}, - [2833] = {.lex_state = 6}, - [2834] = {.lex_state = 6}, - [2835] = {.lex_state = 6}, - [2836] = {.lex_state = 6}, - [2837] = {.lex_state = 6}, - [2838] = {.lex_state = 6}, - [2839] = {.lex_state = 6}, - [2840] = {.lex_state = 6}, - [2841] = {.lex_state = 140}, + [2817] = {.lex_state = 141}, + [2818] = {.lex_state = 141}, + [2819] = {.lex_state = 141}, + [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 = 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 = 141}, + [2834] = {.lex_state = 141}, + [2835] = {.lex_state = 141}, + [2836] = {.lex_state = 140}, + [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 = 140}, - [2844] = {.lex_state = 139}, - [2845] = {.lex_state = 139, .external_lex_state = 4}, - [2846] = {.lex_state = 140}, - [2847] = {.lex_state = 140}, + [2843] = {.lex_state = 141}, + [2844] = {.lex_state = 141}, + [2845] = {.lex_state = 141}, + [2846] = {.lex_state = 141}, + [2847] = {.lex_state = 7}, [2848] = {.lex_state = 140}, - [2849] = {.lex_state = 140}, - [2850] = {.lex_state = 140}, - [2851] = {.lex_state = 139, .external_lex_state = 4}, - [2852] = {.lex_state = 6}, - [2853] = {.lex_state = 6}, + [2849] = {.lex_state = 7}, + [2850] = {.lex_state = 141}, + [2851] = {.lex_state = 7}, + [2852] = {.lex_state = 140}, + [2853] = {.lex_state = 141}, [2854] = {.lex_state = 140}, [2855] = {.lex_state = 140}, - [2856] = {.lex_state = 140}, - [2857] = {.lex_state = 6}, - [2858] = {.lex_state = 6}, - [2859] = {.lex_state = 6}, + [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 = 140}, - [2863] = {.lex_state = 6}, - [2864] = {.lex_state = 6}, - [2865] = {.lex_state = 140}, - [2866] = {.lex_state = 139, .external_lex_state = 4}, - [2867] = {.lex_state = 6}, - [2868] = {.lex_state = 140}, - [2869] = {.lex_state = 139, .external_lex_state = 4}, - [2870] = {.lex_state = 139, .external_lex_state = 4}, - [2871] = {.lex_state = 139}, - [2872] = {.lex_state = 140}, - [2873] = {.lex_state = 6}, - [2874] = {.lex_state = 139}, - [2875] = {.lex_state = 139}, - [2876] = {.lex_state = 6}, - [2877] = {.lex_state = 140}, - [2878] = {.lex_state = 140}, - [2879] = {.lex_state = 140}, - [2880] = {.lex_state = 6}, - [2881] = {.lex_state = 6}, - [2882] = {.lex_state = 140}, - [2883] = {.lex_state = 140}, - [2884] = {.lex_state = 7}, + [2862] = {.lex_state = 7}, + [2863] = {.lex_state = 141}, + [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 = 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 = 7}, - [2886] = {.lex_state = 6}, - [2887] = {.lex_state = 139}, + [2886] = {.lex_state = 141}, + [2887] = {.lex_state = 141}, [2888] = {.lex_state = 140}, - [2889] = {.lex_state = 140}, - [2890] = {.lex_state = 140}, - [2891] = {.lex_state = 140}, - [2892] = {.lex_state = 140}, - [2893] = {.lex_state = 140}, + [2889] = {.lex_state = 141}, + [2890] = {.lex_state = 141}, + [2891] = {.lex_state = 141}, + [2892] = {.lex_state = 141}, + [2893] = {.lex_state = 141}, [2894] = {.lex_state = 140}, - [2895] = {.lex_state = 140}, - [2896] = {.lex_state = 6}, - [2897] = {.lex_state = 7}, - [2898] = {.lex_state = 6}, - [2899] = {.lex_state = 140}, + [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 = 7}, - [2902] = {.lex_state = 140}, - [2903] = {.lex_state = 6}, - [2904] = {.lex_state = 6}, - [2905] = {.lex_state = 6}, - [2906] = {.lex_state = 139}, - [2907] = {.lex_state = 7}, - [2908] = {.lex_state = 140}, - [2909] = {.lex_state = 140}, - [2910] = {.lex_state = 139}, - [2911] = {.lex_state = 139}, + [2901] = {.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, .external_lex_state = 4}, [2912] = {.lex_state = 140}, [2913] = {.lex_state = 140}, - [2914] = {.lex_state = 140}, - [2915] = {.lex_state = 139}, - [2916] = {.lex_state = 140}, - [2917] = {.lex_state = 6}, - [2918] = {.lex_state = 7}, - [2919] = {.lex_state = 139}, - [2920] = {.lex_state = 140}, - [2921] = {.lex_state = 6}, - [2922] = {.lex_state = 140}, - [2923] = {.lex_state = 140}, - [2924] = {.lex_state = 140}, - [2925] = {.lex_state = 139}, - [2926] = {.lex_state = 139, .external_lex_state = 4}, - [2927] = {.lex_state = 140}, - [2928] = {.lex_state = 140}, - [2929] = {.lex_state = 6}, - [2930] = {.lex_state = 6}, - [2931] = {.lex_state = 6}, - [2932] = {.lex_state = 6}, - [2933] = {.lex_state = 139, .external_lex_state = 4}, - [2934] = {.lex_state = 140}, - [2935] = {.lex_state = 7}, - [2936] = {.lex_state = 140}, - [2937] = {.lex_state = 140}, - [2938] = {.lex_state = 6}, - [2939] = {.lex_state = 140}, - [2940] = {.lex_state = 140}, - [2941] = {.lex_state = 139}, - [2942] = {.lex_state = 140}, - [2943] = {.lex_state = 139}, + [2914] = {.lex_state = 140, .external_lex_state = 4}, + [2915] = {.lex_state = 7}, + [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 = 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 = 7}, + [2937] = {.lex_state = 141}, + [2938] = {.lex_state = 7}, + [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 = 139}, - [2947] = {.lex_state = 7}, + [2946] = {.lex_state = 140}, + [2947] = {.lex_state = 140}, [2948] = {.lex_state = 140}, [2949] = {.lex_state = 140}, [2950] = {.lex_state = 140}, - [2951] = {.lex_state = 7}, + [2951] = {.lex_state = 140}, [2952] = {.lex_state = 140}, - [2953] = {.lex_state = 139}, - [2954] = {.lex_state = 139}, - [2955] = {.lex_state = 140}, + [2953] = {.lex_state = 140}, + [2954] = {.lex_state = 140}, + [2955] = {.lex_state = 141}, [2956] = {.lex_state = 140}, [2957] = {.lex_state = 140}, [2958] = {.lex_state = 140}, [2959] = {.lex_state = 140}, - [2960] = {.lex_state = 139}, + [2960] = {.lex_state = 140}, [2961] = {.lex_state = 140}, [2962] = {.lex_state = 140}, - [2963] = {.lex_state = 139}, - [2964] = {.lex_state = 139}, + [2963] = {.lex_state = 140}, + [2964] = {.lex_state = 140}, [2965] = {.lex_state = 140}, [2966] = {.lex_state = 140}, - [2967] = {.lex_state = 139, .external_lex_state = 4}, - [2968] = {.lex_state = 6}, - [2969] = {.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 = 7}, + [2975] = {.lex_state = 140}, [2976] = {.lex_state = 140}, - [2977] = {.lex_state = 139, .external_lex_state = 4}, - [2978] = {.lex_state = 6}, - [2979] = {.lex_state = 139, .external_lex_state = 4}, + [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 = 139, .external_lex_state = 4}, - [2984] = {.lex_state = 139, .external_lex_state = 4}, - [2985] = {.lex_state = 139, .external_lex_state = 4}, - [2986] = {.lex_state = 139, .external_lex_state = 4}, - [2987] = {.lex_state = 139, .external_lex_state = 4}, + [2983] = {.lex_state = 140}, + [2984] = {.lex_state = 140}, + [2985] = {.lex_state = 141}, + [2986] = {.lex_state = 140}, + [2987] = {.lex_state = 141}, [2988] = {.lex_state = 140}, - [2989] = {.lex_state = 139, .external_lex_state = 4}, + [2989] = {.lex_state = 140}, [2990] = {.lex_state = 140}, - [2991] = {.lex_state = 6}, - [2992] = {.lex_state = 139, .external_lex_state = 4}, + [2991] = {.lex_state = 140}, + [2992] = {.lex_state = 140}, [2993] = {.lex_state = 140}, [2994] = {.lex_state = 140}, - [2995] = {.lex_state = 139, .external_lex_state = 4}, + [2995] = {.lex_state = 140}, [2996] = {.lex_state = 140}, [2997] = {.lex_state = 140}, - [2998] = {.lex_state = 139}, - [2999] = {.lex_state = 139, .external_lex_state = 4}, + [2998] = {.lex_state = 140}, + [2999] = {.lex_state = 140}, [3000] = {.lex_state = 140}, - [3001] = {.lex_state = 140}, - [3002] = {.lex_state = 140}, + [3001] = {.lex_state = 141}, + [3002] = {.lex_state = 5}, [3003] = {.lex_state = 140}, - [3004] = {.lex_state = 139, .external_lex_state = 4}, - [3005] = {.lex_state = 139, .external_lex_state = 4}, - [3006] = {.lex_state = 139, .external_lex_state = 4}, + [3004] = {.lex_state = 140}, + [3005] = {.lex_state = 140}, + [3006] = {.lex_state = 141}, [3007] = {.lex_state = 140}, - [3008] = {.lex_state = 140}, - [3009] = {.lex_state = 139, .external_lex_state = 4}, - [3010] = {.lex_state = 139, .external_lex_state = 4}, - [3011] = {.lex_state = 139, .external_lex_state = 4}, - [3012] = {.lex_state = 139, .external_lex_state = 4}, - [3013] = {.lex_state = 140}, - [3014] = {.lex_state = 140}, - [3015] = {.lex_state = 140}, - [3016] = {.lex_state = 139, .external_lex_state = 4}, + [3008] = {.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 = 141}, + [3015] = {.lex_state = 141}, + [3016] = {.lex_state = 5}, [3017] = {.lex_state = 140}, - [3018] = {.lex_state = 140}, - [3019] = {.lex_state = 139, .external_lex_state = 4}, - [3020] = {.lex_state = 7}, - [3021] = {.lex_state = 140}, + [3018] = {.lex_state = 5}, + [3019] = {.lex_state = 5}, + [3020] = {.lex_state = 140}, + [3021] = {.lex_state = 141}, [3022] = {.lex_state = 140}, - [3023] = {.lex_state = 140}, - [3024] = {.lex_state = 139, .external_lex_state = 4}, + [3023] = {.lex_state = 141}, + [3024] = {.lex_state = 140}, [3025] = {.lex_state = 140}, - [3026] = {.lex_state = 139, .external_lex_state = 4}, + [3026] = {.lex_state = 140}, [3027] = {.lex_state = 140}, [3028] = {.lex_state = 140}, - [3029] = {.lex_state = 139, .external_lex_state = 4}, - [3030] = {.lex_state = 140}, - [3031] = {.lex_state = 139, .external_lex_state = 4}, + [3029] = {.lex_state = 140}, + [3030] = {.lex_state = 139}, + [3031] = {.lex_state = 140}, [3032] = {.lex_state = 140}, [3033] = {.lex_state = 140}, - [3034] = {.lex_state = 139, .external_lex_state = 4}, - [3035] = {.lex_state = 6}, - [3036] = {.lex_state = 140}, + [3034] = {.lex_state = 140}, + [3035] = {.lex_state = 140}, + [3036] = {.lex_state = 141}, [3037] = {.lex_state = 140}, - [3038] = {.lex_state = 139, .external_lex_state = 4}, + [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, .external_lex_state = 4}, - [3045] = {.lex_state = 140}, + [3044] = {.lex_state = 139}, + [3045] = {.lex_state = 139}, [3046] = {.lex_state = 139}, - [3047] = {.lex_state = 139}, + [3047] = {.lex_state = 6}, [3048] = {.lex_state = 139}, - [3049] = {.lex_state = 139, .external_lex_state = 4}, + [3049] = {.lex_state = 139}, [3050] = {.lex_state = 140}, - [3051] = {.lex_state = 7}, + [3051] = {.lex_state = 6}, [3052] = {.lex_state = 140}, [3053] = {.lex_state = 140}, [3054] = {.lex_state = 140}, [3055] = {.lex_state = 140}, - [3056] = {.lex_state = 140}, + [3056] = {.lex_state = 139}, [3057] = {.lex_state = 140}, [3058] = {.lex_state = 140}, [3059] = {.lex_state = 140}, - [3060] = {.lex_state = 139}, - [3061] = {.lex_state = 6}, - [3062] = {.lex_state = 6}, - [3063] = {.lex_state = 140}, - [3064] = {.lex_state = 139, .external_lex_state = 4}, - [3065] = {.lex_state = 6}, - [3066] = {.lex_state = 7}, - [3067] = {.lex_state = 6}, - [3068] = {.lex_state = 7}, - [3069] = {.lex_state = 6}, - [3070] = {.lex_state = 6}, - [3071] = {.lex_state = 7}, - [3072] = {.lex_state = 6}, - [3073] = {.lex_state = 7}, - [3074] = {.lex_state = 7}, - [3075] = {.lex_state = 6}, - [3076] = {.lex_state = 7}, - [3077] = {.lex_state = 139, .external_lex_state = 4}, + [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 = 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 = 6}, - [3082] = {.lex_state = 6}, - [3083] = {.lex_state = 6}, - [3084] = {.lex_state = 7}, - [3085] = {.lex_state = 6}, - [3086] = {.lex_state = 7}, - [3087] = {.lex_state = 6}, - [3088] = {.lex_state = 7}, - [3089] = {.lex_state = 6}, - [3090] = {.lex_state = 7}, - [3091] = {.lex_state = 6}, - [3092] = {.lex_state = 6}, + [3080] = {.lex_state = 140}, + [3081] = {.lex_state = 140}, + [3082] = {.lex_state = 9}, + [3083] = {.lex_state = 140}, + [3084] = {.lex_state = 6}, + [3085] = {.lex_state = 140}, + [3086] = {.lex_state = 139}, + [3087] = {.lex_state = 140}, + [3088] = {.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 = 6}, + [3094] = {.lex_state = 140}, [3095] = {.lex_state = 6}, - [3096] = {.lex_state = 140}, + [3096] = {.lex_state = 6}, [3097] = {.lex_state = 6}, [3098] = {.lex_state = 6}, - [3099] = {.lex_state = 7}, - [3100] = {.lex_state = 139, .external_lex_state = 4}, + [3099] = {.lex_state = 140}, + [3100] = {.lex_state = 140}, [3101] = {.lex_state = 6}, - [3102] = {.lex_state = 6}, + [3102] = {.lex_state = 140}, [3103] = {.lex_state = 140}, [3104] = {.lex_state = 6}, [3105] = {.lex_state = 6}, [3106] = {.lex_state = 6}, [3107] = {.lex_state = 6}, - [3108] = {.lex_state = 7}, - [3109] = {.lex_state = 140}, - [3110] = {.lex_state = 139, .external_lex_state = 4}, + [3108] = {.lex_state = 6}, + [3109] = {.lex_state = 6}, + [3110] = {.lex_state = 6}, [3111] = {.lex_state = 6}, [3112] = {.lex_state = 6}, [3113] = {.lex_state = 6}, - [3114] = {.lex_state = 139, .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 = 7}, + [3123] = {.lex_state = 139}, + [3124] = {.lex_state = 6}, [3125] = {.lex_state = 6}, [3126] = {.lex_state = 6}, - [3127] = {.lex_state = 7}, - [3128] = {.lex_state = 7}, - [3129] = {.lex_state = 139, .external_lex_state = 4}, + [3127] = {.lex_state = 6}, + [3128] = {.lex_state = 6}, + [3129] = {.lex_state = 6}, [3130] = {.lex_state = 6}, [3131] = {.lex_state = 6}, - [3132] = {.lex_state = 7}, - [3133] = {.lex_state = 7}, + [3132] = {.lex_state = 6}, + [3133] = {.lex_state = 6}, [3134] = {.lex_state = 6}, - [3135] = {.lex_state = 139}, + [3135] = {.lex_state = 6}, [3136] = {.lex_state = 6}, [3137] = {.lex_state = 6}, [3138] = {.lex_state = 6}, - [3139] = {.lex_state = 139}, - [3140] = {.lex_state = 139}, - [3141] = {.lex_state = 139}, - [3142] = {.lex_state = 139}, + [3139] = {.lex_state = 9}, + [3140] = {.lex_state = 6}, + [3141] = {.lex_state = 6}, + [3142] = {.lex_state = 6}, [3143] = {.lex_state = 6}, [3144] = {.lex_state = 6}, [3145] = {.lex_state = 6}, - [3146] = {.lex_state = 6}, - [3147] = {.lex_state = 140}, - [3148] = {.lex_state = 6}, - [3149] = {.lex_state = 140}, + [3146] = {.lex_state = 9}, + [3147] = {.lex_state = 6}, + [3148] = {.lex_state = 9}, + [3149] = {.lex_state = 6}, [3150] = {.lex_state = 6}, [3151] = {.lex_state = 6}, [3152] = {.lex_state = 6}, - [3153] = {.lex_state = 139}, + [3153] = {.lex_state = 6}, [3154] = {.lex_state = 6}, [3155] = {.lex_state = 6}, [3156] = {.lex_state = 6}, - [3157] = {.lex_state = 139}, + [3157] = {.lex_state = 6}, [3158] = {.lex_state = 6}, [3159] = {.lex_state = 6}, [3160] = {.lex_state = 6}, [3161] = {.lex_state = 6}, - [3162] = {.lex_state = 6}, + [3162] = {.lex_state = 141}, [3163] = {.lex_state = 6}, [3164] = {.lex_state = 6}, [3165] = {.lex_state = 6}, [3166] = {.lex_state = 6}, - [3167] = {.lex_state = 139}, - [3168] = {.lex_state = 139}, - [3169] = {.lex_state = 140}, + [3167] = {.lex_state = 6}, + [3168] = {.lex_state = 6}, + [3169] = {.lex_state = 6}, [3170] = {.lex_state = 6}, [3171] = {.lex_state = 6}, [3172] = {.lex_state = 6}, [3173] = {.lex_state = 6}, [3174] = {.lex_state = 6}, - [3175] = {.lex_state = 6}, + [3175] = {.lex_state = 10}, [3176] = {.lex_state = 6}, - [3177] = {.lex_state = 139}, + [3177] = {.lex_state = 141}, [3178] = {.lex_state = 6}, - [3179] = {.lex_state = 140}, - [3180] = {.lex_state = 6}, - [3181] = {.lex_state = 6}, - [3182] = {.lex_state = 140}, + [3179] = {.lex_state = 6}, + [3180] = {.lex_state = 141}, + [3181] = {.lex_state = 14}, + [3182] = {.lex_state = 6}, [3183] = {.lex_state = 6}, [3184] = {.lex_state = 6}, - [3185] = {.lex_state = 6}, - [3186] = {.lex_state = 140}, - [3187] = {.lex_state = 6}, + [3185] = {.lex_state = 141}, + [3186] = {.lex_state = 141}, + [3187] = {.lex_state = 141}, [3188] = {.lex_state = 6}, - [3189] = {.lex_state = 139}, + [3189] = {.lex_state = 6}, [3190] = {.lex_state = 6}, [3191] = {.lex_state = 6}, - [3192] = {.lex_state = 6}, + [3192] = {.lex_state = 141}, [3193] = {.lex_state = 6}, - [3194] = {.lex_state = 140}, - [3195] = {.lex_state = 6}, + [3194] = {.lex_state = 6}, + [3195] = {.lex_state = 141}, [3196] = {.lex_state = 6}, [3197] = {.lex_state = 6}, - [3198] = {.lex_state = 6}, - [3199] = {.lex_state = 6}, + [3198] = {.lex_state = 141}, + [3199] = {.lex_state = 9}, [3200] = {.lex_state = 6}, [3201] = {.lex_state = 6}, - [3202] = {.lex_state = 140}, + [3202] = {.lex_state = 6}, [3203] = {.lex_state = 6}, [3204] = {.lex_state = 6}, - [3205] = {.lex_state = 139}, + [3205] = {.lex_state = 6}, [3206] = {.lex_state = 6}, [3207] = {.lex_state = 6}, [3208] = {.lex_state = 6}, - [3209] = {.lex_state = 139}, + [3209] = {.lex_state = 6}, [3210] = {.lex_state = 6}, - [3211] = {.lex_state = 140}, + [3211] = {.lex_state = 6}, [3212] = {.lex_state = 6}, [3213] = {.lex_state = 6}, [3214] = {.lex_state = 6}, @@ -27382,57 +27454,57 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3218] = {.lex_state = 6}, [3219] = {.lex_state = 6}, [3220] = {.lex_state = 6}, - [3221] = {.lex_state = 139}, + [3221] = {.lex_state = 6}, [3222] = {.lex_state = 6}, - [3223] = {.lex_state = 140}, + [3223] = {.lex_state = 6}, [3224] = {.lex_state = 6}, [3225] = {.lex_state = 6}, - [3226] = {.lex_state = 139}, - [3227] = {.lex_state = 140}, + [3226] = {.lex_state = 6}, + [3227] = {.lex_state = 6}, [3228] = {.lex_state = 6}, [3229] = {.lex_state = 6}, [3230] = {.lex_state = 6}, [3231] = {.lex_state = 6}, - [3232] = {.lex_state = 139}, - [3233] = {.lex_state = 140}, - [3234] = {.lex_state = 140}, - [3235] = {.lex_state = 139}, + [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 = 6}, - [3240] = {.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}, [3246] = {.lex_state = 6}, - [3247] = {.lex_state = 140}, + [3247] = {.lex_state = 6}, [3248] = {.lex_state = 6}, [3249] = {.lex_state = 6}, [3250] = {.lex_state = 6}, [3251] = {.lex_state = 6}, [3252] = {.lex_state = 6}, [3253] = {.lex_state = 6}, - [3254] = {.lex_state = 139}, + [3254] = {.lex_state = 6}, [3255] = {.lex_state = 6}, [3256] = {.lex_state = 6}, - [3257] = {.lex_state = 140}, + [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 = 139}, - [3263] = {.lex_state = 139}, - [3264] = {.lex_state = 6, .external_lex_state = 4}, + [3262] = {.lex_state = 6}, + [3263] = {.lex_state = 6}, + [3264] = {.lex_state = 6}, [3265] = {.lex_state = 6}, [3266] = {.lex_state = 6}, - [3267] = {.lex_state = 6, .external_lex_state = 4}, - [3268] = {.lex_state = 6, .external_lex_state = 4}, - [3269] = {.lex_state = 6, .external_lex_state = 4}, - [3270] = {.lex_state = 6, .external_lex_state = 4}, - [3271] = {.lex_state = 6, .external_lex_state = 4}, + [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}, [3274] = {.lex_state = 6}, @@ -27441,43 +27513,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3277] = {.lex_state = 6}, [3278] = {.lex_state = 6}, [3279] = {.lex_state = 6}, - [3280] = {.lex_state = 6, .external_lex_state = 4}, + [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 = 6}, - [3289] = {.lex_state = 7}, - [3290] = {.lex_state = 7}, + [3289] = {.lex_state = 6}, + [3290] = {.lex_state = 6}, [3291] = {.lex_state = 6}, - [3292] = {.lex_state = 6, .external_lex_state = 4}, + [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}, + [3297] = {.lex_state = 6}, [3298] = {.lex_state = 6}, [3299] = {.lex_state = 6}, - [3300] = {.lex_state = 6, .external_lex_state = 4}, + [3300] = {.lex_state = 6}, [3301] = {.lex_state = 6}, - [3302] = {.lex_state = 6, .external_lex_state = 4}, - [3303] = {.lex_state = 6, .external_lex_state = 4}, - [3304] = {.lex_state = 6, .external_lex_state = 4}, - [3305] = {.lex_state = 6, .external_lex_state = 4}, - [3306] = {.lex_state = 6, .external_lex_state = 4}, - [3307] = {.lex_state = 6, .external_lex_state = 4}, - [3308] = {.lex_state = 6, .external_lex_state = 4}, - [3309] = {.lex_state = 6, .external_lex_state = 4}, + [3302] = {.lex_state = 6}, + [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, .external_lex_state = 4}, + [3311] = {.lex_state = 6}, [3312] = {.lex_state = 6}, - [3313] = {.lex_state = 6, .external_lex_state = 4}, + [3313] = {.lex_state = 6}, [3314] = {.lex_state = 6}, [3315] = {.lex_state = 6}, - [3316] = {.lex_state = 140}, + [3316] = {.lex_state = 6}, [3317] = {.lex_state = 6}, [3318] = {.lex_state = 6}, [3319] = {.lex_state = 6}, @@ -27489,49 +27561,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3325] = {.lex_state = 6}, [3326] = {.lex_state = 6}, [3327] = {.lex_state = 6}, - [3328] = {.lex_state = 6, .external_lex_state = 4}, + [3328] = {.lex_state = 6}, [3329] = {.lex_state = 6}, [3330] = {.lex_state = 6}, - [3331] = {.lex_state = 6, .external_lex_state = 4}, + [3331] = {.lex_state = 6}, [3332] = {.lex_state = 6}, [3333] = {.lex_state = 6}, [3334] = {.lex_state = 6}, [3335] = {.lex_state = 6}, - [3336] = {.lex_state = 7}, - [3337] = {.lex_state = 7}, - [3338] = {.lex_state = 7}, - [3339] = {.lex_state = 6, .external_lex_state = 4}, - [3340] = {.lex_state = 140}, + [3336] = {.lex_state = 6}, + [3337] = {.lex_state = 6}, + [3338] = {.lex_state = 6}, + [3339] = {.lex_state = 6}, + [3340] = {.lex_state = 6}, [3341] = {.lex_state = 6}, [3342] = {.lex_state = 6}, - [3343] = {.lex_state = 6, .external_lex_state = 4}, + [3343] = {.lex_state = 6}, [3344] = {.lex_state = 6}, [3345] = {.lex_state = 6}, [3346] = {.lex_state = 6}, - [3347] = {.lex_state = 140}, + [3347] = {.lex_state = 6}, [3348] = {.lex_state = 6}, - [3349] = {.lex_state = 7}, - [3350] = {.lex_state = 7}, + [3349] = {.lex_state = 6}, + [3350] = {.lex_state = 6}, [3351] = {.lex_state = 6}, - [3352] = {.lex_state = 6, .external_lex_state = 4}, - [3353] = {.lex_state = 6, .external_lex_state = 4}, - [3354] = {.lex_state = 6, .external_lex_state = 4}, - [3355] = {.lex_state = 6, .external_lex_state = 4}, + [3352] = {.lex_state = 6}, + [3353] = {.lex_state = 6}, + [3354] = {.lex_state = 6}, + [3355] = {.lex_state = 141}, [3356] = {.lex_state = 6}, [3357] = {.lex_state = 6}, - [3358] = {.lex_state = 6, .external_lex_state = 4}, - [3359] = {.lex_state = 7}, + [3358] = {.lex_state = 6}, + [3359] = {.lex_state = 6}, [3360] = {.lex_state = 6}, - [3361] = {.lex_state = 7}, - [3362] = {.lex_state = 7}, + [3361] = {.lex_state = 6}, + [3362] = {.lex_state = 6}, [3363] = {.lex_state = 6}, [3364] = {.lex_state = 6}, [3365] = {.lex_state = 6}, [3366] = {.lex_state = 6}, - [3367] = {.lex_state = 7}, - [3368] = {.lex_state = 7}, + [3367] = {.lex_state = 6}, + [3368] = {.lex_state = 6}, [3369] = {.lex_state = 6}, - [3370] = {.lex_state = 6, .external_lex_state = 4}, + [3370] = {.lex_state = 6}, [3371] = {.lex_state = 6}, [3372] = {.lex_state = 6}, [3373] = {.lex_state = 6}, @@ -27541,43 +27613,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3377] = {.lex_state = 6}, [3378] = {.lex_state = 6}, [3379] = {.lex_state = 6}, - [3380] = {.lex_state = 6}, + [3380] = {.lex_state = 7}, [3381] = {.lex_state = 6}, [3382] = {.lex_state = 6}, [3383] = {.lex_state = 6}, [3384] = {.lex_state = 6}, [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, .external_lex_state = 4}, - [3391] = {.lex_state = 6, .external_lex_state = 4}, - [3392] = {.lex_state = 6, .external_lex_state = 4}, - [3393] = {.lex_state = 9}, - [3394] = {.lex_state = 9}, + [3390] = {.lex_state = 6}, + [3391] = {.lex_state = 6}, + [3392] = {.lex_state = 6}, + [3393] = {.lex_state = 6}, + [3394] = {.lex_state = 6}, [3395] = {.lex_state = 6}, - [3396] = {.lex_state = 7}, + [3396] = {.lex_state = 6}, [3397] = {.lex_state = 6}, - [3398] = {.lex_state = 6}, + [3398] = {.lex_state = 141}, [3399] = {.lex_state = 6}, [3400] = {.lex_state = 6}, - [3401] = {.lex_state = 6}, - [3402] = {.lex_state = 6}, - [3403] = {.lex_state = 9}, - [3404] = {.lex_state = 6, .external_lex_state = 4}, + [3401] = {.lex_state = 7}, + [3402] = {.lex_state = 141}, + [3403] = {.lex_state = 6}, + [3404] = {.lex_state = 6}, [3405] = {.lex_state = 6}, [3406] = {.lex_state = 6}, [3407] = {.lex_state = 6}, [3408] = {.lex_state = 6}, [3409] = {.lex_state = 6}, - [3410] = {.lex_state = 7}, + [3410] = {.lex_state = 6}, [3411] = {.lex_state = 6}, [3412] = {.lex_state = 6}, [3413] = {.lex_state = 6}, [3414] = {.lex_state = 6}, [3415] = {.lex_state = 6}, - [3416] = {.lex_state = 6, .external_lex_state = 4}, + [3416] = {.lex_state = 6}, [3417] = {.lex_state = 6}, [3418] = {.lex_state = 6}, [3419] = {.lex_state = 6}, @@ -27587,9 +27659,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3423] = {.lex_state = 6}, [3424] = {.lex_state = 6}, [3425] = {.lex_state = 6}, - [3426] = {.lex_state = 6, .external_lex_state = 4}, + [3426] = {.lex_state = 6}, [3427] = {.lex_state = 6}, - [3428] = {.lex_state = 6, .external_lex_state = 4}, + [3428] = {.lex_state = 6}, [3429] = {.lex_state = 6}, [3430] = {.lex_state = 6}, [3431] = {.lex_state = 6}, @@ -27601,28 +27673,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, [3444] = {.lex_state = 6}, - [3445] = {.lex_state = 6, .external_lex_state = 4}, + [3445] = {.lex_state = 6}, [3446] = {.lex_state = 6}, [3447] = {.lex_state = 6}, [3448] = {.lex_state = 6}, - [3449] = {.lex_state = 140}, + [3449] = {.lex_state = 6}, [3450] = {.lex_state = 6}, [3451] = {.lex_state = 6}, [3452] = {.lex_state = 6}, - [3453] = {.lex_state = 6, .external_lex_state = 4}, - [3454] = {.lex_state = 6, .external_lex_state = 4}, + [3453] = {.lex_state = 6}, + [3454] = {.lex_state = 6}, [3455] = {.lex_state = 6}, - [3456] = {.lex_state = 6, .external_lex_state = 4}, - [3457] = {.lex_state = 6, .external_lex_state = 4}, - [3458] = {.lex_state = 6, .external_lex_state = 4}, - [3459] = {.lex_state = 6, .external_lex_state = 4}, - [3460] = {.lex_state = 6, .external_lex_state = 4}, - [3461] = {.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 = 7}, [3462] = {.lex_state = 6}, [3463] = {.lex_state = 6}, [3464] = {.lex_state = 6}, @@ -27630,14 +27702,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3466] = {.lex_state = 6}, [3467] = {.lex_state = 6}, [3468] = {.lex_state = 6}, - [3469] = {.lex_state = 6, .external_lex_state = 4}, - [3470] = {.lex_state = 6}, - [3471] = {.lex_state = 6, .external_lex_state = 4}, - [3472] = {.lex_state = 6, .external_lex_state = 4}, + [3469] = {.lex_state = 6}, + [3470] = {.lex_state = 7}, + [3471] = {.lex_state = 6}, + [3472] = {.lex_state = 6}, [3473] = {.lex_state = 6}, - [3474] = {.lex_state = 6, .external_lex_state = 4}, + [3474] = {.lex_state = 6}, [3475] = {.lex_state = 6}, - [3476] = {.lex_state = 140}, + [3476] = {.lex_state = 6}, [3477] = {.lex_state = 6}, [3478] = {.lex_state = 6}, [3479] = {.lex_state = 6}, @@ -27645,44 +27717,44 @@ 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}, - [3493] = {.lex_state = 140}, + [3493] = {.lex_state = 6}, [3494] = {.lex_state = 6}, [3495] = {.lex_state = 6}, [3496] = {.lex_state = 6}, [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 = 6}, - [3506] = {.lex_state = 6}, + [3506] = {.lex_state = 6, .external_lex_state = 4}, [3507] = {.lex_state = 6}, - [3508] = {.lex_state = 6}, + [3508] = {.lex_state = 6, .external_lex_state = 4}, [3509] = {.lex_state = 6}, - [3510] = {.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}, - [3520] = {.lex_state = 7}, - [3521] = {.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 = 141}, [3522] = {.lex_state = 6}, [3523] = {.lex_state = 6}, [3524] = {.lex_state = 6}, @@ -27690,38 +27762,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3526] = {.lex_state = 6}, [3527] = {.lex_state = 6}, [3528] = {.lex_state = 6}, - [3529] = {.lex_state = 13}, + [3529] = {.lex_state = 6}, [3530] = {.lex_state = 6}, [3531] = {.lex_state = 6}, - [3532] = {.lex_state = 6, .external_lex_state = 4}, - [3533] = {.lex_state = 9}, - [3534] = {.lex_state = 6}, - [3535] = {.lex_state = 6}, - [3536] = {.lex_state = 6}, - [3537] = {.lex_state = 6}, + [3532] = {.lex_state = 6}, + [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, .external_lex_state = 4}, [3538] = {.lex_state = 6}, - [3539] = {.lex_state = 140}, + [3539] = {.lex_state = 6}, [3540] = {.lex_state = 6}, [3541] = {.lex_state = 6}, - [3542] = {.lex_state = 6}, + [3542] = {.lex_state = 6, .external_lex_state = 4}, [3543] = {.lex_state = 6, .external_lex_state = 4}, - [3544] = {.lex_state = 6}, - [3545] = {.lex_state = 6}, + [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 = 6}, - [3549] = {.lex_state = 6}, - [3550] = {.lex_state = 6}, - [3551] = {.lex_state = 6}, - [3552] = {.lex_state = 6}, - [3553] = {.lex_state = 6}, - [3554] = {.lex_state = 6}, - [3555] = {.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}, - [3560] = {.lex_state = 6}, + [3560] = {.lex_state = 9}, [3561] = {.lex_state = 6}, [3562] = {.lex_state = 6}, [3563] = {.lex_state = 6}, @@ -27729,12 +27801,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3565] = {.lex_state = 6}, [3566] = {.lex_state = 6}, [3567] = {.lex_state = 6}, - [3568] = {.lex_state = 6}, - [3569] = {.lex_state = 140}, + [3568] = {.lex_state = 6, .external_lex_state = 4}, + [3569] = {.lex_state = 6}, [3570] = {.lex_state = 6}, [3571] = {.lex_state = 6}, - [3572] = {.lex_state = 6}, - [3573] = {.lex_state = 140}, + [3572] = {.lex_state = 141}, + [3573] = {.lex_state = 6}, [3574] = {.lex_state = 6}, [3575] = {.lex_state = 6}, [3576] = {.lex_state = 6}, @@ -27743,14 +27815,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3579] = {.lex_state = 6}, [3580] = {.lex_state = 6}, [3581] = {.lex_state = 6}, - [3582] = {.lex_state = 6}, + [3582] = {.lex_state = 7}, [3583] = {.lex_state = 6}, - [3584] = {.lex_state = 6, .external_lex_state = 4}, + [3584] = {.lex_state = 6}, [3585] = {.lex_state = 6}, - [3586] = {.lex_state = 6, .external_lex_state = 4}, - [3587] = {.lex_state = 6, .external_lex_state = 4}, - [3588] = {.lex_state = 6, .external_lex_state = 4}, - [3589] = {.lex_state = 6, .external_lex_state = 4}, + [3586] = {.lex_state = 6}, + [3587] = {.lex_state = 6}, + [3588] = {.lex_state = 6}, + [3589] = {.lex_state = 6}, [3590] = {.lex_state = 6}, [3591] = {.lex_state = 6}, [3592] = {.lex_state = 6}, @@ -27758,18 +27830,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3594] = {.lex_state = 6}, [3595] = {.lex_state = 6}, [3596] = {.lex_state = 6}, - [3597] = {.lex_state = 140}, + [3597] = {.lex_state = 6}, [3598] = {.lex_state = 6}, [3599] = {.lex_state = 6}, [3600] = {.lex_state = 6}, - [3601] = {.lex_state = 6}, - [3602] = {.lex_state = 140}, - [3603] = {.lex_state = 6}, - [3604] = {.lex_state = 140}, - [3605] = {.lex_state = 6}, - [3606] = {.lex_state = 6}, - [3607] = {.lex_state = 6}, - [3608] = {.lex_state = 6}, + [3601] = {.lex_state = 7}, + [3602] = {.lex_state = 6}, + [3603] = {.lex_state = 7, .external_lex_state = 4}, + [3604] = {.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 = 6}, @@ -27782,7 +27854,7 @@ 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}, @@ -27790,44 +27862,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3626] = {.lex_state = 6}, [3627] = {.lex_state = 6}, [3628] = {.lex_state = 6}, - [3629] = {.lex_state = 6}, + [3629] = {.lex_state = 141}, [3630] = {.lex_state = 6}, [3631] = {.lex_state = 6}, [3632] = {.lex_state = 6}, [3633] = {.lex_state = 6}, - [3634] = {.lex_state = 9}, + [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 = 6}, - [3647] = {.lex_state = 6}, - [3648] = {.lex_state = 6}, - [3649] = {.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 = 9}, [3650] = {.lex_state = 6}, [3651] = {.lex_state = 6}, [3652] = {.lex_state = 6}, [3653] = {.lex_state = 6}, [3654] = {.lex_state = 6}, [3655] = {.lex_state = 6}, - [3656] = {.lex_state = 6}, + [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}, @@ -27836,18 +27908,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3672] = {.lex_state = 6}, [3673] = {.lex_state = 6}, [3674] = {.lex_state = 6}, - [3675] = {.lex_state = 6}, - [3676] = {.lex_state = 140}, + [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}, + [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}, @@ -27864,7 +27936,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3700] = {.lex_state = 6}, [3701] = {.lex_state = 6}, [3702] = {.lex_state = 6}, - [3703] = {.lex_state = 10}, + [3703] = {.lex_state = 6}, [3704] = {.lex_state = 6}, [3705] = {.lex_state = 6}, [3706] = {.lex_state = 6}, @@ -27879,59 +27951,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3715] = {.lex_state = 6}, [3716] = {.lex_state = 6}, [3717] = {.lex_state = 6}, - [3718] = {.lex_state = 6}, - [3719] = {.lex_state = 6}, - [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}, + [3718] = {.lex_state = 6, .external_lex_state = 4}, + [3719] = {.lex_state = 6, .external_lex_state = 4}, + [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}, [3730] = {.lex_state = 6}, [3731] = {.lex_state = 6}, - [3732] = {.lex_state = 6, .external_lex_state = 4}, + [3732] = {.lex_state = 6}, [3733] = {.lex_state = 6}, [3734] = {.lex_state = 6}, [3735] = {.lex_state = 6}, - [3736] = {.lex_state = 6, .external_lex_state = 4}, + [3736] = {.lex_state = 6}, [3737] = {.lex_state = 6}, [3738] = {.lex_state = 6}, - [3739] = {.lex_state = 6, .external_lex_state = 4}, + [3739] = {.lex_state = 6}, [3740] = {.lex_state = 6}, - [3741] = {.lex_state = 9}, - [3742] = {.lex_state = 9}, + [3741] = {.lex_state = 6}, + [3742] = {.lex_state = 6}, [3743] = {.lex_state = 6}, [3744] = {.lex_state = 6}, [3745] = {.lex_state = 6}, [3746] = {.lex_state = 6}, [3747] = {.lex_state = 6}, [3748] = {.lex_state = 6}, - [3749] = {.lex_state = 6, .external_lex_state = 4}, - [3750] = {.lex_state = 6, .external_lex_state = 4}, + [3749] = {.lex_state = 6}, + [3750] = {.lex_state = 6}, [3751] = {.lex_state = 6}, - [3752] = {.lex_state = 6, .external_lex_state = 4}, - [3753] = {.lex_state = 6, .external_lex_state = 4}, - [3754] = {.lex_state = 6, .external_lex_state = 4}, + [3752] = {.lex_state = 6}, + [3753] = {.lex_state = 6}, + [3754] = {.lex_state = 6}, [3755] = {.lex_state = 6}, [3756] = {.lex_state = 6}, [3757] = {.lex_state = 6}, - [3758] = {.lex_state = 6, .external_lex_state = 4}, - [3759] = {.lex_state = 6, .external_lex_state = 4}, - [3760] = {.lex_state = 6, .external_lex_state = 4}, + [3758] = {.lex_state = 6}, + [3759] = {.lex_state = 6}, + [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}, @@ -27940,28 +28012,28 @@ 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}, [3786] = {.lex_state = 6}, [3787] = {.lex_state = 6}, - [3788] = {.lex_state = 6}, + [3788] = {.lex_state = 6, .external_lex_state = 4}, [3789] = {.lex_state = 6}, [3790] = {.lex_state = 6}, - [3791] = {.lex_state = 6}, - [3792] = {.lex_state = 6}, - [3793] = {.lex_state = 6}, - [3794] = {.lex_state = 6}, + [3791] = {.lex_state = 6, .external_lex_state = 4}, + [3792] = {.lex_state = 6, .external_lex_state = 4}, + [3793] = {.lex_state = 6, .external_lex_state = 4}, + [3794] = {.lex_state = 6, .external_lex_state = 4}, [3795] = {.lex_state = 6}, [3796] = {.lex_state = 6}, [3797] = {.lex_state = 6}, [3798] = {.lex_state = 6}, [3799] = {.lex_state = 6}, - [3800] = {.lex_state = 6}, + [3800] = {.lex_state = 9}, [3801] = {.lex_state = 6}, [3802] = {.lex_state = 6}, [3803] = {.lex_state = 6}, @@ -27973,7 +28045,7 @@ 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}, @@ -27982,42 +28054,42 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 140}, - [3829] = {.lex_state = 6}, + [3828] = {.lex_state = 6}, + [3829] = {.lex_state = 7, .external_lex_state = 4}, [3830] = {.lex_state = 6}, - [3831] = {.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}, - [3851] = {.lex_state = 6, .external_lex_state = 4}, - [3852] = {.lex_state = 6}, + [3850] = {.lex_state = 7, .external_lex_state = 4}, + [3851] = {.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}, @@ -28028,30 +28100,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3864] = {.lex_state = 6}, [3865] = {.lex_state = 6}, [3866] = {.lex_state = 6}, - [3867] = {.lex_state = 6, .external_lex_state = 4}, + [3867] = {.lex_state = 7, .external_lex_state = 4}, [3868] = {.lex_state = 6}, [3869] = {.lex_state = 6}, - [3870] = {.lex_state = 6, .external_lex_state = 4}, + [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}, + [3890] = {.lex_state = 141}, [3891] = {.lex_state = 6}, [3892] = {.lex_state = 6}, [3893] = {.lex_state = 6}, @@ -28070,7 +28142,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3906] = {.lex_state = 6}, [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}, @@ -28079,7 +28151,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, @@ -28088,19 +28160,19 @@ 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}, [3937] = {.lex_state = 6}, [3938] = {.lex_state = 6}, - [3939] = {.lex_state = 6, .external_lex_state = 4}, + [3939] = {.lex_state = 6}, [3940] = {.lex_state = 6}, [3941] = {.lex_state = 6}, [3942] = {.lex_state = 6}, @@ -28109,12 +28181,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3945] = {.lex_state = 6}, [3946] = {.lex_state = 6}, [3947] = {.lex_state = 6}, - [3948] = {.lex_state = 6, .external_lex_state = 4}, + [3948] = {.lex_state = 6}, [3949] = {.lex_state = 6}, [3950] = {.lex_state = 6}, [3951] = {.lex_state = 6}, [3952] = {.lex_state = 6}, - [3953] = {.lex_state = 6, .external_lex_state = 4}, + [3953] = {.lex_state = 6}, [3954] = {.lex_state = 6}, [3955] = {.lex_state = 6}, [3956] = {.lex_state = 6}, @@ -28122,8 +28194,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, @@ -28134,20 +28206,20 @@ 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}, [3977] = {.lex_state = 6}, [3978] = {.lex_state = 6}, [3979] = {.lex_state = 6}, - [3980] = {.lex_state = 7}, + [3980] = {.lex_state = 6}, [3981] = {.lex_state = 6}, [3982] = {.lex_state = 6}, [3983] = {.lex_state = 6}, [3984] = {.lex_state = 6}, [3985] = {.lex_state = 6}, - [3986] = {.lex_state = 6}, + [3986] = {.lex_state = 7, .external_lex_state = 4}, [3987] = {.lex_state = 6}, [3988] = {.lex_state = 6}, [3989] = {.lex_state = 6}, @@ -28168,37 +28240,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4004] = {.lex_state = 6}, [4005] = {.lex_state = 6}, [4006] = {.lex_state = 6}, - [4007] = {.lex_state = 6, .external_lex_state = 4}, - [4008] = {.lex_state = 6}, + [4007] = {.lex_state = 6}, + [4008] = {.lex_state = 141}, [4009] = {.lex_state = 6}, - [4010] = {.lex_state = 6, .external_lex_state = 4}, + [4010] = {.lex_state = 6}, [4011] = {.lex_state = 6}, [4012] = {.lex_state = 6}, - [4013] = {.lex_state = 6, .external_lex_state = 4}, - [4014] = {.lex_state = 6, .external_lex_state = 4}, - [4015] = {.lex_state = 6, .external_lex_state = 4}, + [4013] = {.lex_state = 6}, + [4014] = {.lex_state = 6}, + [4015] = {.lex_state = 7}, [4016] = {.lex_state = 6}, - [4017] = {.lex_state = 6, .external_lex_state = 4}, + [4017] = {.lex_state = 6}, [4018] = {.lex_state = 6}, [4019] = {.lex_state = 6}, [4020] = {.lex_state = 6}, [4021] = {.lex_state = 6}, [4022] = {.lex_state = 6}, - [4023] = {.lex_state = 6, .external_lex_state = 4}, - [4024] = {.lex_state = 6}, - [4025] = {.lex_state = 6}, + [4023] = {.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}, + [4035] = {.lex_state = 141}, + [4036] = {.lex_state = 141}, + [4037] = {.lex_state = 141}, [4038] = {.lex_state = 6}, [4039] = {.lex_state = 6}, [4040] = {.lex_state = 6}, @@ -28207,78 +28279,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4043] = {.lex_state = 6}, [4044] = {.lex_state = 6}, [4045] = {.lex_state = 6}, - [4046] = {.lex_state = 6}, - [4047] = {.lex_state = 140}, + [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 = 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, .external_lex_state = 4}, + [4059] = {.lex_state = 6}, [4060] = {.lex_state = 6}, [4061] = {.lex_state = 6}, [4062] = {.lex_state = 6}, [4063] = {.lex_state = 6}, [4064] = {.lex_state = 6}, - [4065] = {.lex_state = 6}, - [4066] = {.lex_state = 6, .external_lex_state = 4}, + [4065] = {.lex_state = 141}, + [4066] = {.lex_state = 6}, [4067] = {.lex_state = 6}, - [4068] = {.lex_state = 6, .external_lex_state = 4}, + [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}, [4075] = {.lex_state = 6}, [4076] = {.lex_state = 6}, [4077] = {.lex_state = 6}, - [4078] = {.lex_state = 6, .external_lex_state = 4}, - [4079] = {.lex_state = 6, .external_lex_state = 4}, + [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, .external_lex_state = 4}, - [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 = 7}, + [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, .external_lex_state = 4}, - [4096] = {.lex_state = 6, .external_lex_state = 4}, + [4095] = {.lex_state = 6}, + [4096] = {.lex_state = 6}, [4097] = {.lex_state = 6}, [4098] = {.lex_state = 6}, [4099] = {.lex_state = 6}, [4100] = {.lex_state = 6}, - [4101] = {.lex_state = 140}, + [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 = 7}, + [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}, @@ -28286,15 +28358,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, @@ -28305,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}, @@ -28324,26 +28396,26 @@ 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 = 7}, + [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 = 6}, + [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 = 140}, + [4179] = {.lex_state = 141}, [4180] = {.lex_state = 6}, [4181] = {.lex_state = 6}, - [4182] = {.lex_state = 7}, + [4182] = {.lex_state = 6}, [4183] = {.lex_state = 6}, [4184] = {.lex_state = 6}, [4185] = {.lex_state = 6}, @@ -28352,18 +28424,18 @@ 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}, [4205] = {.lex_state = 6}, @@ -28371,7 +28443,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, @@ -28396,37 +28468,37 @@ 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}, + [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 = 6}, - [4242] = {.lex_state = 6}, - [4243] = {.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}, - [4265] = {.lex_state = 6, .external_lex_state = 4}, + [4264] = {.lex_state = 141}, + [4265] = {.lex_state = 6}, [4266] = {.lex_state = 6}, [4267] = {.lex_state = 6}, [4268] = {.lex_state = 6}, @@ -28437,17 +28509,17 @@ 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}, [4280] = {.lex_state = 6}, [4281] = {.lex_state = 6}, [4282] = {.lex_state = 6}, - [4283] = {.lex_state = 140}, - [4284] = {.lex_state = 6}, + [4283] = {.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}, @@ -28457,20 +28529,20 @@ 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}, [4307] = {.lex_state = 6}, [4308] = {.lex_state = 6}, - [4309] = {.lex_state = 140}, + [4309] = {.lex_state = 6}, [4310] = {.lex_state = 6}, [4311] = {.lex_state = 6}, [4312] = {.lex_state = 6}, @@ -28478,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 = 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}, @@ -28513,18 +28585,18 @@ 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}, @@ -28544,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}, @@ -28560,7 +28632,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 6}, [4402] = {.lex_state = 6}, @@ -28583,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}, @@ -28596,12 +28668,12 @@ 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}, - [4440] = {.lex_state = 140}, + [4439] = {.lex_state = 141}, + [4440] = {.lex_state = 6}, [4441] = {.lex_state = 6}, [4442] = {.lex_state = 6}, [4443] = {.lex_state = 6}, @@ -28629,36 +28701,36 @@ 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 = 7}, + [4477] = {.lex_state = 6}, [4478] = {.lex_state = 6}, [4479] = {.lex_state = 6}, [4480] = {.lex_state = 6}, [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}, [4492] = {.lex_state = 6}, [4493] = {.lex_state = 6}, [4494] = {.lex_state = 6}, - [4495] = {.lex_state = 7}, - [4496] = {.lex_state = 6}, - [4497] = {.lex_state = 6}, + [4495] = {.lex_state = 6}, + [4496] = {.lex_state = 141}, + [4497] = {.lex_state = 141}, [4498] = {.lex_state = 6}, [4499] = {.lex_state = 6}, [4500] = {.lex_state = 6}, @@ -28671,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 = 6}, - [4515] = {.lex_state = 6}, + [4514] = {.lex_state = 7}, + [4515] = {.lex_state = 141}, [4516] = {.lex_state = 6}, [4517] = {.lex_state = 6}, [4518] = {.lex_state = 6}, @@ -28686,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}, @@ -28696,7 +28768,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4532] = {.lex_state = 6}, [4533] = {.lex_state = 6}, [4534] = {.lex_state = 6}, - [4535] = {.lex_state = 7}, + [4535] = {.lex_state = 6}, [4536] = {.lex_state = 6}, [4537] = {.lex_state = 6}, [4538] = {.lex_state = 6}, @@ -28706,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}, @@ -28734,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}, @@ -28760,11 +28832,11 @@ 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 = 6}, - [4603] = {.lex_state = 6}, + [4603] = {.lex_state = 7}, [4604] = {.lex_state = 6}, [4605] = {.lex_state = 6}, [4606] = {.lex_state = 6}, @@ -28777,133 +28849,133 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4613] = {.lex_state = 6}, [4614] = {.lex_state = 6}, [4615] = {.lex_state = 6}, - [4616] = {.lex_state = 6}, - [4617] = {.lex_state = 7}, + [4616] = {.lex_state = 141}, + [4617] = {.lex_state = 6}, [4618] = {.lex_state = 6}, [4619] = {.lex_state = 6}, [4620] = {.lex_state = 6}, [4621] = {.lex_state = 6}, [4622] = {.lex_state = 6}, [4623] = {.lex_state = 6}, - [4624] = {.lex_state = 140}, - [4625] = {.lex_state = 140}, - [4626] = {.lex_state = 140}, - [4627] = {.lex_state = 7}, + [4624] = {.lex_state = 6}, + [4625] = {.lex_state = 6}, + [4626] = {.lex_state = 6}, + [4627] = {.lex_state = 6}, [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 = 9}, + [4634] = {.lex_state = 141}, + [4635] = {.lex_state = 7}, [4636] = {.lex_state = 6}, [4637] = {.lex_state = 6}, [4638] = {.lex_state = 6}, [4639] = {.lex_state = 6}, - [4640] = {.lex_state = 140}, - [4641] = {.lex_state = 7}, + [4640] = {.lex_state = 6}, + [4641] = {.lex_state = 6}, [4642] = {.lex_state = 6}, - [4643] = {.lex_state = 7}, - [4644] = {.lex_state = 140}, - [4645] = {.lex_state = 6}, - [4646] = {.lex_state = 7}, - [4647] = {.lex_state = 9}, + [4643] = {.lex_state = 6}, + [4644] = {.lex_state = 6}, + [4645] = {.lex_state = 6, .external_lex_state = 4}, + [4646] = {.lex_state = 6}, + [4647] = {.lex_state = 6}, [4648] = {.lex_state = 6}, - [4649] = {.lex_state = 9}, + [4649] = {.lex_state = 141}, [4650] = {.lex_state = 6}, - [4651] = {.lex_state = 9}, - [4652] = {.lex_state = 7, .external_lex_state = 4}, - [4653] = {.lex_state = 7}, + [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 = 140}, + [4658] = {.lex_state = 7}, [4659] = {.lex_state = 6}, [4660] = {.lex_state = 6}, [4661] = {.lex_state = 6}, - [4662] = {.lex_state = 140}, - [4663] = {.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 = 7, .external_lex_state = 4}, + [4667] = {.lex_state = 6}, [4668] = {.lex_state = 6}, - [4669] = {.lex_state = 7, .external_lex_state = 4}, - [4670] = {.lex_state = 7, .external_lex_state = 4}, - [4671] = {.lex_state = 7, .external_lex_state = 4}, - [4672] = {.lex_state = 6}, - [4673] = {.lex_state = 7, .external_lex_state = 4}, - [4674] = {.lex_state = 7, .external_lex_state = 4}, + [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 = 6}, - [4677] = {.lex_state = 7, .external_lex_state = 4}, - [4678] = {.lex_state = 7, .external_lex_state = 4}, + [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 = 7, .external_lex_state = 4}, + [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 = 7, .external_lex_state = 4}, + [4688] = {.lex_state = 6}, [4689] = {.lex_state = 6}, [4690] = {.lex_state = 6}, [4691] = {.lex_state = 6}, [4692] = {.lex_state = 6}, [4693] = {.lex_state = 6}, [4694] = {.lex_state = 6}, - [4695] = {.lex_state = 6}, - [4696] = {.lex_state = 7, .external_lex_state = 4}, + [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 = 6}, [4701] = {.lex_state = 6}, - [4702] = {.lex_state = 7}, - [4703] = {.lex_state = 7, .external_lex_state = 4}, + [4702] = {.lex_state = 6}, + [4703] = {.lex_state = 6}, [4704] = {.lex_state = 6}, [4705] = {.lex_state = 6}, - [4706] = {.lex_state = 7, .external_lex_state = 4}, + [4706] = {.lex_state = 6}, [4707] = {.lex_state = 6}, - [4708] = {.lex_state = 140}, - [4709] = {.lex_state = 6}, - [4710] = {.lex_state = 140}, + [4708] = {.lex_state = 6}, + [4709] = {.lex_state = 141}, + [4710] = {.lex_state = 141}, [4711] = {.lex_state = 6}, - [4712] = {.lex_state = 9}, - [4713] = {.lex_state = 140}, + [4712] = {.lex_state = 6}, + [4713] = {.lex_state = 6}, [4714] = {.lex_state = 6}, - [4715] = {.lex_state = 9}, - [4716] = {.lex_state = 7, .external_lex_state = 4}, - [4717] = {.lex_state = 7, .external_lex_state = 4}, - [4718] = {.lex_state = 6}, + [4715] = {.lex_state = 6}, + [4716] = {.lex_state = 6}, + [4717] = {.lex_state = 141}, + [4718] = {.lex_state = 7}, [4719] = {.lex_state = 6}, [4720] = {.lex_state = 6}, - [4721] = {.lex_state = 140}, - [4722] = {.lex_state = 7, .external_lex_state = 4}, - [4723] = {.lex_state = 7}, + [4721] = {.lex_state = 6}, + [4722] = {.lex_state = 6}, + [4723] = {.lex_state = 141}, [4724] = {.lex_state = 6}, - [4725] = {.lex_state = 7, .external_lex_state = 4}, - [4726] = {.lex_state = 7, .external_lex_state = 4}, - [4727] = {.lex_state = 7, .external_lex_state = 4}, - [4728] = {.lex_state = 140}, + [4725] = {.lex_state = 6}, + [4726] = {.lex_state = 6}, + [4727] = {.lex_state = 6}, + [4728] = {.lex_state = 141}, [4729] = {.lex_state = 6}, [4730] = {.lex_state = 6}, - [4731] = {.lex_state = 7, .external_lex_state = 4}, - [4732] = {.lex_state = 10}, + [4731] = {.lex_state = 6}, + [4732] = {.lex_state = 6}, [4733] = {.lex_state = 6}, - [4734] = {.lex_state = 9}, + [4734] = {.lex_state = 6}, [4735] = {.lex_state = 6}, - [4736] = {.lex_state = 9}, + [4736] = {.lex_state = 6}, [4737] = {.lex_state = 6}, - [4738] = {.lex_state = 140}, + [4738] = {.lex_state = 6}, [4739] = {.lex_state = 6}, [4740] = {.lex_state = 6}, [4741] = {.lex_state = 6}, - [4742] = {.lex_state = 140}, + [4742] = {.lex_state = 6}, [4743] = {.lex_state = 6}, [4744] = {.lex_state = 6}, [4745] = {.lex_state = 6}, @@ -28913,32 +28985,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4749] = {.lex_state = 6}, [4750] = {.lex_state = 6}, [4751] = {.lex_state = 6}, - [4752] = {.lex_state = 7}, + [4752] = {.lex_state = 141}, [4753] = {.lex_state = 6}, [4754] = {.lex_state = 6}, [4755] = {.lex_state = 6}, - [4756] = {.lex_state = 140}, + [4756] = {.lex_state = 6}, [4757] = {.lex_state = 6}, - [4758] = {.lex_state = 6}, + [4758] = {.lex_state = 14}, [4759] = {.lex_state = 6}, [4760] = {.lex_state = 6}, [4761] = {.lex_state = 6}, [4762] = {.lex_state = 6}, [4763] = {.lex_state = 6}, - [4764] = {.lex_state = 6}, - [4765] = {.lex_state = 7}, - [4766] = {.lex_state = 140}, + [4764] = {.lex_state = 14}, + [4765] = {.lex_state = 6}, + [4766] = {.lex_state = 6}, [4767] = {.lex_state = 6}, [4768] = {.lex_state = 6}, - [4769] = {.lex_state = 140}, + [4769] = {.lex_state = 6}, [4770] = {.lex_state = 6}, - [4771] = {.lex_state = 140}, + [4771] = {.lex_state = 6}, [4772] = {.lex_state = 6}, [4773] = {.lex_state = 6}, - [4774] = {.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 = 6}, @@ -28946,174 +29018,174 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 140}, - [4789] = {.lex_state = 140}, - [4790] = {.lex_state = 6}, + [4788] = {.lex_state = 6}, + [4789] = {.lex_state = 6}, + [4790] = {.lex_state = 141}, [4791] = {.lex_state = 6}, - [4792] = {.lex_state = 140}, + [4792] = {.lex_state = 14}, [4793] = {.lex_state = 6}, [4794] = {.lex_state = 6}, [4795] = {.lex_state = 6}, [4796] = {.lex_state = 6}, [4797] = {.lex_state = 6}, [4798] = {.lex_state = 6}, - [4799] = {.lex_state = 140}, + [4799] = {.lex_state = 6}, [4800] = {.lex_state = 6}, - [4801] = {.lex_state = 140}, - [4802] = {.lex_state = 140}, - [4803] = {.lex_state = 140}, + [4801] = {.lex_state = 14}, + [4802] = {.lex_state = 6}, + [4803] = {.lex_state = 141}, [4804] = {.lex_state = 6}, [4805] = {.lex_state = 6}, - [4806] = {.lex_state = 6}, + [4806] = {.lex_state = 7}, [4807] = {.lex_state = 6}, - [4808] = {.lex_state = 140}, - [4809] = {.lex_state = 140}, - [4810] = {.lex_state = 140}, - [4811] = {.lex_state = 140}, + [4808] = {.lex_state = 141}, + [4809] = {.lex_state = 6}, + [4810] = {.lex_state = 6}, + [4811] = {.lex_state = 6}, [4812] = {.lex_state = 6}, - [4813] = {.lex_state = 6}, + [4813] = {.lex_state = 141}, [4814] = {.lex_state = 6}, - [4815] = {.lex_state = 140}, - [4816] = {.lex_state = 6}, - [4817] = {.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 = 140}, + [4822] = {.lex_state = 6}, [4823] = {.lex_state = 6}, [4824] = {.lex_state = 6}, [4825] = {.lex_state = 6}, [4826] = {.lex_state = 6}, - [4827] = {.lex_state = 140}, - [4828] = {.lex_state = 140}, - [4829] = {.lex_state = 140}, + [4827] = {.lex_state = 6}, + [4828] = {.lex_state = 6}, + [4829] = {.lex_state = 141}, [4830] = {.lex_state = 6}, [4831] = {.lex_state = 6}, [4832] = {.lex_state = 6}, - [4833] = {.lex_state = 140}, - [4834] = {.lex_state = 140}, - [4835] = {.lex_state = 140}, - [4836] = {.lex_state = 6}, - [4837] = {.lex_state = 140}, - [4838] = {.lex_state = 140}, + [4833] = {.lex_state = 141}, + [4834] = {.lex_state = 141}, + [4835] = {.lex_state = 141}, + [4836] = {.lex_state = 141}, + [4837] = {.lex_state = 141}, + [4838] = {.lex_state = 6}, [4839] = {.lex_state = 6}, - [4840] = {.lex_state = 6}, - [4841] = {.lex_state = 10}, - [4842] = {.lex_state = 6}, + [4840] = {.lex_state = 141}, + [4841] = {.lex_state = 141}, + [4842] = {.lex_state = 141}, [4843] = {.lex_state = 6}, - [4844] = {.lex_state = 140}, + [4844] = {.lex_state = 6}, [4845] = {.lex_state = 6}, - [4846] = {.lex_state = 6}, - [4847] = {.lex_state = 140}, + [4846] = {.lex_state = 141}, + [4847] = {.lex_state = 6}, [4848] = {.lex_state = 6}, - [4849] = {.lex_state = 6}, + [4849] = {.lex_state = 141}, [4850] = {.lex_state = 6}, [4851] = {.lex_state = 6}, [4852] = {.lex_state = 6}, [4853] = {.lex_state = 6}, - [4854] = {.lex_state = 9}, + [4854] = {.lex_state = 6}, [4855] = {.lex_state = 6}, [4856] = {.lex_state = 6}, [4857] = {.lex_state = 6}, - [4858] = {.lex_state = 140}, - [4859] = {.lex_state = 140}, - [4860] = {.lex_state = 7}, + [4858] = {.lex_state = 6}, + [4859] = {.lex_state = 6}, + [4860] = {.lex_state = 6}, [4861] = {.lex_state = 6}, [4862] = {.lex_state = 6}, [4863] = {.lex_state = 6}, [4864] = {.lex_state = 6}, - [4865] = {.lex_state = 140}, - [4866] = {.lex_state = 140}, - [4867] = {.lex_state = 140}, + [4865] = {.lex_state = 14}, + [4866] = {.lex_state = 141}, + [4867] = {.lex_state = 6}, [4868] = {.lex_state = 6}, [4869] = {.lex_state = 6}, [4870] = {.lex_state = 6}, - [4871] = {.lex_state = 140}, - [4872] = {.lex_state = 140}, - [4873] = {.lex_state = 140}, - [4874] = {.lex_state = 140}, + [4871] = {.lex_state = 141}, + [4872] = {.lex_state = 6}, + [4873] = {.lex_state = 6}, + [4874] = {.lex_state = 141}, [4875] = {.lex_state = 6}, - [4876] = {.lex_state = 6}, - [4877] = {.lex_state = 140}, - [4878] = {.lex_state = 140}, - [4879] = {.lex_state = 140}, - [4880] = {.lex_state = 140}, - [4881] = {.lex_state = 140}, - [4882] = {.lex_state = 7, .external_lex_state = 4}, - [4883] = {.lex_state = 140}, + [4876] = {.lex_state = 141}, + [4877] = {.lex_state = 6}, + [4878] = {.lex_state = 6}, + [4879] = {.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 = 140}, - [4887] = {.lex_state = 6}, + [4886] = {.lex_state = 141}, + [4887] = {.lex_state = 141}, [4888] = {.lex_state = 6}, [4889] = {.lex_state = 6}, - [4890] = {.lex_state = 6}, + [4890] = {.lex_state = 7, .external_lex_state = 4}, [4891] = {.lex_state = 6}, - [4892] = {.lex_state = 6}, - [4893] = {.lex_state = 140}, + [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 = 140}, - [4899] = {.lex_state = 6}, - [4900] = {.lex_state = 6}, + [4898] = {.lex_state = 6}, + [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 = 140}, + [4907] = {.lex_state = 6}, [4908] = {.lex_state = 6}, - [4909] = {.lex_state = 140}, - [4910] = {.lex_state = 140}, + [4909] = {.lex_state = 6}, + [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 = 140}, + [4915] = {.lex_state = 6}, [4916] = {.lex_state = 6}, - [4917] = {.lex_state = 140}, - [4918] = {.lex_state = 140}, + [4917] = {.lex_state = 6}, + [4918] = {.lex_state = 6}, [4919] = {.lex_state = 6}, - [4920] = {.lex_state = 6}, - [4921] = {.lex_state = 140}, - [4922] = {.lex_state = 140}, + [4920] = {.lex_state = 14}, + [4921] = {.lex_state = 6}, + [4922] = {.lex_state = 6}, [4923] = {.lex_state = 6}, - [4924] = {.lex_state = 6}, - [4925] = {.lex_state = 140}, + [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 = 140}, - [4932] = {.lex_state = 7}, + [4931] = {.lex_state = 6}, + [4932] = {.lex_state = 141}, [4933] = {.lex_state = 6}, [4934] = {.lex_state = 6}, - [4935] = {.lex_state = 140}, - [4936] = {.lex_state = 6}, - [4937] = {.lex_state = 6}, - [4938] = {.lex_state = 7}, - [4939] = {.lex_state = 140}, - [4940] = {.lex_state = 140}, - [4941] = {.lex_state = 140}, + [4935] = {.lex_state = 6}, + [4936] = {.lex_state = 141}, + [4937] = {.lex_state = 14}, + [4938] = {.lex_state = 6}, + [4939] = {.lex_state = 141}, + [4940] = {.lex_state = 6}, + [4941] = {.lex_state = 6}, [4942] = {.lex_state = 6}, [4943] = {.lex_state = 6}, [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 = 140}, - [4950] = {.lex_state = 140}, + [4949] = {.lex_state = 6}, + [4950] = {.lex_state = 6}, [4951] = {.lex_state = 6}, - [4952] = {.lex_state = 7}, + [4952] = {.lex_state = 6}, [4953] = {.lex_state = 6}, [4954] = {.lex_state = 6}, [4955] = {.lex_state = 6}, @@ -29121,44 +29193,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4957] = {.lex_state = 6}, [4958] = {.lex_state = 6}, [4959] = {.lex_state = 6}, - [4960] = {.lex_state = 140}, + [4960] = {.lex_state = 6}, [4961] = {.lex_state = 6}, - [4962] = {.lex_state = 6}, + [4962] = {.lex_state = 14}, [4963] = {.lex_state = 6}, - [4964] = {.lex_state = 140}, + [4964] = {.lex_state = 141}, [4965] = {.lex_state = 6}, [4966] = {.lex_state = 6}, - [4967] = {.lex_state = 140}, - [4968] = {.lex_state = 140}, - [4969] = {.lex_state = 140}, - [4970] = {.lex_state = 6}, + [4967] = {.lex_state = 6}, + [4968] = {.lex_state = 6}, + [4969] = {.lex_state = 6}, + [4970] = {.lex_state = 141}, [4971] = {.lex_state = 6}, [4972] = {.lex_state = 6}, [4973] = {.lex_state = 6}, [4974] = {.lex_state = 6}, [4975] = {.lex_state = 6}, [4976] = {.lex_state = 6}, - [4977] = {.lex_state = 7}, - [4978] = {.lex_state = 6}, - [4979] = {.lex_state = 7}, + [4977] = {.lex_state = 6}, + [4978] = {.lex_state = 14}, + [4979] = {.lex_state = 6}, [4980] = {.lex_state = 6}, - [4981] = {.lex_state = 6}, - [4982] = {.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 = 6}, [4988] = {.lex_state = 6}, - [4989] = {.lex_state = 7}, - [4990] = {.lex_state = 7}, + [4989] = {.lex_state = 6}, + [4990] = {.lex_state = 6}, [4991] = {.lex_state = 6}, [4992] = {.lex_state = 6}, - [4993] = {.lex_state = 6}, + [4993] = {.lex_state = 140}, [4994] = {.lex_state = 6}, - [4995] = {.lex_state = 140}, + [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 = 6}, @@ -29172,37 +29244,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5008] = {.lex_state = 6}, [5009] = {.lex_state = 6}, [5010] = {.lex_state = 6}, - [5011] = {.lex_state = 6}, - [5012] = {.lex_state = 7}, - [5013] = {.lex_state = 140}, + [5011] = {.lex_state = 7}, + [5012] = {.lex_state = 6}, + [5013] = {.lex_state = 6}, [5014] = {.lex_state = 6}, - [5015] = {.lex_state = 7}, - [5016] = {.lex_state = 140}, - [5017] = {.lex_state = 6}, + [5015] = {.lex_state = 6}, + [5016] = {.lex_state = 6}, + [5017] = {.lex_state = 141}, [5018] = {.lex_state = 6}, [5019] = {.lex_state = 6}, - [5020] = {.lex_state = 140}, + [5020] = {.lex_state = 6}, [5021] = {.lex_state = 6}, [5022] = {.lex_state = 6}, [5023] = {.lex_state = 6}, - [5024] = {.lex_state = 7}, + [5024] = {.lex_state = 6}, [5025] = {.lex_state = 6}, [5026] = {.lex_state = 6}, [5027] = {.lex_state = 6}, [5028] = {.lex_state = 6}, [5029] = {.lex_state = 6}, [5030] = {.lex_state = 6}, - [5031] = {.lex_state = 6}, - [5032] = {.lex_state = 140}, + [5031] = {.lex_state = 14}, + [5032] = {.lex_state = 6}, [5033] = {.lex_state = 6}, [5034] = {.lex_state = 6}, [5035] = {.lex_state = 6}, - [5036] = {.lex_state = 140}, - [5037] = {.lex_state = 6}, - [5038] = {.lex_state = 140}, - [5039] = {.lex_state = 140}, - [5040] = {.lex_state = 140}, - [5041] = {.lex_state = 7}, + [5036] = {.lex_state = 6}, + [5037] = {.lex_state = 141}, + [5038] = {.lex_state = 6}, + [5039] = {.lex_state = 6}, + [5040] = {.lex_state = 6}, + [5041] = {.lex_state = 6}, [5042] = {.lex_state = 6}, [5043] = {.lex_state = 6}, [5044] = {.lex_state = 6}, @@ -29210,453 +29282,453 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5046] = {.lex_state = 6}, [5047] = {.lex_state = 6}, [5048] = {.lex_state = 6}, - [5049] = {.lex_state = 7, .external_lex_state = 4}, - [5050] = {.lex_state = 6}, + [5049] = {.lex_state = 6}, + [5050] = {.lex_state = 141}, [5051] = {.lex_state = 6}, [5052] = {.lex_state = 6}, - [5053] = {.lex_state = 7}, + [5053] = {.lex_state = 6}, [5054] = {.lex_state = 6}, - [5055] = {.lex_state = 13}, - [5056] = {.lex_state = 140}, - [5057] = {.lex_state = 7}, - [5058] = {.lex_state = 140}, - [5059] = {.lex_state = 140}, - [5060] = {.lex_state = 140}, - [5061] = {.lex_state = 140}, - [5062] = {.lex_state = 140}, - [5063] = {.lex_state = 140}, - [5064] = {.lex_state = 140}, - [5065] = {.lex_state = 140}, + [5055] = {.lex_state = 6}, + [5056] = {.lex_state = 6}, + [5057] = {.lex_state = 6}, + [5058] = {.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 = 13}, - [5068] = {.lex_state = 13}, - [5069] = {.lex_state = 140}, - [5070] = {.lex_state = 140}, - [5071] = {.lex_state = 7}, - [5072] = {.lex_state = 7}, - [5073] = {.lex_state = 140}, - [5074] = {.lex_state = 7}, - [5075] = {.lex_state = 140}, - [5076] = {.lex_state = 140}, - [5077] = {.lex_state = 140}, - [5078] = {.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 = 7}, + [5076] = {.lex_state = 6}, + [5077] = {.lex_state = 6}, + [5078] = {.lex_state = 6}, [5079] = {.lex_state = 6}, - [5080] = {.lex_state = 140}, + [5080] = {.lex_state = 6}, [5081] = {.lex_state = 6}, - [5082] = {.lex_state = 13}, - [5083] = {.lex_state = 13}, - [5084] = {.lex_state = 7}, - [5085] = {.lex_state = 7}, - [5086] = {.lex_state = 13}, - [5087] = {.lex_state = 140}, + [5082] = {.lex_state = 7}, + [5083] = {.lex_state = 14}, + [5084] = {.lex_state = 141}, + [5085] = {.lex_state = 6}, + [5086] = {.lex_state = 7}, + [5087] = {.lex_state = 6}, [5088] = {.lex_state = 140}, - [5089] = {.lex_state = 7}, - [5090] = {.lex_state = 140}, - [5091] = {.lex_state = 140}, - [5092] = {.lex_state = 140}, - [5093] = {.lex_state = 13}, - [5094] = {.lex_state = 140}, - [5095] = {.lex_state = 13}, - [5096] = {.lex_state = 140}, - [5097] = {.lex_state = 140}, - [5098] = {.lex_state = 140}, + [5089] = {.lex_state = 6}, + [5090] = {.lex_state = 6}, + [5091] = {.lex_state = 6}, + [5092] = {.lex_state = 7}, + [5093] = {.lex_state = 6}, + [5094] = {.lex_state = 141}, + [5095] = {.lex_state = 6}, + [5096] = {.lex_state = 6}, + [5097] = {.lex_state = 7}, + [5098] = {.lex_state = 141}, [5099] = {.lex_state = 140}, - [5100] = {.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 = 140}, - [5107] = {.lex_state = 140}, - [5108] = {.lex_state = 140}, - [5109] = {.lex_state = 13}, - [5110] = {.lex_state = 140}, - [5111] = {.lex_state = 140}, + [5106] = {.lex_state = 6}, + [5107] = {.lex_state = 6}, + [5108] = {.lex_state = 6}, + [5109] = {.lex_state = 141}, + [5110] = {.lex_state = 6}, + [5111] = {.lex_state = 6}, [5112] = {.lex_state = 6}, - [5113] = {.lex_state = 140}, - [5114] = {.lex_state = 140}, - [5115] = {.lex_state = 140}, - [5116] = {.lex_state = 13}, - [5117] = {.lex_state = 13}, - [5118] = {.lex_state = 7}, - [5119] = {.lex_state = 7}, - [5120] = {.lex_state = 13}, - [5121] = {.lex_state = 140}, - [5122] = {.lex_state = 140}, - [5123] = {.lex_state = 13}, - [5124] = {.lex_state = 140}, - [5125] = {.lex_state = 140}, - [5126] = {.lex_state = 140}, - [5127] = {.lex_state = 140}, - [5128] = {.lex_state = 13}, - [5129] = {.lex_state = 140}, - [5130] = {.lex_state = 7, .external_lex_state = 4}, + [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 = 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 = 13}, - [5133] = {.lex_state = 140}, - [5134] = {.lex_state = 140}, - [5135] = {.lex_state = 13}, - [5136] = {.lex_state = 7}, - [5137] = {.lex_state = 7}, + [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 = 6}, [5140] = {.lex_state = 6}, - [5141] = {.lex_state = 140}, - [5142] = {.lex_state = 6}, - [5143] = {.lex_state = 140}, - [5144] = {.lex_state = 7}, - [5145] = {.lex_state = 7}, + [5141] = {.lex_state = 6}, + [5142] = {.lex_state = 7}, + [5143] = {.lex_state = 6}, + [5144] = {.lex_state = 6}, + [5145] = {.lex_state = 6}, [5146] = {.lex_state = 140}, - [5147] = {.lex_state = 7}, + [5147] = {.lex_state = 6}, [5148] = {.lex_state = 7}, - [5149] = {.lex_state = 140}, - [5150] = {.lex_state = 7}, - [5151] = {.lex_state = 7}, - [5152] = {.lex_state = 7}, - [5153] = {.lex_state = 140}, - [5154] = {.lex_state = 7}, - [5155] = {.lex_state = 140}, + [5149] = {.lex_state = 14}, + [5150] = {.lex_state = 140}, + [5151] = {.lex_state = 6}, + [5152] = {.lex_state = 140}, + [5153] = {.lex_state = 141}, + [5154] = {.lex_state = 12}, + [5155] = {.lex_state = 7}, [5156] = {.lex_state = 140}, - [5157] = {.lex_state = 140}, + [5157] = {.lex_state = 7}, [5158] = {.lex_state = 140}, - [5159] = {.lex_state = 140}, - [5160] = {.lex_state = 6}, - [5161] = {.lex_state = 6}, + [5159] = {.lex_state = 6}, + [5160] = {.lex_state = 141}, + [5161] = {.lex_state = 141}, [5162] = {.lex_state = 140}, [5163] = {.lex_state = 140}, [5164] = {.lex_state = 140}, [5165] = {.lex_state = 140}, - [5166] = {.lex_state = 140}, + [5166] = {.lex_state = 141}, [5167] = {.lex_state = 140}, [5168] = {.lex_state = 140}, [5169] = {.lex_state = 140}, - [5170] = {.lex_state = 140}, + [5170] = {.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 = 140}, + [5176] = {.lex_state = 141}, [5177] = {.lex_state = 140}, [5178] = {.lex_state = 140}, [5179] = {.lex_state = 140}, [5180] = {.lex_state = 140}, - [5181] = {.lex_state = 140}, - [5182] = {.lex_state = 7}, + [5181] = {.lex_state = 141}, + [5182] = {.lex_state = 141}, [5183] = {.lex_state = 140}, [5184] = {.lex_state = 140}, [5185] = {.lex_state = 140}, - [5186] = {.lex_state = 140}, + [5186] = {.lex_state = 141}, [5187] = {.lex_state = 140}, [5188] = {.lex_state = 140}, [5189] = {.lex_state = 140}, - [5190] = {.lex_state = 6}, - [5191] = {.lex_state = 6}, + [5190] = {.lex_state = 140}, + [5191] = {.lex_state = 140}, [5192] = {.lex_state = 140}, [5193] = {.lex_state = 140}, - [5194] = {.lex_state = 140}, - [5195] = {.lex_state = 6}, + [5194] = {.lex_state = 7}, + [5195] = {.lex_state = 140}, [5196] = {.lex_state = 140}, - [5197] = {.lex_state = 6}, - [5198] = {.lex_state = 140}, - [5199] = {.lex_state = 6}, - [5200] = {.lex_state = 140}, + [5197] = {.lex_state = 141}, + [5198] = {.lex_state = 141}, + [5199] = {.lex_state = 141}, + [5200] = {.lex_state = 141}, [5201] = {.lex_state = 140}, [5202] = {.lex_state = 140}, - [5203] = {.lex_state = 140}, - [5204] = {.lex_state = 10}, - [5205] = {.lex_state = 140}, - [5206] = {.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 = 6}, - [5209] = {.lex_state = 140}, - [5210] = {.lex_state = 140}, + [5208] = {.lex_state = 141}, + [5209] = {.lex_state = 141}, + [5210] = {.lex_state = 141}, [5211] = {.lex_state = 140}, [5212] = {.lex_state = 140}, [5213] = {.lex_state = 140}, [5214] = {.lex_state = 140}, [5215] = {.lex_state = 140}, - [5216] = {.lex_state = 7}, - [5217] = {.lex_state = 140}, + [5216] = {.lex_state = 141}, + [5217] = {.lex_state = 141}, [5218] = {.lex_state = 140}, - [5219] = {.lex_state = 7}, + [5219] = {.lex_state = 141}, [5220] = {.lex_state = 140}, - [5221] = {.lex_state = 140}, + [5221] = {.lex_state = 141}, [5222] = {.lex_state = 140}, - [5223] = {.lex_state = 6}, - [5224] = {.lex_state = 6}, + [5223] = {.lex_state = 140}, + [5224] = {.lex_state = 141}, [5225] = {.lex_state = 140}, [5226] = {.lex_state = 140}, - [5227] = {.lex_state = 6}, - [5228] = {.lex_state = 140}, + [5227] = {.lex_state = 140}, + [5228] = {.lex_state = 141}, [5229] = {.lex_state = 140}, - [5230] = {.lex_state = 140}, - [5231] = {.lex_state = 140}, + [5230] = {.lex_state = 141}, + [5231] = {.lex_state = 7}, [5232] = {.lex_state = 140}, - [5233] = {.lex_state = 140}, - [5234] = {.lex_state = 7}, + [5233] = {.lex_state = 141}, + [5234] = {.lex_state = 140}, [5235] = {.lex_state = 140}, - [5236] = {.lex_state = 7}, - [5237] = {.lex_state = 140}, + [5236] = {.lex_state = 140}, + [5237] = {.lex_state = 141}, [5238] = {.lex_state = 140}, [5239] = {.lex_state = 140}, [5240] = {.lex_state = 140}, [5241] = {.lex_state = 140}, [5242] = {.lex_state = 140}, - [5243] = {.lex_state = 7}, - [5244] = {.lex_state = 6}, + [5243] = {.lex_state = 140}, + [5244] = {.lex_state = 141}, [5245] = {.lex_state = 140}, - [5246] = {.lex_state = 6}, - [5247] = {.lex_state = 6}, - [5248] = {.lex_state = 6}, + [5246] = {.lex_state = 141}, + [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 = 6}, - [5254] = {.lex_state = 140}, - [5255] = {.lex_state = 140}, - [5256] = {.lex_state = 140}, + [5252] = {.lex_state = 141}, + [5253] = {.lex_state = 140}, + [5254] = {.lex_state = 141}, + [5255] = {.lex_state = 141}, + [5256] = {.lex_state = 141}, [5257] = {.lex_state = 140}, [5258] = {.lex_state = 140}, - [5259] = {.lex_state = 6}, - [5260] = {.lex_state = 6}, - [5261] = {.lex_state = 140}, + [5259] = {.lex_state = 140}, + [5260] = {.lex_state = 140}, + [5261] = {.lex_state = 7}, [5262] = {.lex_state = 140}, - [5263] = {.lex_state = 6}, - [5264] = {.lex_state = 6}, + [5263] = {.lex_state = 140}, + [5264] = {.lex_state = 140}, [5265] = {.lex_state = 140}, - [5266] = {.lex_state = 6}, - [5267] = {.lex_state = 6}, - [5268] = {.lex_state = 6}, + [5266] = {.lex_state = 141}, + [5267] = {.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 = 140}, - [5273] = {.lex_state = 140}, - [5274] = {.lex_state = 6}, - [5275] = {.lex_state = 140}, + [5273] = {.lex_state = 141}, + [5274] = {.lex_state = 141}, + [5275] = {.lex_state = 141}, [5276] = {.lex_state = 140}, - [5277] = {.lex_state = 6}, - [5278] = {.lex_state = 140}, - [5279] = {.lex_state = 6}, - [5280] = {.lex_state = 6}, - [5281] = {.lex_state = 140}, - [5282] = {.lex_state = 6}, - [5283] = {.lex_state = 140}, - [5284] = {.lex_state = 9}, - [5285] = {.lex_state = 6}, - [5286] = {.lex_state = 6}, - [5287] = {.lex_state = 6}, - [5288] = {.lex_state = 140}, - [5289] = {.lex_state = 140}, - [5290] = {.lex_state = 6}, - [5291] = {.lex_state = 6}, - [5292] = {.lex_state = 6}, - [5293] = {.lex_state = 6}, + [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 = 7}, + [5284] = {.lex_state = 140}, + [5285] = {.lex_state = 141}, + [5286] = {.lex_state = 141}, + [5287] = {.lex_state = 7}, + [5288] = {.lex_state = 141}, + [5289] = {.lex_state = 141}, + [5290] = {.lex_state = 140}, + [5291] = {.lex_state = 141}, + [5292] = {.lex_state = 140}, + [5293] = {.lex_state = 141}, [5294] = {.lex_state = 140}, - [5295] = {.lex_state = 6}, - [5296] = {.lex_state = 13}, - [5297] = {.lex_state = 6}, - [5298] = {.lex_state = 6}, - [5299] = {.lex_state = 140}, - [5300] = {.lex_state = 6}, - [5301] = {.lex_state = 140}, - [5302] = {.lex_state = 6}, - [5303] = {.lex_state = 140}, - [5304] = {.lex_state = 6}, - [5305] = {.lex_state = 6}, - [5306] = {.lex_state = 6}, - [5307] = {.lex_state = 140}, - [5308] = {.lex_state = 140}, + [5295] = {.lex_state = 140}, + [5296] = {.lex_state = 141}, + [5297] = {.lex_state = 140}, + [5298] = {.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 = 140}, + [5305] = {.lex_state = 141}, + [5306] = {.lex_state = 140}, + [5307] = {.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 = 6}, - [5314] = {.lex_state = 140}, + [5313] = {.lex_state = 141}, + [5314] = {.lex_state = 141}, [5315] = {.lex_state = 140}, - [5316] = {.lex_state = 140}, - [5317] = {.lex_state = 140}, + [5316] = {.lex_state = 141}, + [5317] = {.lex_state = 141}, [5318] = {.lex_state = 140}, - [5319] = {.lex_state = 140}, - [5320] = {.lex_state = 6}, + [5319] = {.lex_state = 141}, + [5320] = {.lex_state = 140}, [5321] = {.lex_state = 140}, - [5322] = {.lex_state = 6}, - [5323] = {.lex_state = 6}, - [5324] = {.lex_state = 6}, + [5322] = {.lex_state = 140}, + [5323] = {.lex_state = 140}, + [5324] = {.lex_state = 141}, [5325] = {.lex_state = 140}, - [5326] = {.lex_state = 6}, + [5326] = {.lex_state = 140}, [5327] = {.lex_state = 140}, - [5328] = {.lex_state = 6}, - [5329] = {.lex_state = 140}, - [5330] = {.lex_state = 140}, - [5331] = {.lex_state = 6}, - [5332] = {.lex_state = 6}, + [5328] = {.lex_state = 140}, + [5329] = {.lex_state = 141}, + [5330] = {.lex_state = 141}, + [5331] = {.lex_state = 141}, + [5332] = {.lex_state = 141}, [5333] = {.lex_state = 140}, - [5334] = {.lex_state = 140}, - [5335] = {.lex_state = 6}, - [5336] = {.lex_state = 140}, - [5337] = {.lex_state = 6}, - [5338] = {.lex_state = 6}, - [5339] = {.lex_state = 140}, - [5340] = {.lex_state = 140}, - [5341] = {.lex_state = 6}, - [5342] = {.lex_state = 140}, - [5343] = {.lex_state = 6}, + [5334] = {.lex_state = 141}, + [5335] = {.lex_state = 141}, + [5336] = {.lex_state = 141}, + [5337] = {.lex_state = 141}, + [5338] = {.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 = 140}, - [5345] = {.lex_state = 6}, + [5345] = {.lex_state = 141}, [5346] = {.lex_state = 140}, - [5347] = {.lex_state = 140}, - [5348] = {.lex_state = 6}, - [5349] = {.lex_state = 6}, - [5350] = {.lex_state = 6}, - [5351] = {.lex_state = 140}, - [5352] = {.lex_state = 140}, - [5353] = {.lex_state = 6}, - [5354] = {.lex_state = 6}, - [5355] = {.lex_state = 6}, - [5356] = {.lex_state = 140}, - [5357] = {.lex_state = 6}, + [5347] = {.lex_state = 141}, + [5348] = {.lex_state = 141}, + [5349] = {.lex_state = 141}, + [5350] = {.lex_state = 141}, + [5351] = {.lex_state = 141}, + [5352] = {.lex_state = 141}, + [5353] = {.lex_state = 141}, + [5354] = {.lex_state = 141}, + [5355] = {.lex_state = 141}, + [5356] = {.lex_state = 21}, + [5357] = {.lex_state = 141}, [5358] = {.lex_state = 140}, - [5359] = {.lex_state = 20}, - [5360] = {.lex_state = 140}, - [5361] = {.lex_state = 6}, - [5362] = {.lex_state = 140}, - [5363] = {.lex_state = 6}, - [5364] = {.lex_state = 6}, - [5365] = {.lex_state = 140}, - [5366] = {.lex_state = 6}, - [5367] = {.lex_state = 140}, - [5368] = {.lex_state = 140}, - [5369] = {.lex_state = 6}, - [5370] = {.lex_state = 6}, - [5371] = {.lex_state = 140}, - [5372] = {.lex_state = 6}, - [5373] = {.lex_state = 6}, - [5374] = {.lex_state = 6}, - [5375] = {.lex_state = 6}, - [5376] = {.lex_state = 140}, - [5377] = {.lex_state = 6}, - [5378] = {.lex_state = 140}, - [5379] = {.lex_state = 140}, - [5380] = {.lex_state = 6}, - [5381] = {.lex_state = 6}, - [5382] = {.lex_state = 6}, - [5383] = {.lex_state = 6}, - [5384] = {.lex_state = 140}, - [5385] = {.lex_state = 6}, - [5386] = {.lex_state = 140}, - [5387] = {.lex_state = 140}, - [5388] = {.lex_state = 140}, - [5389] = {.lex_state = 6}, - [5390] = {.lex_state = 140}, - [5391] = {.lex_state = 140}, - [5392] = {.lex_state = 140}, - [5393] = {.lex_state = 140}, - [5394] = {.lex_state = 140}, - [5395] = {.lex_state = 6}, - [5396] = {.lex_state = 6}, - [5397] = {.lex_state = 140}, - [5398] = {.lex_state = 6}, - [5399] = {.lex_state = 6}, - [5400] = {.lex_state = 140}, - [5401] = {.lex_state = 140}, - [5402] = {.lex_state = 6}, - [5403] = {.lex_state = 6}, - [5404] = {.lex_state = 6}, - [5405] = {.lex_state = 140}, - [5406] = {.lex_state = 6}, - [5407] = {.lex_state = 6}, - [5408] = {.lex_state = 140}, - [5409] = {.lex_state = 6}, - [5410] = {.lex_state = 140}, - [5411] = {.lex_state = 140}, - [5412] = {.lex_state = 140}, - [5413] = {.lex_state = 140}, - [5414] = {.lex_state = 140}, - [5415] = {.lex_state = 140}, - [5416] = {.lex_state = 6}, - [5417] = {.lex_state = 140}, - [5418] = {.lex_state = 6}, - [5419] = {.lex_state = 140}, - [5420] = {.lex_state = 6}, - [5421] = {.lex_state = 6}, - [5422] = {.lex_state = 6}, - [5423] = {.lex_state = 6}, - [5424] = {.lex_state = 140}, - [5425] = {.lex_state = 6}, - [5426] = {.lex_state = 140}, - [5427] = {.lex_state = 140}, - [5428] = {.lex_state = 6}, - [5429] = {.lex_state = 6}, - [5430] = {.lex_state = 140}, - [5431] = {.lex_state = 6}, - [5432] = {.lex_state = 140}, - [5433] = {.lex_state = 140}, - [5434] = {.lex_state = 6}, - [5435] = {.lex_state = 140}, - [5436] = {.lex_state = 140}, - [5437] = {.lex_state = 140}, - [5438] = {.lex_state = 140}, - [5439] = {.lex_state = 140}, - [5440] = {.lex_state = 140}, + [5359] = {.lex_state = 140}, + [5360] = {.lex_state = 141}, + [5361] = {.lex_state = 141}, + [5362] = {.lex_state = 141}, + [5363] = {.lex_state = 140}, + [5364] = {.lex_state = 141}, + [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 = 141}, + [5373] = {.lex_state = 141}, + [5374] = {.lex_state = 141}, + [5375] = {.lex_state = 141}, + [5376] = {.lex_state = 141}, + [5377] = {.lex_state = 141}, + [5378] = {.lex_state = 141}, + [5379] = {.lex_state = 141}, + [5380] = {.lex_state = 141}, + [5381] = {.lex_state = 141}, + [5382] = {.lex_state = 141}, + [5383] = {.lex_state = 141}, + [5384] = {.lex_state = 141}, + [5385] = {.lex_state = 141}, + [5386] = {.lex_state = 141}, + [5387] = {.lex_state = 141}, + [5388] = {.lex_state = 141}, + [5389] = {.lex_state = 141}, + [5390] = {.lex_state = 141}, + [5391] = {.lex_state = 141}, + [5392] = {.lex_state = 141}, + [5393] = {.lex_state = 141}, + [5394] = {.lex_state = 141}, + [5395] = {.lex_state = 141}, + [5396] = {.lex_state = 141}, + [5397] = {.lex_state = 141}, + [5398] = {.lex_state = 141}, + [5399] = {.lex_state = 141}, + [5400] = {.lex_state = 141}, + [5401] = {.lex_state = 141}, + [5402] = {.lex_state = 141}, + [5403] = {.lex_state = 141}, + [5404] = {.lex_state = 141}, + [5405] = {.lex_state = 141}, + [5406] = {.lex_state = 141}, + [5407] = {.lex_state = 140}, + [5408] = {.lex_state = 141}, + [5409] = {.lex_state = 141}, + [5410] = {.lex_state = 141}, + [5411] = {.lex_state = 141}, + [5412] = {.lex_state = 141}, + [5413] = {.lex_state = 141}, + [5414] = {.lex_state = 141}, + [5415] = {.lex_state = 141}, + [5416] = {.lex_state = 141}, + [5417] = {.lex_state = 141}, + [5418] = {.lex_state = 141}, + [5419] = {.lex_state = 141}, + [5420] = {.lex_state = 14}, + [5421] = {.lex_state = 141}, + [5422] = {.lex_state = 141}, + [5423] = {.lex_state = 141}, + [5424] = {.lex_state = 141}, + [5425] = {.lex_state = 141}, + [5426] = {.lex_state = 141}, + [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}, + [5434] = {.lex_state = 141}, + [5435] = {.lex_state = 141}, + [5436] = {.lex_state = 141}, + [5437] = {.lex_state = 141}, + [5438] = {.lex_state = 141}, + [5439] = {.lex_state = 141}, + [5440] = {.lex_state = 141}, [5441] = {.lex_state = 140}, - [5442] = {.lex_state = 140}, - [5443] = {.lex_state = 6}, - [5444] = {.lex_state = 6}, - [5445] = {.lex_state = 140}, - [5446] = {.lex_state = 6}, - [5447] = {.lex_state = 6}, - [5448] = {.lex_state = 6}, - [5449] = {.lex_state = 6}, - [5450] = {.lex_state = 140}, - [5451] = {.lex_state = 6}, - [5452] = {.lex_state = 6}, - [5453] = {.lex_state = 6}, - [5454] = {.lex_state = 13}, + [5442] = {.lex_state = 141}, + [5443] = {.lex_state = 141}, + [5444] = {.lex_state = 141}, + [5445] = {.lex_state = 141}, + [5446] = {.lex_state = 141}, + [5447] = {.lex_state = 141}, + [5448] = {.lex_state = 141}, + [5449] = {.lex_state = 141}, + [5450] = {.lex_state = 141}, + [5451] = {.lex_state = 141}, + [5452] = {.lex_state = 141}, + [5453] = {.lex_state = 141}, + [5454] = {.lex_state = 6}, [5455] = {.lex_state = 6}, - [5456] = {.lex_state = 6}, - [5457] = {.lex_state = 20}, - [5458] = {.lex_state = 20}, + [5456] = {.lex_state = 21}, + [5457] = {.lex_state = 21}, + [5458] = {.lex_state = 21}, [5459] = {.lex_state = 6}, [5460] = {.lex_state = 6}, - [5461] = {.lex_state = 6}, - [5462] = {.lex_state = 20}, - [5463] = {.lex_state = 6}, - [5464] = {.lex_state = 20}, - [5465] = {.lex_state = 140}, - [5466] = {.lex_state = 6}, - [5467] = {.lex_state = 20}, - [5468] = {.lex_state = 6}, - [5469] = {.lex_state = 6}, - [5470] = {.lex_state = 20}, + [5461] = {.lex_state = 21}, + [5462] = {.lex_state = 14}, + [5463] = {.lex_state = 21}, + [5464] = {.lex_state = 6}, + [5465] = {.lex_state = 6}, + [5466] = {.lex_state = 21}, + [5467] = {.lex_state = 6}, + [5468] = {.lex_state = 21}, + [5469] = {.lex_state = 21}, + [5470] = {.lex_state = 141}, [5471] = {.lex_state = 6}, [5472] = {.lex_state = 6}, - [5473] = {.lex_state = 20}, + [5473] = {.lex_state = 6}, [5474] = {.lex_state = 6}, - [5475] = {.lex_state = 20}, + [5475] = {.lex_state = 141}, [5476] = {.lex_state = 6}, [5477] = {.lex_state = 6}, [5478] = {.lex_state = 6}, - [5479] = {.lex_state = 6}, + [5479] = {.lex_state = 21}, [5480] = {.lex_state = 6}, [5481] = {.lex_state = 6}, [5482] = {.lex_state = 6}, - [5483] = {.lex_state = 140}, - [5484] = {.lex_state = 20}, + [5483] = {.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 = 140}, + [5489] = {.lex_state = 6}, [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 = 6}, [5498] = {.lex_state = 6}, @@ -29668,7 +29740,7 @@ 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 = 6}, @@ -29677,263 +29749,263 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5513] = {.lex_state = 6}, [5514] = {.lex_state = 6}, [5515] = {.lex_state = 6}, - [5516] = {.lex_state = 140}, + [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 = 20}, - [5525] = {.lex_state = 6}, - [5526] = {.lex_state = 13}, - [5527] = {.lex_state = 6}, + [5523] = {.lex_state = 21}, + [5524] = {.lex_state = 14}, + [5525] = {.lex_state = 21}, + [5526] = {.lex_state = 6}, + [5527] = {.lex_state = 21}, [5528] = {.lex_state = 6}, [5529] = {.lex_state = 6}, - [5530] = {.lex_state = 9, .external_lex_state = 4}, - [5531] = {.lex_state = 6}, - [5532] = {.lex_state = 20}, - [5533] = {.lex_state = 20}, + [5530] = {.lex_state = 141}, + [5531] = {.lex_state = 141}, + [5532] = {.lex_state = 21}, + [5533] = {.lex_state = 6}, [5534] = {.lex_state = 6}, - [5535] = {.lex_state = 6}, - [5536] = {.lex_state = 6}, - [5537] = {.lex_state = 13}, + [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 = 6, .external_lex_state = 4}, + [5539] = {.lex_state = 141}, [5540] = {.lex_state = 6}, - [5541] = {.lex_state = 140}, - [5542] = {.lex_state = 20}, - [5543] = {.lex_state = 6}, - [5544] = {.lex_state = 140}, - [5545] = {.lex_state = 140}, + [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 = 20}, - [5548] = {.lex_state = 140}, - [5549] = {.lex_state = 20}, - [5550] = {.lex_state = 20}, - [5551] = {.lex_state = 140}, - [5552] = {.lex_state = 13}, - [5553] = {.lex_state = 140}, - [5554] = {.lex_state = 140}, - [5555] = {.lex_state = 140}, - [5556] = {.lex_state = 140}, - [5557] = {.lex_state = 20}, - [5558] = {.lex_state = 9, .external_lex_state = 4}, - [5559] = {.lex_state = 6, .external_lex_state = 4}, - [5560] = {.lex_state = 9, .external_lex_state = 4}, - [5561] = {.lex_state = 6, .external_lex_state = 4}, - [5562] = {.lex_state = 139}, - [5563] = {.lex_state = 140}, + [5547] = {.lex_state = 141}, + [5548] = {.lex_state = 141}, + [5549] = {.lex_state = 6}, + [5550] = {.lex_state = 141}, + [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 = 11}, + [5558] = {.lex_state = 141}, + [5559] = {.lex_state = 141}, + [5560] = {.lex_state = 21}, + [5561] = {.lex_state = 140}, + [5562] = {.lex_state = 6, .external_lex_state = 4}, + [5563] = {.lex_state = 11}, [5564] = {.lex_state = 6, .external_lex_state = 4}, - [5565] = {.lex_state = 6, .external_lex_state = 4}, - [5566] = {.lex_state = 140}, - [5567] = {.lex_state = 140}, - [5568] = {.lex_state = 6, .external_lex_state = 4}, - [5569] = {.lex_state = 140}, - [5570] = {.lex_state = 6}, - [5571] = {.lex_state = 6}, - [5572] = {.lex_state = 6}, + [5565] = {.lex_state = 11}, + [5566] = {.lex_state = 11}, + [5567] = {.lex_state = 141}, + [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 = 9, .external_lex_state = 4}, [5573] = {.lex_state = 6}, - [5574] = {.lex_state = 6}, - [5575] = {.lex_state = 140}, - [5576] = {.lex_state = 6, .external_lex_state = 4}, + [5574] = {.lex_state = 11}, + [5575] = {.lex_state = 9, .external_lex_state = 4}, + [5576] = {.lex_state = 141}, [5577] = {.lex_state = 6}, - [5578] = {.lex_state = 9, .external_lex_state = 4}, - [5579] = {.lex_state = 6, .external_lex_state = 4}, - [5580] = {.lex_state = 6}, + [5578] = {.lex_state = 6}, + [5579] = {.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}, - [5588] = {.lex_state = 10, .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 = 140}, + [5590] = {.lex_state = 11}, [5591] = {.lex_state = 6, .external_lex_state = 4}, - [5592] = {.lex_state = 6}, - [5593] = {.lex_state = 6, .external_lex_state = 4}, - [5594] = {.lex_state = 6, .external_lex_state = 4}, - [5595] = {.lex_state = 6, .external_lex_state = 4}, - [5596] = {.lex_state = 140}, - [5597] = {.lex_state = 6}, - [5598] = {.lex_state = 6, .external_lex_state = 4}, - [5599] = {.lex_state = 140}, + [5592] = {.lex_state = 141}, + [5593] = {.lex_state = 141}, + [5594] = {.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 = 20}, + [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 = 140}, - [5607] = {.lex_state = 6, .external_lex_state = 4}, - [5608] = {.lex_state = 6, .external_lex_state = 4}, + [5606] = {.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 = 6}, - [5612] = {.lex_state = 6}, + [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 = 140}, - [5615] = {.lex_state = 6, .external_lex_state = 4}, - [5616] = {.lex_state = 9}, + [5614] = {.lex_state = 9}, + [5615] = {.lex_state = 141}, + [5616] = {.lex_state = 11}, [5617] = {.lex_state = 6, .external_lex_state = 4}, - [5618] = {.lex_state = 140}, + [5618] = {.lex_state = 6}, [5619] = {.lex_state = 6, .external_lex_state = 4}, - [5620] = {.lex_state = 6, .external_lex_state = 4}, + [5620] = {.lex_state = 141}, [5621] = {.lex_state = 6}, - [5622] = {.lex_state = 140}, - [5623] = {.lex_state = 140}, - [5624] = {.lex_state = 140}, + [5622] = {.lex_state = 141}, + [5623] = {.lex_state = 141}, + [5624] = {.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 = 20}, - [5630] = {.lex_state = 140}, - [5631] = {.lex_state = 140}, + [5629] = {.lex_state = 6, .external_lex_state = 4}, + [5630] = {.lex_state = 6, .external_lex_state = 4}, + [5631] = {.lex_state = 6, .external_lex_state = 4}, [5632] = {.lex_state = 6, .external_lex_state = 4}, - [5633] = {.lex_state = 6, .external_lex_state = 4}, - [5634] = {.lex_state = 6}, - [5635] = {.lex_state = 140}, - [5636] = {.lex_state = 140}, - [5637] = {.lex_state = 6, .external_lex_state = 4}, + [5633] = {.lex_state = 6}, + [5634] = {.lex_state = 141}, + [5635] = {.lex_state = 6, .external_lex_state = 4}, + [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 = 6, .external_lex_state = 4}, - [5642] = {.lex_state = 6, .external_lex_state = 4}, - [5643] = {.lex_state = 140}, + [5642] = {.lex_state = 6}, + [5643] = {.lex_state = 6, .external_lex_state = 4}, [5644] = {.lex_state = 6, .external_lex_state = 4}, - [5645] = {.lex_state = 140}, - [5646] = {.lex_state = 6, .external_lex_state = 4}, - [5647] = {.lex_state = 140}, - [5648] = {.lex_state = 140}, - [5649] = {.lex_state = 6, .external_lex_state = 4}, - [5650] = {.lex_state = 140}, + [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}, + [5650] = {.lex_state = 21}, [5651] = {.lex_state = 6, .external_lex_state = 4}, - [5652] = {.lex_state = 6, .external_lex_state = 4}, - [5653] = {.lex_state = 6}, + [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}, - [5656] = {.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, .external_lex_state = 4}, - [5659] = {.lex_state = 6, .external_lex_state = 4}, + [5658] = {.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 = 140}, - [5668] = {.lex_state = 6, .external_lex_state = 4}, - [5669] = {.lex_state = 6, .external_lex_state = 4}, + [5667] = {.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 = 140}, + [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 = 6, .external_lex_state = 4}, - [5681] = {.lex_state = 6, .external_lex_state = 4}, + [5681] = {.lex_state = 6}, [5682] = {.lex_state = 6, .external_lex_state = 4}, [5683] = {.lex_state = 6, .external_lex_state = 4}, - [5684] = {.lex_state = 6, .external_lex_state = 4}, + [5684] = {.lex_state = 6}, [5685] = {.lex_state = 6, .external_lex_state = 4}, - [5686] = {.lex_state = 140}, - [5687] = {.lex_state = 6, .external_lex_state = 4}, - [5688] = {.lex_state = 6, .external_lex_state = 4}, + [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 = 140}, + [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, .external_lex_state = 4}, + [5693] = {.lex_state = 141}, [5694] = {.lex_state = 6, .external_lex_state = 4}, - [5695] = {.lex_state = 6, .external_lex_state = 4}, - [5696] = {.lex_state = 6, .external_lex_state = 4}, + [5695] = {.lex_state = 141}, + [5696] = {.lex_state = 141}, [5697] = {.lex_state = 6, .external_lex_state = 4}, - [5698] = {.lex_state = 6, .external_lex_state = 4}, - [5699] = {.lex_state = 140}, - [5700] = {.lex_state = 140}, - [5701] = {.lex_state = 6, .external_lex_state = 4}, + [5698] = {.lex_state = 6}, + [5699] = {.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}, - [5704] = {.lex_state = 140}, - [5705] = {.lex_state = 6}, - [5706] = {.lex_state = 140}, + [5703] = {.lex_state = 141}, + [5704] = {.lex_state = 6, .external_lex_state = 4}, + [5705] = {.lex_state = 141}, + [5706] = {.lex_state = 6, .external_lex_state = 4}, [5707] = {.lex_state = 6, .external_lex_state = 4}, - [5708] = {.lex_state = 6, .external_lex_state = 4}, - [5709] = {.lex_state = 6}, + [5708] = {.lex_state = 141}, + [5709] = {.lex_state = 6, .external_lex_state = 4}, [5710] = {.lex_state = 6, .external_lex_state = 4}, - [5711] = {.lex_state = 140}, - [5712] = {.lex_state = 140}, + [5711] = {.lex_state = 6}, + [5712] = {.lex_state = 6}, [5713] = {.lex_state = 6, .external_lex_state = 4}, [5714] = {.lex_state = 6, .external_lex_state = 4}, - [5715] = {.lex_state = 140}, - [5716] = {.lex_state = 6, .external_lex_state = 4}, - [5717] = {.lex_state = 6, .external_lex_state = 4}, - [5718] = {.lex_state = 6, .external_lex_state = 4}, - [5719] = {.lex_state = 140}, - [5720] = {.lex_state = 140}, + [5715] = {.lex_state = 6}, + [5716] = {.lex_state = 141}, + [5717] = {.lex_state = 6}, + [5718] = {.lex_state = 141}, + [5719] = {.lex_state = 6}, + [5720] = {.lex_state = 141}, [5721] = {.lex_state = 6, .external_lex_state = 4}, - [5722] = {.lex_state = 6, .external_lex_state = 4}, - [5723] = {.lex_state = 140}, + [5722] = {.lex_state = 6}, + [5723] = {.lex_state = 6, .external_lex_state = 4}, [5724] = {.lex_state = 6, .external_lex_state = 4}, - [5725] = {.lex_state = 140}, + [5725] = {.lex_state = 6, .external_lex_state = 4}, [5726] = {.lex_state = 6, .external_lex_state = 4}, [5727] = {.lex_state = 6, .external_lex_state = 4}, - [5728] = {.lex_state = 6, .external_lex_state = 4}, - [5729] = {.lex_state = 140}, + [5728] = {.lex_state = 141}, + [5729] = {.lex_state = 141}, [5730] = {.lex_state = 6, .external_lex_state = 4}, [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 = 140}, - [5735] = {.lex_state = 6}, + [5734] = {.lex_state = 6}, + [5735] = {.lex_state = 6, .external_lex_state = 4}, [5736] = {.lex_state = 6, .external_lex_state = 4}, - [5737] = {.lex_state = 140}, - [5738] = {.lex_state = 140}, - [5739] = {.lex_state = 6}, - [5740] = {.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 = 6, .external_lex_state = 4}, [5741] = {.lex_state = 6}, - [5742] = {.lex_state = 6}, - [5743] = {.lex_state = 6}, - [5744] = {.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 = 6, .external_lex_state = 4}, - [5747] = {.lex_state = 6, .external_lex_state = 4}, - [5748] = {.lex_state = 140}, - [5749] = {.lex_state = 6}, - [5750] = {.lex_state = 140}, + [5747] = {.lex_state = 6}, + [5748] = {.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 = 6, .external_lex_state = 4}, - [5756] = {.lex_state = 140}, - [5757] = {.lex_state = 9}, - [5758] = {.lex_state = 6}, - [5759] = {.lex_state = 6}, - [5760] = {.lex_state = 6}, - [5761] = {.lex_state = 6}, - [5762] = {.lex_state = 6}, - [5763] = {.lex_state = 140}, - [5764] = {.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, .external_lex_state = 4}, + [5760] = {.lex_state = 141}, + [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}, + [5768] = {.lex_state = 141}, [5769] = {.lex_state = 6, .external_lex_state = 4}, [5770] = {.lex_state = 6, .external_lex_state = 4}, [5771] = {.lex_state = 6, .external_lex_state = 4}, - [5772] = {.lex_state = 140}, + [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}, @@ -29941,201 +30013,201 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5777] = {.lex_state = 6, .external_lex_state = 4}, [5778] = {.lex_state = 6, .external_lex_state = 4}, [5779] = {.lex_state = 6, .external_lex_state = 4}, - [5780] = {.lex_state = 6}, - [5781] = {.lex_state = 6}, - [5782] = {.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 = 141}, [5783] = {.lex_state = 6, .external_lex_state = 4}, - [5784] = {.lex_state = 140}, + [5784] = {.lex_state = 6, .external_lex_state = 4}, [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}, + [5789] = {.lex_state = 141}, [5790] = {.lex_state = 6, .external_lex_state = 4}, - [5791] = {.lex_state = 6, .external_lex_state = 4}, + [5791] = {.lex_state = 141}, [5792] = {.lex_state = 6, .external_lex_state = 4}, - [5793] = {.lex_state = 6}, - [5794] = {.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 = 6}, - [5799] = {.lex_state = 6}, + [5798] = {.lex_state = 141}, + [5799] = {.lex_state = 6, .external_lex_state = 4}, [5800] = {.lex_state = 6}, - [5801] = {.lex_state = 6}, - [5802] = {.lex_state = 140}, - [5803] = {.lex_state = 13}, - [5804] = {.lex_state = 13}, - [5805] = {.lex_state = 13}, - [5806] = {.lex_state = 13}, + [5801] = {.lex_state = 6, .external_lex_state = 4}, + [5802] = {.lex_state = 14}, + [5803] = {.lex_state = 14}, + [5804] = {.lex_state = 6}, + [5805] = {.lex_state = 6}, + [5806] = {.lex_state = 6}, [5807] = {.lex_state = 6}, - [5808] = {.lex_state = 13}, + [5808] = {.lex_state = 6}, [5809] = {.lex_state = 6}, - [5810] = {.lex_state = 140}, - [5811] = {.lex_state = 13}, - [5812] = {.lex_state = 13}, + [5810] = {.lex_state = 14}, + [5811] = {.lex_state = 14}, + [5812] = {.lex_state = 14}, [5813] = {.lex_state = 6}, - [5814] = {.lex_state = 13}, - [5815] = {.lex_state = 140}, + [5814] = {.lex_state = 14}, + [5815] = {.lex_state = 14}, [5816] = {.lex_state = 6}, - [5817] = {.lex_state = 6}, - [5818] = {.lex_state = 6, .external_lex_state = 4}, + [5817] = {.lex_state = 14}, + [5818] = {.lex_state = 14}, [5819] = {.lex_state = 6}, - [5820] = {.lex_state = 6, .external_lex_state = 4}, - [5821] = {.lex_state = 13}, - [5822] = {.lex_state = 140}, - [5823] = {.lex_state = 13}, - [5824] = {.lex_state = 13}, - [5825] = {.lex_state = 13}, - [5826] = {.lex_state = 13}, - [5827] = {.lex_state = 13}, - [5828] = {.lex_state = 140}, - [5829] = {.lex_state = 13}, - [5830] = {.lex_state = 6, .external_lex_state = 4}, - [5831] = {.lex_state = 139}, - [5832] = {.lex_state = 13}, - [5833] = {.lex_state = 140}, - [5834] = {.lex_state = 6}, + [5820] = {.lex_state = 6}, + [5821] = {.lex_state = 6}, + [5822] = {.lex_state = 14}, + [5823] = {.lex_state = 6, .external_lex_state = 4}, + [5824] = {.lex_state = 14}, + [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, .external_lex_state = 4}, + [5833] = {.lex_state = 6}, + [5834] = {.lex_state = 14}, [5835] = {.lex_state = 6}, - [5836] = {.lex_state = 13}, - [5837] = {.lex_state = 13}, - [5838] = {.lex_state = 13}, + [5836] = {.lex_state = 6}, + [5837] = {.lex_state = 141}, + [5838] = {.lex_state = 14}, [5839] = {.lex_state = 6}, - [5840] = {.lex_state = 13}, - [5841] = {.lex_state = 6}, - [5842] = {.lex_state = 6, .external_lex_state = 4}, + [5840] = {.lex_state = 14}, + [5841] = {.lex_state = 14}, + [5842] = {.lex_state = 141}, [5843] = {.lex_state = 6}, - [5844] = {.lex_state = 13}, + [5844] = {.lex_state = 6}, [5845] = {.lex_state = 6}, - [5846] = {.lex_state = 13}, - [5847] = {.lex_state = 13}, - [5848] = {.lex_state = 13}, - [5849] = {.lex_state = 13}, - [5850] = {.lex_state = 6}, - [5851] = {.lex_state = 13}, + [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, .external_lex_state = 4}, [5852] = {.lex_state = 6}, - [5853] = {.lex_state = 6}, - [5854] = {.lex_state = 13}, + [5853] = {.lex_state = 14}, + [5854] = {.lex_state = 140}, [5855] = {.lex_state = 6}, - [5856] = {.lex_state = 13}, - [5857] = {.lex_state = 13}, - [5858] = {.lex_state = 6}, - [5859] = {.lex_state = 6}, - [5860] = {.lex_state = 140}, - [5861] = {.lex_state = 13}, + [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 = 14}, [5862] = {.lex_state = 6}, [5863] = {.lex_state = 6}, - [5864] = {.lex_state = 6}, - [5865] = {.lex_state = 13}, + [5864] = {.lex_state = 6, .external_lex_state = 4}, + [5865] = {.lex_state = 14}, [5866] = {.lex_state = 6}, - [5867] = {.lex_state = 6, .external_lex_state = 4}, - [5868] = {.lex_state = 13}, - [5869] = {.lex_state = 13}, - [5870] = {.lex_state = 13}, - [5871] = {.lex_state = 13}, - [5872] = {.lex_state = 13}, - [5873] = {.lex_state = 6}, - [5874] = {.lex_state = 13}, - [5875] = {.lex_state = 13}, - [5876] = {.lex_state = 6}, - [5877] = {.lex_state = 6}, + [5867] = {.lex_state = 6}, + [5868] = {.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 = 14}, + [5877] = {.lex_state = 14}, [5878] = {.lex_state = 6}, - [5879] = {.lex_state = 6}, + [5879] = {.lex_state = 14}, [5880] = {.lex_state = 6}, - [5881] = {.lex_state = 13}, - [5882] = {.lex_state = 140}, - [5883] = {.lex_state = 13}, - [5884] = {.lex_state = 6, .external_lex_state = 4}, - [5885] = {.lex_state = 13}, + [5881] = {.lex_state = 6}, + [5882] = {.lex_state = 14}, + [5883] = {.lex_state = 14}, + [5884] = {.lex_state = 141}, + [5885] = {.lex_state = 14}, [5886] = {.lex_state = 6, .external_lex_state = 4}, - [5887] = {.lex_state = 13}, - [5888] = {.lex_state = 6}, + [5887] = {.lex_state = 14}, + [5888] = {.lex_state = 14}, [5889] = {.lex_state = 6}, - [5890] = {.lex_state = 140}, + [5890] = {.lex_state = 141}, [5891] = {.lex_state = 6}, - [5892] = {.lex_state = 6}, + [5892] = {.lex_state = 6, .external_lex_state = 4}, [5893] = {.lex_state = 6}, - [5894] = {.lex_state = 6}, - [5895] = {.lex_state = 140}, - [5896] = {.lex_state = 140}, + [5894] = {.lex_state = 141}, + [5895] = {.lex_state = 6}, + [5896] = {.lex_state = 6}, [5897] = {.lex_state = 6}, - [5898] = {.lex_state = 140}, - [5899] = {.lex_state = 140}, + [5898] = {.lex_state = 141}, + [5899] = {.lex_state = 6}, [5900] = {.lex_state = 6}, [5901] = {.lex_state = 6}, - [5902] = {.lex_state = 140}, + [5902] = {.lex_state = 6}, [5903] = {.lex_state = 6}, - [5904] = {.lex_state = 140}, - [5905] = {.lex_state = 6}, - [5906] = {.lex_state = 140}, - [5907] = {.lex_state = 140}, - [5908] = {.lex_state = 6}, + [5904] = {.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}, - [5912] = {.lex_state = 6}, - [5913] = {.lex_state = 140}, - [5914] = {.lex_state = 140}, - [5915] = {.lex_state = 6}, - [5916] = {.lex_state = 140}, - [5917] = {.lex_state = 6}, + [5911] = {.lex_state = 141}, + [5912] = {.lex_state = 141}, + [5913] = {.lex_state = 6}, + [5914] = {.lex_state = 141}, + [5915] = {.lex_state = 141}, + [5916] = {.lex_state = 141}, + [5917] = {.lex_state = 141}, [5918] = {.lex_state = 6}, [5919] = {.lex_state = 6}, - [5920] = {.lex_state = 6}, + [5920] = {.lex_state = 141}, [5921] = {.lex_state = 6}, - [5922] = {.lex_state = 140}, - [5923] = {.lex_state = 6}, - [5924] = {.lex_state = 6}, + [5922] = {.lex_state = 6}, + [5923] = {.lex_state = 141}, + [5924] = {.lex_state = 141}, [5925] = {.lex_state = 6}, - [5926] = {.lex_state = 140}, - [5927] = {.lex_state = 20}, - [5928] = {.lex_state = 20}, + [5926] = {.lex_state = 141}, + [5927] = {.lex_state = 6}, + [5928] = {.lex_state = 6}, [5929] = {.lex_state = 6}, - [5930] = {.lex_state = 140}, - [5931] = {.lex_state = 140}, + [5930] = {.lex_state = 21}, + [5931] = {.lex_state = 6}, [5932] = {.lex_state = 6}, - [5933] = {.lex_state = 140}, - [5934] = {.lex_state = 140}, - [5935] = {.lex_state = 139}, - [5936] = {.lex_state = 6}, + [5933] = {.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 = 6}, [5940] = {.lex_state = 6}, - [5941] = {.lex_state = 6}, - [5942] = {.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 = 6}, - [5947] = {.lex_state = 6}, - [5948] = {.lex_state = 140}, - [5949] = {.lex_state = 140}, + [5946] = {.lex_state = 141}, + [5947] = {.lex_state = 141}, + [5948] = {.lex_state = 6}, + [5949] = {.lex_state = 6}, [5950] = {.lex_state = 6}, [5951] = {.lex_state = 6}, [5952] = {.lex_state = 6}, - [5953] = {.lex_state = 6}, + [5953] = {.lex_state = 141}, [5954] = {.lex_state = 6}, [5955] = {.lex_state = 6}, [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 = 6}, - [5963] = {.lex_state = 140}, - [5964] = {.lex_state = 139}, + [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}, - [5972] = {.lex_state = 140}, + [5972] = {.lex_state = 6}, [5973] = {.lex_state = 6}, - [5974] = {.lex_state = 140}, + [5974] = {.lex_state = 6}, [5975] = {.lex_state = 6}, [5976] = {.lex_state = 6}, [5977] = {.lex_state = 6}, @@ -30144,470 +30216,470 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5980] = {.lex_state = 6}, [5981] = {.lex_state = 6}, [5982] = {.lex_state = 6}, - [5983] = {.lex_state = 140}, + [5983] = {.lex_state = 6}, [5984] = {.lex_state = 6}, [5985] = {.lex_state = 6}, [5986] = {.lex_state = 6}, - [5987] = {.lex_state = 140}, - [5988] = {.lex_state = 140}, - [5989] = {.lex_state = 6}, - [5990] = {.lex_state = 140}, + [5987] = {.lex_state = 6}, + [5988] = {.lex_state = 6}, + [5989] = {.lex_state = 141}, + [5990] = {.lex_state = 6}, [5991] = {.lex_state = 6}, [5992] = {.lex_state = 6}, - [5993] = {.lex_state = 140}, - [5994] = {.lex_state = 140}, + [5993] = {.lex_state = 6}, + [5994] = {.lex_state = 6}, [5995] = {.lex_state = 6}, - [5996] = {.lex_state = 140}, - [5997] = {.lex_state = 140}, - [5998] = {.lex_state = 140}, - [5999] = {.lex_state = 20}, + [5996] = {.lex_state = 141}, + [5997] = {.lex_state = 6}, + [5998] = {.lex_state = 141}, + [5999] = {.lex_state = 141}, [6000] = {.lex_state = 140}, - [6001] = {.lex_state = 140}, - [6002] = {.lex_state = 140}, - [6003] = {.lex_state = 20}, - [6004] = {.lex_state = 140}, - [6005] = {.lex_state = 140}, - [6006] = {.lex_state = 140}, - [6007] = {.lex_state = 140}, - [6008] = {.lex_state = 140}, - [6009] = {.lex_state = 6}, - [6010] = {.lex_state = 140}, - [6011] = {.lex_state = 140}, - [6012] = {.lex_state = 140}, - [6013] = {.lex_state = 140}, - [6014] = {.lex_state = 140}, - [6015] = {.lex_state = 140}, - [6016] = {.lex_state = 20}, - [6017] = {.lex_state = 140}, - [6018] = {.lex_state = 140}, - [6019] = {.lex_state = 140}, - [6020] = {.lex_state = 139}, - [6021] = {.lex_state = 139}, - [6022] = {.lex_state = 140}, - [6023] = {.lex_state = 140}, - [6024] = {.lex_state = 140}, - [6025] = {.lex_state = 20}, + [6001] = {.lex_state = 141}, + [6002] = {.lex_state = 141}, + [6003] = {.lex_state = 141}, + [6004] = {.lex_state = 6}, + [6005] = {.lex_state = 141}, + [6006] = {.lex_state = 141}, + [6007] = {.lex_state = 141}, + [6008] = {.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 = 21}, + [6017] = {.lex_state = 141}, + [6018] = {.lex_state = 141}, + [6019] = {.lex_state = 21}, + [6020] = {.lex_state = 141}, + [6021] = {.lex_state = 141}, + [6022] = {.lex_state = 141}, + [6023] = {.lex_state = 141}, + [6024] = {.lex_state = 141}, + [6025] = {.lex_state = 140}, [6026] = {.lex_state = 140}, - [6027] = {.lex_state = 140}, - [6028] = {.lex_state = 140}, - [6029] = {.lex_state = 6}, - [6030] = {.lex_state = 140}, - [6031] = {.lex_state = 139}, - [6032] = {.lex_state = 140}, - [6033] = {.lex_state = 140}, - [6034] = {.lex_state = 140}, - [6035] = {.lex_state = 140}, - [6036] = {.lex_state = 140}, + [6027] = {.lex_state = 141}, + [6028] = {.lex_state = 141}, + [6029] = {.lex_state = 141}, + [6030] = {.lex_state = 141}, + [6031] = {.lex_state = 141}, + [6032] = {.lex_state = 141}, + [6033] = {.lex_state = 141}, + [6034] = {.lex_state = 141}, + [6035] = {.lex_state = 21}, + [6036] = {.lex_state = 141}, [6037] = {.lex_state = 140}, [6038] = {.lex_state = 140}, - [6039] = {.lex_state = 139}, - [6040] = {.lex_state = 140}, - [6041] = {.lex_state = 140}, - [6042] = {.lex_state = 140}, - [6043] = {.lex_state = 140}, - [6044] = {.lex_state = 140}, - [6045] = {.lex_state = 140}, - [6046] = {.lex_state = 140}, - [6047] = {.lex_state = 6}, - [6048] = {.lex_state = 140}, - [6049] = {.lex_state = 140}, - [6050] = {.lex_state = 140}, - [6051] = {.lex_state = 140}, - [6052] = {.lex_state = 140}, - [6053] = {.lex_state = 140}, - [6054] = {.lex_state = 140}, - [6055] = {.lex_state = 140}, - [6056] = {.lex_state = 140}, - [6057] = {.lex_state = 140}, - [6058] = {.lex_state = 140}, - [6059] = {.lex_state = 140}, - [6060] = {.lex_state = 140}, - [6061] = {.lex_state = 140}, - [6062] = {.lex_state = 140}, - [6063] = {.lex_state = 140}, - [6064] = {.lex_state = 140}, - [6065] = {.lex_state = 140}, - [6066] = {.lex_state = 140}, - [6067] = {.lex_state = 140}, - [6068] = {.lex_state = 140}, - [6069] = {.lex_state = 140}, - [6070] = {.lex_state = 140}, - [6071] = {.lex_state = 140}, - [6072] = {.lex_state = 140}, - [6073] = {.lex_state = 140}, - [6074] = {.lex_state = 140}, - [6075] = {.lex_state = 140}, - [6076] = {.lex_state = 140}, - [6077] = {.lex_state = 140}, - [6078] = {.lex_state = 140}, - [6079] = {.lex_state = 140}, - [6080] = {.lex_state = 140}, - [6081] = {.lex_state = 140}, - [6082] = {.lex_state = 140}, - [6083] = {.lex_state = 140}, - [6084] = {.lex_state = 140}, - [6085] = {.lex_state = 140}, - [6086] = {.lex_state = 140}, - [6087] = {.lex_state = 140}, - [6088] = {.lex_state = 140}, - [6089] = {.lex_state = 140}, - [6090] = {.lex_state = 140}, - [6091] = {.lex_state = 140}, - [6092] = {.lex_state = 140}, - [6093] = {.lex_state = 140}, - [6094] = {.lex_state = 140}, - [6095] = {.lex_state = 140}, - [6096] = {.lex_state = 140}, - [6097] = {.lex_state = 140}, - [6098] = {.lex_state = 140}, - [6099] = {.lex_state = 140}, - [6100] = {.lex_state = 140}, - [6101] = {.lex_state = 140}, - [6102] = {.lex_state = 140}, - [6103] = {.lex_state = 140}, - [6104] = {.lex_state = 140}, - [6105] = {.lex_state = 140}, - [6106] = {.lex_state = 140}, - [6107] = {.lex_state = 140}, - [6108] = {.lex_state = 140}, - [6109] = {.lex_state = 140}, - [6110] = {.lex_state = 140}, - [6111] = {.lex_state = 140}, - [6112] = {.lex_state = 140}, - [6113] = {.lex_state = 140}, - [6114] = {.lex_state = 140}, - [6115] = {.lex_state = 139}, - [6116] = {.lex_state = 140}, - [6117] = {.lex_state = 140}, - [6118] = {.lex_state = 140}, - [6119] = {.lex_state = 140}, - [6120] = {.lex_state = 140}, - [6121] = {.lex_state = 140}, - [6122] = {.lex_state = 140}, - [6123] = {.lex_state = 140}, - [6124] = {.lex_state = 140}, - [6125] = {.lex_state = 140}, - [6126] = {.lex_state = 140}, - [6127] = {.lex_state = 140}, - [6128] = {.lex_state = 140}, - [6129] = {.lex_state = 140}, - [6130] = {.lex_state = 140}, - [6131] = {.lex_state = 140}, - [6132] = {.lex_state = 140}, - [6133] = {.lex_state = 140}, - [6134] = {.lex_state = 140}, - [6135] = {.lex_state = 140}, - [6136] = {.lex_state = 140}, - [6137] = {.lex_state = 140}, - [6138] = {.lex_state = 140}, - [6139] = {.lex_state = 140}, - [6140] = {.lex_state = 140}, - [6141] = {.lex_state = 140}, - [6142] = {.lex_state = 140}, - [6143] = {.lex_state = 140}, - [6144] = {.lex_state = 140}, - [6145] = {.lex_state = 140}, - [6146] = {.lex_state = 140}, - [6147] = {.lex_state = 140}, - [6148] = {.lex_state = 140}, - [6149] = {.lex_state = 140}, - [6150] = {.lex_state = 140}, - [6151] = {.lex_state = 140}, - [6152] = {.lex_state = 140}, - [6153] = {.lex_state = 140}, - [6154] = {.lex_state = 140}, - [6155] = {.lex_state = 140}, - [6156] = {.lex_state = 140}, - [6157] = {.lex_state = 140}, - [6158] = {.lex_state = 140}, - [6159] = {.lex_state = 140}, - [6160] = {.lex_state = 140}, + [6039] = {.lex_state = 141}, + [6040] = {.lex_state = 6}, + [6041] = {.lex_state = 6}, + [6042] = {.lex_state = 141}, + [6043] = {.lex_state = 141}, + [6044] = {.lex_state = 141}, + [6045] = {.lex_state = 141}, + [6046] = {.lex_state = 141}, + [6047] = {.lex_state = 141}, + [6048] = {.lex_state = 141}, + [6049] = {.lex_state = 141}, + [6050] = {.lex_state = 141}, + [6051] = {.lex_state = 141}, + [6052] = {.lex_state = 141}, + [6053] = {.lex_state = 141}, + [6054] = {.lex_state = 141}, + [6055] = {.lex_state = 141}, + [6056] = {.lex_state = 141}, + [6057] = {.lex_state = 141}, + [6058] = {.lex_state = 141}, + [6059] = {.lex_state = 141}, + [6060] = {.lex_state = 141}, + [6061] = {.lex_state = 141}, + [6062] = {.lex_state = 141}, + [6063] = {.lex_state = 141}, + [6064] = {.lex_state = 141}, + [6065] = {.lex_state = 141}, + [6066] = {.lex_state = 141}, + [6067] = {.lex_state = 141}, + [6068] = {.lex_state = 141}, + [6069] = {.lex_state = 141}, + [6070] = {.lex_state = 141}, + [6071] = {.lex_state = 141}, + [6072] = {.lex_state = 141}, + [6073] = {.lex_state = 141}, + [6074] = {.lex_state = 141}, + [6075] = {.lex_state = 141}, + [6076] = {.lex_state = 141}, + [6077] = {.lex_state = 141}, + [6078] = {.lex_state = 141}, + [6079] = {.lex_state = 141}, + [6080] = {.lex_state = 141}, + [6081] = {.lex_state = 141}, + [6082] = {.lex_state = 141}, + [6083] = {.lex_state = 141}, + [6084] = {.lex_state = 141}, + [6085] = {.lex_state = 141}, + [6086] = {.lex_state = 141}, + [6087] = {.lex_state = 141}, + [6088] = {.lex_state = 141}, + [6089] = {.lex_state = 141}, + [6090] = {.lex_state = 141}, + [6091] = {.lex_state = 141}, + [6092] = {.lex_state = 141}, + [6093] = {.lex_state = 141}, + [6094] = {.lex_state = 141}, + [6095] = {.lex_state = 141}, + [6096] = {.lex_state = 141}, + [6097] = {.lex_state = 141}, + [6098] = {.lex_state = 141}, + [6099] = {.lex_state = 141}, + [6100] = {.lex_state = 141}, + [6101] = {.lex_state = 141}, + [6102] = {.lex_state = 141}, + [6103] = {.lex_state = 141}, + [6104] = {.lex_state = 141}, + [6105] = {.lex_state = 141}, + [6106] = {.lex_state = 141}, + [6107] = {.lex_state = 141}, + [6108] = {.lex_state = 141}, + [6109] = {.lex_state = 141}, + [6110] = {.lex_state = 141}, + [6111] = {.lex_state = 141}, + [6112] = {.lex_state = 141}, + [6113] = {.lex_state = 141}, + [6114] = {.lex_state = 141}, + [6115] = {.lex_state = 141}, + [6116] = {.lex_state = 141}, + [6117] = {.lex_state = 141}, + [6118] = {.lex_state = 141}, + [6119] = {.lex_state = 141}, + [6120] = {.lex_state = 141}, + [6121] = {.lex_state = 141}, + [6122] = {.lex_state = 141}, + [6123] = {.lex_state = 141}, + [6124] = {.lex_state = 141}, + [6125] = {.lex_state = 141}, + [6126] = {.lex_state = 141}, + [6127] = {.lex_state = 141}, + [6128] = {.lex_state = 141}, + [6129] = {.lex_state = 141}, + [6130] = {.lex_state = 141}, + [6131] = {.lex_state = 141}, + [6132] = {.lex_state = 141}, + [6133] = {.lex_state = 141}, + [6134] = {.lex_state = 141}, + [6135] = {.lex_state = 141}, + [6136] = {.lex_state = 141}, + [6137] = {.lex_state = 141}, + [6138] = {.lex_state = 141}, + [6139] = {.lex_state = 141}, + [6140] = {.lex_state = 141}, + [6141] = {.lex_state = 141}, + [6142] = {.lex_state = 141}, + [6143] = {.lex_state = 141}, + [6144] = {.lex_state = 141}, + [6145] = {.lex_state = 141}, + [6146] = {.lex_state = 141}, + [6147] = {.lex_state = 141}, + [6148] = {.lex_state = 141}, + [6149] = {.lex_state = 141}, + [6150] = {.lex_state = 141}, + [6151] = {.lex_state = 141}, + [6152] = {.lex_state = 141}, + [6153] = {.lex_state = 141}, + [6154] = {.lex_state = 141}, + [6155] = {.lex_state = 141}, + [6156] = {.lex_state = 141}, + [6157] = {.lex_state = 141}, + [6158] = {.lex_state = 141}, + [6159] = {.lex_state = 141}, + [6160] = {.lex_state = 141}, [6161] = {.lex_state = 140}, - [6162] = {.lex_state = 140}, - [6163] = {.lex_state = 140}, - [6164] = {.lex_state = 140}, - [6165] = {.lex_state = 140}, - [6166] = {.lex_state = 140}, - [6167] = {.lex_state = 140}, - [6168] = {.lex_state = 140}, - [6169] = {.lex_state = 140}, - [6170] = {.lex_state = 140}, - [6171] = {.lex_state = 140}, - [6172] = {.lex_state = 140}, - [6173] = {.lex_state = 140}, - [6174] = {.lex_state = 140}, - [6175] = {.lex_state = 140}, - [6176] = {.lex_state = 140}, - [6177] = {.lex_state = 140}, - [6178] = {.lex_state = 140}, - [6179] = {.lex_state = 140}, - [6180] = {.lex_state = 140}, - [6181] = {.lex_state = 140}, - [6182] = {.lex_state = 140}, - [6183] = {.lex_state = 140}, - [6184] = {.lex_state = 140}, - [6185] = {.lex_state = 140}, - [6186] = {.lex_state = 140}, - [6187] = {.lex_state = 140}, - [6188] = {.lex_state = 140}, - [6189] = {.lex_state = 140}, - [6190] = {.lex_state = 140}, - [6191] = {.lex_state = 140}, - [6192] = {.lex_state = 140}, - [6193] = {.lex_state = 140}, - [6194] = {.lex_state = 140}, - [6195] = {.lex_state = 140}, - [6196] = {.lex_state = 140}, - [6197] = {.lex_state = 140}, - [6198] = {.lex_state = 140}, - [6199] = {.lex_state = 140}, - [6200] = {.lex_state = 140}, - [6201] = {.lex_state = 140}, - [6202] = {.lex_state = 140}, - [6203] = {.lex_state = 140}, - [6204] = {.lex_state = 140}, - [6205] = {.lex_state = 140}, - [6206] = {.lex_state = 140}, - [6207] = {.lex_state = 140}, - [6208] = {.lex_state = 140}, - [6209] = {.lex_state = 140}, - [6210] = {.lex_state = 140}, - [6211] = {.lex_state = 140}, - [6212] = {.lex_state = 140}, - [6213] = {.lex_state = 140}, - [6214] = {.lex_state = 140}, - [6215] = {.lex_state = 140}, - [6216] = {.lex_state = 140}, - [6217] = {.lex_state = 140}, - [6218] = {.lex_state = 140}, - [6219] = {.lex_state = 140}, - [6220] = {.lex_state = 140}, - [6221] = {.lex_state = 140}, - [6222] = {.lex_state = 140}, - [6223] = {.lex_state = 140}, - [6224] = {.lex_state = 140}, - [6225] = {.lex_state = 140}, - [6226] = {.lex_state = 140}, - [6227] = {.lex_state = 140}, - [6228] = {.lex_state = 140}, - [6229] = {.lex_state = 140}, - [6230] = {.lex_state = 140}, - [6231] = {.lex_state = 140}, - [6232] = {.lex_state = 140}, - [6233] = {.lex_state = 140}, - [6234] = {.lex_state = 140}, - [6235] = {.lex_state = 140}, - [6236] = {.lex_state = 140}, - [6237] = {.lex_state = 140}, - [6238] = {.lex_state = 140}, - [6239] = {.lex_state = 140}, - [6240] = {.lex_state = 140}, - [6241] = {.lex_state = 140}, - [6242] = {.lex_state = 140}, - [6243] = {.lex_state = 140}, - [6244] = {.lex_state = 140}, - [6245] = {.lex_state = 140}, - [6246] = {.lex_state = 140}, - [6247] = {.lex_state = 140}, - [6248] = {.lex_state = 140}, - [6249] = {.lex_state = 140}, - [6250] = {.lex_state = 140}, - [6251] = {.lex_state = 140}, - [6252] = {.lex_state = 140}, - [6253] = {.lex_state = 140}, - [6254] = {.lex_state = 140}, - [6255] = {.lex_state = 140}, - [6256] = {.lex_state = 140}, - [6257] = {.lex_state = 140}, - [6258] = {.lex_state = 140}, - [6259] = {.lex_state = 140}, - [6260] = {.lex_state = 140}, - [6261] = {.lex_state = 140}, - [6262] = {.lex_state = 140}, - [6263] = {.lex_state = 140}, - [6264] = {.lex_state = 140}, - [6265] = {.lex_state = 140}, - [6266] = {.lex_state = 140}, - [6267] = {.lex_state = 140}, - [6268] = {.lex_state = 140}, - [6269] = {.lex_state = 140}, - [6270] = {.lex_state = 140}, - [6271] = {.lex_state = 140}, - [6272] = {.lex_state = 140}, - [6273] = {.lex_state = 140}, - [6274] = {.lex_state = 140}, - [6275] = {.lex_state = 140}, - [6276] = {.lex_state = 140}, - [6277] = {.lex_state = 140}, - [6278] = {.lex_state = 140}, - [6279] = {.lex_state = 140}, - [6280] = {.lex_state = 140}, - [6281] = {.lex_state = 140}, - [6282] = {.lex_state = 140}, - [6283] = {.lex_state = 140}, - [6284] = {.lex_state = 140}, - [6285] = {.lex_state = 140}, - [6286] = {.lex_state = 140}, - [6287] = {.lex_state = 140}, - [6288] = {.lex_state = 140}, - [6289] = {.lex_state = 140}, - [6290] = {.lex_state = 140}, - [6291] = {.lex_state = 140}, - [6292] = {.lex_state = 140}, - [6293] = {.lex_state = 140}, - [6294] = {.lex_state = 140}, - [6295] = {.lex_state = 140}, - [6296] = {.lex_state = 140}, - [6297] = {.lex_state = 140}, - [6298] = {.lex_state = 140}, - [6299] = {.lex_state = 140}, - [6300] = {.lex_state = 140}, - [6301] = {.lex_state = 140}, - [6302] = {.lex_state = 140}, - [6303] = {.lex_state = 140}, - [6304] = {.lex_state = 140}, - [6305] = {.lex_state = 1}, - [6306] = {.lex_state = 140}, - [6307] = {.lex_state = 140}, - [6308] = {.lex_state = 140}, - [6309] = {.lex_state = 140}, - [6310] = {.lex_state = 140}, - [6311] = {.lex_state = 140}, - [6312] = {.lex_state = 140}, - [6313] = {.lex_state = 140}, - [6314] = {.lex_state = 140}, - [6315] = {.lex_state = 140}, - [6316] = {.lex_state = 140}, - [6317] = {.lex_state = 140}, - [6318] = {.lex_state = 140}, - [6319] = {.lex_state = 140}, - [6320] = {.lex_state = 140}, - [6321] = {.lex_state = 140}, - [6322] = {.lex_state = 140}, - [6323] = {.lex_state = 140}, - [6324] = {.lex_state = 140}, - [6325] = {.lex_state = 140}, - [6326] = {.lex_state = 140}, - [6327] = {.lex_state = 140}, - [6328] = {.lex_state = 140}, - [6329] = {.lex_state = 140}, - [6330] = {.lex_state = 140}, - [6331] = {.lex_state = 140}, - [6332] = {.lex_state = 140}, - [6333] = {.lex_state = 140}, - [6334] = {.lex_state = 140}, - [6335] = {.lex_state = 140}, - [6336] = {.lex_state = 140}, - [6337] = {.lex_state = 140}, - [6338] = {.lex_state = 140}, - [6339] = {.lex_state = 140}, - [6340] = {.lex_state = 140}, - [6341] = {.lex_state = 140}, - [6342] = {.lex_state = 140}, - [6343] = {.lex_state = 140}, - [6344] = {.lex_state = 140}, - [6345] = {.lex_state = 140}, - [6346] = {.lex_state = 140}, - [6347] = {.lex_state = 140}, - [6348] = {.lex_state = 140}, - [6349] = {.lex_state = 140}, - [6350] = {.lex_state = 140}, - [6351] = {.lex_state = 140}, - [6352] = {.lex_state = 140}, - [6353] = {.lex_state = 140}, - [6354] = {.lex_state = 140}, - [6355] = {.lex_state = 140}, - [6356] = {.lex_state = 140}, - [6357] = {.lex_state = 140}, - [6358] = {.lex_state = 140}, - [6359] = {.lex_state = 140}, - [6360] = {.lex_state = 140}, - [6361] = {.lex_state = 140}, - [6362] = {.lex_state = 5}, - [6363] = {.lex_state = 140}, - [6364] = {.lex_state = 140}, - [6365] = {.lex_state = 140}, - [6366] = {.lex_state = 140}, - [6367] = {.lex_state = 140}, - [6368] = {.lex_state = 140}, - [6369] = {.lex_state = 140}, - [6370] = {.lex_state = 140}, - [6371] = {.lex_state = 140}, - [6372] = {.lex_state = 140}, - [6373] = {.lex_state = 140}, - [6374] = {.lex_state = 140}, - [6375] = {.lex_state = 140}, - [6376] = {.lex_state = 140}, - [6377] = {.lex_state = 140}, - [6378] = {.lex_state = 140}, - [6379] = {.lex_state = 140}, - [6380] = {.lex_state = 140}, - [6381] = {.lex_state = 140}, - [6382] = {.lex_state = 140}, - [6383] = {.lex_state = 140}, - [6384] = {.lex_state = 140}, - [6385] = {.lex_state = 140}, - [6386] = {.lex_state = 140}, - [6387] = {.lex_state = 140}, - [6388] = {.lex_state = 140}, - [6389] = {.lex_state = 140}, - [6390] = {.lex_state = 140}, - [6391] = {.lex_state = 140}, - [6392] = {.lex_state = 140}, - [6393] = {.lex_state = 140}, - [6394] = {.lex_state = 140}, - [6395] = {.lex_state = 140}, - [6396] = {.lex_state = 140}, - [6397] = {.lex_state = 140}, - [6398] = {.lex_state = 140}, - [6399] = {.lex_state = 140}, - [6400] = {.lex_state = 140}, - [6401] = {.lex_state = 140}, - [6402] = {.lex_state = 140}, - [6403] = {.lex_state = 140}, - [6404] = {.lex_state = 140}, - [6405] = {.lex_state = 140}, - [6406] = {.lex_state = 140}, - [6407] = {.lex_state = 140}, - [6408] = {.lex_state = 140}, - [6409] = {.lex_state = 140}, - [6410] = {.lex_state = 140}, - [6411] = {.lex_state = 140}, - [6412] = {.lex_state = 140}, - [6413] = {.lex_state = 140}, - [6414] = {.lex_state = 140}, - [6415] = {.lex_state = 140}, - [6416] = {.lex_state = 140}, - [6417] = {.lex_state = 140}, - [6418] = {.lex_state = 140}, - [6419] = {.lex_state = 140}, - [6420] = {.lex_state = 140}, - [6421] = {.lex_state = 140}, - [6422] = {.lex_state = 140}, - [6423] = {.lex_state = 140}, - [6424] = {.lex_state = 140}, - [6425] = {.lex_state = 140}, - [6426] = {.lex_state = 140}, - [6427] = {.lex_state = 140}, - [6428] = {.lex_state = 140}, - [6429] = {.lex_state = 140}, - [6430] = {.lex_state = 140}, - [6431] = {.lex_state = 140}, - [6432] = {.lex_state = 140}, - [6433] = {.lex_state = 140}, - [6434] = {.lex_state = 11}, - [6435] = {.lex_state = 11}, - [6436] = {.lex_state = 140}, - [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}, + [6162] = {.lex_state = 141}, + [6163] = {.lex_state = 141}, + [6164] = {.lex_state = 141}, + [6165] = {.lex_state = 141}, + [6166] = {.lex_state = 141}, + [6167] = {.lex_state = 141}, + [6168] = {.lex_state = 141}, + [6169] = {.lex_state = 141}, + [6170] = {.lex_state = 141}, + [6171] = {.lex_state = 141}, + [6172] = {.lex_state = 141}, + [6173] = {.lex_state = 141}, + [6174] = {.lex_state = 141}, + [6175] = {.lex_state = 141}, + [6176] = {.lex_state = 141}, + [6177] = {.lex_state = 141}, + [6178] = {.lex_state = 141}, + [6179] = {.lex_state = 141}, + [6180] = {.lex_state = 141}, + [6181] = {.lex_state = 141}, + [6182] = {.lex_state = 141}, + [6183] = {.lex_state = 141}, + [6184] = {.lex_state = 141}, + [6185] = {.lex_state = 141}, + [6186] = {.lex_state = 141}, + [6187] = {.lex_state = 141}, + [6188] = {.lex_state = 141}, + [6189] = {.lex_state = 141}, + [6190] = {.lex_state = 141}, + [6191] = {.lex_state = 141}, + [6192] = {.lex_state = 141}, + [6193] = {.lex_state = 141}, + [6194] = {.lex_state = 141}, + [6195] = {.lex_state = 141}, + [6196] = {.lex_state = 141}, + [6197] = {.lex_state = 141}, + [6198] = {.lex_state = 141}, + [6199] = {.lex_state = 141}, + [6200] = {.lex_state = 141}, + [6201] = {.lex_state = 141}, + [6202] = {.lex_state = 141}, + [6203] = {.lex_state = 141}, + [6204] = {.lex_state = 141}, + [6205] = {.lex_state = 141}, + [6206] = {.lex_state = 141}, + [6207] = {.lex_state = 141}, + [6208] = {.lex_state = 141}, + [6209] = {.lex_state = 141}, + [6210] = {.lex_state = 141}, + [6211] = {.lex_state = 141}, + [6212] = {.lex_state = 141}, + [6213] = {.lex_state = 141}, + [6214] = {.lex_state = 141}, + [6215] = {.lex_state = 141}, + [6216] = {.lex_state = 141}, + [6217] = {.lex_state = 141}, + [6218] = {.lex_state = 141}, + [6219] = {.lex_state = 141}, + [6220] = {.lex_state = 141}, + [6221] = {.lex_state = 141}, + [6222] = {.lex_state = 141}, + [6223] = {.lex_state = 141}, + [6224] = {.lex_state = 141}, + [6225] = {.lex_state = 141}, + [6226] = {.lex_state = 141}, + [6227] = {.lex_state = 141}, + [6228] = {.lex_state = 141}, + [6229] = {.lex_state = 141}, + [6230] = {.lex_state = 141}, + [6231] = {.lex_state = 141}, + [6232] = {.lex_state = 141}, + [6233] = {.lex_state = 141}, + [6234] = {.lex_state = 141}, + [6235] = {.lex_state = 141}, + [6236] = {.lex_state = 141}, + [6237] = {.lex_state = 141}, + [6238] = {.lex_state = 141}, + [6239] = {.lex_state = 141}, + [6240] = {.lex_state = 141}, + [6241] = {.lex_state = 141}, + [6242] = {.lex_state = 141}, + [6243] = {.lex_state = 141}, + [6244] = {.lex_state = 141}, + [6245] = {.lex_state = 141}, + [6246] = {.lex_state = 141}, + [6247] = {.lex_state = 141}, + [6248] = {.lex_state = 141}, + [6249] = {.lex_state = 141}, + [6250] = {.lex_state = 141}, + [6251] = {.lex_state = 141}, + [6252] = {.lex_state = 141}, + [6253] = {.lex_state = 141}, + [6254] = {.lex_state = 141}, + [6255] = {.lex_state = 141}, + [6256] = {.lex_state = 141}, + [6257] = {.lex_state = 141}, + [6258] = {.lex_state = 141}, + [6259] = {.lex_state = 141}, + [6260] = {.lex_state = 141}, + [6261] = {.lex_state = 141}, + [6262] = {.lex_state = 141}, + [6263] = {.lex_state = 141}, + [6264] = {.lex_state = 141}, + [6265] = {.lex_state = 141}, + [6266] = {.lex_state = 141}, + [6267] = {.lex_state = 141}, + [6268] = {.lex_state = 141}, + [6269] = {.lex_state = 141}, + [6270] = {.lex_state = 141}, + [6271] = {.lex_state = 141}, + [6272] = {.lex_state = 141}, + [6273] = {.lex_state = 141}, + [6274] = {.lex_state = 141}, + [6275] = {.lex_state = 141}, + [6276] = {.lex_state = 141}, + [6277] = {.lex_state = 141}, + [6278] = {.lex_state = 141}, + [6279] = {.lex_state = 141}, + [6280] = {.lex_state = 141}, + [6281] = {.lex_state = 141}, + [6282] = {.lex_state = 141}, + [6283] = {.lex_state = 141}, + [6284] = {.lex_state = 141}, + [6285] = {.lex_state = 141}, + [6286] = {.lex_state = 141}, + [6287] = {.lex_state = 141}, + [6288] = {.lex_state = 141}, + [6289] = {.lex_state = 141}, + [6290] = {.lex_state = 141}, + [6291] = {.lex_state = 141}, + [6292] = {.lex_state = 141}, + [6293] = {.lex_state = 141}, + [6294] = {.lex_state = 141}, + [6295] = {.lex_state = 141}, + [6296] = {.lex_state = 141}, + [6297] = {.lex_state = 141}, + [6298] = {.lex_state = 141}, + [6299] = {.lex_state = 141}, + [6300] = {.lex_state = 141}, + [6301] = {.lex_state = 141}, + [6302] = {.lex_state = 141}, + [6303] = {.lex_state = 141}, + [6304] = {.lex_state = 141}, + [6305] = {.lex_state = 141}, + [6306] = {.lex_state = 141}, + [6307] = {.lex_state = 141}, + [6308] = {.lex_state = 141}, + [6309] = {.lex_state = 141}, + [6310] = {.lex_state = 141}, + [6311] = {.lex_state = 141}, + [6312] = {.lex_state = 141}, + [6313] = {.lex_state = 141}, + [6314] = {.lex_state = 141}, + [6315] = {.lex_state = 141}, + [6316] = {.lex_state = 141}, + [6317] = {.lex_state = 141}, + [6318] = {.lex_state = 141}, + [6319] = {.lex_state = 141}, + [6320] = {.lex_state = 141}, + [6321] = {.lex_state = 141}, + [6322] = {.lex_state = 141}, + [6323] = {.lex_state = 141}, + [6324] = {.lex_state = 141}, + [6325] = {.lex_state = 141}, + [6326] = {.lex_state = 141}, + [6327] = {.lex_state = 141}, + [6328] = {.lex_state = 141}, + [6329] = {.lex_state = 141}, + [6330] = {.lex_state = 141}, + [6331] = {.lex_state = 141}, + [6332] = {.lex_state = 141}, + [6333] = {.lex_state = 141}, + [6334] = {.lex_state = 141}, + [6335] = {.lex_state = 141}, + [6336] = {.lex_state = 141}, + [6337] = {.lex_state = 141}, + [6338] = {.lex_state = 141}, + [6339] = {.lex_state = 141}, + [6340] = {.lex_state = 141}, + [6341] = {.lex_state = 141}, + [6342] = {.lex_state = 141}, + [6343] = {.lex_state = 141}, + [6344] = {.lex_state = 141}, + [6345] = {.lex_state = 141}, + [6346] = {.lex_state = 141}, + [6347] = {.lex_state = 1}, + [6348] = {.lex_state = 141}, + [6349] = {.lex_state = 141}, + [6350] = {.lex_state = 141}, + [6351] = {.lex_state = 141}, + [6352] = {.lex_state = 141}, + [6353] = {.lex_state = 141}, + [6354] = {.lex_state = 141}, + [6355] = {.lex_state = 141}, + [6356] = {.lex_state = 141}, + [6357] = {.lex_state = 141}, + [6358] = {.lex_state = 141}, + [6359] = {.lex_state = 141}, + [6360] = {.lex_state = 141}, + [6361] = {.lex_state = 141}, + [6362] = {.lex_state = 141}, + [6363] = {.lex_state = 141}, + [6364] = {.lex_state = 141}, + [6365] = {.lex_state = 141}, + [6366] = {.lex_state = 141}, + [6367] = {.lex_state = 141}, + [6368] = {.lex_state = 5}, + [6369] = {.lex_state = 141}, + [6370] = {.lex_state = 141}, + [6371] = {.lex_state = 141}, + [6372] = {.lex_state = 141}, + [6373] = {.lex_state = 141}, + [6374] = {.lex_state = 141}, + [6375] = {.lex_state = 141}, + [6376] = {.lex_state = 141}, + [6377] = {.lex_state = 141}, + [6378] = {.lex_state = 141}, + [6379] = {.lex_state = 141}, + [6380] = {.lex_state = 141}, + [6381] = {.lex_state = 141}, + [6382] = {.lex_state = 141}, + [6383] = {.lex_state = 141}, + [6384] = {.lex_state = 141}, + [6385] = {.lex_state = 141}, + [6386] = {.lex_state = 141}, + [6387] = {.lex_state = 141}, + [6388] = {.lex_state = 141}, + [6389] = {.lex_state = 141}, + [6390] = {.lex_state = 141}, + [6391] = {.lex_state = 141}, + [6392] = {.lex_state = 141}, + [6393] = {.lex_state = 141}, + [6394] = {.lex_state = 141}, + [6395] = {.lex_state = 141}, + [6396] = {.lex_state = 141}, + [6397] = {.lex_state = 141}, + [6398] = {.lex_state = 141}, + [6399] = {.lex_state = 141}, + [6400] = {.lex_state = 141}, + [6401] = {.lex_state = 141}, + [6402] = {.lex_state = 141}, + [6403] = {.lex_state = 141}, + [6404] = {.lex_state = 141}, + [6405] = {.lex_state = 141}, + [6406] = {.lex_state = 141}, + [6407] = {.lex_state = 141}, + [6408] = {.lex_state = 141}, + [6409] = {.lex_state = 141}, + [6410] = {.lex_state = 141}, + [6411] = {.lex_state = 141}, + [6412] = {.lex_state = 141}, + [6413] = {.lex_state = 141}, + [6414] = {.lex_state = 141}, + [6415] = {.lex_state = 141}, + [6416] = {.lex_state = 141}, + [6417] = {.lex_state = 141}, + [6418] = {.lex_state = 141}, + [6419] = {.lex_state = 141}, + [6420] = {.lex_state = 141}, + [6421] = {.lex_state = 141}, + [6422] = {.lex_state = 141}, + [6423] = {.lex_state = 141}, + [6424] = {.lex_state = 141}, + [6425] = {.lex_state = 141}, + [6426] = {.lex_state = 141}, + [6427] = {.lex_state = 141}, + [6428] = {.lex_state = 141}, + [6429] = {.lex_state = 141}, + [6430] = {.lex_state = 141}, + [6431] = {.lex_state = 141}, + [6432] = {.lex_state = 141}, + [6433] = {.lex_state = 141}, + [6434] = {.lex_state = 141}, + [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}, @@ -30708,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}, @@ -30728,29 +30800,29 @@ 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 = 0}, - [6574] = {.lex_state = 7}, - [6575] = {.lex_state = 7}, + [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 = 7}, - [6579] = {.lex_state = 21}, - [6580] = {.lex_state = 0}, + [6579] = {.lex_state = 0}, + [6580] = {.lex_state = 7}, [6581] = {.lex_state = 0}, - [6582] = {.lex_state = 11}, - [6583] = {.lex_state = 11}, + [6582] = {.lex_state = 22}, + [6583] = {.lex_state = 0}, [6584] = {.lex_state = 7}, - [6585] = {.lex_state = 0}, + [6585] = {.lex_state = 7}, [6586] = {.lex_state = 7}, [6587] = {.lex_state = 7}, - [6588] = {.lex_state = 21}, - [6589] = {.lex_state = 0}, + [6588] = {.lex_state = 7}, + [6589] = {.lex_state = 7}, [6590] = {.lex_state = 7}, [6591] = {.lex_state = 7}, [6592] = {.lex_state = 7}, @@ -30760,10 +30832,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, @@ -30773,10 +30845,10 @@ 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 = 13}, + [6615] = {.lex_state = 7}, [6616] = {.lex_state = 7}, [6617] = {.lex_state = 7}, [6618] = {.lex_state = 7}, @@ -30784,7 +30856,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6620] = {.lex_state = 7}, [6621] = {.lex_state = 7}, [6622] = {.lex_state = 7}, - [6623] = {.lex_state = 0}, + [6623] = {.lex_state = 7}, [6624] = {.lex_state = 7}, [6625] = {.lex_state = 7}, [6626] = {.lex_state = 7}, @@ -30795,436 +30867,436 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6631] = {.lex_state = 7}, [6632] = {.lex_state = 7}, [6633] = {.lex_state = 7}, - [6634] = {.lex_state = 9}, + [6634] = {.lex_state = 7}, [6635] = {.lex_state = 7}, [6636] = {.lex_state = 7}, - [6637] = {.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}, + [6641] = {.lex_state = 0}, [6642] = {.lex_state = 7}, - [6643] = {.lex_state = 7}, - [6644] = {.lex_state = 0}, - [6645] = {.lex_state = 0}, - [6646] = {.lex_state = 0}, - [6647] = {.lex_state = 0}, - [6648] = {.lex_state = 7}, - [6649] = {.lex_state = 7}, - [6650] = {.lex_state = 7}, + [6643] = {.lex_state = 0}, + [6644] = {.lex_state = 7}, + [6645] = {.lex_state = 2}, + [6646] = {.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 = 22, .external_lex_state = 5}, - [6653] = {.lex_state = 7}, + [6652] = {.lex_state = 0}, + [6653] = {.lex_state = 0}, [6654] = {.lex_state = 7}, - [6655] = {.lex_state = 2}, - [6656] = {.lex_state = 0}, - [6657] = {.lex_state = 22, .external_lex_state = 5}, - [6658] = {.lex_state = 22, .external_lex_state = 5}, - [6659] = {.lex_state = 0}, + [6655] = {.lex_state = 7}, + [6656] = {.lex_state = 2}, + [6657] = {.lex_state = 7}, + [6658] = {.lex_state = 7}, + [6659] = {.lex_state = 7}, [6660] = {.lex_state = 7}, - [6661] = {.lex_state = 22, .external_lex_state = 5}, + [6661] = {.lex_state = 7}, [6662] = {.lex_state = 2}, - [6663] = {.lex_state = 22, .external_lex_state = 5}, - [6664] = {.lex_state = 22, .external_lex_state = 5}, + [6663] = {.lex_state = 23, .external_lex_state = 5}, + [6664] = {.lex_state = 23, .external_lex_state = 5}, [6665] = {.lex_state = 7}, - [6666] = {.lex_state = 7}, + [6666] = {.lex_state = 2}, [6667] = {.lex_state = 2}, - [6668] = {.lex_state = 0}, + [6668] = {.lex_state = 2}, [6669] = {.lex_state = 7}, - [6670] = {.lex_state = 7}, - [6671] = {.lex_state = 2}, - [6672] = {.lex_state = 22, .external_lex_state = 5}, + [6670] = {.lex_state = 2}, + [6671] = {.lex_state = 23, .external_lex_state = 5}, + [6672] = {.lex_state = 7}, [6673] = {.lex_state = 7}, - [6674] = {.lex_state = 2}, + [6674] = {.lex_state = 7}, [6675] = {.lex_state = 2}, - [6676] = {.lex_state = 7}, + [6676] = {.lex_state = 0}, [6677] = {.lex_state = 7}, - [6678] = {.lex_state = 7}, + [6678] = {.lex_state = 23, .external_lex_state = 5}, [6679] = {.lex_state = 7}, - [6680] = {.lex_state = 7}, + [6680] = {.lex_state = 23, .external_lex_state = 5}, [6681] = {.lex_state = 7}, - [6682] = {.lex_state = 2}, - [6683] = {.lex_state = 0}, - [6684] = {.lex_state = 2}, + [6682] = {.lex_state = 23, .external_lex_state = 5}, + [6683] = {.lex_state = 2}, + [6684] = {.lex_state = 7}, [6685] = {.lex_state = 2}, - [6686] = {.lex_state = 22, .external_lex_state = 5}, - [6687] = {.lex_state = 2}, - [6688] = {.lex_state = 7}, + [6686] = {.lex_state = 2}, + [6687] = {.lex_state = 0}, + [6688] = {.lex_state = 0}, [6689] = {.lex_state = 7}, [6690] = {.lex_state = 7}, - [6691] = {.lex_state = 0}, - [6692] = {.lex_state = 7}, - [6693] = {.lex_state = 22, .external_lex_state = 5}, - [6694] = {.lex_state = 7}, - [6695] = {.lex_state = 22, .external_lex_state = 5}, - [6696] = {.lex_state = 0}, - [6697] = {.lex_state = 7}, + [6691] = {.lex_state = 7}, + [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 = 23, .external_lex_state = 5}, + [6697] = {.lex_state = 2}, [6698] = {.lex_state = 2}, - [6699] = {.lex_state = 22, .external_lex_state = 5}, + [6699] = {.lex_state = 7}, [6700] = {.lex_state = 7}, - [6701] = {.lex_state = 2}, + [6701] = {.lex_state = 0}, [6702] = {.lex_state = 7}, - [6703] = {.lex_state = 2}, - [6704] = {.lex_state = 7}, - [6705] = {.lex_state = 7}, + [6703] = {.lex_state = 7}, + [6704] = {.lex_state = 0}, + [6705] = {.lex_state = 0, .external_lex_state = 5}, [6706] = {.lex_state = 7}, - [6707] = {.lex_state = 0}, - [6708] = {.lex_state = 0}, - [6709] = {.lex_state = 0}, - [6710] = {.lex_state = 0}, - [6711] = {.lex_state = 0}, - [6712] = {.lex_state = 13}, - [6713] = {.lex_state = 0, .external_lex_state = 5}, - [6714] = {.lex_state = 7}, - [6715] = {.lex_state = 0, .external_lex_state = 5}, - [6716] = {.lex_state = 7}, - [6717] = {.lex_state = 7}, - [6718] = {.lex_state = 13}, - [6719] = {.lex_state = 7}, - [6720] = {.lex_state = 0}, - [6721] = {.lex_state = 7}, + [6707] = {.lex_state = 7}, + [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, .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}, + [6718] = {.lex_state = 7}, + [6719] = {.lex_state = 0}, + [6720] = {.lex_state = 0, .external_lex_state = 5}, + [6721] = {.lex_state = 0}, [6722] = {.lex_state = 0}, - [6723] = {.lex_state = 7}, - [6724] = {.lex_state = 11}, - [6725] = {.lex_state = 0}, - [6726] = {.lex_state = 7}, - [6727] = {.lex_state = 0, .external_lex_state = 5}, + [6723] = {.lex_state = 0, .external_lex_state = 5}, + [6724] = {.lex_state = 0}, + [6725] = {.lex_state = 7}, + [6726] = {.lex_state = 0}, + [6727] = {.lex_state = 7}, [6728] = {.lex_state = 0, .external_lex_state = 5}, - [6729] = {.lex_state = 7}, - [6730] = {.lex_state = 0, .external_lex_state = 5}, - [6731] = {.lex_state = 7}, - [6732] = {.lex_state = 0}, + [6729] = {.lex_state = 14}, + [6730] = {.lex_state = 0}, + [6731] = {.lex_state = 0}, + [6732] = {.lex_state = 7}, [6733] = {.lex_state = 0}, - [6734] = {.lex_state = 0}, - [6735] = {.lex_state = 0, .external_lex_state = 5}, - [6736] = {.lex_state = 7}, - [6737] = {.lex_state = 0}, - [6738] = {.lex_state = 0}, + [6734] = {.lex_state = 7}, + [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 = 7}, - [6741] = {.lex_state = 0}, + [6740] = {.lex_state = 0, .external_lex_state = 5}, + [6741] = {.lex_state = 0, .external_lex_state = 5}, [6742] = {.lex_state = 0}, [6743] = {.lex_state = 0}, - [6744] = {.lex_state = 3}, - [6745] = {.lex_state = 0, .external_lex_state = 5}, - [6746] = {.lex_state = 0}, - [6747] = {.lex_state = 0, .external_lex_state = 5}, - [6748] = {.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 = 7}, [6749] = {.lex_state = 0}, [6750] = {.lex_state = 7}, [6751] = {.lex_state = 0, .external_lex_state = 5}, - [6752] = {.lex_state = 7}, - [6753] = {.lex_state = 0}, + [6752] = {.lex_state = 0, .external_lex_state = 5}, + [6753] = {.lex_state = 7}, [6754] = {.lex_state = 0, .external_lex_state = 5}, - [6755] = {.lex_state = 0, .external_lex_state = 5}, - [6756] = {.lex_state = 7}, - [6757] = {.lex_state = 0}, - [6758] = {.lex_state = 0, .external_lex_state = 5}, - [6759] = {.lex_state = 0, .external_lex_state = 5}, - [6760] = {.lex_state = 7}, - [6761] = {.lex_state = 0, .external_lex_state = 5}, - [6762] = {.lex_state = 7}, - [6763] = {.lex_state = 0, .external_lex_state = 5}, - [6764] = {.lex_state = 7}, + [6755] = {.lex_state = 3}, + [6756] = {.lex_state = 3}, + [6757] = {.lex_state = 0, .external_lex_state = 5}, + [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 = 7}, - [6766] = {.lex_state = 0}, - [6767] = {.lex_state = 0, .external_lex_state = 5}, - [6768] = {.lex_state = 7}, - [6769] = {.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 = 0, .external_lex_state = 5}, [6771] = {.lex_state = 0, .external_lex_state = 5}, - [6772] = {.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 = 0}, - [6776] = {.lex_state = 0}, - [6777] = {.lex_state = 0}, + [6775] = {.lex_state = 3}, + [6776] = {.lex_state = 140}, + [6777] = {.lex_state = 7}, [6778] = {.lex_state = 7}, - [6779] = {.lex_state = 3}, - [6780] = {.lex_state = 0}, - [6781] = {.lex_state = 0}, - [6782] = {.lex_state = 140}, + [6779] = {.lex_state = 7}, + [6780] = {.lex_state = 3}, + [6781] = {.lex_state = 7}, + [6782] = {.lex_state = 3}, [6783] = {.lex_state = 7}, - [6784] = {.lex_state = 0}, - [6785] = {.lex_state = 7}, + [6784] = {.lex_state = 141}, + [6785] = {.lex_state = 3}, [6786] = {.lex_state = 7}, - [6787] = {.lex_state = 3}, - [6788] = {.lex_state = 0}, - [6789] = {.lex_state = 3}, + [6787] = {.lex_state = 7}, + [6788] = {.lex_state = 2}, + [6789] = {.lex_state = 141}, [6790] = {.lex_state = 3}, [6791] = {.lex_state = 3}, - [6792] = {.lex_state = 3}, + [6792] = {.lex_state = 7}, [6793] = {.lex_state = 3}, - [6794] = {.lex_state = 0}, - [6795] = {.lex_state = 0}, - [6796] = {.lex_state = 140}, - [6797] = {.lex_state = 7}, - [6798] = {.lex_state = 140}, - [6799] = {.lex_state = 3}, - [6800] = {.lex_state = 139}, - [6801] = {.lex_state = 7}, - [6802] = {.lex_state = 140}, - [6803] = {.lex_state = 140}, - [6804] = {.lex_state = 7}, - [6805] = {.lex_state = 3}, - [6806] = {.lex_state = 7}, - [6807] = {.lex_state = 7}, - [6808] = {.lex_state = 3}, + [6794] = {.lex_state = 7}, + [6795] = {.lex_state = 7}, + [6796] = {.lex_state = 7}, + [6797] = {.lex_state = 3}, + [6798] = {.lex_state = 3}, + [6799] = {.lex_state = 7}, + [6800] = {.lex_state = 7}, + [6801] = {.lex_state = 3}, + [6802] = {.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 = 7}, - [6811] = {.lex_state = 3}, + [6810] = {.lex_state = 0}, + [6811] = {.lex_state = 7}, [6812] = {.lex_state = 3}, [6813] = {.lex_state = 7}, - [6814] = {.lex_state = 2}, - [6815] = {.lex_state = 2}, - [6816] = {.lex_state = 2}, - [6817] = {.lex_state = 140}, + [6814] = {.lex_state = 7}, + [6815] = {.lex_state = 3}, + [6816] = {.lex_state = 3}, + [6817] = {.lex_state = 141}, [6818] = {.lex_state = 7}, - [6819] = {.lex_state = 140}, - [6820] = {.lex_state = 3}, - [6821] = {.lex_state = 3}, - [6822] = {.lex_state = 3}, - [6823] = {.lex_state = 140}, - [6824] = {.lex_state = 7}, - [6825] = {.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 = 141}, + [6825] = {.lex_state = 3}, [6826] = {.lex_state = 7}, - [6827] = {.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 = 7}, - [6832] = {.lex_state = 140}, - [6833] = {.lex_state = 0}, - [6834] = {.lex_state = 140}, - [6835] = {.lex_state = 3}, - [6836] = {.lex_state = 13}, - [6837] = {.lex_state = 7}, - [6838] = {.lex_state = 7}, + [6832] = {.lex_state = 7}, + [6833] = {.lex_state = 3}, + [6834] = {.lex_state = 7}, + [6835] = {.lex_state = 7}, + [6836] = {.lex_state = 7}, + [6837] = {.lex_state = 3}, + [6838] = {.lex_state = 140}, [6839] = {.lex_state = 7}, - [6840] = {.lex_state = 0}, - [6841] = {.lex_state = 3}, - [6842] = {.lex_state = 7}, - [6843] = {.lex_state = 7}, - [6844] = {.lex_state = 7}, + [6840] = {.lex_state = 3}, + [6841] = {.lex_state = 7}, + [6842] = {.lex_state = 0}, + [6843] = {.lex_state = 0}, + [6844] = {.lex_state = 0}, [6845] = {.lex_state = 7}, - [6846] = {.lex_state = 3}, - [6847] = {.lex_state = 7}, - [6848] = {.lex_state = 7}, + [6846] = {.lex_state = 7}, + [6847] = {.lex_state = 3}, + [6848] = {.lex_state = 0}, [6849] = {.lex_state = 7}, [6850] = {.lex_state = 0}, [6851] = {.lex_state = 0}, - [6852] = {.lex_state = 0}, - [6853] = {.lex_state = 0}, - [6854] = {.lex_state = 3}, - [6855] = {.lex_state = 3}, - [6856] = {.lex_state = 7}, - [6857] = {.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 = 0}, [6858] = {.lex_state = 7}, - [6859] = {.lex_state = 140}, - [6860] = {.lex_state = 7}, - [6861] = {.lex_state = 140}, - [6862] = {.lex_state = 3}, - [6863] = {.lex_state = 3}, + [6859] = {.lex_state = 141}, + [6860] = {.lex_state = 3}, + [6861] = {.lex_state = 0}, + [6862] = {.lex_state = 0}, + [6863] = {.lex_state = 7}, [6864] = {.lex_state = 3}, [6865] = {.lex_state = 7}, - [6866] = {.lex_state = 139}, + [6866] = {.lex_state = 0}, [6867] = {.lex_state = 7}, - [6868] = {.lex_state = 7}, - [6869] = {.lex_state = 0}, - [6870] = {.lex_state = 0}, + [6868] = {.lex_state = 141}, + [6869] = {.lex_state = 140}, + [6870] = {.lex_state = 3}, [6871] = {.lex_state = 7}, [6872] = {.lex_state = 3}, - [6873] = {.lex_state = 3}, - [6874] = {.lex_state = 0}, - [6875] = {.lex_state = 0}, - [6876] = {.lex_state = 0}, + [6873] = {.lex_state = 7}, + [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 = 7}, - [6881] = {.lex_state = 140}, - [6882] = {.lex_state = 7}, + [6880] = {.lex_state = 3}, + [6881] = {.lex_state = 0}, + [6882] = {.lex_state = 3}, [6883] = {.lex_state = 7}, - [6884] = {.lex_state = 0}, - [6885] = {.lex_state = 7}, - [6886] = {.lex_state = 7}, - [6887] = {.lex_state = 7}, - [6888] = {.lex_state = 7}, - [6889] = {.lex_state = 7}, - [6890] = {.lex_state = 7}, - [6891] = {.lex_state = 3}, - [6892] = {.lex_state = 7}, + [6884] = {.lex_state = 140}, + [6885] = {.lex_state = 14}, + [6886] = {.lex_state = 3}, + [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 = 3}, - [6896] = {.lex_state = 139}, + [6896] = {.lex_state = 7}, [6897] = {.lex_state = 0}, [6898] = {.lex_state = 3}, - [6899] = {.lex_state = 7}, + [6899] = {.lex_state = 3}, [6900] = {.lex_state = 3}, - [6901] = {.lex_state = 140}, - [6902] = {.lex_state = 139}, - [6903] = {.lex_state = 0}, - [6904] = {.lex_state = 13}, + [6901] = {.lex_state = 141}, + [6902] = {.lex_state = 3}, + [6903] = {.lex_state = 141}, + [6904] = {.lex_state = 7}, [6905] = {.lex_state = 7}, - [6906] = {.lex_state = 3}, - [6907] = {.lex_state = 3}, - [6908] = {.lex_state = 0}, - [6909] = {.lex_state = 3}, - [6910] = {.lex_state = 3}, - [6911] = {.lex_state = 0}, + [6906] = {.lex_state = 0}, + [6907] = {.lex_state = 141}, + [6908] = {.lex_state = 7}, + [6909] = {.lex_state = 7}, + [6910] = {.lex_state = 7}, + [6911] = {.lex_state = 3}, [6912] = {.lex_state = 3}, - [6913] = {.lex_state = 7}, - [6914] = {.lex_state = 3}, - [6915] = {.lex_state = 3}, - [6916] = {.lex_state = 7}, - [6917] = {.lex_state = 7}, - [6918] = {.lex_state = 3}, - [6919] = {.lex_state = 7}, + [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 = 3}, - [6922] = {.lex_state = 3}, - [6923] = {.lex_state = 140}, - [6924] = {.lex_state = 3}, - [6925] = {.lex_state = 0}, - [6926] = {.lex_state = 0}, + [6921] = {.lex_state = 7}, + [6922] = {.lex_state = 7}, + [6923] = {.lex_state = 0}, + [6924] = {.lex_state = 7}, + [6925] = {.lex_state = 7}, + [6926] = {.lex_state = 7}, [6927] = {.lex_state = 7}, [6928] = {.lex_state = 7}, - [6929] = {.lex_state = 7}, - [6930] = {.lex_state = 7}, - [6931] = {.lex_state = 0}, + [6929] = {.lex_state = 140}, + [6930] = {.lex_state = 23, .external_lex_state = 5}, + [6931] = {.lex_state = 14}, [6932] = {.lex_state = 7}, [6933] = {.lex_state = 7}, - [6934] = {.lex_state = 7}, + [6934] = {.lex_state = 0}, [6935] = {.lex_state = 7}, - [6936] = {.lex_state = 13}, + [6936] = {.lex_state = 14}, [6937] = {.lex_state = 7}, - [6938] = {.lex_state = 140}, + [6938] = {.lex_state = 7}, [6939] = {.lex_state = 7}, - [6940] = {.lex_state = 0}, - [6941] = {.lex_state = 13}, - [6942] = {.lex_state = 13}, - [6943] = {.lex_state = 13}, - [6944] = {.lex_state = 0}, + [6940] = {.lex_state = 23, .external_lex_state = 5}, + [6941] = {.lex_state = 0}, + [6942] = {.lex_state = 14}, + [6943] = {.lex_state = 7}, + [6944] = {.lex_state = 7}, [6945] = {.lex_state = 7}, - [6946] = {.lex_state = 139}, - [6947] = {.lex_state = 0}, - [6948] = {.lex_state = 0}, - [6949] = {.lex_state = 7}, - [6950] = {.lex_state = 0}, - [6951] = {.lex_state = 13}, - [6952] = {.lex_state = 7}, - [6953] = {.lex_state = 13}, - [6954] = {.lex_state = 7}, + [6946] = {.lex_state = 7}, + [6947] = {.lex_state = 7}, + [6948] = {.lex_state = 7}, + [6949] = {.lex_state = 14}, + [6950] = {.lex_state = 7}, + [6951] = {.lex_state = 0}, + [6952] = {.lex_state = 0}, + [6953] = {.lex_state = 7}, + [6954] = {.lex_state = 141}, [6955] = {.lex_state = 7}, - [6956] = {.lex_state = 13}, + [6956] = {.lex_state = 7}, [6957] = {.lex_state = 7}, [6958] = {.lex_state = 7}, - [6959] = {.lex_state = 0}, - [6960] = {.lex_state = 0}, - [6961] = {.lex_state = 0}, + [6959] = {.lex_state = 7}, + [6960] = {.lex_state = 7}, + [6961] = {.lex_state = 141}, [6962] = {.lex_state = 0}, - [6963] = {.lex_state = 7}, + [6963] = {.lex_state = 0}, [6964] = {.lex_state = 7}, - [6965] = {.lex_state = 139}, - [6966] = {.lex_state = 7}, + [6965] = {.lex_state = 7}, + [6966] = {.lex_state = 23, .external_lex_state = 5}, [6967] = {.lex_state = 7}, [6968] = {.lex_state = 7}, - [6969] = {.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 = 139}, + [6973] = {.lex_state = 7}, [6974] = {.lex_state = 7}, - [6975] = {.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 = 7}, [6982] = {.lex_state = 7}, [6983] = {.lex_state = 0}, - [6984] = {.lex_state = 7}, - [6985] = {.lex_state = 22, .external_lex_state = 5}, - [6986] = {.lex_state = 7}, - [6987] = {.lex_state = 140}, + [6984] = {.lex_state = 0}, + [6985] = {.lex_state = 0}, + [6986] = {.lex_state = 14}, + [6987] = {.lex_state = 7}, [6988] = {.lex_state = 7}, - [6989] = {.lex_state = 7}, + [6989] = {.lex_state = 0}, [6990] = {.lex_state = 7}, [6991] = {.lex_state = 7}, - [6992] = {.lex_state = 22, .external_lex_state = 5}, + [6992] = {.lex_state = 140}, [6993] = {.lex_state = 7}, [6994] = {.lex_state = 7}, [6995] = {.lex_state = 7}, [6996] = {.lex_state = 7}, - [6997] = {.lex_state = 7}, - [6998] = {.lex_state = 22, .external_lex_state = 5}, - [6999] = {.lex_state = 13}, + [6997] = {.lex_state = 140}, + [6998] = {.lex_state = 7}, + [6999] = {.lex_state = 7}, [7000] = {.lex_state = 0}, [7001] = {.lex_state = 7}, [7002] = {.lex_state = 7}, - [7003] = {.lex_state = 13}, - [7004] = {.lex_state = 7}, - [7005] = {.lex_state = 0}, - [7006] = {.lex_state = 139}, - [7007] = {.lex_state = 7}, - [7008] = {.lex_state = 7}, - [7009] = {.lex_state = 139}, + [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 = 139}, - [7012] = {.lex_state = 7}, + [7011] = {.lex_state = 140}, + [7012] = {.lex_state = 14}, [7013] = {.lex_state = 7}, [7014] = {.lex_state = 0}, - [7015] = {.lex_state = 7}, + [7015] = {.lex_state = 140}, [7016] = {.lex_state = 7}, [7017] = {.lex_state = 7}, - [7018] = {.lex_state = 139}, - [7019] = {.lex_state = 7}, - [7020] = {.lex_state = 7}, - [7021] = {.lex_state = 7}, + [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}, + [7024] = {.lex_state = 0}, [7025] = {.lex_state = 7}, [7026] = {.lex_state = 7}, - [7027] = {.lex_state = 0}, - [7028] = {.lex_state = 7}, - [7029] = {.lex_state = 0}, - [7030] = {.lex_state = 7}, + [7027] = {.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 = 139}, + [7033] = {.lex_state = 7}, [7034] = {.lex_state = 7}, [7035] = {.lex_state = 7}, - [7036] = {.lex_state = 0}, + [7036] = {.lex_state = 7}, [7037] = {.lex_state = 7}, - [7038] = {.lex_state = 7}, - [7039] = {.lex_state = 0}, + [7038] = {.lex_state = 140}, + [7039] = {.lex_state = 7}, [7040] = {.lex_state = 7}, - [7041] = {.lex_state = 0}, + [7041] = {.lex_state = 23, .external_lex_state = 5}, [7042] = {.lex_state = 7}, - [7043] = {.lex_state = 7}, - [7044] = {.lex_state = 139}, - [7045] = {.lex_state = 22, .external_lex_state = 5}, + [7043] = {.lex_state = 0}, + [7044] = {.lex_state = 0}, + [7045] = {.lex_state = 7}, [7046] = {.lex_state = 0}, - [7047] = {.lex_state = 7}, - [7048] = {.lex_state = 7}, - [7049] = {.lex_state = 7}, - [7050] = {.lex_state = 22, .external_lex_state = 5}, - [7051] = {.lex_state = 0}, + [7047] = {.lex_state = 14}, + [7048] = {.lex_state = 14}, + [7049] = {.lex_state = 0}, + [7050] = {.lex_state = 0}, + [7051] = {.lex_state = 7}, [7052] = {.lex_state = 0}, [7053] = {.lex_state = 0}, - [7054] = {.lex_state = 13}, + [7054] = {.lex_state = 0}, [7055] = {.lex_state = 0}, [7056] = {.lex_state = 0}, [7057] = {.lex_state = 0}, [7058] = {.lex_state = 0}, [7059] = {.lex_state = 0}, - [7060] = {.lex_state = 13}, + [7060] = {.lex_state = 0}, [7061] = {.lex_state = 0}, - [7062] = {.lex_state = 0}, - [7063] = {.lex_state = 0}, + [7062] = {.lex_state = 14}, + [7063] = {.lex_state = 14}, [7064] = {.lex_state = 0}, [7065] = {.lex_state = 0}, [7066] = {.lex_state = 0}, @@ -31242,66 +31314,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7078] = {.lex_state = 0}, [7079] = {.lex_state = 0}, [7080] = {.lex_state = 0}, - [7081] = {.lex_state = 0}, - [7082] = {.lex_state = 13}, + [7081] = {.lex_state = 14}, + [7082] = {.lex_state = 0}, [7083] = {.lex_state = 0}, [7084] = {.lex_state = 0}, [7085] = {.lex_state = 0}, - [7086] = {.lex_state = 13}, + [7086] = {.lex_state = 0}, [7087] = {.lex_state = 0}, [7088] = {.lex_state = 0}, [7089] = {.lex_state = 0}, - [7090] = {.lex_state = 13}, - [7091] = {.lex_state = 13}, - [7092] = {.lex_state = 0}, + [7090] = {.lex_state = 0}, + [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 = 3}, + [7101] = {.lex_state = 0}, [7102] = {.lex_state = 0}, [7103] = {.lex_state = 0}, - [7104] = {.lex_state = 13}, + [7104] = {.lex_state = 0}, [7105] = {.lex_state = 0}, [7106] = {.lex_state = 0}, - [7107] = {.lex_state = 13}, + [7107] = {.lex_state = 0}, [7108] = {.lex_state = 0}, [7109] = {.lex_state = 0}, - [7110] = {.lex_state = 13}, + [7110] = {.lex_state = 0}, [7111] = {.lex_state = 0}, - [7112] = {.lex_state = 13}, + [7112] = {.lex_state = 0}, [7113] = {.lex_state = 0}, - [7114] = {.lex_state = 13}, + [7114] = {.lex_state = 0}, [7115] = {.lex_state = 0}, - [7116] = {.lex_state = 13}, + [7116] = {.lex_state = 3}, [7117] = {.lex_state = 0}, [7118] = {.lex_state = 0}, [7119] = {.lex_state = 0}, [7120] = {.lex_state = 0}, - [7121] = {.lex_state = 0}, + [7121] = {.lex_state = 14}, [7122] = {.lex_state = 0}, [7123] = {.lex_state = 0}, - [7124] = {.lex_state = 0, .external_lex_state = 5}, + [7124] = {.lex_state = 0}, [7125] = {.lex_state = 0}, - [7126] = {.lex_state = 13}, - [7127] = {.lex_state = 13}, - [7128] = {.lex_state = 0}, + [7126] = {.lex_state = 0}, + [7127] = {.lex_state = 14}, + [7128] = {.lex_state = 14}, [7129] = {.lex_state = 0}, - [7130] = {.lex_state = 7}, - [7131] = {.lex_state = 13}, + [7130] = {.lex_state = 0}, + [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 = 0}, [7138] = {.lex_state = 0}, - [7139] = {.lex_state = 13}, - [7140] = {.lex_state = 13}, + [7139] = {.lex_state = 0}, + [7140] = {.lex_state = 0}, [7141] = {.lex_state = 0}, [7142] = {.lex_state = 0}, [7143] = {.lex_state = 0}, @@ -31309,80 +31381,80 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7145] = {.lex_state = 0}, [7146] = {.lex_state = 0}, [7147] = {.lex_state = 0}, - [7148] = {.lex_state = 13}, - [7149] = {.lex_state = 13}, - [7150] = {.lex_state = 0}, + [7148] = {.lex_state = 0}, + [7149] = {.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 = 7}, + [7156] = {.lex_state = 0}, [7157] = {.lex_state = 0}, [7158] = {.lex_state = 0}, [7159] = {.lex_state = 0}, - [7160] = {.lex_state = 0}, - [7161] = {.lex_state = 0}, - [7162] = {.lex_state = 0}, - [7163] = {.lex_state = 13}, + [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 = 13}, + [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 = 13}, + [7174] = {.lex_state = 0}, [7175] = {.lex_state = 0}, - [7176] = {.lex_state = 13}, + [7176] = {.lex_state = 0}, [7177] = {.lex_state = 0}, [7178] = {.lex_state = 0}, [7179] = {.lex_state = 0}, [7180] = {.lex_state = 0}, [7181] = {.lex_state = 0}, [7182] = {.lex_state = 0}, - [7183] = {.lex_state = 13}, + [7183] = {.lex_state = 0}, [7184] = {.lex_state = 0}, - [7185] = {.lex_state = 13}, + [7185] = {.lex_state = 0}, [7186] = {.lex_state = 0}, - [7187] = {.lex_state = 139, .external_lex_state = 4}, + [7187] = {.lex_state = 0}, [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}, [7195] = {.lex_state = 0}, [7196] = {.lex_state = 0}, [7197] = {.lex_state = 0}, - [7198] = {.lex_state = 13}, + [7198] = {.lex_state = 0}, [7199] = {.lex_state = 0}, - [7200] = {.lex_state = 0}, + [7200] = {.lex_state = 14}, [7201] = {.lex_state = 0}, - [7202] = {.lex_state = 0}, - [7203] = {.lex_state = 0}, - [7204] = {.lex_state = 3}, - [7205] = {.lex_state = 7}, - [7206] = {.lex_state = 7}, + [7202] = {.lex_state = 14}, + [7203] = {.lex_state = 14}, + [7204] = {.lex_state = 14}, + [7205] = {.lex_state = 0}, + [7206] = {.lex_state = 3}, [7207] = {.lex_state = 0}, - [7208] = {.lex_state = 0}, + [7208] = {.lex_state = 14}, [7209] = {.lex_state = 0}, [7210] = {.lex_state = 0}, [7211] = {.lex_state = 0}, - [7212] = {.lex_state = 140}, + [7212] = {.lex_state = 0}, [7213] = {.lex_state = 0}, [7214] = {.lex_state = 0}, [7215] = {.lex_state = 0}, [7216] = {.lex_state = 0}, - [7217] = {.lex_state = 13}, + [7217] = {.lex_state = 0}, [7218] = {.lex_state = 0}, [7219] = {.lex_state = 0}, [7220] = {.lex_state = 0}, - [7221] = {.lex_state = 140}, + [7221] = {.lex_state = 0}, [7222] = {.lex_state = 0}, [7223] = {.lex_state = 0}, [7224] = {.lex_state = 0}, @@ -31390,52 +31462,52 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7226] = {.lex_state = 0}, [7227] = {.lex_state = 0}, [7228] = {.lex_state = 0}, - [7229] = {.lex_state = 0}, - [7230] = {.lex_state = 0}, + [7229] = {.lex_state = 141}, + [7230] = {.lex_state = 141}, [7231] = {.lex_state = 0}, [7232] = {.lex_state = 0}, - [7233] = {.lex_state = 13}, - [7234] = {.lex_state = 0}, - [7235] = {.lex_state = 3}, - [7236] = {.lex_state = 13}, + [7233] = {.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 = 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}, + [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 = 13}, + [7256] = {.lex_state = 0}, [7257] = {.lex_state = 0}, [7258] = {.lex_state = 0}, [7259] = {.lex_state = 0}, [7260] = {.lex_state = 0}, - [7261] = {.lex_state = 13}, + [7261] = {.lex_state = 14}, [7262] = {.lex_state = 0}, [7263] = {.lex_state = 0}, - [7264] = {.lex_state = 0}, - [7265] = {.lex_state = 0}, + [7264] = {.lex_state = 14}, + [7265] = {.lex_state = 14}, [7266] = {.lex_state = 0}, [7267] = {.lex_state = 0}, - [7268] = {.lex_state = 13}, + [7268] = {.lex_state = 0}, [7269] = {.lex_state = 0}, [7270] = {.lex_state = 0}, [7271] = {.lex_state = 0}, - [7272] = {.lex_state = 13}, + [7272] = {.lex_state = 0}, [7273] = {.lex_state = 0}, - [7274] = {.lex_state = 13}, + [7274] = {.lex_state = 0}, [7275] = {.lex_state = 0}, [7276] = {.lex_state = 0}, [7277] = {.lex_state = 0}, @@ -31445,352 +31517,352 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 0}, - [7289] = {.lex_state = 5}, + [7289] = {.lex_state = 0}, [7290] = {.lex_state = 0}, - [7291] = {.lex_state = 0}, + [7291] = {.lex_state = 14}, [7292] = {.lex_state = 0}, - [7293] = {.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}, + [7301] = {.lex_state = 0, .external_lex_state = 5}, [7302] = {.lex_state = 0}, - [7303] = {.lex_state = 0}, + [7303] = {.lex_state = 7}, [7304] = {.lex_state = 0}, - [7305] = {.lex_state = 13}, - [7306] = {.lex_state = 0}, + [7305] = {.lex_state = 14}, + [7306] = {.lex_state = 14}, [7307] = {.lex_state = 0}, - [7308] = {.lex_state = 0}, - [7309] = {.lex_state = 13}, - [7310] = {.lex_state = 0, .external_lex_state = 5}, - [7311] = {.lex_state = 13}, + [7308] = {.lex_state = 14}, + [7309] = {.lex_state = 7}, + [7310] = {.lex_state = 0}, + [7311] = {.lex_state = 0}, [7312] = {.lex_state = 0}, - [7313] = {.lex_state = 13}, - [7314] = {.lex_state = 0}, - [7315] = {.lex_state = 3}, + [7313] = {.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 = 0}, - [7318] = {.lex_state = 13}, + [7318] = {.lex_state = 0}, [7319] = {.lex_state = 0}, - [7320] = {.lex_state = 13}, - [7321] = {.lex_state = 13}, + [7320] = {.lex_state = 0}, + [7321] = {.lex_state = 0}, [7322] = {.lex_state = 0}, - [7323] = {.lex_state = 13}, - [7324] = {.lex_state = 13}, - [7325] = {.lex_state = 13}, - [7326] = {.lex_state = 13}, + [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 = 13}, + [7328] = {.lex_state = 14}, + [7329] = {.lex_state = 14}, [7330] = {.lex_state = 0}, [7331] = {.lex_state = 0}, [7332] = {.lex_state = 0}, [7333] = {.lex_state = 0}, - [7334] = {.lex_state = 7}, - [7335] = {.lex_state = 0}, - [7336] = {.lex_state = 3}, + [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 = 7}, - [7349] = {.lex_state = 140}, + [7348] = {.lex_state = 0}, + [7349] = {.lex_state = 14}, [7350] = {.lex_state = 0}, - [7351] = {.lex_state = 0}, - [7352] = {.lex_state = 0, .external_lex_state = 5}, - [7353] = {.lex_state = 13}, - [7354] = {.lex_state = 0}, + [7351] = {.lex_state = 14}, + [7352] = {.lex_state = 0}, + [7353] = {.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, .external_lex_state = 5}, - [7372] = {.lex_state = 13}, + [7371] = {.lex_state = 7}, + [7372] = {.lex_state = 0}, [7373] = {.lex_state = 0}, [7374] = {.lex_state = 0}, [7375] = {.lex_state = 0}, [7376] = {.lex_state = 0}, - [7377] = {.lex_state = 4}, + [7377] = {.lex_state = 14}, [7378] = {.lex_state = 0}, - [7379] = {.lex_state = 7}, + [7379] = {.lex_state = 0}, [7380] = {.lex_state = 0}, - [7381] = {.lex_state = 13}, - [7382] = {.lex_state = 13}, + [7381] = {.lex_state = 19}, + [7382] = {.lex_state = 14}, [7383] = {.lex_state = 0}, - [7384] = {.lex_state = 13}, - [7385] = {.lex_state = 18}, + [7384] = {.lex_state = 0}, + [7385] = {.lex_state = 0}, [7386] = {.lex_state = 0}, - [7387] = {.lex_state = 7}, - [7388] = {.lex_state = 7}, + [7387] = {.lex_state = 0}, + [7388] = {.lex_state = 0}, [7389] = {.lex_state = 0}, [7390] = {.lex_state = 0}, [7391] = {.lex_state = 0}, [7392] = {.lex_state = 0}, [7393] = {.lex_state = 0}, [7394] = {.lex_state = 0}, - [7395] = {.lex_state = 0}, - [7396] = {.lex_state = 7}, + [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}, - [7402] = {.lex_state = 7}, - [7403] = {.lex_state = 140}, + [7402] = {.lex_state = 0}, + [7403] = {.lex_state = 0}, [7404] = {.lex_state = 0}, [7405] = {.lex_state = 0}, [7406] = {.lex_state = 0}, [7407] = {.lex_state = 0}, [7408] = {.lex_state = 0}, - [7409] = {.lex_state = 7}, + [7409] = {.lex_state = 0}, [7410] = {.lex_state = 7}, [7411] = {.lex_state = 0}, [7412] = {.lex_state = 0}, - [7413] = {.lex_state = 7}, - [7414] = {.lex_state = 0}, + [7413] = {.lex_state = 14}, + [7414] = {.lex_state = 4}, [7415] = {.lex_state = 0}, [7416] = {.lex_state = 0}, - [7417] = {.lex_state = 0}, + [7417] = {.lex_state = 14}, [7418] = {.lex_state = 0}, - [7419] = {.lex_state = 0}, - [7420] = {.lex_state = 0}, + [7419] = {.lex_state = 14}, + [7420] = {.lex_state = 19}, [7421] = {.lex_state = 0}, - [7422] = {.lex_state = 7}, - [7423] = {.lex_state = 7}, - [7424] = {.lex_state = 4}, - [7425] = {.lex_state = 7}, + [7422] = {.lex_state = 0}, + [7423] = {.lex_state = 0}, + [7424] = {.lex_state = 0}, + [7425] = {.lex_state = 0}, [7426] = {.lex_state = 0}, - [7427] = {.lex_state = 7}, + [7427] = {.lex_state = 3}, [7428] = {.lex_state = 0}, - [7429] = {.lex_state = 7}, + [7429] = {.lex_state = 0}, [7430] = {.lex_state = 0}, - [7431] = {.lex_state = 7}, - [7432] = {.lex_state = 13}, - [7433] = {.lex_state = 7}, + [7431] = {.lex_state = 0}, + [7432] = {.lex_state = 0}, + [7433] = {.lex_state = 0}, [7434] = {.lex_state = 0}, - [7435] = {.lex_state = 18}, + [7435] = {.lex_state = 0}, [7436] = {.lex_state = 0}, [7437] = {.lex_state = 7}, [7438] = {.lex_state = 0}, - [7439] = {.lex_state = 7}, + [7439] = {.lex_state = 0}, [7440] = {.lex_state = 0}, - [7441] = {.lex_state = 0}, - [7442] = {.lex_state = 7}, - [7443] = {.lex_state = 0}, - [7444] = {.lex_state = 13}, + [7441] = {.lex_state = 7}, + [7442] = {.lex_state = 0}, + [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 = 13}, - [7449] = {.lex_state = 0}, - [7450] = {.lex_state = 18}, - [7451] = {.lex_state = 0}, + [7448] = {.lex_state = 0}, + [7449] = {.lex_state = 14}, + [7450] = {.lex_state = 0}, + [7451] = {.lex_state = 7}, [7452] = {.lex_state = 0}, - [7453] = {.lex_state = 7}, + [7453] = {.lex_state = 19}, [7454] = {.lex_state = 0}, [7455] = {.lex_state = 0}, [7456] = {.lex_state = 0}, [7457] = {.lex_state = 0}, [7458] = {.lex_state = 0}, - [7459] = {.lex_state = 7}, - [7460] = {.lex_state = 7}, - [7461] = {.lex_state = 0}, + [7459] = {.lex_state = 3}, + [7460] = {.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 = 7}, + [7465] = {.lex_state = 0}, [7466] = {.lex_state = 7}, - [7467] = {.lex_state = 7}, - [7468] = {.lex_state = 7}, - [7469] = {.lex_state = 0}, - [7470] = {.lex_state = 0}, + [7467] = {.lex_state = 0}, + [7468] = {.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 = 3}, + [7476] = {.lex_state = 0}, [7477] = {.lex_state = 0}, - [7478] = {.lex_state = 7}, - [7479] = {.lex_state = 7}, - [7480] = {.lex_state = 0}, + [7478] = {.lex_state = 0}, + [7479] = {.lex_state = 0}, + [7480] = {.lex_state = 7}, [7481] = {.lex_state = 0}, [7482] = {.lex_state = 0}, [7483] = {.lex_state = 7}, [7484] = {.lex_state = 0}, [7485] = {.lex_state = 0}, - [7486] = {.lex_state = 7}, + [7486] = {.lex_state = 0}, [7487] = {.lex_state = 0}, - [7488] = {.lex_state = 7}, + [7488] = {.lex_state = 0}, [7489] = {.lex_state = 0}, [7490] = {.lex_state = 0}, - [7491] = {.lex_state = 7}, - [7492] = {.lex_state = 7}, + [7491] = {.lex_state = 0}, + [7492] = {.lex_state = 0}, [7493] = {.lex_state = 0}, - [7494] = {.lex_state = 7}, + [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 = 7}, - [7500] = {.lex_state = 0}, - [7501] = {.lex_state = 7}, - [7502] = {.lex_state = 7}, - [7503] = {.lex_state = 0}, - [7504] = {.lex_state = 7}, + [7499] = {.lex_state = 0}, + [7500] = {.lex_state = 7}, + [7501] = {.lex_state = 0}, + [7502] = {.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 = 7}, + [7511] = {.lex_state = 0}, [7512] = {.lex_state = 0}, [7513] = {.lex_state = 0}, - [7514] = {.lex_state = 0}, - [7515] = {.lex_state = 0}, + [7514] = {.lex_state = 7}, + [7515] = {.lex_state = 7}, [7516] = {.lex_state = 0}, [7517] = {.lex_state = 0}, [7518] = {.lex_state = 7}, [7519] = {.lex_state = 0}, [7520] = {.lex_state = 0}, - [7521] = {.lex_state = 0}, + [7521] = {.lex_state = 7}, [7522] = {.lex_state = 0}, - [7523] = {.lex_state = 18}, - [7524] = {.lex_state = 0}, - [7525] = {.lex_state = 13}, - [7526] = {.lex_state = 0}, - [7527] = {.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 = 7}, - [7531] = {.lex_state = 0}, + [7531] = {.lex_state = 7}, [7532] = {.lex_state = 7}, - [7533] = {.lex_state = 0}, - [7534] = {.lex_state = 0}, + [7533] = {.lex_state = 7}, + [7534] = {.lex_state = 7}, [7535] = {.lex_state = 0}, - [7536] = {.lex_state = 7}, + [7536] = {.lex_state = 0}, [7537] = {.lex_state = 0}, [7538] = {.lex_state = 0}, - [7539] = {.lex_state = 7}, + [7539] = {.lex_state = 0}, [7540] = {.lex_state = 0}, - [7541] = {.lex_state = 0}, - [7542] = {.lex_state = 0}, - [7543] = {.lex_state = 13}, - [7544] = {.lex_state = 7}, + [7541] = {.lex_state = 7}, + [7542] = {.lex_state = 7}, + [7543] = {.lex_state = 0}, + [7544] = {.lex_state = 0}, [7545] = {.lex_state = 0}, [7546] = {.lex_state = 0}, - [7547] = {.lex_state = 7}, - [7548] = {.lex_state = 0}, - [7549] = {.lex_state = 18}, - [7550] = {.lex_state = 7}, - [7551] = {.lex_state = 0}, + [7547] = {.lex_state = 0}, + [7548] = {.lex_state = 7}, + [7549] = {.lex_state = 0}, + [7550] = {.lex_state = 0}, + [7551] = {.lex_state = 7}, [7552] = {.lex_state = 0}, - [7553] = {.lex_state = 7}, - [7554] = {.lex_state = 13}, + [7553] = {.lex_state = 0}, + [7554] = {.lex_state = 0}, [7555] = {.lex_state = 0}, [7556] = {.lex_state = 7}, [7557] = {.lex_state = 0}, - [7558] = {.lex_state = 7}, + [7558] = {.lex_state = 0}, [7559] = {.lex_state = 0}, [7560] = {.lex_state = 0}, - [7561] = {.lex_state = 7}, - [7562] = {.lex_state = 0}, - [7563] = {.lex_state = 7}, + [7561] = {.lex_state = 0}, + [7562] = {.lex_state = 7}, + [7563] = {.lex_state = 0}, [7564] = {.lex_state = 0}, - [7565] = {.lex_state = 18}, + [7565] = {.lex_state = 0}, [7566] = {.lex_state = 0}, [7567] = {.lex_state = 0}, [7568] = {.lex_state = 0}, [7569] = {.lex_state = 0}, [7570] = {.lex_state = 0}, [7571] = {.lex_state = 0}, - [7572] = {.lex_state = 0}, - [7573] = {.lex_state = 0}, + [7572] = {.lex_state = 7}, + [7573] = {.lex_state = 7}, [7574] = {.lex_state = 0}, [7575] = {.lex_state = 0}, [7576] = {.lex_state = 0}, - [7577] = {.lex_state = 0}, - [7578] = {.lex_state = 0}, - [7579] = {.lex_state = 0}, - [7580] = {.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}, + [7582] = {.lex_state = 7}, [7583] = {.lex_state = 7}, [7584] = {.lex_state = 0}, - [7585] = {.lex_state = 0}, + [7585] = {.lex_state = 7}, [7586] = {.lex_state = 0}, [7587] = {.lex_state = 0}, - [7588] = {.lex_state = 0}, - [7589] = {.lex_state = 7}, - [7590] = {.lex_state = 13}, - [7591] = {.lex_state = 0}, - [7592] = {.lex_state = 0}, - [7593] = {.lex_state = 0}, + [7588] = {.lex_state = 7}, + [7589] = {.lex_state = 0}, + [7590] = {.lex_state = 0}, + [7591] = {.lex_state = 7}, + [7592] = {.lex_state = 7}, + [7593] = {.lex_state = 7}, [7594] = {.lex_state = 0}, - [7595] = {.lex_state = 0}, - [7596] = {.lex_state = 0}, + [7595] = {.lex_state = 7}, + [7596] = {.lex_state = 19}, [7597] = {.lex_state = 0}, - [7598] = {.lex_state = 0}, + [7598] = {.lex_state = 14}, [7599] = {.lex_state = 0}, - [7600] = {.lex_state = 7}, - [7601] = {.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 = 0}, [7606] = {.lex_state = 0}, - [7607] = {.lex_state = 0}, + [7607] = {.lex_state = 14}, [7608] = {.lex_state = 0}, - [7609] = {.lex_state = 0}, + [7609] = {.lex_state = 7}, [7610] = {.lex_state = 0}, [7611] = {.lex_state = 0}, - [7612] = {.lex_state = 0}, - [7613] = {.lex_state = 3}, - [7614] = {.lex_state = 7}, + [7612] = {.lex_state = 141}, + [7613] = {.lex_state = 0}, + [7614] = {.lex_state = 0}, [7615] = {.lex_state = 0}, [7616] = {.lex_state = 0}, [7617] = {.lex_state = 0}, [7618] = {.lex_state = 0}, - [7619] = {.lex_state = 0}, + [7619] = {.lex_state = 14}, [7620] = {.lex_state = 0}, - [7621] = {.lex_state = 3}, - [7622] = {.lex_state = 0}, + [7621] = {.lex_state = 0}, + [7622] = {.lex_state = 7}, [7623] = {.lex_state = 0}, - [7624] = {.lex_state = 0}, + [7624] = {.lex_state = 7}, [7625] = {.lex_state = 0}, [7626] = {.lex_state = 0}, [7627] = {.lex_state = 0}, [7628] = {.lex_state = 0}, - [7629] = {.lex_state = 0}, + [7629] = {.lex_state = 7}, [7630] = {.lex_state = 0}, [7631] = {.lex_state = 0}, [7632] = {.lex_state = 0}, @@ -31799,145 +31871,145 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7635] = {.lex_state = 0}, [7636] = {.lex_state = 0}, [7637] = {.lex_state = 0}, - [7638] = {.lex_state = 0}, - [7639] = {.lex_state = 0}, - [7640] = {.lex_state = 7}, - [7641] = {.lex_state = 0}, - [7642] = {.lex_state = 0}, - [7643] = {.lex_state = 0, .external_lex_state = 6}, + [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}, - [7646] = {.lex_state = 13}, - [7647] = {.lex_state = 0}, + [7645] = {.lex_state = 0, .external_lex_state = 6}, + [7646] = {.lex_state = 0}, + [7647] = {.lex_state = 0, .external_lex_state = 6}, [7648] = {.lex_state = 0}, - [7649] = {.lex_state = 5}, - [7650] = {.lex_state = 140}, - [7651] = {.lex_state = 0}, + [7649] = {.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}, - [7663] = {.lex_state = 3}, - [7664] = {.lex_state = 3}, - [7665] = {.lex_state = 139}, + [7662] = {.lex_state = 7}, + [7663] = {.lex_state = 0}, + [7664] = {.lex_state = 0}, + [7665] = {.lex_state = 0}, [7666] = {.lex_state = 0}, [7667] = {.lex_state = 0}, [7668] = {.lex_state = 0}, [7669] = {.lex_state = 0}, - [7670] = {.lex_state = 13}, + [7670] = {.lex_state = 0}, [7671] = {.lex_state = 0}, [7672] = {.lex_state = 0}, [7673] = {.lex_state = 0}, - [7674] = {.lex_state = 0, .external_lex_state = 6}, - [7675] = {.lex_state = 0, .external_lex_state = 6}, - [7676] = {.lex_state = 0}, + [7674] = {.lex_state = 0, .external_lex_state = 9}, + [7675] = {.lex_state = 0}, + [7676] = {.lex_state = 140}, [7677] = {.lex_state = 0}, [7678] = {.lex_state = 0}, - [7679] = {.lex_state = 0}, - [7680] = {.lex_state = 0}, - [7681] = {.lex_state = 13}, + [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 = 0}, [7687] = {.lex_state = 0}, - [7688] = {.lex_state = 0}, + [7688] = {.lex_state = 0, .external_lex_state = 6}, [7689] = {.lex_state = 0}, [7690] = {.lex_state = 0}, - [7691] = {.lex_state = 0}, - [7692] = {.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 = 13}, + [7694] = {.lex_state = 0}, [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}, [7702] = {.lex_state = 0}, - [7703] = {.lex_state = 0, .external_lex_state = 6}, + [7703] = {.lex_state = 0}, [7704] = {.lex_state = 0}, [7705] = {.lex_state = 0}, - [7706] = {.lex_state = 13}, - [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 = 0, .external_lex_state = 6}, + [7710] = {.lex_state = 0}, [7711] = {.lex_state = 0}, - [7712] = {.lex_state = 0}, - [7713] = {.lex_state = 0}, + [7712] = {.lex_state = 0, .external_lex_state = 7}, + [7713] = {.lex_state = 0, .external_lex_state = 7}, [7714] = {.lex_state = 0}, - [7715] = {.lex_state = 3}, - [7716] = {.lex_state = 7}, + [7715] = {.lex_state = 0}, + [7716] = {.lex_state = 0}, [7717] = {.lex_state = 0}, - [7718] = {.lex_state = 13}, + [7718] = {.lex_state = 0}, [7719] = {.lex_state = 0}, - [7720] = {.lex_state = 7}, - [7721] = {.lex_state = 0, .external_lex_state = 6}, + [7720] = {.lex_state = 0}, + [7721] = {.lex_state = 0}, [7722] = {.lex_state = 0}, [7723] = {.lex_state = 0}, [7724] = {.lex_state = 0}, - [7725] = {.lex_state = 0}, - [7726] = {.lex_state = 0}, + [7725] = {.lex_state = 0, .external_lex_state = 7}, + [7726] = {.lex_state = 14}, [7727] = {.lex_state = 0}, [7728] = {.lex_state = 0}, - [7729] = {.lex_state = 0, .external_lex_state = 6}, + [7729] = {.lex_state = 0}, [7730] = {.lex_state = 0}, [7731] = {.lex_state = 0}, - [7732] = {.lex_state = 13}, + [7732] = {.lex_state = 7}, [7733] = {.lex_state = 0}, - [7734] = {.lex_state = 0, .external_lex_state = 6}, - [7735] = {.lex_state = 0}, - [7736] = {.lex_state = 3}, + [7734] = {.lex_state = 0}, + [7735] = {.lex_state = 5}, + [7736] = {.lex_state = 0}, [7737] = {.lex_state = 0}, [7738] = {.lex_state = 0}, [7739] = {.lex_state = 0}, [7740] = {.lex_state = 0}, - [7741] = {.lex_state = 13}, - [7742] = {.lex_state = 0}, - [7743] = {.lex_state = 3}, + [7741] = {.lex_state = 0}, + [7742] = {.lex_state = 0, .external_lex_state = 7}, + [7743] = {.lex_state = 0}, [7744] = {.lex_state = 0}, [7745] = {.lex_state = 0}, [7746] = {.lex_state = 0}, - [7747] = {.lex_state = 3}, + [7747] = {.lex_state = 0}, [7748] = {.lex_state = 0}, - [7749] = {.lex_state = 13}, + [7749] = {.lex_state = 0}, [7750] = {.lex_state = 0}, [7751] = {.lex_state = 0}, [7752] = {.lex_state = 0}, - [7753] = {.lex_state = 7}, + [7753] = {.lex_state = 0}, [7754] = {.lex_state = 0}, - [7755] = {.lex_state = 0, .external_lex_state = 6}, - [7756] = {.lex_state = 0, .external_lex_state = 6}, + [7755] = {.lex_state = 0}, + [7756] = {.lex_state = 0}, [7757] = {.lex_state = 0}, [7758] = {.lex_state = 0}, - [7759] = {.lex_state = 0}, + [7759] = {.lex_state = 0, .external_lex_state = 7}, [7760] = {.lex_state = 0}, - [7761] = {.lex_state = 0}, - [7762] = {.lex_state = 0}, - [7763] = {.lex_state = 0}, + [7761] = {.lex_state = 3}, + [7762] = {.lex_state = 14}, + [7763] = {.lex_state = 14}, [7764] = {.lex_state = 0}, [7765] = {.lex_state = 0}, [7766] = {.lex_state = 0}, - [7767] = {.lex_state = 0}, - [7768] = {.lex_state = 0, .external_lex_state = 6}, - [7769] = {.lex_state = 0, .external_lex_state = 6}, - [7770] = {.lex_state = 0, .external_lex_state = 6}, - [7771] = {.lex_state = 0, .external_lex_state = 6}, + [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}, [7772] = {.lex_state = 0}, - [7773] = {.lex_state = 0, .external_lex_state = 6}, - [7774] = {.lex_state = 0, .external_lex_state = 6}, + [7773] = {.lex_state = 0}, + [7774] = {.lex_state = 0}, [7775] = {.lex_state = 0}, - [7776] = {.lex_state = 3}, + [7776] = {.lex_state = 14}, [7777] = {.lex_state = 0}, [7778] = {.lex_state = 0}, [7779] = {.lex_state = 0}, @@ -31945,36 +32017,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7781] = {.lex_state = 0}, [7782] = {.lex_state = 0}, [7783] = {.lex_state = 5}, - [7784] = {.lex_state = 0, .external_lex_state = 6}, - [7785] = {.lex_state = 140}, + [7784] = {.lex_state = 0}, + [7785] = {.lex_state = 0}, [7786] = {.lex_state = 0}, [7787] = {.lex_state = 0}, - [7788] = {.lex_state = 0}, + [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 = 13}, - [7794] = {.lex_state = 5}, + [7793] = {.lex_state = 0}, + [7794] = {.lex_state = 7}, [7795] = {.lex_state = 0}, [7796] = {.lex_state = 0}, - [7797] = {.lex_state = 0, .external_lex_state = 7}, - [7798] = {.lex_state = 0, .external_lex_state = 4}, + [7797] = {.lex_state = 0}, + [7798] = {.lex_state = 0}, [7799] = {.lex_state = 0}, - [7800] = {.lex_state = 19}, + [7800] = {.lex_state = 0}, [7801] = {.lex_state = 0}, - [7802] = {.lex_state = 3}, + [7802] = {.lex_state = 0}, [7803] = {.lex_state = 0}, [7804] = {.lex_state = 0}, - [7805] = {.lex_state = 140}, + [7805] = {.lex_state = 0}, [7806] = {.lex_state = 0}, - [7807] = {.lex_state = 0}, - [7808] = {.lex_state = 0}, + [7807] = {.lex_state = 0, .external_lex_state = 7}, + [7808] = {.lex_state = 14}, [7809] = {.lex_state = 0}, [7810] = {.lex_state = 0}, - [7811] = {.lex_state = 0, .external_lex_state = 6}, + [7811] = {.lex_state = 141}, [7812] = {.lex_state = 0}, - [7813] = {.lex_state = 0, .external_lex_state = 6}, + [7813] = {.lex_state = 0}, [7814] = {.lex_state = 0}, [7815] = {.lex_state = 0}, [7816] = {.lex_state = 0}, @@ -31982,346 +32054,357 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7818] = {.lex_state = 0}, [7819] = {.lex_state = 0}, [7820] = {.lex_state = 0}, - [7821] = {.lex_state = 3}, - [7822] = {.lex_state = 7}, + [7821] = {.lex_state = 0}, + [7822] = {.lex_state = 140}, [7823] = {.lex_state = 0}, - [7824] = {.lex_state = 0}, + [7824] = {.lex_state = 0, .external_lex_state = 7}, [7825] = {.lex_state = 0}, - [7826] = {.lex_state = 0, .external_lex_state = 8}, - [7827] = {.lex_state = 0, .external_lex_state = 8}, + [7826] = {.lex_state = 0}, + [7827] = {.lex_state = 0}, [7828] = {.lex_state = 0}, - [7829] = {.lex_state = 0, .external_lex_state = 6}, + [7829] = {.lex_state = 0}, [7830] = {.lex_state = 0}, - [7831] = {.lex_state = 13}, - [7832] = {.lex_state = 0, .external_lex_state = 8}, + [7831] = {.lex_state = 0}, + [7832] = {.lex_state = 5}, [7833] = {.lex_state = 0}, - [7834] = {.lex_state = 13}, + [7834] = {.lex_state = 0}, [7835] = {.lex_state = 0}, - [7836] = {.lex_state = 0}, + [7836] = {.lex_state = 141}, [7837] = {.lex_state = 0}, - [7838] = {.lex_state = 0, .external_lex_state = 9}, - [7839] = {.lex_state = 13}, - [7840] = {.lex_state = 0, .external_lex_state = 6}, - [7841] = {.lex_state = 0, .external_lex_state = 6}, - [7842] = {.lex_state = 0, .external_lex_state = 6}, - [7843] = {.lex_state = 0}, - [7844] = {.lex_state = 0}, + [7838] = {.lex_state = 0}, + [7839] = {.lex_state = 140}, + [7840] = {.lex_state = 14}, + [7841] = {.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}, - [7848] = {.lex_state = 13}, + [7847] = {.lex_state = 7}, + [7848] = {.lex_state = 0}, [7849] = {.lex_state = 0}, - [7850] = {.lex_state = 0}, + [7850] = {.lex_state = 14}, [7851] = {.lex_state = 0}, [7852] = {.lex_state = 0}, - [7853] = {.lex_state = 0, .external_lex_state = 6}, + [7853] = {.lex_state = 0}, [7854] = {.lex_state = 0}, - [7855] = {.lex_state = 0}, + [7855] = {.lex_state = 141}, [7856] = {.lex_state = 0}, [7857] = {.lex_state = 0}, - [7858] = {.lex_state = 0}, - [7859] = {.lex_state = 7}, + [7858] = {.lex_state = 0, .external_lex_state = 9}, + [7859] = {.lex_state = 0}, [7860] = {.lex_state = 0}, [7861] = {.lex_state = 0}, - [7862] = {.lex_state = 0, .external_lex_state = 6}, - [7863] = {.lex_state = 139}, + [7862] = {.lex_state = 0}, + [7863] = {.lex_state = 0, .external_lex_state = 9}, [7864] = {.lex_state = 0}, - [7865] = {.lex_state = 0, .external_lex_state = 6}, + [7865] = {.lex_state = 0, .external_lex_state = 9}, [7866] = {.lex_state = 0}, - [7867] = {.lex_state = 0, .external_lex_state = 6}, + [7867] = {.lex_state = 0}, [7868] = {.lex_state = 0}, - [7869] = {.lex_state = 0}, - [7870] = {.lex_state = 0}, - [7871] = {.lex_state = 0}, - [7872] = {.lex_state = 0}, - [7873] = {.lex_state = 0, .external_lex_state = 9}, - [7874] = {.lex_state = 0, .external_lex_state = 8}, + [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, .external_lex_state = 8}, - [7877] = {.lex_state = 0}, - [7878] = {.lex_state = 0, .external_lex_state = 8}, - [7879] = {.lex_state = 0}, - [7880] = {.lex_state = 0}, - [7881] = {.lex_state = 0, .external_lex_state = 6}, - [7882] = {.lex_state = 0, .external_lex_state = 6}, + [7876] = {.lex_state = 0}, + [7877] = {.lex_state = 141}, + [7878] = {.lex_state = 3}, + [7879] = {.lex_state = 5}, + [7880] = {.lex_state = 3}, + [7881] = {.lex_state = 0}, + [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 = 0}, + [7886] = {.lex_state = 3}, + [7887] = {.lex_state = 0, .external_lex_state = 7}, [7888] = {.lex_state = 0}, - [7889] = {.lex_state = 0, .external_lex_state = 6}, + [7889] = {.lex_state = 0}, [7890] = {.lex_state = 0}, [7891] = {.lex_state = 0}, [7892] = {.lex_state = 0}, - [7893] = {.lex_state = 0}, + [7893] = {.lex_state = 7}, [7894] = {.lex_state = 0}, - [7895] = {.lex_state = 13}, + [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}, + [7904] = {.lex_state = 0, .external_lex_state = 7}, [7905] = {.lex_state = 0}, - [7906] = {.lex_state = 0}, + [7906] = {.lex_state = 0, .external_lex_state = 7}, [7907] = {.lex_state = 0}, - [7908] = {.lex_state = 0, .external_lex_state = 6}, + [7908] = {.lex_state = 0}, [7909] = {.lex_state = 0}, [7910] = {.lex_state = 0}, - [7911] = {.lex_state = 3}, - [7912] = {.lex_state = 13}, + [7911] = {.lex_state = 0}, + [7912] = {.lex_state = 0}, [7913] = {.lex_state = 0}, - [7914] = {.lex_state = 0}, - [7915] = {.lex_state = 0}, + [7914] = {.lex_state = 14}, + [7915] = {.lex_state = 0, .external_lex_state = 7}, [7916] = {.lex_state = 0}, - [7917] = {.lex_state = 0}, - [7918] = {.lex_state = 0, .external_lex_state = 6}, + [7917] = {.lex_state = 0, .external_lex_state = 7}, + [7918] = {.lex_state = 0}, [7919] = {.lex_state = 0}, - [7920] = {.lex_state = 3}, - [7921] = {.lex_state = 0}, + [7920] = {.lex_state = 0, .external_lex_state = 7}, + [7921] = {.lex_state = 14}, [7922] = {.lex_state = 0}, [7923] = {.lex_state = 0}, [7924] = {.lex_state = 0}, [7925] = {.lex_state = 0}, - [7926] = {.lex_state = 3}, + [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}, [7937] = {.lex_state = 0}, [7938] = {.lex_state = 0}, - [7939] = {.lex_state = 3}, + [7939] = {.lex_state = 0}, [7940] = {.lex_state = 0}, - [7941] = {.lex_state = 13}, + [7941] = {.lex_state = 0}, [7942] = {.lex_state = 0}, [7943] = {.lex_state = 0}, [7944] = {.lex_state = 0}, [7945] = {.lex_state = 0}, [7946] = {.lex_state = 0}, - [7947] = {.lex_state = 13}, - [7948] = {.lex_state = 0}, - [7949] = {.lex_state = 0, .external_lex_state = 6}, - [7950] = {.lex_state = 0}, + [7947] = {.lex_state = 0}, + [7948] = {.lex_state = 0, .external_lex_state = 7}, + [7949] = {.lex_state = 0}, + [7950] = {.lex_state = 0, .external_lex_state = 7}, [7951] = {.lex_state = 0}, - [7952] = {.lex_state = 13}, - [7953] = {.lex_state = 0}, + [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, .external_lex_state = 4}, + [7960] = {.lex_state = 0}, [7961] = {.lex_state = 0}, - [7962] = {.lex_state = 0, .external_lex_state = 6}, - [7963] = {.lex_state = 0, .external_lex_state = 4}, - [7964] = {.lex_state = 140}, + [7962] = {.lex_state = 0}, + [7963] = {.lex_state = 0}, + [7964] = {.lex_state = 0}, [7965] = {.lex_state = 0}, [7966] = {.lex_state = 0}, - [7967] = {.lex_state = 0, .external_lex_state = 6}, - [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}, - [7975] = {.lex_state = 0, .external_lex_state = 6}, + [7974] = {.lex_state = 0, .external_lex_state = 7}, + [7975] = {.lex_state = 0}, [7976] = {.lex_state = 0}, [7977] = {.lex_state = 0}, [7978] = {.lex_state = 0}, [7979] = {.lex_state = 0}, - [7980] = {.lex_state = 0, .external_lex_state = 6}, + [7980] = {.lex_state = 0}, [7981] = {.lex_state = 0}, - [7982] = {.lex_state = 0, .external_lex_state = 8}, - [7983] = {.lex_state = 0, .external_lex_state = 8}, + [7982] = {.lex_state = 0}, + [7983] = {.lex_state = 0}, [7984] = {.lex_state = 0}, [7985] = {.lex_state = 0}, - [7986] = {.lex_state = 0, .external_lex_state = 8}, - [7987] = {.lex_state = 0, .external_lex_state = 9}, - [7988] = {.lex_state = 0}, - [7989] = {.lex_state = 0}, + [7986] = {.lex_state = 0, .external_lex_state = 7}, + [7987] = {.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 = 139}, - [7992] = {.lex_state = 0}, + [7991] = {.lex_state = 0}, + [7992] = {.lex_state = 18}, [7993] = {.lex_state = 0}, [7994] = {.lex_state = 0}, - [7995] = {.lex_state = 0}, + [7995] = {.lex_state = 0, .external_lex_state = 6}, [7996] = {.lex_state = 0}, - [7997] = {.lex_state = 0}, - [7998] = {.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}, - [8004] = {.lex_state = 0}, - [8005] = {.lex_state = 0, .external_lex_state = 6}, + [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 = 0}, [8008] = {.lex_state = 0}, - [8009] = {.lex_state = 0}, - [8010] = {.lex_state = 3}, + [8009] = {.lex_state = 0, .external_lex_state = 4}, + [8010] = {.lex_state = 0}, [8011] = {.lex_state = 0}, [8012] = {.lex_state = 0}, - [8013] = {.lex_state = 140}, - [8014] = {.lex_state = 0, .external_lex_state = 6}, - [8015] = {.lex_state = 0, .external_lex_state = 6}, + [8013] = {.lex_state = 0}, + [8014] = {.lex_state = 0}, + [8015] = {.lex_state = 0}, [8016] = {.lex_state = 0}, - [8017] = {.lex_state = 0, .external_lex_state = 6}, - [8018] = {.lex_state = 13}, - [8019] = {.lex_state = 0}, - [8020] = {.lex_state = 0}, - [8021] = {.lex_state = 0}, + [8017] = {.lex_state = 0}, + [8018] = {.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, .external_lex_state = 6}, + [8023] = {.lex_state = 0}, [8024] = {.lex_state = 0}, - [8025] = {.lex_state = 0}, - [8026] = {.lex_state = 0, .external_lex_state = 6}, - [8027] = {.lex_state = 0}, - [8028] = {.lex_state = 0, .external_lex_state = 7}, + [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 = 0}, [8031] = {.lex_state = 0}, [8032] = {.lex_state = 0}, [8033] = {.lex_state = 0}, [8034] = {.lex_state = 0}, - [8035] = {.lex_state = 0}, - [8036] = {.lex_state = 0}, - [8037] = {.lex_state = 0}, - [8038] = {.lex_state = 13}, + [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 = 0}, + [8041] = {.lex_state = 141}, [8042] = {.lex_state = 0}, [8043] = {.lex_state = 0}, - [8044] = {.lex_state = 140}, - [8045] = {.lex_state = 13}, - [8046] = {.lex_state = 7}, - [8047] = {.lex_state = 13}, - [8048] = {.lex_state = 0, .external_lex_state = 6}, + [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 = 13}, + [8051] = {.lex_state = 0}, [8052] = {.lex_state = 0}, - [8053] = {.lex_state = 0, .external_lex_state = 6}, + [8053] = {.lex_state = 0}, [8054] = {.lex_state = 0}, - [8055] = {.lex_state = 0}, + [8055] = {.lex_state = 14}, [8056] = {.lex_state = 0}, [8057] = {.lex_state = 0}, [8058] = {.lex_state = 0}, - [8059] = {.lex_state = 0}, - [8060] = {.lex_state = 0, .external_lex_state = 7}, + [8059] = {.lex_state = 3}, + [8060] = {.lex_state = 0}, [8061] = {.lex_state = 0}, - [8062] = {.lex_state = 7}, - [8063] = {.lex_state = 0, .external_lex_state = 6}, - [8064] = {.lex_state = 0, .external_lex_state = 6}, - [8065] = {.lex_state = 0, .external_lex_state = 6}, - [8066] = {.lex_state = 139}, - [8067] = {.lex_state = 0, .external_lex_state = 9}, - [8068] = {.lex_state = 0}, - [8069] = {.lex_state = 0, .external_lex_state = 8}, - [8070] = {.lex_state = 7}, - [8071] = {.lex_state = 0}, - [8072] = {.lex_state = 0}, - [8073] = {.lex_state = 0}, - [8074] = {.lex_state = 0, .external_lex_state = 6}, - [8075] = {.lex_state = 0, .external_lex_state = 6}, + [8062] = {.lex_state = 0}, + [8063] = {.lex_state = 0}, + [8064] = {.lex_state = 0}, + [8065] = {.lex_state = 0}, + [8066] = {.lex_state = 3}, + [8067] = {.lex_state = 0}, + [8068] = {.lex_state = 140}, + [8069] = {.lex_state = 0, .external_lex_state = 7}, + [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 = 8}, + [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 = 140}, - [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 = 139}, + [8088] = {.lex_state = 0}, [8089] = {.lex_state = 0}, [8090] = {.lex_state = 0}, [8091] = {.lex_state = 0}, - [8092] = {.lex_state = 0}, - [8093] = {.lex_state = 0, .external_lex_state = 8}, - [8094] = {.lex_state = 13}, + [8092] = {.lex_state = 14}, + [8093] = {.lex_state = 3}, + [8094] = {.lex_state = 141}, [8095] = {.lex_state = 0}, - [8096] = {.lex_state = 0, .external_lex_state = 7}, + [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}, - [8103] = {.lex_state = 17}, - [8104] = {.lex_state = 140}, - [8105] = {.lex_state = 0}, + [8102] = {.lex_state = 0}, + [8103] = {.lex_state = 0}, + [8104] = {.lex_state = 0, .external_lex_state = 7}, + [8105] = {.lex_state = 14}, [8106] = {.lex_state = 0}, - [8107] = {.lex_state = 140}, - [8108] = {.lex_state = 139}, - [8109] = {.lex_state = 0}, - [8110] = {.lex_state = 0, .external_lex_state = 6}, - [8111] = {.lex_state = 5}, - [8112] = {.lex_state = 140}, - [8113] = {.lex_state = 0, .external_lex_state = 6}, + [8107] = {.lex_state = 0}, + [8108] = {.lex_state = 0}, + [8109] = {.lex_state = 14}, + [8110] = {.lex_state = 0}, + [8111] = {.lex_state = 0}, + [8112] = {.lex_state = 0}, + [8113] = {.lex_state = 0}, [8114] = {.lex_state = 0}, - [8115] = {.lex_state = 0, .external_lex_state = 7}, - [8116] = {.lex_state = 0, .external_lex_state = 8}, - [8117] = {.lex_state = 0, .external_lex_state = 8}, + [8115] = {.lex_state = 0}, + [8116] = {.lex_state = 0}, + [8117] = {.lex_state = 0}, [8118] = {.lex_state = 0}, - [8119] = {.lex_state = 0}, - [8120] = {.lex_state = 0}, - [8121] = {.lex_state = 0, .external_lex_state = 8}, + [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 = 0}, - [8125] = {.lex_state = 0, .external_lex_state = 9}, - [8126] = {.lex_state = 17}, - [8127] = {.lex_state = 17}, + [8123] = {.lex_state = 141}, + [8124] = {.lex_state = 0, .external_lex_state = 7}, + [8125] = {.lex_state = 0}, + [8126] = {.lex_state = 0}, + [8127] = {.lex_state = 0}, [8128] = {.lex_state = 0}, - [8129] = {.lex_state = 17}, - [8130] = {.lex_state = 140}, + [8129] = {.lex_state = 0, .external_lex_state = 8}, + [8130] = {.lex_state = 0}, [8131] = {.lex_state = 0}, [8132] = {.lex_state = 0}, - [8133] = {.lex_state = 0, .external_lex_state = 6}, - [8134] = {.lex_state = 0}, - [8135] = {.lex_state = 140}, - [8136] = {.lex_state = 0}, + [8133] = {.lex_state = 0}, + [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 = 140}, - [8140] = {.lex_state = 140}, - [8141] = {.lex_state = 0}, - [8142] = {.lex_state = 140}, - [8143] = {.lex_state = 140}, - [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] = { @@ -32397,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), @@ -32433,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), @@ -32462,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), @@ -32477,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), @@ -32550,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(2097), - [sym_global_statement] = STATE(2102), - [sym_extern_alias_directive] = STATE(2102), - [sym_using_directive] = STATE(2102), - [sym_global_attribute] = STATE(2102), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2102), - [sym_file_scoped_namespace_declaration] = STATE(2102), - [sym_type_declaration] = STATE(2102), - [sym_class_declaration] = STATE(2096), - [sym__class_declaration_initializer] = STATE(7703), - [sym_struct_declaration] = STATE(2096), - [sym__struct_declaration_initializer] = STATE(7616), - [sym_enum_declaration] = STATE(2096), - [sym_interface_declaration] = STATE(2096), - [sym__interface_declaration_initializer] = STATE(7628), - [sym_delegate_declaration] = STATE(2096), - [sym__delegate_declaration_initializer] = STATE(6954), - [sym_record_declaration] = STATE(2096), - [sym__record_declaration_initializer] = STATE(7322), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2040), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2085), - [sym_break_statement] = STATE(2040), - [sym_checked_statement] = STATE(2040), - [sym_continue_statement] = STATE(2040), - [sym_do_statement] = STATE(2040), - [sym_empty_statement] = STATE(2040), - [sym_expression_statement] = STATE(2040), - [sym_fixed_statement] = STATE(2040), - [sym_for_statement] = STATE(2040), - [sym_return_statement] = STATE(2040), - [sym_lock_statement] = STATE(2040), - [sym_yield_statement] = STATE(2040), - [sym_switch_statement] = STATE(2040), - [sym_throw_statement] = STATE(2040), - [sym_try_statement] = STATE(2040), - [sym_unsafe_statement] = STATE(2040), - [sym_using_statement] = STATE(2040), - [sym_foreach_statement] = STATE(2040), + [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(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(2040), - [sym_labeled_statement] = STATE(2040), - [sym_if_statement] = STATE(2040), - [sym_while_statement] = STATE(2040), - [sym_local_declaration_statement] = STATE(2040), - [sym_local_function_statement] = STATE(2040), - [sym__local_function_declaration] = STATE(6619), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6047), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2356), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2101), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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), @@ -32687,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_compilation_unit_repeat1] = STATE(15), [aux_sym__class_declaration_initializer_repeat1] = STATE(2245), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2398), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -32733,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), @@ -32810,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(2008), - [sym_using_directive] = STATE(2008), - [sym_global_attribute] = STATE(2008), - [sym_attribute_list] = STATE(3096), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2008), - [sym_file_scoped_namespace_declaration] = STATE(2008), - [sym_type_declaration] = STATE(2008), - [sym_class_declaration] = STATE(2004), - [sym__class_declaration_initializer] = STATE(7811), - [sym_struct_declaration] = STATE(2004), - [sym__struct_declaration_initializer] = STATE(7548), - [sym_enum_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym__interface_declaration_initializer] = STATE(7546), - [sym_delegate_declaration] = STATE(2004), - [sym__delegate_declaration_initializer] = STATE(6945), - [sym_record_declaration] = STATE(2004), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2008), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(3360), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2006), - [sym_preproc_else_in_top_level] = STATE(7691), - [sym_preproc_elif_in_top_level] = STATE(7691), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(8043), - [sym_preproc_elif_in_expression] = STATE(8043), - [sym_preproc_if_in_attribute_list] = STATE(3597), - [sym_preproc_else_in_attribute_list] = STATE(8040), - [sym_preproc_elif_in_attribute_list] = STATE(8040), + [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(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), @@ -32950,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(2239), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2391), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -32995,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), @@ -33020,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), @@ -33074,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(2008), - [sym_using_directive] = STATE(2008), - [sym_global_attribute] = STATE(2008), - [sym_attribute_list] = STATE(3347), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2008), - [sym_file_scoped_namespace_declaration] = STATE(2008), - [sym_type_declaration] = STATE(2008), - [sym_class_declaration] = STATE(2004), - [sym__class_declaration_initializer] = STATE(7811), - [sym_struct_declaration] = STATE(2004), - [sym__struct_declaration_initializer] = STATE(7548), - [sym_enum_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym__interface_declaration_initializer] = STATE(7546), - [sym_delegate_declaration] = STATE(2004), - [sym__delegate_declaration_initializer] = STATE(6945), - [sym_record_declaration] = STATE(2004), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2008), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(3360), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2006), - [sym_preproc_else_in_top_level] = STATE(7924), - [sym_preproc_elif_in_top_level] = STATE(7924), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(8043), - [sym_preproc_elif_in_expression] = STATE(8043), - [sym_preproc_if_in_attribute_list] = STATE(3597), - [sym_preproc_else_in_attribute_list] = STATE(7724), - [sym_preproc_elif_in_attribute_list] = STATE(7724), + [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(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), @@ -33214,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(2239), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2391), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -33259,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), @@ -33284,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), @@ -33338,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(2008), - [sym_using_directive] = STATE(2008), - [sym_global_attribute] = STATE(2008), - [sym_attribute_list] = STATE(3096), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2008), - [sym_file_scoped_namespace_declaration] = STATE(2008), - [sym_type_declaration] = STATE(2008), - [sym_class_declaration] = STATE(2004), - [sym__class_declaration_initializer] = STATE(7811), - [sym_struct_declaration] = STATE(2004), - [sym__struct_declaration_initializer] = STATE(7548), - [sym_enum_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym__interface_declaration_initializer] = STATE(7546), - [sym_delegate_declaration] = STATE(2004), - [sym__delegate_declaration_initializer] = STATE(6945), - [sym_record_declaration] = STATE(2004), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2008), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(3360), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2006), - [sym_preproc_else_in_top_level] = STATE(8049), - [sym_preproc_elif_in_top_level] = STATE(8049), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(8043), - [sym_preproc_elif_in_expression] = STATE(8043), - [sym_preproc_if_in_attribute_list] = STATE(3597), - [sym_preproc_else_in_attribute_list] = STATE(8040), - [sym_preproc_elif_in_attribute_list] = STATE(8040), + [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(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), @@ -33478,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(2239), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2391), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -33523,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), @@ -33548,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), @@ -33602,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(2008), - [sym_using_directive] = STATE(2008), - [sym_global_attribute] = STATE(2008), - [sym_attribute_list] = STATE(3103), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2008), - [sym_file_scoped_namespace_declaration] = STATE(2008), - [sym_type_declaration] = STATE(2008), - [sym_class_declaration] = STATE(2004), - [sym__class_declaration_initializer] = STATE(7811), - [sym_struct_declaration] = STATE(2004), - [sym__struct_declaration_initializer] = STATE(7548), - [sym_enum_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym__interface_declaration_initializer] = STATE(7546), - [sym_delegate_declaration] = STATE(2004), - [sym__delegate_declaration_initializer] = STATE(6945), - [sym_record_declaration] = STATE(2004), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2008), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(3397), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2006), - [sym_preproc_else_in_top_level] = STATE(7655), - [sym_preproc_elif_in_top_level] = STATE(7655), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(7899), - [sym_preproc_elif_in_expression] = STATE(7899), - [sym_preproc_if_in_attribute_list] = STATE(3597), - [sym_preproc_else_in_attribute_list] = STATE(7885), - [sym_preproc_elif_in_attribute_list] = STATE(7885), + [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(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), @@ -33742,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(2239), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2391), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -33787,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), @@ -33812,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), @@ -33866,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(2008), - [sym_using_directive] = STATE(2008), - [sym_global_attribute] = STATE(2008), - [sym_attribute_list] = STATE(3347), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2008), - [sym_file_scoped_namespace_declaration] = STATE(2008), - [sym_type_declaration] = STATE(2008), - [sym_class_declaration] = STATE(2004), - [sym__class_declaration_initializer] = STATE(7811), - [sym_struct_declaration] = STATE(2004), - [sym__struct_declaration_initializer] = STATE(7548), - [sym_enum_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym__interface_declaration_initializer] = STATE(7546), - [sym_delegate_declaration] = STATE(2004), - [sym__delegate_declaration_initializer] = STATE(6945), - [sym_record_declaration] = STATE(2004), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2008), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(3360), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2006), - [sym_preproc_else_in_top_level] = STATE(7726), - [sym_preproc_elif_in_top_level] = STATE(7726), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(8043), - [sym_preproc_elif_in_expression] = STATE(8043), - [sym_preproc_if_in_attribute_list] = STATE(3597), - [sym_preproc_else_in_attribute_list] = STATE(7724), - [sym_preproc_elif_in_attribute_list] = STATE(7724), + [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(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), @@ -34006,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(2239), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2391), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -34051,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), @@ -34076,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), @@ -34111,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), @@ -34130,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(2008), - [sym_using_directive] = STATE(2008), - [sym_global_attribute] = STATE(2008), - [sym_attribute_list] = STATE(3347), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2008), - [sym_file_scoped_namespace_declaration] = STATE(2008), - [sym_type_declaration] = STATE(2008), - [sym_class_declaration] = STATE(2004), - [sym__class_declaration_initializer] = STATE(7811), - [sym_struct_declaration] = STATE(2004), - [sym__struct_declaration_initializer] = STATE(7548), - [sym_enum_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym__interface_declaration_initializer] = STATE(7546), - [sym_delegate_declaration] = STATE(2004), - [sym__delegate_declaration_initializer] = STATE(6945), - [sym_record_declaration] = STATE(2004), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2008), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(3360), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2006), - [sym_preproc_else_in_top_level] = STATE(7691), - [sym_preproc_elif_in_top_level] = STATE(7691), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(8043), - [sym_preproc_elif_in_expression] = STATE(8043), - [sym_preproc_if_in_attribute_list] = STATE(3597), - [sym_preproc_else_in_attribute_list] = STATE(7724), - [sym_preproc_elif_in_attribute_list] = STATE(7724), + [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(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), @@ -34270,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(2239), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2391), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -34315,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), @@ -34340,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), @@ -34375,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), @@ -34394,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(2008), - [sym_using_directive] = STATE(2008), - [sym_global_attribute] = STATE(2008), - [sym_attribute_list] = STATE(3347), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2008), - [sym_file_scoped_namespace_declaration] = STATE(2008), - [sym_type_declaration] = STATE(2008), - [sym_class_declaration] = STATE(2004), - [sym__class_declaration_initializer] = STATE(7811), - [sym_struct_declaration] = STATE(2004), - [sym__struct_declaration_initializer] = STATE(7548), - [sym_enum_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym__interface_declaration_initializer] = STATE(7546), - [sym_delegate_declaration] = STATE(2004), - [sym__delegate_declaration_initializer] = STATE(6945), - [sym_record_declaration] = STATE(2004), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2008), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(3360), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2006), - [sym_preproc_else_in_top_level] = STATE(8049), - [sym_preproc_elif_in_top_level] = STATE(8049), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(8043), - [sym_preproc_elif_in_expression] = STATE(8043), - [sym_preproc_if_in_attribute_list] = STATE(3597), - [sym_preproc_else_in_attribute_list] = STATE(7724), - [sym_preproc_elif_in_attribute_list] = STATE(7724), + [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(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), @@ -34534,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(2239), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2391), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -34579,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), @@ -34604,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), @@ -34639,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), @@ -34658,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(2008), - [sym_using_directive] = STATE(2008), - [sym_global_attribute] = STATE(2008), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2008), - [sym_file_scoped_namespace_declaration] = STATE(2008), - [sym_type_declaration] = STATE(2008), - [sym_class_declaration] = STATE(2004), - [sym__class_declaration_initializer] = STATE(7811), - [sym_struct_declaration] = STATE(2004), - [sym__struct_declaration_initializer] = STATE(7548), - [sym_enum_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym__interface_declaration_initializer] = STATE(7546), - [sym_delegate_declaration] = STATE(2004), - [sym__delegate_declaration_initializer] = STATE(6945), - [sym_record_declaration] = STATE(2004), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2008), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2006), - [sym_preproc_else_in_top_level] = STATE(7707), - [sym_preproc_elif_in_top_level] = STATE(7707), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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_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), @@ -34794,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(2239), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2391), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -34839,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), @@ -34864,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), @@ -34918,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(2008), - [sym_using_directive] = STATE(2008), - [sym_global_attribute] = STATE(2008), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2008), - [sym_file_scoped_namespace_declaration] = STATE(2008), - [sym_type_declaration] = STATE(2008), - [sym_class_declaration] = STATE(2004), - [sym__class_declaration_initializer] = STATE(7811), - [sym_struct_declaration] = STATE(2004), - [sym__struct_declaration_initializer] = STATE(7548), - [sym_enum_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym__interface_declaration_initializer] = STATE(7546), - [sym_delegate_declaration] = STATE(2004), - [sym__delegate_declaration_initializer] = STATE(6945), - [sym_record_declaration] = STATE(2004), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2008), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2006), - [sym_preproc_else_in_top_level] = STATE(7688), - [sym_preproc_elif_in_top_level] = STATE(7688), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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_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), @@ -35054,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(2239), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2391), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -35099,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), @@ -35124,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), @@ -35159,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), @@ -35178,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(2008), - [sym_using_directive] = STATE(2008), - [sym_global_attribute] = STATE(2008), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2008), - [sym_file_scoped_namespace_declaration] = STATE(2008), - [sym_type_declaration] = STATE(2008), - [sym_class_declaration] = STATE(2004), - [sym__class_declaration_initializer] = STATE(7811), - [sym_struct_declaration] = STATE(2004), - [sym__struct_declaration_initializer] = STATE(7548), - [sym_enum_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym__interface_declaration_initializer] = STATE(7546), - [sym_delegate_declaration] = STATE(2004), - [sym__delegate_declaration_initializer] = STATE(6945), - [sym_record_declaration] = STATE(2004), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2008), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2006), - [sym_preproc_else_in_top_level] = STATE(7655), - [sym_preproc_elif_in_top_level] = STATE(7655), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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_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), @@ -35314,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(2239), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2391), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -35359,22 +35442,273 @@ static const 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_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_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(211), + [aux_sym_preproc_if_token1] = ACTIONS(213), + [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), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [12] = { + [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_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), + [sym_preproc_pragma] = STATE(12), + [sym_preproc_nullable] = STATE(12), + [sym_preproc_error] = STATE(12), + [sym_preproc_warning] = STATE(12), + [sym_preproc_define] = STATE(12), + [sym_preproc_undef] = 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(17), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_extern] = ACTIONS(161), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_SEMI] = ACTIONS(163), + [anon_sym_global] = ACTIONS(165), + [anon_sym_using] = ACTIONS(167), + [anon_sym_unsafe] = ACTIONS(169), + [anon_sym_static] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(171), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_return] = ACTIONS(173), + [anon_sym_namespace] = ACTIONS(175), + [anon_sym_class] = ACTIONS(49), + [anon_sym_ref] = ACTIONS(51), + [anon_sym_struct] = ACTIONS(53), + [anon_sym_enum] = ACTIONS(177), + [anon_sym_LBRACE] = ACTIONS(179), + [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(181), + [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(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), @@ -35384,275 +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_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [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(213), - [aux_sym_preproc_if_token3] = ACTIONS(225), - [aux_sym_preproc_else_token1] = ACTIONS(231), - [aux_sym_preproc_elif_token1] = ACTIONS(233), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [12] = { - [sym_extern_alias_directive] = STATE(2008), - [sym_using_directive] = STATE(2008), - [sym_global_attribute] = STATE(2008), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2008), - [sym_file_scoped_namespace_declaration] = STATE(2008), - [sym_type_declaration] = STATE(2008), - [sym_class_declaration] = STATE(2004), - [sym__class_declaration_initializer] = STATE(7811), - [sym_struct_declaration] = STATE(2004), - [sym__struct_declaration_initializer] = STATE(7548), - [sym_enum_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym__interface_declaration_initializer] = STATE(7546), - [sym_delegate_declaration] = STATE(2004), - [sym__delegate_declaration_initializer] = STATE(6945), - [sym_record_declaration] = STATE(2004), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2008), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2006), - [sym_preproc_else_in_top_level] = STATE(7959), - [sym_preproc_elif_in_top_level] = STATE(7959), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(3597), - [sym_preproc_region] = STATE(12), - [sym_preproc_endregion] = STATE(12), - [sym_preproc_line] = STATE(12), - [sym_preproc_pragma] = STATE(12), - [sym_preproc_nullable] = STATE(12), - [sym_preproc_error] = STATE(12), - [sym_preproc_warning] = STATE(12), - [sym_preproc_define] = STATE(12), - [sym_preproc_undef] = STATE(12), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2239), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2391), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [aux_sym_preproc_if_in_top_level_repeat1] = STATE(18), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(161), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(163), - [anon_sym_global] = ACTIONS(165), - [anon_sym_using] = ACTIONS(167), - [anon_sym_unsafe] = ACTIONS(169), - [anon_sym_static] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(171), - [anon_sym_LPAREN] = ACTIONS(43), - [anon_sym_return] = ACTIONS(173), - [anon_sym_namespace] = ACTIONS(175), - [anon_sym_class] = ACTIONS(49), - [anon_sym_ref] = ACTIONS(51), - [anon_sym_struct] = ACTIONS(53), - [anon_sym_enum] = ACTIONS(177), - [anon_sym_LBRACE] = ACTIONS(179), - [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(181), - [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(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_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_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), @@ -35698,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(2008), - [sym_using_directive] = STATE(2008), - [sym_global_attribute] = STATE(2008), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2008), - [sym_file_scoped_namespace_declaration] = STATE(2008), - [sym_type_declaration] = STATE(2008), - [sym_class_declaration] = STATE(2004), - [sym__class_declaration_initializer] = STATE(7811), - [sym_struct_declaration] = STATE(2004), - [sym__struct_declaration_initializer] = STATE(7548), - [sym_enum_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym__interface_declaration_initializer] = STATE(7546), - [sym_delegate_declaration] = STATE(2004), - [sym__delegate_declaration_initializer] = STATE(6945), - [sym_record_declaration] = STATE(2004), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2008), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2006), - [sym_preproc_else_in_top_level] = STATE(7888), - [sym_preproc_elif_in_top_level] = STATE(7888), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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_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), @@ -35834,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(2239), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2391), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -35879,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), @@ -35904,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), @@ -35958,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(2008), - [sym_using_directive] = STATE(2008), - [sym_global_attribute] = STATE(2008), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2008), - [sym_file_scoped_namespace_declaration] = STATE(2008), - [sym_type_declaration] = STATE(2008), - [sym_class_declaration] = STATE(2004), - [sym__class_declaration_initializer] = STATE(7811), - [sym_struct_declaration] = STATE(2004), - [sym__struct_declaration_initializer] = STATE(7548), - [sym_enum_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym__interface_declaration_initializer] = STATE(7546), - [sym_delegate_declaration] = STATE(2004), - [sym__delegate_declaration_initializer] = STATE(6945), - [sym_record_declaration] = STATE(2004), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2008), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2006), - [sym_preproc_else_in_top_level] = STATE(7762), - [sym_preproc_elif_in_top_level] = STATE(7762), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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_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), @@ -36094,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(2239), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2391), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -36139,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), @@ -36164,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), @@ -36218,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(2097), - [sym_global_statement] = STATE(2102), - [sym_extern_alias_directive] = STATE(2102), - [sym_using_directive] = STATE(2102), - [sym_global_attribute] = STATE(2102), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2102), - [sym_file_scoped_namespace_declaration] = STATE(2102), - [sym_type_declaration] = STATE(2102), - [sym_class_declaration] = STATE(2096), - [sym__class_declaration_initializer] = STATE(7703), - [sym_struct_declaration] = STATE(2096), - [sym__struct_declaration_initializer] = STATE(7616), - [sym_enum_declaration] = STATE(2096), - [sym_interface_declaration] = STATE(2096), - [sym__interface_declaration_initializer] = STATE(7628), - [sym_delegate_declaration] = STATE(2096), - [sym__delegate_declaration_initializer] = STATE(6954), - [sym_record_declaration] = STATE(2096), - [sym__record_declaration_initializer] = STATE(7322), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2040), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2085), - [sym_break_statement] = STATE(2040), - [sym_checked_statement] = STATE(2040), - [sym_continue_statement] = STATE(2040), - [sym_do_statement] = STATE(2040), - [sym_empty_statement] = STATE(2040), - [sym_expression_statement] = STATE(2040), - [sym_fixed_statement] = STATE(2040), - [sym_for_statement] = STATE(2040), - [sym_return_statement] = STATE(2040), - [sym_lock_statement] = STATE(2040), - [sym_yield_statement] = STATE(2040), - [sym_switch_statement] = STATE(2040), - [sym_throw_statement] = STATE(2040), - [sym_try_statement] = STATE(2040), - [sym_unsafe_statement] = STATE(2040), - [sym_using_statement] = STATE(2040), - [sym_foreach_statement] = STATE(2040), + [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(2040), - [sym_labeled_statement] = STATE(2040), - [sym_if_statement] = STATE(2040), - [sym_while_statement] = STATE(2040), - [sym_local_declaration_statement] = STATE(2040), - [sym_local_function_statement] = STATE(2040), - [sym__local_function_declaration] = STATE(6619), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6047), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2356), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2101), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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), @@ -36354,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_compilation_unit_repeat1] = STATE(16), [aux_sym__class_declaration_initializer_repeat1] = STATE(2245), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2398), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(2097), - [sym_global_statement] = STATE(2102), - [sym_extern_alias_directive] = STATE(2102), - [sym_using_directive] = STATE(2102), - [sym_global_attribute] = STATE(2102), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2102), - [sym_file_scoped_namespace_declaration] = STATE(2102), - [sym_type_declaration] = STATE(2102), - [sym_class_declaration] = STATE(2096), - [sym__class_declaration_initializer] = STATE(7703), - [sym_struct_declaration] = STATE(2096), - [sym__struct_declaration_initializer] = STATE(7616), - [sym_enum_declaration] = STATE(2096), - [sym_interface_declaration] = STATE(2096), - [sym__interface_declaration_initializer] = STATE(7628), - [sym_delegate_declaration] = STATE(2096), - [sym__delegate_declaration_initializer] = STATE(6954), - [sym_record_declaration] = STATE(2096), - [sym__record_declaration_initializer] = STATE(7322), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2040), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2085), - [sym_break_statement] = STATE(2040), - [sym_checked_statement] = STATE(2040), - [sym_continue_statement] = STATE(2040), - [sym_do_statement] = STATE(2040), - [sym_empty_statement] = STATE(2040), - [sym_expression_statement] = STATE(2040), - [sym_fixed_statement] = STATE(2040), - [sym_for_statement] = STATE(2040), - [sym_return_statement] = STATE(2040), - [sym_lock_statement] = STATE(2040), - [sym_yield_statement] = STATE(2040), - [sym_switch_statement] = STATE(2040), - [sym_throw_statement] = STATE(2040), - [sym_try_statement] = STATE(2040), - [sym_unsafe_statement] = STATE(2040), - [sym_using_statement] = STATE(2040), - [sym_foreach_statement] = STATE(2040), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2040), - [sym_labeled_statement] = STATE(2040), - [sym_if_statement] = STATE(2040), - [sym_while_statement] = STATE(2040), - [sym_local_declaration_statement] = STATE(2040), - [sym_local_function_statement] = STATE(2040), - [sym__local_function_declaration] = STATE(6619), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6047), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2356), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2101), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(3597), - [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(2245), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2398), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [ts_builtin_sym_end] = ACTIONS(446), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(27), [anon_sym_alias] = ACTIONS(29), @@ -36658,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), @@ -36733,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(2097), - [sym_global_statement] = STATE(2102), - [sym_extern_alias_directive] = STATE(2102), - [sym_using_directive] = STATE(2102), - [sym_global_attribute] = STATE(2102), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2102), - [sym_file_scoped_namespace_declaration] = STATE(2102), - [sym_type_declaration] = STATE(2102), - [sym_class_declaration] = STATE(2096), - [sym__class_declaration_initializer] = STATE(7703), - [sym_struct_declaration] = STATE(2096), - [sym__struct_declaration_initializer] = STATE(7616), - [sym_enum_declaration] = STATE(2096), - [sym_interface_declaration] = STATE(2096), - [sym__interface_declaration_initializer] = STATE(7628), - [sym_delegate_declaration] = STATE(2096), - [sym__delegate_declaration_initializer] = STATE(6954), - [sym_record_declaration] = STATE(2096), - [sym__record_declaration_initializer] = STATE(7322), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2040), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2085), - [sym_break_statement] = STATE(2040), - [sym_checked_statement] = STATE(2040), - [sym_continue_statement] = STATE(2040), - [sym_do_statement] = STATE(2040), - [sym_empty_statement] = STATE(2040), - [sym_expression_statement] = STATE(2040), - [sym_fixed_statement] = STATE(2040), - [sym_for_statement] = STATE(2040), - [sym_return_statement] = STATE(2040), - [sym_lock_statement] = STATE(2040), - [sym_yield_statement] = STATE(2040), - [sym_switch_statement] = STATE(2040), - [sym_throw_statement] = STATE(2040), - [sym_try_statement] = STATE(2040), - [sym_unsafe_statement] = STATE(2040), - [sym_using_statement] = STATE(2040), - [sym_foreach_statement] = STATE(2040), + [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(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(2040), - [sym_labeled_statement] = STATE(2040), - [sym_if_statement] = STATE(2040), - [sym_while_statement] = STATE(2040), - [sym_local_declaration_statement] = STATE(2040), - [sym_local_function_statement] = STATE(2040), - [sym__local_function_declaration] = STATE(6619), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6047), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2356), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2101), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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), @@ -36870,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(2245), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2398), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(2008), - [sym_using_directive] = STATE(2008), - [sym_global_attribute] = STATE(2008), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2008), - [sym_file_scoped_namespace_declaration] = STATE(2008), - [sym_type_declaration] = STATE(2008), - [sym_class_declaration] = STATE(2004), - [sym__class_declaration_initializer] = STATE(7811), - [sym_struct_declaration] = STATE(2004), - [sym__struct_declaration_initializer] = STATE(7548), - [sym_enum_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym__interface_declaration_initializer] = STATE(7546), - [sym_delegate_declaration] = STATE(2004), - [sym__delegate_declaration_initializer] = STATE(6945), - [sym_record_declaration] = STATE(2004), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2008), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2006), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(3597), - [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(2239), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2391), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -37171,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), @@ -37249,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(2097), - [sym_global_statement] = STATE(2102), - [sym_extern_alias_directive] = STATE(2102), - [sym_using_directive] = STATE(2102), - [sym_global_attribute] = STATE(2102), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2102), - [sym_file_scoped_namespace_declaration] = STATE(2102), - [sym_type_declaration] = STATE(2102), - [sym_class_declaration] = STATE(2096), - [sym__class_declaration_initializer] = STATE(7703), - [sym_struct_declaration] = STATE(2096), - [sym__struct_declaration_initializer] = STATE(7616), - [sym_enum_declaration] = STATE(2096), - [sym_interface_declaration] = STATE(2096), - [sym__interface_declaration_initializer] = STATE(7628), - [sym_delegate_declaration] = STATE(2096), - [sym__delegate_declaration_initializer] = STATE(6954), - [sym_record_declaration] = STATE(2096), - [sym__record_declaration_initializer] = STATE(7322), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2040), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2085), - [sym_break_statement] = STATE(2040), - [sym_checked_statement] = STATE(2040), - [sym_continue_statement] = STATE(2040), - [sym_do_statement] = STATE(2040), - [sym_empty_statement] = STATE(2040), - [sym_expression_statement] = STATE(2040), - [sym_fixed_statement] = STATE(2040), - [sym_for_statement] = STATE(2040), - [sym_return_statement] = STATE(2040), - [sym_lock_statement] = STATE(2040), - [sym_yield_statement] = STATE(2040), - [sym_switch_statement] = STATE(2040), - [sym_throw_statement] = STATE(2040), - [sym_try_statement] = STATE(2040), - [sym_unsafe_statement] = STATE(2040), - [sym_using_statement] = STATE(2040), - [sym_foreach_statement] = STATE(2040), + [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(2040), - [sym_labeled_statement] = STATE(2040), - [sym_if_statement] = STATE(2040), - [sym_while_statement] = STATE(2040), - [sym_local_declaration_statement] = STATE(2040), - [sym_local_function_statement] = STATE(2040), - [sym__local_function_declaration] = STATE(6619), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6047), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2356), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2101), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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), @@ -37386,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_compilation_unit_repeat1] = STATE(18), [aux_sym__class_declaration_initializer_repeat1] = STATE(2245), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2398), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [ts_builtin_sym_end] = ACTIONS(651), + [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), @@ -37432,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), @@ -37508,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(2008), - [sym_using_directive] = STATE(2008), - [sym_global_attribute] = STATE(2008), - [sym_attribute_list] = STATE(3449), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2008), - [sym_file_scoped_namespace_declaration] = STATE(2008), - [sym_type_declaration] = STATE(2008), - [sym_class_declaration] = STATE(2004), - [sym__class_declaration_initializer] = STATE(7811), - [sym_struct_declaration] = STATE(2004), - [sym__struct_declaration_initializer] = STATE(7548), - [sym_enum_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym__interface_declaration_initializer] = STATE(7546), - [sym_delegate_declaration] = STATE(2004), - [sym__delegate_declaration_initializer] = STATE(6945), - [sym_record_declaration] = STATE(2004), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2008), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4388), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2006), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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(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), @@ -37642,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(2239), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2391), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -37687,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), @@ -37712,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), @@ -37764,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(2008), - [sym_using_directive] = STATE(2008), - [sym_global_attribute] = STATE(2008), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2008), - [sym_file_scoped_namespace_declaration] = STATE(2008), - [sym_type_declaration] = STATE(2008), - [sym_class_declaration] = STATE(2004), - [sym__class_declaration_initializer] = STATE(7811), - [sym_struct_declaration] = STATE(2004), - [sym__struct_declaration_initializer] = STATE(7548), - [sym_enum_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym__interface_declaration_initializer] = STATE(7546), - [sym_delegate_declaration] = STATE(2004), - [sym__delegate_declaration_initializer] = STATE(6945), - [sym_record_declaration] = STATE(2004), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2008), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2006), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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(21), [sym_preproc_endregion] = STATE(21), [sym_preproc_line] = STATE(21), @@ -37898,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(2239), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2391), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -37943,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), @@ -37968,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), @@ -38003,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), @@ -38020,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(2008), - [sym_using_directive] = STATE(2008), - [sym_global_attribute] = STATE(2008), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2008), - [sym_file_scoped_namespace_declaration] = STATE(2008), - [sym_type_declaration] = STATE(2008), - [sym_class_declaration] = STATE(2004), - [sym__class_declaration_initializer] = STATE(7811), - [sym_struct_declaration] = STATE(2004), - [sym__struct_declaration_initializer] = STATE(7548), - [sym_enum_declaration] = STATE(2004), - [sym_interface_declaration] = STATE(2004), - [sym__interface_declaration_initializer] = STATE(7546), - [sym_delegate_declaration] = STATE(2004), - [sym__delegate_declaration_initializer] = STATE(6945), - [sym_record_declaration] = STATE(2004), - [sym__record_declaration_initializer] = STATE(7121), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2008), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2006), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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(22), [sym_preproc_endregion] = STATE(22), [sym_preproc_line] = STATE(22), @@ -38154,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(2239), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2391), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -38199,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), @@ -38224,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), @@ -38259,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), @@ -38276,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(3932), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -38393,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(50), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -38434,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), @@ -38510,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4003), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -38627,231 +38710,231 @@ 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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(45), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(729), - [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_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_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_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_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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(3910), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -38861,10 +38944,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(25), [sym_preproc_define] = STATE(25), [sym_preproc_undef] = STATE(25), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(56), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -38874,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(733), + [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(735), + [anon_sym_RBRACE] = ACTIONS(912), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -38902,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), @@ -38978,114 +39061,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [26] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(3979), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -39095,10 +39178,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(26), [sym_preproc_define] = STATE(26), [sym_preproc_undef] = STATE(26), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(44), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -39108,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(737), - [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(739), + [anon_sym_RBRACE] = ACTIONS(916), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -39136,40 +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_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), @@ -39212,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4042), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -39329,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(53), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -39342,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), @@ -39370,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), @@ -39446,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2166), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -39563,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_switch_section_repeat1] = STATE(41), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -39576,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), @@ -39603,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), @@ -39680,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2166), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -39797,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_switch_section_repeat1] = STATE(40), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -39810,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), @@ -39837,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), @@ -39914,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4003), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -40031,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(59), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -40044,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), @@ -40072,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), @@ -40148,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2166), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -40265,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_switch_section_repeat1] = STATE(35), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -40278,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), @@ -40305,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), @@ -40382,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2166), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -40499,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_switch_section_repeat1] = STATE(28), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -40512,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), @@ -40539,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), @@ -40616,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2166), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(33), [sym_preproc_endregion] = STATE(33), [sym_preproc_line] = STATE(33), @@ -40733,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_switch_section_repeat1] = STATE(39), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -40748,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), @@ -40773,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), @@ -40850,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4003), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -40967,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(54), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -40980,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), @@ -41008,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), @@ -41084,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2166), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(35), [sym_preproc_endregion] = STATE(35), [sym_preproc_line] = STATE(35), @@ -41201,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_switch_section_repeat1] = STATE(41), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -41216,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), @@ -41241,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), @@ -41318,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4003), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -41435,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(43), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -41448,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), @@ -41476,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), @@ -41552,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4093), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -41669,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(55), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -41682,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), @@ -41710,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), @@ -41786,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4003), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -41903,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(54), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -41916,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), @@ -41944,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), @@ -42020,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2166), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(39), [sym_preproc_endregion] = STATE(39), [sym_preproc_line] = STATE(39), @@ -42137,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_switch_section_repeat1] = STATE(41), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -42152,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), @@ -42177,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), @@ -42254,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2166), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(40), [sym_preproc_endregion] = STATE(40), [sym_preproc_line] = STATE(40), @@ -42371,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_switch_section_repeat1] = STATE(41), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -42386,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), @@ -42411,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), @@ -42488,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2166), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -42605,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_switch_section_repeat1] = STATE(41), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -42839,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(47), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -42854,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), @@ -42879,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), @@ -42955,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -43072,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -43087,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), @@ -43112,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), @@ -43188,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -43305,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -43320,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), @@ -43345,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), @@ -43421,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -43538,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -43553,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), @@ -43578,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), @@ -43654,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -43771,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(54), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -43786,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), @@ -43811,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), @@ -43887,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -44004,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -44019,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), @@ -44044,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), @@ -44120,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -44237,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), + [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(4766), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(29), @@ -44252,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), @@ -44277,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), @@ -44353,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -44470,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(45), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -44485,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), @@ -44510,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), @@ -44586,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -44703,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -44718,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), @@ -44743,506 +44826,506 @@ static const 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_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), + }, + [51] = { + [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(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), + [sym_preproc_pragma] = STATE(51), + [sym_preproc_nullable] = STATE(51), + [sym_preproc_error] = STATE(51), + [sym_preproc_warning] = STATE(51), + [sym_preproc_define] = STATE(51), + [sym_preproc_undef] = STATE(51), + [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), + [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(994), + [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_this] = 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_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), + }, + [52] = { + [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(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), + [sym_preproc_pragma] = STATE(52), + [sym_preproc_nullable] = STATE(52), + [sym_preproc_error] = STATE(52), + [sym_preproc_warning] = STATE(52), + [sym_preproc_define] = STATE(52), + [sym_preproc_undef] = STATE(52), + [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), + [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(996), + [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(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), - }, - [51] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), - [sym_preproc_region] = STATE(51), - [sym_preproc_endregion] = STATE(51), - [sym_preproc_line] = STATE(51), - [sym_preproc_pragma] = STATE(51), - [sym_preproc_nullable] = STATE(51), - [sym_preproc_error] = STATE(51), - [sym_preproc_warning] = STATE(51), - [sym_preproc_define] = STATE(51), - [sym_preproc_undef] = STATE(51), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(56), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(994), - [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), - }, - [52] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), - [sym_preproc_region] = STATE(52), - [sym_preproc_endregion] = STATE(52), - [sym_preproc_line] = STATE(52), - [sym_preproc_pragma] = STATE(52), - [sym_preproc_nullable] = STATE(52), - [sym_preproc_error] = STATE(52), - [sym_preproc_warning] = STATE(52), - [sym_preproc_define] = STATE(52), - [sym_preproc_undef] = STATE(52), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(53), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(996), - [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_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), @@ -45285,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -45402,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -45417,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), @@ -45442,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), @@ -45518,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -45635,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -45650,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), @@ -45675,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), @@ -45751,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -45868,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -45883,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), @@ -45908,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), @@ -45984,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -46101,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -46116,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), @@ -46141,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), @@ -46217,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -46334,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -46349,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), @@ -46374,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), @@ -46450,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -46567,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(50), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -46582,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), @@ -46607,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), @@ -46683,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -46800,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -46815,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), @@ -46840,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), @@ -46916,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -47033,10 +47116,243 @@ 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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(57), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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), + [sym_preproc_pragma] = STATE(61), + [sym_preproc_nullable] = STATE(61), + [sym_preproc_error] = STATE(61), + [sym_preproc_warning] = STATE(61), + [sym_preproc_define] = STATE(61), + [sym_preproc_undef] = STATE(61), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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), @@ -47048,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(1012), + [anon_sym_RBRACE] = ACTIONS(1191), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -47073,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), @@ -47148,128 +47464,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), }, - [61] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [62] = { + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), - [sym_preproc_region] = STATE(61), - [sym_preproc_endregion] = STATE(61), - [sym_preproc_line] = STATE(61), - [sym_preproc_pragma] = STATE(61), - [sym_preproc_nullable] = STATE(61), - [sym_preproc_error] = STATE(61), - [sym_preproc_warning] = STATE(61), - [sym_preproc_define] = STATE(61), - [sym_preproc_undef] = STATE(61), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(55), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), + [sym_preproc_pragma] = STATE(62), + [sym_preproc_nullable] = STATE(62), + [sym_preproc_error] = STATE(62), + [sym_preproc_warning] = STATE(62), + [sym_preproc_define] = STATE(62), + [sym_preproc_undef] = STATE(62), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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), @@ -47281,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(1014), + [anon_sym_RBRACE] = ACTIONS(1193), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -47306,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), @@ -47381,128 +47697,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), }, - [62] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [63] = { + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), - [sym_preproc_region] = STATE(62), - [sym_preproc_endregion] = STATE(62), - [sym_preproc_line] = STATE(62), - [sym_preproc_pragma] = STATE(62), - [sym_preproc_nullable] = STATE(62), - [sym_preproc_error] = STATE(62), - [sym_preproc_warning] = STATE(62), - [sym_preproc_define] = STATE(62), - [sym_preproc_undef] = STATE(62), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(44), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), + [sym_preproc_pragma] = STATE(63), + [sym_preproc_nullable] = STATE(63), + [sym_preproc_error] = STATE(63), + [sym_preproc_warning] = STATE(63), + [sym_preproc_define] = STATE(63), + [sym_preproc_undef] = STATE(63), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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), @@ -47514,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(1016), + [anon_sym_RBRACE] = ACTIONS(1195), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -47539,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), @@ -47614,128 +47930,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), }, - [63] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [64] = { + [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(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), - [sym_preproc_region] = STATE(63), - [sym_preproc_endregion] = STATE(63), - [sym_preproc_line] = STATE(63), - [sym_preproc_pragma] = STATE(63), - [sym_preproc_nullable] = STATE(63), - [sym_preproc_error] = STATE(63), - [sym_preproc_warning] = STATE(63), - [sym_preproc_define] = STATE(63), - [sym_preproc_undef] = STATE(63), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(43), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), + [sym_preproc_pragma] = STATE(64), + [sym_preproc_nullable] = STATE(64), + [sym_preproc_error] = STATE(64), + [sym_preproc_warning] = STATE(64), + [sym_preproc_define] = STATE(64), + [sym_preproc_undef] = STATE(64), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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), @@ -47747,9 +48063,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(1197), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), [anon_sym_private] = ACTIONS(657), @@ -47772,40 +48088,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), @@ -47847,348 +48163,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [64] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2167), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), - [sym_preproc_region] = STATE(64), - [sym_preproc_endregion] = STATE(64), - [sym_preproc_line] = STATE(64), - [sym_preproc_pragma] = STATE(64), - [sym_preproc_nullable] = STATE(64), - [sym_preproc_error] = STATE(64), - [sym_preproc_warning] = STATE(64), - [sym_preproc_define] = STATE(64), - [sym_preproc_undef] = STATE(64), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym_block_repeat1] = STATE(64), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), - }, [65] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2040), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2050), - [sym_break_statement] = STATE(2040), - [sym_checked_statement] = STATE(2040), - [sym_continue_statement] = STATE(2040), - [sym_do_statement] = STATE(2040), - [sym_empty_statement] = STATE(2040), - [sym_expression_statement] = STATE(2040), - [sym_fixed_statement] = STATE(2040), - [sym_for_statement] = STATE(2040), - [sym_return_statement] = STATE(2040), - [sym_lock_statement] = STATE(2040), - [sym_yield_statement] = STATE(2040), - [sym_switch_statement] = STATE(2040), - [sym_throw_statement] = STATE(2040), - [sym_try_statement] = STATE(2040), - [sym_unsafe_statement] = STATE(2040), - [sym_using_statement] = STATE(2040), - [sym_foreach_statement] = STATE(2040), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2040), - [sym_labeled_statement] = STATE(2040), - [sym_if_statement] = STATE(2040), - [sym_while_statement] = STATE(2040), - [sym_local_declaration_statement] = STATE(2040), - [sym_local_function_statement] = STATE(2040), - [sym__local_function_declaration] = STATE(6619), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6047), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2356), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2040), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -48198,9 +48281,240 @@ 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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2607), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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_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), + }, + [66] = { + [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(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), + [sym_preproc_pragma] = STATE(66), + [sym_preproc_nullable] = STATE(66), + [sym_preproc_error] = STATE(66), + [sym_preproc_warning] = STATE(66), + [sym_preproc_define] = STATE(66), + [sym_preproc_undef] = STATE(66), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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), @@ -48212,7 +48526,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), @@ -48236,40 +48550,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), @@ -48311,346 +48625,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [66] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7589), - [sym_variable_declaration] = STATE(7808), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(7439), - [sym_break_statement] = STATE(7589), - [sym_checked_statement] = STATE(7589), - [sym_continue_statement] = STATE(7589), - [sym_do_statement] = STATE(7589), - [sym_empty_statement] = STATE(7589), - [sym_expression_statement] = STATE(7589), - [sym_fixed_statement] = STATE(7589), - [sym_for_statement] = STATE(7589), - [sym_return_statement] = STATE(7589), - [sym_lock_statement] = STATE(7589), - [sym_yield_statement] = STATE(7589), - [sym_switch_statement] = STATE(7589), - [sym_throw_statement] = STATE(7589), - [sym_try_statement] = STATE(7589), - [sym_unsafe_statement] = STATE(7589), - [sym_using_statement] = STATE(7589), - [sym_foreach_statement] = STATE(7589), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7589), - [sym_labeled_statement] = STATE(7589), - [sym_if_statement] = STATE(7589), - [sym_while_statement] = STATE(7589), - [sym_local_declaration_statement] = STATE(7589), - [sym_local_function_statement] = STATE(7589), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2377), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7589), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), - [sym_preproc_region] = STATE(66), - [sym_preproc_endregion] = STATE(66), - [sym_preproc_line] = STATE(66), - [sym_preproc_pragma] = STATE(66), - [sym_preproc_nullable] = STATE(66), - [sym_preproc_error] = STATE(66), - [sym_preproc_warning] = STATE(66), - [sym_preproc_define] = STATE(66), - [sym_preproc_undef] = STATE(66), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2600), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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_BANG] = ACTIONS(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [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_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_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), - }, [67] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7589), - [sym_variable_declaration] = STATE(7808), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(7716), - [sym_break_statement] = STATE(7589), - [sym_checked_statement] = STATE(7589), - [sym_continue_statement] = STATE(7589), - [sym_do_statement] = STATE(7589), - [sym_empty_statement] = STATE(7589), - [sym_expression_statement] = STATE(7589), - [sym_fixed_statement] = STATE(7589), - [sym_for_statement] = STATE(7589), - [sym_return_statement] = STATE(7589), - [sym_lock_statement] = STATE(7589), - [sym_yield_statement] = STATE(7589), - [sym_switch_statement] = STATE(7589), - [sym_throw_statement] = STATE(7589), - [sym_try_statement] = STATE(7589), - [sym_unsafe_statement] = STATE(7589), - [sym_using_statement] = STATE(7589), - [sym_foreach_statement] = STATE(7589), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7589), - [sym_labeled_statement] = STATE(7589), - [sym_if_statement] = STATE(7589), - [sym_while_statement] = STATE(7589), - [sym_local_declaration_statement] = STATE(7589), - [sym_local_function_statement] = STATE(7589), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2377), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7589), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -48660,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2600), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -48684,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), @@ -48697,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), @@ -48756,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), @@ -48774,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7589), - [sym_variable_declaration] = STATE(7808), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(7753), - [sym_break_statement] = STATE(7589), - [sym_checked_statement] = STATE(7589), - [sym_continue_statement] = STATE(7589), - [sym_do_statement] = STATE(7589), - [sym_empty_statement] = STATE(7589), - [sym_expression_statement] = STATE(7589), - [sym_fixed_statement] = STATE(7589), - [sym_for_statement] = STATE(7589), - [sym_return_statement] = STATE(7589), - [sym_lock_statement] = STATE(7589), - [sym_yield_statement] = STATE(7589), - [sym_switch_statement] = STATE(7589), - [sym_throw_statement] = STATE(7589), - [sym_try_statement] = STATE(7589), - [sym_unsafe_statement] = STATE(7589), - [sym_using_statement] = STATE(7589), - [sym_foreach_statement] = STATE(7589), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7589), - [sym_labeled_statement] = STATE(7589), - [sym_if_statement] = STATE(7589), - [sym_while_statement] = STATE(7589), - [sym_local_declaration_statement] = STATE(7589), - [sym_local_function_statement] = STATE(7589), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2377), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7589), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -48891,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2600), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -48915,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), @@ -48928,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), @@ -48987,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), @@ -49005,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2162), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -49122,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -49146,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), @@ -49159,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), @@ -49218,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), @@ -49236,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2121), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -49353,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -49377,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), @@ -49390,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), @@ -49449,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), @@ -49467,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2146), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -49584,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -49608,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), @@ -49621,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), @@ -49680,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), @@ -49698,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2133), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -49815,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -49839,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), @@ -49852,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), @@ -49911,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), @@ -49929,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2122), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -50046,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -50060,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), @@ -50084,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), @@ -50160,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2120), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -50277,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -50301,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), @@ -50314,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), @@ -50373,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), @@ -50391,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2132), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -50508,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -50532,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), @@ -50545,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), @@ -50604,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), @@ -50622,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2143), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -50739,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -50763,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), @@ -50776,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), @@ -50835,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), @@ -50853,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2144), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -50970,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -50984,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), @@ -51008,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), @@ -51084,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2135), - [sym_variable_declaration] = STATE(8109), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2163), - [sym_break_statement] = STATE(2135), - [sym_checked_statement] = STATE(2135), - [sym_continue_statement] = STATE(2135), - [sym_do_statement] = STATE(2135), - [sym_empty_statement] = STATE(2135), - [sym_expression_statement] = STATE(2135), - [sym_fixed_statement] = STATE(2135), - [sym_for_statement] = STATE(2135), - [sym_return_statement] = STATE(2135), - [sym_lock_statement] = STATE(2135), - [sym_yield_statement] = STATE(2135), - [sym_switch_statement] = STATE(2135), - [sym_throw_statement] = STATE(2135), - [sym_try_statement] = STATE(2135), - [sym_unsafe_statement] = STATE(2135), - [sym_using_statement] = STATE(2135), - [sym_foreach_statement] = STATE(2135), - [sym__foreach_statement_initializer] = STATE(69), - [sym_goto_statement] = STATE(2135), - [sym_labeled_statement] = STATE(2135), - [sym_if_statement] = STATE(2135), - [sym_while_statement] = STATE(2135), - [sym_local_declaration_statement] = STATE(2135), - [sym_local_function_statement] = STATE(2135), - [sym__local_function_declaration] = STATE(6601), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5943), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2323), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2135), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -51201,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2591), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -51225,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), @@ -51238,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), @@ -51297,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), @@ -51315,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2040), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2041), - [sym_break_statement] = STATE(2040), - [sym_checked_statement] = STATE(2040), - [sym_continue_statement] = STATE(2040), - [sym_do_statement] = STATE(2040), - [sym_empty_statement] = STATE(2040), - [sym_expression_statement] = STATE(2040), - [sym_fixed_statement] = STATE(2040), - [sym_for_statement] = STATE(2040), - [sym_return_statement] = STATE(2040), - [sym_lock_statement] = STATE(2040), - [sym_yield_statement] = STATE(2040), - [sym_switch_statement] = STATE(2040), - [sym_throw_statement] = STATE(2040), - [sym_try_statement] = STATE(2040), - [sym_unsafe_statement] = STATE(2040), - [sym_using_statement] = STATE(2040), - [sym_foreach_statement] = STATE(2040), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2040), - [sym_labeled_statement] = STATE(2040), - [sym_if_statement] = STATE(2040), - [sym_while_statement] = STATE(2040), - [sym_local_declaration_statement] = STATE(2040), - [sym_local_function_statement] = STATE(2040), - [sym__local_function_declaration] = STATE(6619), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6047), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2356), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2040), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -51432,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2607), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -51456,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), @@ -51469,272 +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_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [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_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(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(1205), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [80] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7589), - [sym_variable_declaration] = STATE(7808), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(8062), - [sym_break_statement] = STATE(7589), - [sym_checked_statement] = STATE(7589), - [sym_continue_statement] = STATE(7589), - [sym_do_statement] = STATE(7589), - [sym_empty_statement] = STATE(7589), - [sym_expression_statement] = STATE(7589), - [sym_fixed_statement] = STATE(7589), - [sym_for_statement] = STATE(7589), - [sym_return_statement] = STATE(7589), - [sym_lock_statement] = STATE(7589), - [sym_yield_statement] = STATE(7589), - [sym_switch_statement] = STATE(7589), - [sym_throw_statement] = STATE(7589), - [sym_try_statement] = STATE(7589), - [sym_unsafe_statement] = STATE(7589), - [sym_using_statement] = STATE(7589), - [sym_foreach_statement] = STATE(7589), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7589), - [sym_labeled_statement] = STATE(7589), - [sym_if_statement] = STATE(7589), - [sym_while_statement] = STATE(7589), - [sym_local_declaration_statement] = STATE(7589), - [sym_local_function_statement] = STATE(7589), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2377), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7589), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), - [sym_preproc_region] = STATE(80), - [sym_preproc_endregion] = STATE(80), - [sym_preproc_line] = STATE(80), - [sym_preproc_pragma] = STATE(80), - [sym_preproc_nullable] = STATE(80), - [sym_preproc_error] = STATE(80), - [sym_preproc_warning] = STATE(80), - [sym_preproc_define] = STATE(80), - [sym_preproc_undef] = STATE(80), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2600), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -51759,8 +51611,239 @@ static const uint16_t ts_parse_table[LARGE_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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [80] = { + [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(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), + [sym_preproc_pragma] = STATE(80), + [sym_preproc_nullable] = STATE(80), + [sym_preproc_error] = STATE(80), + [sym_preproc_warning] = STATE(80), + [sym_preproc_define] = STATE(80), + [sym_preproc_undef] = STATE(80), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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(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_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), @@ -51777,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(1985), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1998), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -51894,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2609), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -51918,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), @@ -51931,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), @@ -51990,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), @@ -52008,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2040), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2039), - [sym_break_statement] = STATE(2040), - [sym_checked_statement] = STATE(2040), - [sym_continue_statement] = STATE(2040), - [sym_do_statement] = STATE(2040), - [sym_empty_statement] = STATE(2040), - [sym_expression_statement] = STATE(2040), - [sym_fixed_statement] = STATE(2040), - [sym_for_statement] = STATE(2040), - [sym_return_statement] = STATE(2040), - [sym_lock_statement] = STATE(2040), - [sym_yield_statement] = STATE(2040), - [sym_switch_statement] = STATE(2040), - [sym_throw_statement] = STATE(2040), - [sym_try_statement] = STATE(2040), - [sym_unsafe_statement] = STATE(2040), - [sym_using_statement] = STATE(2040), - [sym_foreach_statement] = STATE(2040), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2040), - [sym_labeled_statement] = STATE(2040), - [sym_if_statement] = STATE(2040), - [sym_while_statement] = STATE(2040), - [sym_local_declaration_statement] = STATE(2040), - [sym_local_function_statement] = STATE(2040), - [sym__local_function_declaration] = STATE(6619), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6047), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2356), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2040), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -52125,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2607), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -52149,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), @@ -52162,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), @@ -52221,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), @@ -52239,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2040), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2067), - [sym_break_statement] = STATE(2040), - [sym_checked_statement] = STATE(2040), - [sym_continue_statement] = STATE(2040), - [sym_do_statement] = STATE(2040), - [sym_empty_statement] = STATE(2040), - [sym_expression_statement] = STATE(2040), - [sym_fixed_statement] = STATE(2040), - [sym_for_statement] = STATE(2040), - [sym_return_statement] = STATE(2040), - [sym_lock_statement] = STATE(2040), - [sym_yield_statement] = STATE(2040), - [sym_switch_statement] = STATE(2040), - [sym_throw_statement] = STATE(2040), - [sym_try_statement] = STATE(2040), - [sym_unsafe_statement] = STATE(2040), - [sym_using_statement] = STATE(2040), - [sym_foreach_statement] = STATE(2040), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2040), - [sym_labeled_statement] = STATE(2040), - [sym_if_statement] = STATE(2040), - [sym_while_statement] = STATE(2040), - [sym_local_declaration_statement] = STATE(2040), - [sym_local_function_statement] = STATE(2040), - [sym__local_function_declaration] = STATE(6619), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6047), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2356), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2040), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -52356,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2607), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -52380,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), @@ -52393,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), @@ -52452,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), @@ -52470,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2040), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2049), - [sym_break_statement] = STATE(2040), - [sym_checked_statement] = STATE(2040), - [sym_continue_statement] = STATE(2040), - [sym_do_statement] = STATE(2040), - [sym_empty_statement] = STATE(2040), - [sym_expression_statement] = STATE(2040), - [sym_fixed_statement] = STATE(2040), - [sym_for_statement] = STATE(2040), - [sym_return_statement] = STATE(2040), - [sym_lock_statement] = STATE(2040), - [sym_yield_statement] = STATE(2040), - [sym_switch_statement] = STATE(2040), - [sym_throw_statement] = STATE(2040), - [sym_try_statement] = STATE(2040), - [sym_unsafe_statement] = STATE(2040), - [sym_using_statement] = STATE(2040), - [sym_foreach_statement] = STATE(2040), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2040), - [sym_labeled_statement] = STATE(2040), - [sym_if_statement] = STATE(2040), - [sym_while_statement] = STATE(2040), - [sym_local_declaration_statement] = STATE(2040), - [sym_local_function_statement] = STATE(2040), - [sym__local_function_declaration] = STATE(6619), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6047), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2356), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2040), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -52587,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2607), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -52611,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), @@ -52624,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), @@ -52683,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), @@ -52701,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7589), - [sym_variable_declaration] = STATE(7808), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(7532), - [sym_break_statement] = STATE(7589), - [sym_checked_statement] = STATE(7589), - [sym_continue_statement] = STATE(7589), - [sym_do_statement] = STATE(7589), - [sym_empty_statement] = STATE(7589), - [sym_expression_statement] = STATE(7589), - [sym_fixed_statement] = STATE(7589), - [sym_for_statement] = STATE(7589), - [sym_return_statement] = STATE(7589), - [sym_lock_statement] = STATE(7589), - [sym_yield_statement] = STATE(7589), - [sym_switch_statement] = STATE(7589), - [sym_throw_statement] = STATE(7589), - [sym_try_statement] = STATE(7589), - [sym_unsafe_statement] = STATE(7589), - [sym_using_statement] = STATE(7589), - [sym_foreach_statement] = STATE(7589), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7589), - [sym_labeled_statement] = STATE(7589), - [sym_if_statement] = STATE(7589), - [sym_while_statement] = STATE(7589), - [sym_local_declaration_statement] = STATE(7589), - [sym_local_function_statement] = STATE(7589), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2377), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7589), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -52818,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2600), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -52842,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), @@ -52855,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), @@ -52914,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), @@ -52932,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7589), - [sym_variable_declaration] = STATE(7808), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(7502), - [sym_break_statement] = STATE(7589), - [sym_checked_statement] = STATE(7589), - [sym_continue_statement] = STATE(7589), - [sym_do_statement] = STATE(7589), - [sym_empty_statement] = STATE(7589), - [sym_expression_statement] = STATE(7589), - [sym_fixed_statement] = STATE(7589), - [sym_for_statement] = STATE(7589), - [sym_return_statement] = STATE(7589), - [sym_lock_statement] = STATE(7589), - [sym_yield_statement] = STATE(7589), - [sym_switch_statement] = STATE(7589), - [sym_throw_statement] = STATE(7589), - [sym_try_statement] = STATE(7589), - [sym_unsafe_statement] = STATE(7589), - [sym_using_statement] = STATE(7589), - [sym_foreach_statement] = STATE(7589), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7589), - [sym_labeled_statement] = STATE(7589), - [sym_if_statement] = STATE(7589), - [sym_while_statement] = STATE(7589), - [sym_local_declaration_statement] = STATE(7589), - [sym_local_function_statement] = STATE(7589), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2377), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7589), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -53049,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2600), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -53073,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), @@ -53086,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), @@ -53145,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), @@ -53163,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2040), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2068), - [sym_break_statement] = STATE(2040), - [sym_checked_statement] = STATE(2040), - [sym_continue_statement] = STATE(2040), - [sym_do_statement] = STATE(2040), - [sym_empty_statement] = STATE(2040), - [sym_expression_statement] = STATE(2040), - [sym_fixed_statement] = STATE(2040), - [sym_for_statement] = STATE(2040), - [sym_return_statement] = STATE(2040), - [sym_lock_statement] = STATE(2040), - [sym_yield_statement] = STATE(2040), - [sym_switch_statement] = STATE(2040), - [sym_throw_statement] = STATE(2040), - [sym_try_statement] = STATE(2040), - [sym_unsafe_statement] = STATE(2040), - [sym_using_statement] = STATE(2040), - [sym_foreach_statement] = STATE(2040), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2040), - [sym_labeled_statement] = STATE(2040), - [sym_if_statement] = STATE(2040), - [sym_while_statement] = STATE(2040), - [sym_local_declaration_statement] = STATE(2040), - [sym_local_function_statement] = STATE(2040), - [sym__local_function_declaration] = STATE(6619), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6047), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2356), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2040), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -53280,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2607), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -53304,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), @@ -53317,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), @@ -53376,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), @@ -53394,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2040), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2076), - [sym_break_statement] = STATE(2040), - [sym_checked_statement] = STATE(2040), - [sym_continue_statement] = STATE(2040), - [sym_do_statement] = STATE(2040), - [sym_empty_statement] = STATE(2040), - [sym_expression_statement] = STATE(2040), - [sym_fixed_statement] = STATE(2040), - [sym_for_statement] = STATE(2040), - [sym_return_statement] = STATE(2040), - [sym_lock_statement] = STATE(2040), - [sym_yield_statement] = STATE(2040), - [sym_switch_statement] = STATE(2040), - [sym_throw_statement] = STATE(2040), - [sym_try_statement] = STATE(2040), - [sym_unsafe_statement] = STATE(2040), - [sym_using_statement] = STATE(2040), - [sym_foreach_statement] = STATE(2040), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2040), - [sym_labeled_statement] = STATE(2040), - [sym_if_statement] = STATE(2040), - [sym_while_statement] = STATE(2040), - [sym_local_declaration_statement] = STATE(2040), - [sym_local_function_statement] = STATE(2040), - [sym__local_function_declaration] = STATE(6619), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6047), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2356), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2040), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -53511,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2607), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -53535,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), @@ -53548,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), @@ -53607,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), @@ -53625,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(1982), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1998), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -53742,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2609), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -53766,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), @@ -53779,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), @@ -53838,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), @@ -53856,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7589), - [sym_variable_declaration] = STATE(7808), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(7486), - [sym_break_statement] = STATE(7589), - [sym_checked_statement] = STATE(7589), - [sym_continue_statement] = STATE(7589), - [sym_do_statement] = STATE(7589), - [sym_empty_statement] = STATE(7589), - [sym_expression_statement] = STATE(7589), - [sym_fixed_statement] = STATE(7589), - [sym_for_statement] = STATE(7589), - [sym_return_statement] = STATE(7589), - [sym_lock_statement] = STATE(7589), - [sym_yield_statement] = STATE(7589), - [sym_switch_statement] = STATE(7589), - [sym_throw_statement] = STATE(7589), - [sym_try_statement] = STATE(7589), - [sym_unsafe_statement] = STATE(7589), - [sym_using_statement] = STATE(7589), - [sym_foreach_statement] = STATE(7589), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7589), - [sym_labeled_statement] = STATE(7589), - [sym_if_statement] = STATE(7589), - [sym_while_statement] = STATE(7589), - [sym_local_declaration_statement] = STATE(7589), - [sym_local_function_statement] = STATE(7589), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2377), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7589), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -53973,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2600), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -53997,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), @@ -54010,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), @@ -54069,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), @@ -54087,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7589), - [sym_variable_declaration] = STATE(7808), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(8046), - [sym_break_statement] = STATE(7589), - [sym_checked_statement] = STATE(7589), - [sym_continue_statement] = STATE(7589), - [sym_do_statement] = STATE(7589), - [sym_empty_statement] = STATE(7589), - [sym_expression_statement] = STATE(7589), - [sym_fixed_statement] = STATE(7589), - [sym_for_statement] = STATE(7589), - [sym_return_statement] = STATE(7589), - [sym_lock_statement] = STATE(7589), - [sym_yield_statement] = STATE(7589), - [sym_switch_statement] = STATE(7589), - [sym_throw_statement] = STATE(7589), - [sym_try_statement] = STATE(7589), - [sym_unsafe_statement] = STATE(7589), - [sym_using_statement] = STATE(7589), - [sym_foreach_statement] = STATE(7589), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7589), - [sym_labeled_statement] = STATE(7589), - [sym_if_statement] = STATE(7589), - [sym_while_statement] = STATE(7589), - [sym_local_declaration_statement] = STATE(7589), - [sym_local_function_statement] = STATE(7589), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2377), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7589), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -54204,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2600), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -54228,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), @@ -54241,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), @@ -54300,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), @@ -54318,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7589), - [sym_variable_declaration] = STATE(7808), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(7437), - [sym_break_statement] = STATE(7589), - [sym_checked_statement] = STATE(7589), - [sym_continue_statement] = STATE(7589), - [sym_do_statement] = STATE(7589), - [sym_empty_statement] = STATE(7589), - [sym_expression_statement] = STATE(7589), - [sym_fixed_statement] = STATE(7589), - [sym_for_statement] = STATE(7589), - [sym_return_statement] = STATE(7589), - [sym_lock_statement] = STATE(7589), - [sym_yield_statement] = STATE(7589), - [sym_switch_statement] = STATE(7589), - [sym_throw_statement] = STATE(7589), - [sym_try_statement] = STATE(7589), - [sym_unsafe_statement] = STATE(7589), - [sym_using_statement] = STATE(7589), - [sym_foreach_statement] = STATE(7589), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7589), - [sym_labeled_statement] = STATE(7589), - [sym_if_statement] = STATE(7589), - [sym_while_statement] = STATE(7589), - [sym_local_declaration_statement] = STATE(7589), - [sym_local_function_statement] = STATE(7589), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2377), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7589), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -54435,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2600), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -54459,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), @@ -54472,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), @@ -54531,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), @@ -54549,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7589), - [sym_variable_declaration] = STATE(7808), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(7433), - [sym_break_statement] = STATE(7589), - [sym_checked_statement] = STATE(7589), - [sym_continue_statement] = STATE(7589), - [sym_do_statement] = STATE(7589), - [sym_empty_statement] = STATE(7589), - [sym_expression_statement] = STATE(7589), - [sym_fixed_statement] = STATE(7589), - [sym_for_statement] = STATE(7589), - [sym_return_statement] = STATE(7589), - [sym_lock_statement] = STATE(7589), - [sym_yield_statement] = STATE(7589), - [sym_switch_statement] = STATE(7589), - [sym_throw_statement] = STATE(7589), - [sym_try_statement] = STATE(7589), - [sym_unsafe_statement] = STATE(7589), - [sym_using_statement] = STATE(7589), - [sym_foreach_statement] = STATE(7589), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7589), - [sym_labeled_statement] = STATE(7589), - [sym_if_statement] = STATE(7589), - [sym_while_statement] = STATE(7589), - [sym_local_declaration_statement] = STATE(7589), - [sym_local_function_statement] = STATE(7589), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2377), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7589), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -54666,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2600), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -54690,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), @@ -54703,41 +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_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), @@ -54762,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), @@ -54780,114 +54863,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [94] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7589), - [sym_variable_declaration] = STATE(7808), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(7431), - [sym_break_statement] = STATE(7589), - [sym_checked_statement] = STATE(7589), - [sym_continue_statement] = STATE(7589), - [sym_do_statement] = STATE(7589), - [sym_empty_statement] = STATE(7589), - [sym_expression_statement] = STATE(7589), - [sym_fixed_statement] = STATE(7589), - [sym_for_statement] = STATE(7589), - [sym_return_statement] = STATE(7589), - [sym_lock_statement] = STATE(7589), - [sym_yield_statement] = STATE(7589), - [sym_switch_statement] = STATE(7589), - [sym_throw_statement] = STATE(7589), - [sym_try_statement] = STATE(7589), - [sym_unsafe_statement] = STATE(7589), - [sym_using_statement] = STATE(7589), - [sym_foreach_statement] = STATE(7589), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7589), - [sym_labeled_statement] = STATE(7589), - [sym_if_statement] = STATE(7589), - [sym_while_statement] = STATE(7589), - [sym_local_declaration_statement] = STATE(7589), - [sym_local_function_statement] = STATE(7589), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2377), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7589), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -54897,22 +54980,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(94), [sym_preproc_define] = STATE(94), [sym_preproc_undef] = STATE(94), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2600), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -54921,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), @@ -54934,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), @@ -54993,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), @@ -55011,114 +55094,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [95] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7589), - [sym_variable_declaration] = STATE(7808), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(7425), - [sym_break_statement] = STATE(7589), - [sym_checked_statement] = STATE(7589), - [sym_continue_statement] = STATE(7589), - [sym_do_statement] = STATE(7589), - [sym_empty_statement] = STATE(7589), - [sym_expression_statement] = STATE(7589), - [sym_fixed_statement] = STATE(7589), - [sym_for_statement] = STATE(7589), - [sym_return_statement] = STATE(7589), - [sym_lock_statement] = STATE(7589), - [sym_yield_statement] = STATE(7589), - [sym_switch_statement] = STATE(7589), - [sym_throw_statement] = STATE(7589), - [sym_try_statement] = STATE(7589), - [sym_unsafe_statement] = STATE(7589), - [sym_using_statement] = STATE(7589), - [sym_foreach_statement] = STATE(7589), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7589), - [sym_labeled_statement] = STATE(7589), - [sym_if_statement] = STATE(7589), - [sym_while_statement] = STATE(7589), - [sym_local_declaration_statement] = STATE(7589), - [sym_local_function_statement] = STATE(7589), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2377), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7589), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -55128,22 +55211,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(95), [sym_preproc_define] = STATE(95), [sym_preproc_undef] = STATE(95), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2600), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -55152,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), @@ -55165,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), @@ -55224,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), @@ -55242,114 +55325,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [96] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7589), - [sym_variable_declaration] = STATE(7808), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(7413), - [sym_break_statement] = STATE(7589), - [sym_checked_statement] = STATE(7589), - [sym_continue_statement] = STATE(7589), - [sym_do_statement] = STATE(7589), - [sym_empty_statement] = STATE(7589), - [sym_expression_statement] = STATE(7589), - [sym_fixed_statement] = STATE(7589), - [sym_for_statement] = STATE(7589), - [sym_return_statement] = STATE(7589), - [sym_lock_statement] = STATE(7589), - [sym_yield_statement] = STATE(7589), - [sym_switch_statement] = STATE(7589), - [sym_throw_statement] = STATE(7589), - [sym_try_statement] = STATE(7589), - [sym_unsafe_statement] = STATE(7589), - [sym_using_statement] = STATE(7589), - [sym_foreach_statement] = STATE(7589), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7589), - [sym_labeled_statement] = STATE(7589), - [sym_if_statement] = STATE(7589), - [sym_while_statement] = STATE(7589), - [sym_local_declaration_statement] = STATE(7589), - [sym_local_function_statement] = STATE(7589), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2377), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7589), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -55359,22 +55442,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(96), [sym_preproc_define] = STATE(96), [sym_preproc_undef] = STATE(96), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2600), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -55383,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), @@ -55396,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), @@ -55455,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), @@ -55473,114 +55556,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [97] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(7589), - [sym_variable_declaration] = STATE(7808), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(7396), - [sym_break_statement] = STATE(7589), - [sym_checked_statement] = STATE(7589), - [sym_continue_statement] = STATE(7589), - [sym_do_statement] = STATE(7589), - [sym_empty_statement] = STATE(7589), - [sym_expression_statement] = STATE(7589), - [sym_fixed_statement] = STATE(7589), - [sym_for_statement] = STATE(7589), - [sym_return_statement] = STATE(7589), - [sym_lock_statement] = STATE(7589), - [sym_yield_statement] = STATE(7589), - [sym_switch_statement] = STATE(7589), - [sym_throw_statement] = STATE(7589), - [sym_try_statement] = STATE(7589), - [sym_unsafe_statement] = STATE(7589), - [sym_using_statement] = STATE(7589), - [sym_foreach_statement] = STATE(7589), - [sym__foreach_statement_initializer] = STATE(85), - [sym_goto_statement] = STATE(7589), - [sym_labeled_statement] = STATE(7589), - [sym_if_statement] = STATE(7589), - [sym_while_statement] = STATE(7589), - [sym_local_declaration_statement] = STATE(7589), - [sym_local_function_statement] = STATE(7589), - [sym__local_function_declaration] = STATE(6621), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6029), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2377), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(7589), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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(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), @@ -55590,22 +55673,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(97), [sym_preproc_define] = STATE(97), [sym_preproc_undef] = STATE(97), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2600), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -55614,7 +55697,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), @@ -55627,41 +55710,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), @@ -55686,8 +55769,8 @@ static const uint16_t ts_parse_table[LARGE_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), @@ -55704,114 +55787,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [98] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2040), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2071), - [sym_break_statement] = STATE(2040), - [sym_checked_statement] = STATE(2040), - [sym_continue_statement] = STATE(2040), - [sym_do_statement] = STATE(2040), - [sym_empty_statement] = STATE(2040), - [sym_expression_statement] = STATE(2040), - [sym_fixed_statement] = STATE(2040), - [sym_for_statement] = STATE(2040), - [sym_return_statement] = STATE(2040), - [sym_lock_statement] = STATE(2040), - [sym_yield_statement] = STATE(2040), - [sym_switch_statement] = STATE(2040), - [sym_throw_statement] = STATE(2040), - [sym_try_statement] = STATE(2040), - [sym_unsafe_statement] = STATE(2040), - [sym_using_statement] = STATE(2040), - [sym_foreach_statement] = STATE(2040), - [sym__foreach_statement_initializer] = STATE(105), - [sym_goto_statement] = STATE(2040), - [sym_labeled_statement] = STATE(2040), - [sym_if_statement] = STATE(2040), - [sym_while_statement] = STATE(2040), - [sym_local_declaration_statement] = STATE(2040), - [sym_local_function_statement] = STATE(2040), - [sym__local_function_declaration] = STATE(6619), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6047), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2356), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2040), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -55821,22 +55904,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(98), [sym_preproc_define] = STATE(98), [sym_preproc_undef] = STATE(98), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2607), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -55845,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(1203), + [anon_sym_fixed] = ACTIONS(1225), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -55858,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(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), @@ -55917,8 +56000,8 @@ static const uint16_t ts_parse_table[LARGE_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), @@ -55935,114 +56018,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [99] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(1988), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1998), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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(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), @@ -56052,21 +56135,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(99), [sym_preproc_define] = STATE(99), [sym_preproc_undef] = STATE(99), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2609), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -56076,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), @@ -56090,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), @@ -56115,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), @@ -56149,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), @@ -56166,114 +56249,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [100] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(1950), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1998), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -56283,22 +56366,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(100), [sym_preproc_define] = STATE(100), [sym_preproc_undef] = STATE(100), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2609), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -56307,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(1255), + [anon_sym_fixed] = ACTIONS(685), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(687), [anon_sym_override] = ACTIONS(657), @@ -56320,41 +56403,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), @@ -56379,8 +56462,8 @@ static const uint16_t ts_parse_table[LARGE_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), @@ -56397,114 +56480,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [101] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2040), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2046), - [sym_break_statement] = STATE(2040), - [sym_checked_statement] = STATE(2040), - [sym_continue_statement] = STATE(2040), - [sym_do_statement] = STATE(2040), - [sym_empty_statement] = STATE(2040), - [sym_expression_statement] = STATE(2040), - [sym_fixed_statement] = STATE(2040), - [sym_for_statement] = STATE(2040), - [sym_return_statement] = STATE(2040), - [sym_lock_statement] = STATE(2040), - [sym_yield_statement] = STATE(2040), - [sym_switch_statement] = STATE(2040), - [sym_throw_statement] = STATE(2040), - [sym_try_statement] = STATE(2040), - [sym_unsafe_statement] = STATE(2040), - [sym_using_statement] = STATE(2040), - [sym_foreach_statement] = STATE(2040), + [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(2040), - [sym_labeled_statement] = STATE(2040), - [sym_if_statement] = STATE(2040), - [sym_while_statement] = STATE(2040), - [sym_local_declaration_statement] = STATE(2040), - [sym_local_function_statement] = STATE(2040), - [sym__local_function_declaration] = STATE(6619), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6047), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2356), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2040), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -56514,9 +56597,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(101), [sym_preproc_define] = STATE(101), [sym_preproc_undef] = STATE(101), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2607), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -56528,7 +56611,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), @@ -56552,40 +56635,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), @@ -56628,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(1958), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1998), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -56745,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2609), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -56769,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), @@ -56782,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), @@ -56841,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), @@ -56859,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(1969), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1998), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -56976,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2609), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -57000,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), @@ -57013,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), @@ -57072,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), @@ -57090,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(1970), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1998), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -57207,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2609), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -57231,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), @@ -57244,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), @@ -57303,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), @@ -57321,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(2040), - [sym_variable_declaration] = STATE(7648), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(2029), - [sym_break_statement] = STATE(2040), - [sym_checked_statement] = STATE(2040), - [sym_continue_statement] = STATE(2040), - [sym_do_statement] = STATE(2040), - [sym_empty_statement] = STATE(2040), - [sym_expression_statement] = STATE(2040), - [sym_fixed_statement] = STATE(2040), - [sym_for_statement] = STATE(2040), - [sym_return_statement] = STATE(2040), - [sym_lock_statement] = STATE(2040), - [sym_yield_statement] = STATE(2040), - [sym_switch_statement] = STATE(2040), - [sym_throw_statement] = STATE(2040), - [sym_try_statement] = STATE(2040), - [sym_unsafe_statement] = STATE(2040), - [sym_using_statement] = STATE(2040), - [sym_foreach_statement] = STATE(2040), + [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(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(2040), - [sym_labeled_statement] = STATE(2040), - [sym_if_statement] = STATE(2040), - [sym_while_statement] = STATE(2040), - [sym_local_declaration_statement] = STATE(2040), - [sym_local_function_statement] = STATE(2040), - [sym__local_function_declaration] = STATE(6619), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(6047), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2356), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(2040), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -57438,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2607), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -57452,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), @@ -57476,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), @@ -57552,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(1971), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1998), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -57669,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2609), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -57693,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), @@ -57706,272 +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_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [anon_sym_CARET] = 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_this] = 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_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [107] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(1972), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1998), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), - [sym_preproc_region] = STATE(107), - [sym_preproc_endregion] = STATE(107), - [sym_preproc_line] = STATE(107), - [sym_preproc_pragma] = STATE(107), - [sym_preproc_nullable] = STATE(107), - [sym_preproc_error] = STATE(107), - [sym_preproc_warning] = STATE(107), - [sym_preproc_define] = STATE(107), - [sym_preproc_undef] = STATE(107), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2609), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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_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_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(1255), - [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(183), + [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(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), @@ -57996,8 +57848,239 @@ static const uint16_t ts_parse_table[LARGE_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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [107] = { + [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(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), + [sym_preproc_pragma] = STATE(107), + [sym_preproc_nullable] = STATE(107), + [sym_preproc_error] = STATE(107), + [sym_preproc_warning] = STATE(107), + [sym_preproc_define] = STATE(107), + [sym_preproc_undef] = STATE(107), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_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(1205), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -58014,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(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(1998), - [sym_variable_declaration] = STATE(7849), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6093), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_statement] = STATE(1977), - [sym_break_statement] = STATE(1998), - [sym_checked_statement] = STATE(1998), - [sym_continue_statement] = STATE(1998), - [sym_do_statement] = STATE(1998), - [sym_empty_statement] = STATE(1998), - [sym_expression_statement] = STATE(1998), - [sym_fixed_statement] = STATE(1998), - [sym_for_statement] = STATE(1998), - [sym_return_statement] = STATE(1998), - [sym_lock_statement] = STATE(1998), - [sym_yield_statement] = STATE(1998), - [sym_switch_statement] = STATE(1998), - [sym_throw_statement] = STATE(1998), - [sym_try_statement] = STATE(1998), - [sym_unsafe_statement] = STATE(1998), - [sym_using_statement] = STATE(1998), - [sym_foreach_statement] = STATE(1998), - [sym__foreach_statement_initializer] = STATE(99), - [sym_goto_statement] = STATE(1998), - [sym_labeled_statement] = STATE(1998), - [sym_if_statement] = STATE(1998), - [sym_while_statement] = STATE(1998), - [sym_local_declaration_statement] = STATE(1998), - [sym_local_function_statement] = STATE(1998), - [sym__local_function_declaration] = STATE(6599), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(5929), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2294), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_top_level] = STATE(1998), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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(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), @@ -58131,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(2321), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2609), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -58155,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), @@ -58168,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), @@ -58227,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), @@ -58245,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5690), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_pattern] = STATE(6932), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym__variable_designation] = STATE(7119), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -58354,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -58379,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), @@ -58431,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), @@ -58449,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(7155), - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6086), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5750), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6804), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4104), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -58554,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -58635,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), @@ -58653,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(7155), - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6086), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5750), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6783), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4104), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -58758,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -58839,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), @@ -58857,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(7155), - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6086), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5750), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6919), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4104), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -58962,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -59043,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), @@ -59061,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(7155), - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6086), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5750), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6890), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4104), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -59166,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -59247,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), @@ -59265,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5690), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_pattern] = STATE(6932), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym__variable_designation] = STATE(7119), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2252), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -59374,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -59399,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), @@ -59451,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), @@ -59469,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(7155), - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6086), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5930), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5750), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6826), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4104), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -59574,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -59655,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), @@ -59673,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(5914), - [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(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5711), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6955), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5959), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -59780,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -59790,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), @@ -59857,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), @@ -59875,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7440), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5763), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7497), - [sym_pattern] = STATE(6969), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7573), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5973), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -59982,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -60059,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), @@ -60077,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5690), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6932), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -60184,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -60261,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), @@ -60279,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7540), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5676), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6971), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5952), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -60386,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -60463,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), @@ -60481,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5700), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_pattern] = STATE(6932), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -60588,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -60665,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), @@ -60683,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7440), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5748), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7497), - [sym_pattern] = STATE(6969), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7573), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5973), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -60790,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -60867,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), @@ -60885,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(5914), - [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(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5772), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6955), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5959), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -60992,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -61069,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), @@ -61087,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2716), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(3417), + [sym_conditional_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), @@ -61174,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [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), @@ -61252,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), @@ -61283,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2719), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(3417), + [sym_conditional_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), @@ -61376,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [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), @@ -61454,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), @@ -61485,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5737), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6932), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -61598,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -61675,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), @@ -61693,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5784), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6932), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -61800,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -61877,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), @@ -61895,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5704), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6932), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -62002,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -62079,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), @@ -62097,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5647), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6932), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -62204,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -62214,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), @@ -62281,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), @@ -62299,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5784), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_pattern] = STATE(6932), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -62406,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -62483,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), @@ -62501,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5706), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6932), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -62608,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -62685,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), @@ -62703,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(5914), - [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(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5738), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6955), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5959), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -62810,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -62820,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), @@ -62887,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), @@ -62905,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7538), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5723), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6928), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5989), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -63012,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -63089,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), @@ -63107,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5667), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_pattern] = STATE(6932), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -63214,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -63224,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), @@ -63291,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), @@ -63309,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7540), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5650), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6971), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5952), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -63416,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -63493,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), @@ -63511,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5667), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6932), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -63618,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -63628,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), @@ -63695,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), @@ -63713,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(5914), - [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(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5699), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6955), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5959), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -63820,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -63897,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), @@ -63915,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(5914), - [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(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5648), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6955), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5959), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -64022,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -64087,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), @@ -64111,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7538), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5686), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6928), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5989), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -64224,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -64301,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), @@ -64319,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5690), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_pattern] = STATE(6932), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -64426,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -64503,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), @@ -64521,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(5914), - [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(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5720), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6955), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5959), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -64628,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -64705,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), @@ -64723,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(5914), - [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(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5756), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6955), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5959), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -64830,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -64907,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), @@ -64925,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(5914), - [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(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5725), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6955), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5959), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -65032,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -65109,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), @@ -65127,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(5914), - [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(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5729), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6955), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5959), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -65234,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -65311,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), @@ -65329,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5719), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6932), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -65436,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -65501,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), @@ -65525,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5700), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6932), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -65638,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -65715,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), @@ -65733,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5715), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6932), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -65840,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -65917,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), @@ -65935,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5712), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_pattern] = STATE(6932), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4219), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5074), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -66042,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -66052,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), @@ -66119,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), @@ -66137,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5815), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6933), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym__variable_designation] = STATE(7119), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_expression] = STATE(4341), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -66243,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -66320,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), @@ -66338,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5815), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6933), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7515), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym__variable_designation] = STATE(7119), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_expression] = STATE(4341), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2253), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -66444,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -66455,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), @@ -66521,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), @@ -66539,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3101), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -66626,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -66652,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), @@ -66718,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), @@ -66739,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3070), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -66826,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -66852,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), @@ -66918,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), @@ -66939,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3228), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -67026,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -67104,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), @@ -67120,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), @@ -67138,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3216), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -67225,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -67303,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), @@ -67319,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), @@ -67337,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3184), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -67424,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(3828), - [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), @@ -67449,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), @@ -67517,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), @@ -67535,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3230), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -67622,71 +67705,71 @@ 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(3828), - [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(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_LBRACK] = ACTIONS(1521), + [anon_sym_COLON] = ACTIONS(1365), + [anon_sym_COMMA] = ACTIONS(1365), + [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_ref] = ACTIONS(1575), + [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_RBRACE] = ACTIONS(1365), + [anon_sym_delegate] = ACTIONS(1529), [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(1531), + [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(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_checked] = ACTIONS(1533), + [anon_sym_TILDE] = ACTIONS(1317), + [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(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(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_switch] = ACTIONS(1379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [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_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), @@ -67699,24 +67782,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(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), + [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(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), @@ -67727,90 +67810,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [156] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3295), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -67820,71 +67903,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(156), [sym_preproc_define] = STATE(156), [sym_preproc_undef] = STATE(156), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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_COMMA] = ACTIONS(1365), + [anon_sym_COLON] = ACTIONS(1435), + [anon_sym_COMMA] = ACTIONS(1435), [anon_sym_LPAREN] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(1365), + [anon_sym_RPAREN] = ACTIONS(1435), [anon_sym_ref] = ACTIONS(1575), [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(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_TILDE] = ACTIONS(1317), + [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(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_DOT] = ACTIONS(1379), - [anon_sym_scoped] = ACTIONS(85), - [anon_sym_base] = ACTIONS(1539), - [anon_sym_var] = ACTIONS(89), - [sym_predefined_type] = ACTIONS(91), + [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(1579), [anon_sym_when] = ACTIONS(29), [anon_sym_await] = ACTIONS(1581), [anon_sym_DOT_DOT] = ACTIONS(1583), - [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(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), @@ -67897,11 +67980,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), @@ -67913,7 +67996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -67931,84 +68014,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [157] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3314), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -68018,11 +68101,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(157), [sym_preproc_define] = STATE(157), [sym_preproc_undef] = STATE(157), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -68033,53 +68116,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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_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(1589), + [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(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(1595), + [anon_sym_switch] = ACTIONS(1379), + [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_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(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), @@ -68092,11 +68175,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), @@ -68108,11 +68191,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_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), @@ -68129,84 +68212,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [158] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3266), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -68216,11 +68299,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(158), [sym_preproc_define] = STATE(158), [sym_preproc_undef] = STATE(158), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -68231,53 +68314,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(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_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(1589), + [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(1595), + [anon_sym_switch] = ACTIONS(1437), + [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_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(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), @@ -68290,11 +68373,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), @@ -68306,11 +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(1365), - [aux_sym_preproc_else_token1] = ACTIONS(1365), - [aux_sym_preproc_elif_token1] = ACTIONS(1365), + [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), @@ -68327,84 +68410,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [159] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3323), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -68414,71 +68497,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(159), [sym_preproc_define] = STATE(159), [sym_preproc_undef] = STATE(159), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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_LBRACK] = ACTIONS(1367), [anon_sym_COLON] = ACTIONS(1435), [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1557), [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_ref] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1527), + [anon_sym_ref] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1373), [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_delegate] = ACTIONS(1529), + [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_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(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_checked] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1561), + [anon_sym_this] = ACTIONS(1385), [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(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(109), - [anon_sym_throw] = ACTIONS(1579), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -68494,21 +68577,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(1405), [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(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_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), @@ -68519,90 +68602,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [160] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3331), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -68612,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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), @@ -68635,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), @@ -68722,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3426), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -68809,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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), @@ -68818,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), @@ -68832,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), @@ -68919,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3302), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -69006,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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), @@ -69081,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), @@ -69112,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3358), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -69203,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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), @@ -69219,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), @@ -69278,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), @@ -69309,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3559), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -69400,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -69475,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), @@ -69491,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), @@ -69509,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3363), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -69596,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -69671,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), @@ -69687,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), @@ -69705,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3422), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -69792,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -69867,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), @@ -69883,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), @@ -69901,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3574), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -69988,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -70013,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), @@ -70079,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), @@ -70097,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -70184,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -70201,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), @@ -70209,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), @@ -70275,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), @@ -70293,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3713), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [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), @@ -70380,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -70452,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), @@ -70468,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), @@ -70489,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3751), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -70576,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -70648,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), @@ -70664,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), @@ -70685,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3538), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -70772,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -70847,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), @@ -70863,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), @@ -70881,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2699), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -70968,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -71042,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), @@ -71070,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3648), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -71163,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -71185,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), @@ -71253,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), @@ -71271,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4066), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -71358,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -71459,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3348), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -71553,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [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), @@ -71630,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), @@ -71655,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -71748,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(3828), - [aux_sym_list_pattern_repeat1] = STATE(7356), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -71822,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), @@ -71856,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3425), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -71943,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(3828), - [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(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), @@ -71965,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), @@ -72033,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), @@ -72051,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3775), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -72138,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -72159,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), @@ -72228,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), @@ -72246,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3786), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -72333,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -72354,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), @@ -72423,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), @@ -72441,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -72528,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(3828), - [aux_sym_list_pattern_repeat1] = STATE(7098), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -72605,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), @@ -72636,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3882), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -72723,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_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), @@ -72797,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), @@ -72831,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3585), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -72918,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -72992,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), @@ -73020,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3762), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -73113,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -73190,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), @@ -73221,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3909), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -73308,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -73385,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), @@ -73410,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3446), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -73503,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [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), @@ -73580,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), @@ -73605,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -73698,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(3828), - [aux_sym_list_pattern_repeat1] = STATE(7252), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -73772,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), @@ -73800,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3356), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -73893,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(3828), - [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(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_where] = ACTIONS(29), - [anon_sym_QMARK] = 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(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), @@ -73967,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), @@ -73983,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), @@ -74001,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -74088,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(3828), - [aux_sym_list_pattern_repeat1] = STATE(7250), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -74190,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3467), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -74283,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(3828), - [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(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), @@ -74373,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), @@ -74391,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3832), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -74478,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), - [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), @@ -74580,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3679), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -74673,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(3828), - [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(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), @@ -74763,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), @@ -74781,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2669), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -74868,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -74945,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), @@ -74970,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2621), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -75063,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -75140,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), @@ -75165,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3772), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -75258,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -75332,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), @@ -75348,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), @@ -75366,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3532), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -75453,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [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), @@ -75462,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), @@ -75476,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), @@ -75560,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3468), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), - [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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3870), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -75843,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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), @@ -75852,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), @@ -75866,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), @@ -75951,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3964), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(198), [sym_preproc_endregion] = STATE(198), [sym_preproc_line] = STATE(198), @@ -76038,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -76109,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), @@ -76125,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), @@ -76146,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3960), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -76233,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -76304,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), @@ -76335,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4071), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -76428,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -76518,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), @@ -76536,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4038), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -76623,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -76713,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), @@ -76731,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3580), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -76818,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(3828), - [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(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), @@ -76892,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), @@ -76920,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3586), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -77013,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2633), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -77285,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), @@ -77310,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(5914), + [204] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [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(3828), - [aux_sym_list_pattern_repeat1] = STATE(7232), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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_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), @@ -77477,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), @@ -77510,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3689), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [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), @@ -77611,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), @@ -77619,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), @@ -77688,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), @@ -77706,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3724), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -77793,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(3828), - [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(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), @@ -77813,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), @@ -77869,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), @@ -77894,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3508), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -77987,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(3828), - [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(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), @@ -78060,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), @@ -78088,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3907), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -78181,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -78202,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), @@ -78270,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), @@ -78288,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3495), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -78375,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(3828), - [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(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), @@ -78451,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), @@ -78476,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3918), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -78569,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -78642,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), @@ -78670,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3125), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -78763,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -78836,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), @@ -78864,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3506), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -78957,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(3828), - [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(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), @@ -79030,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), @@ -79046,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), @@ -79064,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3567), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -79151,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(3828), - [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(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), @@ -79172,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), @@ -79240,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), @@ -79258,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2859), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -79345,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -79418,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), @@ -79434,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), @@ -79452,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2795), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -79539,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -79615,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), @@ -79646,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3923), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(4211), + [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(217), [sym_preproc_endregion] = STATE(217), [sym_preproc_line] = STATE(217), @@ -79733,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -79806,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), @@ -79822,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), @@ -79840,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4020), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(4208), + [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(218), [sym_preproc_endregion] = STATE(218), [sym_preproc_line] = STATE(218), @@ -79927,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -80000,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), @@ -80016,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), @@ -80034,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3964), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -80121,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -80197,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), @@ -80222,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3647), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -80315,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(3828), - [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(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), @@ -80388,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), @@ -80404,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), @@ -80422,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4082), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -80509,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -80530,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), @@ -80598,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), @@ -80616,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3097), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -80703,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -80776,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), @@ -80804,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4025), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -80897,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -80973,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), @@ -80998,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4456), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -81091,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -81163,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), @@ -81179,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), @@ -81197,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3686), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -81284,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -81356,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), @@ -81372,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), @@ -81390,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6933), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7351), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(3616), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -81492,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -81553,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), @@ -81577,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4544), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -81670,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -81742,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), @@ -81770,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7129), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -81878,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -81939,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), @@ -81963,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4364), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -82056,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -82131,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), @@ -82156,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4320), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -82249,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -82324,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), @@ -82349,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7339), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -82457,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -82530,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), @@ -82548,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7316), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -82650,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -82711,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), @@ -82723,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), @@ -82741,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6933), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7351), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(3616), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -82843,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -82904,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), @@ -82916,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), @@ -82934,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6933), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7253), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4341), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(234), [sym_preproc_endregion] = STATE(234), [sym_preproc_line] = STATE(234), @@ -83036,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -83109,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), @@ -83127,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4155), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -83214,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -83235,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), @@ -83302,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), @@ -83320,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4282), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), + [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(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(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [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), @@ -83407,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_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), @@ -83479,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), @@ -83507,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4246), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -83600,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -83675,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), @@ -83700,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6933), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7351), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4341), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -83808,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -83869,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), @@ -83881,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), @@ -83899,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2759), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -83986,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_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), @@ -84058,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), @@ -84086,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2724), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -84179,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -84251,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), @@ -84279,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2991), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -84372,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_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), @@ -84444,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), @@ -84472,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4480), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -84565,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -84637,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), @@ -84653,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), @@ -84671,84 +84754,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [243] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4367), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -84758,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -84830,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), @@ -84858,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2803), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -84951,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -85023,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), @@ -85051,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4598), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -85144,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -85216,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), @@ -85232,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), @@ -85250,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7057), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -85352,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -85425,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), @@ -85443,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6933), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7253), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(3616), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -85545,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -85618,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), @@ -85636,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7191), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -85738,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -85811,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), @@ -85829,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2267), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6933), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7351), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(3616), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -85931,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -85992,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), @@ -86004,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), @@ -86022,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4343), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(250), [sym_preproc_endregion] = STATE(250), [sym_preproc_line] = STATE(250), @@ -86109,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -86181,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), @@ -86197,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), @@ -86215,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4418), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -86302,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -86374,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), @@ -86390,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), @@ -86408,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4278), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -86495,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -86567,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), @@ -86595,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4508), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -86688,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -86760,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), @@ -86776,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), @@ -86794,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7359), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -86896,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -86969,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), @@ -86987,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6933), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7284), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4341), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -87089,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -87161,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), @@ -87179,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7430), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -87281,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -87341,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), @@ -87353,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), @@ -87371,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3160), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -87458,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -87529,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), @@ -87557,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4588), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -87650,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -87721,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), @@ -87737,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), @@ -87755,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7430), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -87857,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -87917,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), @@ -87929,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), @@ -87947,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4494), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -88034,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -88105,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), @@ -88121,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), @@ -88139,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3188), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -88226,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -88297,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), @@ -88313,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), @@ -88331,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7430), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -88433,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -88493,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), @@ -88517,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7430), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -88625,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -88697,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), @@ -88715,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4211), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -88802,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -88873,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), @@ -88901,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7430), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -89009,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -89069,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), @@ -89081,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), @@ -89099,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7430), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -89201,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -89273,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), @@ -89291,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6933), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7284), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4341), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -89393,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -89453,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), @@ -89477,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7430), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -89585,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3162), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -89833,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), @@ -89849,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), @@ -89866,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7430), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -90041,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), @@ -90058,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(5914), + [270] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4227), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -90167,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), @@ -90233,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), @@ -90250,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4395), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -90338,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -90409,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), @@ -90425,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), @@ -90443,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4271), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -90530,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -90601,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), @@ -90629,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3252), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -90722,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -90743,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), @@ -90798,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), @@ -90821,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7430), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -90929,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -91001,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), @@ -91019,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4107), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -91106,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -91127,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), @@ -91193,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), @@ -91211,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6933), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7284), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4341), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -91313,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -91373,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), @@ -91397,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4291), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -91490,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -91561,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), @@ -91577,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), @@ -91595,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4258), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -91682,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -91703,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), @@ -91769,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), @@ -91787,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4344), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -91874,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -91945,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), @@ -91961,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), @@ -91979,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4394), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -92066,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -92137,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), @@ -92153,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), @@ -92171,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7430), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -92273,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -92345,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), @@ -92363,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7430), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -92465,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -92537,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), @@ -92555,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4330), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -92642,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -92663,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), @@ -92718,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), @@ -92741,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7430), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -92849,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -92921,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), @@ -92939,101 +93022,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [286] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6933), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7284), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4341), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(286), - [sym_preproc_endregion] = STATE(286), + [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), [sym_preproc_pragma] = STATE(286), [sym_preproc_nullable] = STATE(286), @@ -93041,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -93101,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), @@ -93113,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), @@ -93131,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6975), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -93232,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -93304,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), @@ -93322,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6975), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -93423,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -93495,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), @@ -93513,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_variable_declaration] = STATE(7680), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3617), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -93602,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(3828), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2608), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -93686,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), @@ -93704,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6975), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -93805,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -93877,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), @@ -93895,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6975), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -93996,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -94068,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), @@ -94086,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_variable_declaration] = STATE(8061), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3617), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -94175,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(3828), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2605), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -94259,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), @@ -94277,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6975), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -94378,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -94450,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), @@ -94468,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6975), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -94569,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -94641,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), @@ -94659,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(7012), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7284), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4496), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -94761,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -94781,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), @@ -94832,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), @@ -94850,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6975), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -94951,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -95023,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), @@ -95041,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6975), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -95142,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -95214,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), @@ -95232,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6975), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -95333,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -95405,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), @@ -95423,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6975), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -95524,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -95596,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), @@ -95614,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6975), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -95715,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -95787,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), @@ -95805,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_variable_declaration] = STATE(8095), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3617), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -95894,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(3828), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2598), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -95978,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), @@ -95996,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6975), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -96097,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -96169,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), @@ -96187,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6975), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -96288,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -96360,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), @@ -96378,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6975), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -96479,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -96551,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), @@ -96569,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6975), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -96670,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -96742,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), @@ -96760,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6933), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_subpattern] = STATE(7284), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4341), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -96862,16 +96932,220 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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_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_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_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_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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = 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), + }, + [307] = { + [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), + [sym_preproc_pragma] = STATE(307), + [sym_preproc_nullable] = STATE(307), + [sym_preproc_error] = STATE(307), + [sym_preproc_warning] = STATE(307), + [sym_preproc_define] = STATE(307), + [sym_preproc_undef] = STATE(307), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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_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_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(29), @@ -96882,33 +97156,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(1327), - [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(1337), + [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), @@ -96933,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), @@ -96950,109 +97224,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [307] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_variable_declaration] = STATE(7795), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3617), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(307), - [sym_preproc_endregion] = STATE(307), - [sym_preproc_line] = STATE(307), - [sym_preproc_pragma] = STATE(307), - [sym_preproc_nullable] = STATE(307), - [sym_preproc_error] = STATE(307), - [sym_preproc_warning] = STATE(307), - [sym_preproc_define] = STATE(307), - [sym_preproc_undef] = STATE(307), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2583), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [308] = { + [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), + [sym_preproc_pragma] = STATE(308), + [sym_preproc_nullable] = STATE(308), + [sym_preproc_error] = STATE(308), + [sym_preproc_warning] = STATE(308), + [sym_preproc_define] = STATE(308), + [sym_preproc_undef] = STATE(308), + [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(2565), + [anon_sym_using] = ACTIONS(2563), [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_LPAREN] = ACTIONS(1725), + [anon_sym_ref] = ACTIONS(1727), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_public] = ACTIONS(657), @@ -97064,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), @@ -97076,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(75), [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [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_foreach] = ACTIONS(2529), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [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), @@ -97124,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), @@ -97141,109 +97415,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(157), [sym_raw_string_start] = ACTIONS(159), }, - [308] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym_variable_declaration] = STATE(8095), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3903), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(308), - [sym_preproc_endregion] = STATE(308), - [sym_preproc_line] = STATE(308), - [sym_preproc_pragma] = STATE(308), - [sym_preproc_nullable] = STATE(308), - [sym_preproc_error] = STATE(308), - [sym_preproc_warning] = STATE(308), - [sym_preproc_define] = STATE(308), - [sym_preproc_undef] = STATE(308), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2598), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [309] = { + [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), + [sym_preproc_pragma] = STATE(309), + [sym_preproc_nullable] = STATE(309), + [sym_preproc_error] = STATE(309), + [sym_preproc_warning] = STATE(309), + [sym_preproc_define] = STATE(309), + [sym_preproc_undef] = STATE(309), + [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_using] = ACTIONS(2555), + [anon_sym_using] = ACTIONS(2565), [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), @@ -97255,7 +97529,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), @@ -97267,221 +97541,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_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_foreach] = ACTIONS(2529), - [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), - }, - [309] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6726), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_switch_expression_arm] = STATE(7430), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(309), - [sym_preproc_endregion] = STATE(309), - [sym_preproc_line] = STATE(309), - [sym_preproc_pragma] = STATE(309), - [sym_preproc_nullable] = STATE(309), - [sym_preproc_error] = STATE(309), - [sym_preproc_warning] = STATE(309), - [sym_preproc_define] = STATE(309), - [sym_preproc_undef] = STATE(309), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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_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_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), @@ -97506,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), @@ -97524,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(7043), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -97625,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -97696,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), @@ -97714,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3135), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2486), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5918), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2587), - [sym_property_pattern_clause] = STATE(2691), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -97815,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -97886,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), @@ -97904,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5999), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5831), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6883), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4402), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5888), - [sym_postfix_unary_expression] = STATE(5897), - [sym_prefix_unary_expression] = STATE(5897), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5888), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5897), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5888), - [sym_member_access_expression] = STATE(5015), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5897), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5888), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5888), - [sym_typeof_expression] = STATE(5888), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(5015), - [sym_literal] = STATE(5888), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2275), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -98005,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -98065,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), @@ -98088,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2454), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2499), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4894), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4602), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -98195,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -98266,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), @@ -98284,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2494), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5966), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2642), - [sym_property_pattern_clause] = STATE(2727), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4623), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -98385,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -98456,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), @@ -98474,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2979), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(2441), - [sym_implicit_type] = STATE(3029), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7584), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7785), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(3029), - [sym_scoped_type] = STATE(3029), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5678), - [sym_constant_pattern] = STATE(5754), - [sym_parenthesized_pattern] = STATE(5754), - [sym_var_pattern] = STATE(5754), - [sym_type_pattern] = STATE(5754), - [sym_list_pattern] = STATE(5754), - [sym_recursive_pattern] = STATE(5754), - [sym_positional_pattern_clause] = STATE(2548), - [sym_property_pattern_clause] = STATE(2616), - [sym_relational_pattern] = STATE(5754), - [sym_negated_pattern] = STATE(5754), - [sym_and_pattern] = STATE(5754), - [sym_or_pattern] = STATE(5754), - [sym_declaration_pattern] = STATE(5754), - [sym_expression] = STATE(4620), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5785), - [sym_postfix_unary_expression] = STATE(5783), - [sym_prefix_unary_expression] = STATE(5783), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5785), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5783), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5785), - [sym_member_access_expression] = STATE(4726), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5783), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5785), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5785), - [sym_typeof_expression] = STATE(5785), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4726), - [sym_literal] = STATE(5785), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2256), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -98575,79 +98658,79 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -98658,104 +98741,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [316] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2494), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4987), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2642), - [sym_property_pattern_clause] = STATE(2727), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4623), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -98765,53 +98848,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(316), [sym_preproc_define] = STATE(316), [sym_preproc_undef] = STATE(316), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2619), - [anon_sym_GT] = ACTIONS(2619), + [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(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(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(2625), + [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), @@ -98836,8 +98919,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -98854,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2494), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5950), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2642), - [sym_property_pattern_clause] = STATE(2727), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4623), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -98955,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -99026,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), @@ -99044,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3139), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2505), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5349), - [sym_constant_pattern] = STATE(5373), - [sym_parenthesized_pattern] = STATE(5373), - [sym_var_pattern] = STATE(5373), - [sym_type_pattern] = STATE(5373), - [sym_list_pattern] = STATE(5373), - [sym_recursive_pattern] = STATE(5373), - [sym_positional_pattern_clause] = STATE(2624), - [sym_property_pattern_clause] = STATE(2767), - [sym_relational_pattern] = STATE(5373), - [sym_negated_pattern] = STATE(5373), - [sym_and_pattern] = STATE(5373), - [sym_or_pattern] = STATE(5373), - [sym_declaration_pattern] = STATE(5373), - [sym_expression] = STATE(4600), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5355), - [sym_postfix_unary_expression] = STATE(5354), - [sym_prefix_unary_expression] = STATE(5354), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5355), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5354), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5355), - [sym_member_access_expression] = STATE(3410), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5354), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5355), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5355), - [sym_typeof_expression] = STATE(5355), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3410), - [sym_literal] = STATE(5355), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -99145,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -99205,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), @@ -99228,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2454), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2266), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5477), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4610), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -99335,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -99406,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), @@ -99424,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2454), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2499), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5893), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4602), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -99525,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -99596,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), @@ -99614,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2709), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2266), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5628), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4614), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -99715,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -99798,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3140), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2485), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5313), - [sym_constant_pattern] = STATE(5373), - [sym_parenthesized_pattern] = STATE(5373), - [sym_var_pattern] = STATE(5373), - [sym_type_pattern] = STATE(5373), - [sym_list_pattern] = STATE(5373), - [sym_recursive_pattern] = STATE(5373), - [sym_positional_pattern_clause] = STATE(2611), - [sym_property_pattern_clause] = STATE(2707), - [sym_relational_pattern] = STATE(5373), - [sym_negated_pattern] = STATE(5373), - [sym_and_pattern] = STATE(5373), - [sym_or_pattern] = STATE(5373), - [sym_declaration_pattern] = STATE(5373), - [sym_expression] = STATE(4613), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5355), - [sym_postfix_unary_expression] = STATE(5354), - [sym_prefix_unary_expression] = STATE(5354), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5355), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5354), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5355), - [sym_member_access_expression] = STATE(3410), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5354), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5355), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5355), - [sym_typeof_expression] = STATE(5355), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3410), - [sym_literal] = STATE(5355), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -99905,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -99965,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), @@ -99988,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2281), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4987), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4621), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -100095,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -100155,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), @@ -100178,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2281), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5709), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4621), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -100285,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -100356,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), @@ -100374,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2492), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5941), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4629), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -100475,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -100546,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), @@ -100564,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3004), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2295), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(2407), - [sym_implicit_type] = STATE(3029), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7584), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7785), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(3029), - [sym_scoped_type] = STATE(3029), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5755), - [sym_constant_pattern] = STATE(5754), - [sym_parenthesized_pattern] = STATE(5754), - [sym_var_pattern] = STATE(5754), - [sym_type_pattern] = STATE(5754), - [sym_list_pattern] = STATE(5754), - [sym_recursive_pattern] = STATE(5754), + [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(2645), - [sym_relational_pattern] = STATE(5754), - [sym_negated_pattern] = STATE(5754), - [sym_and_pattern] = STATE(5754), - [sym_or_pattern] = STATE(5754), - [sym_declaration_pattern] = STATE(5754), - [sym_expression] = STATE(4609), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5785), - [sym_postfix_unary_expression] = STATE(5783), - [sym_prefix_unary_expression] = STATE(5783), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5785), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5783), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5785), - [sym_member_access_expression] = STATE(4726), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5783), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5785), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5785), - [sym_typeof_expression] = STATE(5785), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4726), - [sym_literal] = STATE(5785), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), + [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(2263), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -100665,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -100737,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), @@ -100754,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3157), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2510), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5910), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2587), - [sym_property_pattern_clause] = STATE(2691), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -100855,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -100915,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), @@ -100938,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3157), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2510), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4987), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2587), - [sym_property_pattern_clause] = STATE(2691), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -101045,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -101116,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), @@ -101134,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3263), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2567), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5500), - [sym_constant_pattern] = STATE(5527), - [sym_parenthesized_pattern] = STATE(5527), - [sym_var_pattern] = STATE(5527), - [sym_type_pattern] = STATE(5527), - [sym_list_pattern] = STATE(5527), - [sym_recursive_pattern] = STATE(5527), - [sym_positional_pattern_clause] = STATE(2658), - [sym_property_pattern_clause] = STATE(2826), - [sym_relational_pattern] = STATE(5527), - [sym_negated_pattern] = STATE(5527), - [sym_and_pattern] = STATE(5527), - [sym_or_pattern] = STATE(5527), - [sym_declaration_pattern] = STATE(5527), - [sym_expression] = STATE(4616), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5492), - [sym_postfix_unary_expression] = STATE(5491), - [sym_prefix_unary_expression] = STATE(5491), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5492), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5491), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5492), - [sym_member_access_expression] = STATE(4114), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5491), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5492), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5492), - [sym_typeof_expression] = STATE(5492), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4114), - [sym_literal] = STATE(5492), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -101235,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -101318,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2281), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5580), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -101425,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -101496,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), @@ -101514,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3235), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2523), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5951), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2667), - [sym_property_pattern_clause] = STATE(2887), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4619), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -101615,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -101686,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), @@ -101704,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3235), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2523), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4987), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2667), - [sym_property_pattern_clause] = STATE(2887), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4619), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -101805,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -101876,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), @@ -101894,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3235), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2523), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5985), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2667), - [sym_property_pattern_clause] = STATE(2887), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4619), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -101995,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -102055,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), @@ -102078,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3157), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2510), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5892), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2587), - [sym_property_pattern_clause] = STATE(2691), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -102185,53 +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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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_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(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(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(2725), + [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), @@ -102245,19 +102328,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), @@ -102268,104 +102351,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [335] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2454), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2514), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4776), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4602), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -102375,79 +102458,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(335), [sym_preproc_define] = STATE(335), [sym_preproc_undef] = STATE(335), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(2601), - [anon_sym_ref] = ACTIONS(2571), - [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(2603), - [anon_sym_GT] = ACTIONS(2603), - [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(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(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(2613), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = 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), @@ -102458,104 +102541,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [336] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2764), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2278), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4991), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4603), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -102565,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -102636,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), @@ -102654,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2764), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2281), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5653), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4603), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -102755,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -102826,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), @@ -102844,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6977), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -102945,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -103028,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2709), - [sym_alias_qualified_name] = STATE(2445), + [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(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2269), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4776), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4614), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -103135,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -103195,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), @@ -103218,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2281), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4987), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -103325,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -103385,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), @@ -103408,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2764), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2281), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4987), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4603), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -103515,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -103586,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), @@ -103604,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2492), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4987), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4629), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -103705,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -103765,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), @@ -103788,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2764), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2281), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5705), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4603), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -103895,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -103955,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), @@ -103978,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2276), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5739), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4621), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -104085,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -104145,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), @@ -104168,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2492), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5940), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4629), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -104275,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -104335,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), @@ -104358,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3209), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2541), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5920), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2653), - [sym_property_pattern_clause] = STATE(2813), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4605), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -104465,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -104525,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), @@ -104548,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3209), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2541), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4894), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2653), - [sym_property_pattern_clause] = STATE(2813), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4605), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -104655,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -104715,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), @@ -104738,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3209), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2541), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5901), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2653), - [sym_property_pattern_clause] = STATE(2813), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4605), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -104845,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -104905,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), @@ -104928,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3153), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2322), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), + [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(2476), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5798), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2592), - [sym_property_pattern_clause] = STATE(2670), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -105035,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -105095,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), @@ -105118,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3153), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2322), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2476), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4894), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2592), - [sym_property_pattern_clause] = STATE(2670), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -105225,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -105296,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), @@ -105314,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3153), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2322), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2476), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5800), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2592), - [sym_property_pattern_clause] = STATE(2670), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -105415,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -105486,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), @@ -105504,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2281), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5634), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -105605,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -105676,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), @@ -105694,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2764), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2276), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5944), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4633), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -105795,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -105866,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), @@ -105884,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2454), - [sym_alias_qualified_name] = STATE(2445), + [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(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2269), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4776), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -105985,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -106045,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), @@ -106068,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2979), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(2436), - [sym_implicit_type] = STATE(3029), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7584), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7785), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(3029), - [sym_scoped_type] = STATE(3029), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5674), - [sym_constant_pattern] = STATE(5754), - [sym_parenthesized_pattern] = STATE(5754), - [sym_var_pattern] = STATE(5754), - [sym_type_pattern] = STATE(5754), - [sym_list_pattern] = STATE(5754), - [sym_recursive_pattern] = STATE(5754), - [sym_positional_pattern_clause] = STATE(2548), - [sym_property_pattern_clause] = STATE(2616), - [sym_relational_pattern] = STATE(5754), - [sym_negated_pattern] = STATE(5754), - [sym_and_pattern] = STATE(5754), - [sym_or_pattern] = STATE(5754), - [sym_declaration_pattern] = STATE(5754), - [sym_expression] = STATE(4620), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5785), - [sym_postfix_unary_expression] = STATE(5783), - [sym_prefix_unary_expression] = STATE(5783), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5785), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5783), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5785), - [sym_member_access_expression] = STATE(4726), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5783), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5785), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5785), - [sym_typeof_expression] = STATE(5785), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4726), - [sym_literal] = STATE(5785), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2256), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -106175,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -106258,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3235), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2550), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5977), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2667), - [sym_property_pattern_clause] = STATE(2887), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4619), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -106365,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -106436,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), @@ -106454,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6975), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -106555,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -106626,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), @@ -106644,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2454), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2266), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5924), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -106745,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -106816,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), @@ -106834,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2979), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(2436), - [sym_implicit_type] = STATE(3029), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7584), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7785), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(3029), - [sym_scoped_type] = STATE(3029), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5782), - [sym_constant_pattern] = STATE(5754), - [sym_parenthesized_pattern] = STATE(5754), - [sym_var_pattern] = STATE(5754), - [sym_type_pattern] = STATE(5754), - [sym_list_pattern] = STATE(5754), - [sym_recursive_pattern] = STATE(5754), - [sym_positional_pattern_clause] = STATE(2548), - [sym_property_pattern_clause] = STATE(2616), - [sym_relational_pattern] = STATE(5754), - [sym_negated_pattern] = STATE(5754), - [sym_and_pattern] = STATE(5754), - [sym_or_pattern] = STATE(5754), - [sym_declaration_pattern] = STATE(5754), - [sym_expression] = STATE(4620), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5785), - [sym_postfix_unary_expression] = STATE(5783), - [sym_prefix_unary_expression] = STATE(5783), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5785), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5783), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5785), - [sym_member_access_expression] = STATE(4726), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5783), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5785), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5785), - [sym_typeof_expression] = STATE(5785), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4726), - [sym_literal] = STATE(5785), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2256), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -106935,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -107018,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2281), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5749), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4621), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -107125,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -107196,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), @@ -107214,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3205), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2355), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2519), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5900), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2701), - [sym_property_pattern_clause] = STATE(3060), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4639), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -107315,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -107375,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), @@ -107398,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2454), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2269), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4776), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4610), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -107505,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -107565,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), @@ -107588,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3263), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2517), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5529), - [sym_constant_pattern] = STATE(5527), - [sym_parenthesized_pattern] = STATE(5527), - [sym_var_pattern] = STATE(5527), - [sym_type_pattern] = STATE(5527), - [sym_list_pattern] = STATE(5527), - [sym_recursive_pattern] = STATE(5527), - [sym_positional_pattern_clause] = STATE(2658), - [sym_property_pattern_clause] = STATE(2826), - [sym_relational_pattern] = STATE(5527), - [sym_negated_pattern] = STATE(5527), - [sym_and_pattern] = STATE(5527), - [sym_or_pattern] = STATE(5527), - [sym_declaration_pattern] = STATE(5527), - [sym_expression] = STATE(4616), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5492), - [sym_postfix_unary_expression] = STATE(5491), - [sym_prefix_unary_expression] = STATE(5491), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5492), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5491), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5492), - [sym_member_access_expression] = STATE(4114), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5491), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5492), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5492), - [sym_typeof_expression] = STATE(5492), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4114), - [sym_literal] = STATE(5492), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -107695,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -107766,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), @@ -107784,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(7007), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -107885,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -107945,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), @@ -107968,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2454), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2265), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5923), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -108075,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -108146,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), @@ -108164,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2454), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2265), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4894), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -108265,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -108325,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), @@ -108348,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2454), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2265), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5891), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4630), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -108455,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -108515,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), @@ -108538,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3177), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2371), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2546), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5938), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2678), - [sym_property_pattern_clause] = STATE(2925), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4615), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -108645,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -108705,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), @@ -108728,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3177), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2371), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2546), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4987), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2678), - [sym_property_pattern_clause] = STATE(2925), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4615), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -108835,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -108906,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), @@ -108924,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(4987), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -109025,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -109085,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), @@ -109108,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2764), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2276), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5703), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4603), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -109215,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -109275,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), @@ -109298,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2979), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(2436), - [sym_implicit_type] = STATE(3029), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7584), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7785), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(3029), - [sym_scoped_type] = STATE(3029), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5669), - [sym_constant_pattern] = STATE(5754), - [sym_parenthesized_pattern] = STATE(5754), - [sym_var_pattern] = STATE(5754), - [sym_type_pattern] = STATE(5754), - [sym_list_pattern] = STATE(5754), - [sym_recursive_pattern] = STATE(5754), - [sym_positional_pattern_clause] = STATE(2548), - [sym_property_pattern_clause] = STATE(2616), - [sym_relational_pattern] = STATE(5754), - [sym_negated_pattern] = STATE(5754), - [sym_and_pattern] = STATE(5754), - [sym_or_pattern] = STATE(5754), - [sym_declaration_pattern] = STATE(5754), - [sym_expression] = STATE(4620), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5785), - [sym_postfix_unary_expression] = STATE(5783), - [sym_prefix_unary_expression] = STATE(5783), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5785), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5783), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5785), - [sym_member_access_expression] = STATE(4726), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5783), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5785), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5785), - [sym_typeof_expression] = STATE(5785), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4726), - [sym_literal] = STATE(5785), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2256), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -109405,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -109488,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3177), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2371), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2546), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5970), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2678), - [sym_property_pattern_clause] = STATE(2925), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4615), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -109595,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -109666,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), @@ -109684,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6006), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2311), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5828), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6957), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5538), - [sym_postfix_unary_expression] = STATE(5536), - [sym_prefix_unary_expression] = STATE(5536), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5538), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5536), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5538), - [sym_member_access_expression] = STATE(4495), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5536), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5538), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5538), - [sym_typeof_expression] = STATE(5538), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4495), - [sym_literal] = STATE(5538), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -109785,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -109845,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), @@ -109868,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2709), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2265), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5592), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4614), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -109975,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -110046,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), @@ -110064,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2454), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2499), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5915), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4602), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), @@ -110165,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -110225,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), @@ -110248,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3157), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2501), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4991), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2587), - [sym_property_pattern_clause] = STATE(2691), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -110355,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -110426,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), @@ -110444,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2278), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4991), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4621), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -110545,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -110628,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3168), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2322), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2488), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5839), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2592), - [sym_property_pattern_clause] = STATE(2670), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4637), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -110735,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -110795,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), @@ -110818,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2709), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2265), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4894), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4614), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -110925,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -111008,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3140), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2493), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5461), - [sym_constant_pattern] = STATE(5373), - [sym_parenthesized_pattern] = STATE(5373), - [sym_var_pattern] = STATE(5373), - [sym_type_pattern] = STATE(5373), - [sym_list_pattern] = STATE(5373), - [sym_recursive_pattern] = STATE(5373), - [sym_positional_pattern_clause] = STATE(2611), - [sym_property_pattern_clause] = STATE(2707), - [sym_relational_pattern] = STATE(5373), - [sym_negated_pattern] = STATE(5373), - [sym_and_pattern] = STATE(5373), - [sym_or_pattern] = STATE(5373), - [sym_declaration_pattern] = STATE(5373), - [sym_expression] = STATE(4613), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5355), - [sym_postfix_unary_expression] = STATE(5354), - [sym_prefix_unary_expression] = STATE(5354), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5355), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5354), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5355), - [sym_member_access_expression] = STATE(3410), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5354), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5355), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5355), - [sym_typeof_expression] = STATE(5355), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3410), - [sym_literal] = STATE(5355), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), @@ -111115,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -111175,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), @@ -111198,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3135), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2509), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4991), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2587), - [sym_property_pattern_clause] = STATE(2691), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -111305,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -111376,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), @@ -111394,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3168), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2322), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2488), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4894), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2592), - [sym_property_pattern_clause] = STATE(2670), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4637), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -111495,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -111555,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), @@ -111578,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3168), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2322), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2488), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5855), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2592), - [sym_property_pattern_clause] = STATE(2670), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4637), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -111685,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -111745,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), @@ -111768,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3226), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2363), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2537), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5979), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2657), - [sym_property_pattern_clause] = STATE(2830), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4612), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -111875,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -111935,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), @@ -111958,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6893), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -112065,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -112136,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), @@ -112154,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3221), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2373), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2556), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5525), - [sym_constant_pattern] = STATE(5527), - [sym_parenthesized_pattern] = STATE(5527), - [sym_var_pattern] = STATE(5527), - [sym_type_pattern] = STATE(5527), - [sym_list_pattern] = STATE(5527), - [sym_recursive_pattern] = STATE(5527), - [sym_positional_pattern_clause] = STATE(2682), - [sym_property_pattern_clause] = STATE(2953), - [sym_relational_pattern] = STATE(5527), - [sym_negated_pattern] = STATE(5527), - [sym_and_pattern] = STATE(5527), - [sym_or_pattern] = STATE(5527), - [sym_declaration_pattern] = STATE(5527), - [sym_expression] = STATE(4611), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5492), - [sym_postfix_unary_expression] = STATE(5491), - [sym_prefix_unary_expression] = STATE(5491), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5492), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5491), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5492), - [sym_member_access_expression] = STATE(4114), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5491), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5492), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5492), - [sym_typeof_expression] = STATE(5492), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4114), - [sym_literal] = STATE(5492), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -112255,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -112315,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), @@ -112338,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3221), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2373), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2556), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5507), - [sym_constant_pattern] = STATE(5527), - [sym_parenthesized_pattern] = STATE(5527), - [sym_var_pattern] = STATE(5527), - [sym_type_pattern] = STATE(5527), - [sym_list_pattern] = STATE(5527), - [sym_recursive_pattern] = STATE(5527), - [sym_positional_pattern_clause] = STATE(2682), - [sym_property_pattern_clause] = STATE(2953), - [sym_relational_pattern] = STATE(5527), - [sym_negated_pattern] = STATE(5527), - [sym_and_pattern] = STATE(5527), - [sym_or_pattern] = STATE(5527), - [sym_declaration_pattern] = STATE(5527), - [sym_expression] = STATE(4611), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5492), - [sym_postfix_unary_expression] = STATE(5491), - [sym_prefix_unary_expression] = STATE(5491), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5492), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5491), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5492), - [sym_member_access_expression] = STATE(4114), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5491), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5492), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5492), - [sym_typeof_expression] = STATE(5492), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4114), - [sym_literal] = STATE(5492), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -112445,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -112528,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2764), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2281), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5958), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4633), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -112635,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -112695,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), @@ -112718,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3221), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2373), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2556), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5504), - [sym_constant_pattern] = STATE(5527), - [sym_parenthesized_pattern] = STATE(5527), - [sym_var_pattern] = STATE(5527), - [sym_type_pattern] = STATE(5527), - [sym_list_pattern] = STATE(5527), - [sym_recursive_pattern] = STATE(5527), - [sym_positional_pattern_clause] = STATE(2682), - [sym_property_pattern_clause] = STATE(2953), - [sym_relational_pattern] = STATE(5527), - [sym_negated_pattern] = STATE(5527), - [sym_and_pattern] = STATE(5527), - [sym_or_pattern] = STATE(5527), - [sym_declaration_pattern] = STATE(5527), - [sym_expression] = STATE(4611), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5492), - [sym_postfix_unary_expression] = STATE(5491), - [sym_prefix_unary_expression] = STATE(5491), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5492), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5491), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5492), - [sym_member_access_expression] = STATE(4114), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5491), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5492), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5492), - [sym_typeof_expression] = STATE(5492), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4114), - [sym_literal] = STATE(5492), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -112825,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -112885,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), @@ -112908,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3189), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2360), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2535), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5921), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2684), - [sym_property_pattern_clause] = STATE(2998), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4607), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -113015,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -113086,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), @@ -113104,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3135), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2486), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4987), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2587), - [sym_property_pattern_clause] = STATE(2691), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -113205,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -113265,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), @@ -113288,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(4987), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -113395,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -113455,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), @@ -113478,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6878), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -113585,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -113645,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), @@ -113668,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2764), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2281), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4987), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4633), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -113775,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -113835,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), @@ -113858,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3189), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2360), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2570), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5912), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2684), - [sym_property_pattern_clause] = STATE(2998), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4607), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -113965,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -114025,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), @@ -114048,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3189), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2360), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2570), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4894), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2684), - [sym_property_pattern_clause] = STATE(2998), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4607), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -114155,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -114215,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), @@ -114238,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3189), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2360), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2570), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5894), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2684), - [sym_property_pattern_clause] = STATE(2998), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4607), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -114345,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -114405,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), @@ -114428,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2764), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2281), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5981), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4633), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -114535,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -114606,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), @@ -114624,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2495), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4991), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2642), - [sym_property_pattern_clause] = STATE(2727), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4623), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -114725,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -114796,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), @@ -114814,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3135), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2315), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2486), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5925), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2587), - [sym_property_pattern_clause] = STATE(2691), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4632), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -114915,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -114975,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), @@ -114998,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(7042), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -115105,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -115165,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), @@ -115188,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2709), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2265), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5597), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4614), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -115295,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -115355,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), @@ -115378,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(4987), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -115485,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -115568,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3153), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2322), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2477), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4776), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2592), - [sym_property_pattern_clause] = STATE(2670), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4618), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -115675,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -115735,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), @@ -115758,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3004), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2295), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(2450), - [sym_implicit_type] = STATE(3029), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7584), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7785), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(3029), - [sym_scoped_type] = STATE(3029), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5797), - [sym_constant_pattern] = STATE(5754), - [sym_parenthesized_pattern] = STATE(5754), - [sym_var_pattern] = STATE(5754), - [sym_type_pattern] = STATE(5754), - [sym_list_pattern] = STATE(5754), - [sym_recursive_pattern] = STATE(5754), - [sym_positional_pattern_clause] = STATE(2534), - [sym_property_pattern_clause] = STATE(2645), - [sym_relational_pattern] = STATE(5754), - [sym_negated_pattern] = STATE(5754), - [sym_and_pattern] = STATE(5754), - [sym_or_pattern] = STATE(5754), - [sym_declaration_pattern] = STATE(5754), - [sym_expression] = STATE(4609), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5785), - [sym_postfix_unary_expression] = STATE(5783), - [sym_prefix_unary_expression] = STATE(5783), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5785), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5783), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5785), - [sym_member_access_expression] = STATE(4726), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5783), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5785), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5785), - [sym_typeof_expression] = STATE(5785), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4726), - [sym_literal] = STATE(5785), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2256), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -115865,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -115948,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2764), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2278), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4991), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4633), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -116055,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -116115,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), @@ -116138,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3004), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2295), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(2413), - [sym_implicit_type] = STATE(3029), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7584), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7785), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(3029), - [sym_scoped_type] = STATE(3029), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5842), - [sym_constant_pattern] = STATE(5754), - [sym_parenthesized_pattern] = STATE(5754), - [sym_var_pattern] = STATE(5754), - [sym_type_pattern] = STATE(5754), - [sym_list_pattern] = STATE(5754), - [sym_recursive_pattern] = STATE(5754), - [sym_positional_pattern_clause] = STATE(2534), - [sym_property_pattern_clause] = STATE(2645), - [sym_relational_pattern] = STATE(5754), - [sym_negated_pattern] = STATE(5754), - [sym_and_pattern] = STATE(5754), - [sym_or_pattern] = STATE(5754), - [sym_declaration_pattern] = STATE(5754), - [sym_expression] = STATE(4609), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5785), - [sym_postfix_unary_expression] = STATE(5783), - [sym_prefix_unary_expression] = STATE(5783), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5785), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5783), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5785), - [sym_member_access_expression] = STATE(4726), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5783), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5785), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5785), - [sym_typeof_expression] = STATE(5785), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4726), - [sym_literal] = STATE(5785), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), + [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(2263), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -116245,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -116317,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), @@ -116334,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3209), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2533), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5903), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2653), - [sym_property_pattern_clause] = STATE(2813), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4605), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -116435,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -116495,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), @@ -116518,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3004), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2295), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(2450), - [sym_implicit_type] = STATE(3029), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7584), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7785), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(3029), - [sym_scoped_type] = STATE(3029), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5782), - [sym_constant_pattern] = STATE(5754), - [sym_parenthesized_pattern] = STATE(5754), - [sym_var_pattern] = STATE(5754), - [sym_type_pattern] = STATE(5754), - [sym_list_pattern] = STATE(5754), - [sym_recursive_pattern] = STATE(5754), - [sym_positional_pattern_clause] = STATE(2534), - [sym_property_pattern_clause] = STATE(2645), - [sym_relational_pattern] = STATE(5754), - [sym_negated_pattern] = STATE(5754), - [sym_and_pattern] = STATE(5754), - [sym_or_pattern] = STATE(5754), - [sym_declaration_pattern] = STATE(5754), - [sym_expression] = STATE(4609), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5785), - [sym_postfix_unary_expression] = STATE(5783), - [sym_prefix_unary_expression] = STATE(5783), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5785), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5783), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5785), - [sym_member_access_expression] = STATE(4726), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5783), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5785), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5785), - [sym_typeof_expression] = STATE(5785), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4726), - [sym_literal] = STATE(5785), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2256), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -116625,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -116708,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5999), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2346), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5831), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6958), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5911), - [sym_postfix_unary_expression] = STATE(5917), - [sym_prefix_unary_expression] = STATE(5917), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5911), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5917), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5911), - [sym_member_access_expression] = STATE(5024), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5917), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5911), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5911), - [sym_typeof_expression] = STATE(5911), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(5024), - [sym_literal] = STATE(5911), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2275), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -116815,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -116886,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), @@ -116904,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3221), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2373), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2562), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5500), - [sym_constant_pattern] = STATE(5527), - [sym_parenthesized_pattern] = STATE(5527), - [sym_var_pattern] = STATE(5527), - [sym_type_pattern] = STATE(5527), - [sym_list_pattern] = STATE(5527), - [sym_recursive_pattern] = STATE(5527), - [sym_positional_pattern_clause] = STATE(2682), - [sym_property_pattern_clause] = STATE(2953), - [sym_relational_pattern] = STATE(5527), - [sym_negated_pattern] = STATE(5527), - [sym_and_pattern] = STATE(5527), - [sym_or_pattern] = STATE(5527), - [sym_declaration_pattern] = STATE(5527), - [sym_expression] = STATE(4611), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5492), - [sym_postfix_unary_expression] = STATE(5491), - [sym_prefix_unary_expression] = STATE(5491), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5492), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5491), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5492), - [sym_member_access_expression] = STATE(4114), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5491), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5492), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5492), - [sym_typeof_expression] = STATE(5492), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4114), - [sym_literal] = STATE(5492), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -117005,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -117065,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), @@ -117088,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2507), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5969), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4629), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -117195,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -117266,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), @@ -117284,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3209), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2350), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2559), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4776), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2653), - [sym_property_pattern_clause] = STATE(2813), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4605), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -117385,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -117445,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), @@ -117468,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3226), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2363), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2572), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4991), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2657), - [sym_property_pattern_clause] = STATE(2830), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4612), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -117575,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -117646,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), @@ -117664,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3004), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2295), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(2450), - [sym_implicit_type] = STATE(3029), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7584), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7785), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(3029), - [sym_scoped_type] = STATE(3029), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5867), - [sym_constant_pattern] = STATE(5754), - [sym_parenthesized_pattern] = STATE(5754), - [sym_var_pattern] = STATE(5754), - [sym_type_pattern] = STATE(5754), - [sym_list_pattern] = STATE(5754), - [sym_recursive_pattern] = STATE(5754), - [sym_positional_pattern_clause] = STATE(2534), - [sym_property_pattern_clause] = STATE(2645), - [sym_relational_pattern] = STATE(5754), - [sym_negated_pattern] = STATE(5754), - [sym_and_pattern] = STATE(5754), - [sym_or_pattern] = STATE(5754), - [sym_declaration_pattern] = STATE(5754), - [sym_expression] = STATE(4609), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5785), - [sym_postfix_unary_expression] = STATE(5783), - [sym_prefix_unary_expression] = STATE(5783), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5785), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5783), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5785), - [sym_member_access_expression] = STATE(4726), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5783), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5785), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5785), - [sym_typeof_expression] = STATE(5785), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4726), - [sym_literal] = STATE(5785), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2256), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -117765,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -117848,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3226), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2363), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2522), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5953), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2657), - [sym_property_pattern_clause] = STATE(2830), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4612), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -117955,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -118015,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), @@ -118038,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3226), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2363), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2522), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4987), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2657), - [sym_property_pattern_clause] = STATE(2830), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4612), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -118145,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -118205,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), @@ -118228,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2454), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2265), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5481), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4610), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -118335,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -118406,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), @@ -118424,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2454), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2265), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4894), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4610), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -118525,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -118596,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), @@ -118614,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3139), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2513), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5337), - [sym_constant_pattern] = STATE(5373), - [sym_parenthesized_pattern] = STATE(5373), - [sym_var_pattern] = STATE(5373), - [sym_type_pattern] = STATE(5373), - [sym_list_pattern] = STATE(5373), - [sym_recursive_pattern] = STATE(5373), - [sym_positional_pattern_clause] = STATE(2624), - [sym_property_pattern_clause] = STATE(2767), - [sym_relational_pattern] = STATE(5373), - [sym_negated_pattern] = STATE(5373), - [sym_and_pattern] = STATE(5373), - [sym_or_pattern] = STATE(5373), - [sym_declaration_pattern] = STATE(5373), - [sym_expression] = STATE(4600), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5355), - [sym_postfix_unary_expression] = STATE(5354), - [sym_prefix_unary_expression] = STATE(5354), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5355), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5354), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5355), - [sym_member_access_expression] = STATE(3410), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5354), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5355), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5355), - [sym_typeof_expression] = STATE(5355), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3410), - [sym_literal] = STATE(5355), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -118715,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -118775,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), @@ -118798,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3221), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2373), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2542), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5508), - [sym_constant_pattern] = STATE(5527), - [sym_parenthesized_pattern] = STATE(5527), - [sym_var_pattern] = STATE(5527), - [sym_type_pattern] = STATE(5527), - [sym_list_pattern] = STATE(5527), - [sym_recursive_pattern] = STATE(5527), - [sym_positional_pattern_clause] = STATE(2682), - [sym_property_pattern_clause] = STATE(2953), - [sym_relational_pattern] = STATE(5527), - [sym_negated_pattern] = STATE(5527), - [sym_and_pattern] = STATE(5527), - [sym_or_pattern] = STATE(5527), - [sym_declaration_pattern] = STATE(5527), - [sym_expression] = STATE(4611), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5492), - [sym_postfix_unary_expression] = STATE(5491), - [sym_prefix_unary_expression] = STATE(5491), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5492), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5491), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5492), - [sym_member_access_expression] = STATE(4114), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5491), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5492), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5492), - [sym_typeof_expression] = STATE(5492), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4114), - [sym_literal] = STATE(5492), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -118905,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -118965,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), @@ -118988,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3226), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2363), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2522), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5982), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2657), - [sym_property_pattern_clause] = STATE(2830), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4612), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -119095,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -119166,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), @@ -119184,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3205), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2355), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2551), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4776), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2701), - [sym_property_pattern_clause] = STATE(3060), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4639), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -119285,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -119345,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), @@ -119368,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3177), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2371), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2575), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4991), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2678), - [sym_property_pattern_clause] = STATE(2925), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4615), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -119475,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -119546,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), @@ -119564,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3189), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2360), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2547), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4776), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2684), - [sym_property_pattern_clause] = STATE(2998), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4607), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -119665,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -119725,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), @@ -119748,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3235), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2369), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2573), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4991), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2667), - [sym_property_pattern_clause] = STATE(2887), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4619), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -119855,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -119926,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), @@ -119944,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3139), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2490), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5313), - [sym_constant_pattern] = STATE(5373), - [sym_parenthesized_pattern] = STATE(5373), - [sym_var_pattern] = STATE(5373), - [sym_type_pattern] = STATE(5373), - [sym_list_pattern] = STATE(5373), - [sym_recursive_pattern] = STATE(5373), - [sym_positional_pattern_clause] = STATE(2624), - [sym_property_pattern_clause] = STATE(2767), - [sym_relational_pattern] = STATE(5373), - [sym_negated_pattern] = STATE(5373), - [sym_and_pattern] = STATE(5373), - [sym_or_pattern] = STATE(5373), - [sym_declaration_pattern] = STATE(5373), - [sym_expression] = STATE(4600), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5355), - [sym_postfix_unary_expression] = STATE(5354), - [sym_prefix_unary_expression] = STATE(5354), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5355), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5354), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5355), - [sym_member_access_expression] = STATE(3410), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5354), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5355), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5355), - [sym_typeof_expression] = STATE(5355), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3410), - [sym_literal] = STATE(5355), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -120045,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -120105,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), @@ -120128,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3139), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2513), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5444), - [sym_constant_pattern] = STATE(5373), - [sym_parenthesized_pattern] = STATE(5373), - [sym_var_pattern] = STATE(5373), - [sym_type_pattern] = STATE(5373), - [sym_list_pattern] = STATE(5373), - [sym_recursive_pattern] = STATE(5373), - [sym_positional_pattern_clause] = STATE(2624), - [sym_property_pattern_clause] = STATE(2767), - [sym_relational_pattern] = STATE(5373), - [sym_negated_pattern] = STATE(5373), - [sym_and_pattern] = STATE(5373), - [sym_or_pattern] = STATE(5373), - [sym_declaration_pattern] = STATE(5373), - [sym_expression] = STATE(4600), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5355), - [sym_postfix_unary_expression] = STATE(5354), - [sym_prefix_unary_expression] = STATE(5354), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5355), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5354), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5355), - [sym_member_access_expression] = STATE(3410), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5354), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5355), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5355), - [sym_typeof_expression] = STATE(5355), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3410), - [sym_literal] = STATE(5355), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -120235,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -120295,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), @@ -120318,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2454), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2265), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5480), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4610), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -120425,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -120496,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), @@ -120514,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2278), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4991), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -120615,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -120686,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), @@ -120704,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2500), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4991), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4629), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -120805,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -120865,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), @@ -120888,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5999), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2346), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5831), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(4987), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5911), - [sym_postfix_unary_expression] = STATE(5917), - [sym_prefix_unary_expression] = STATE(5917), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5911), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5917), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5911), - [sym_member_access_expression] = STATE(5024), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5917), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5911), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5911), - [sym_typeof_expression] = STATE(5911), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(5024), - [sym_literal] = STATE(5911), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2275), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -120995,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -121066,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), @@ -121084,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2483), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5971), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2642), - [sym_property_pattern_clause] = STATE(2727), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4623), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -121185,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -121256,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), @@ -121274,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3139), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2341), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2513), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5253), - [sym_constant_pattern] = STATE(5373), - [sym_parenthesized_pattern] = STATE(5373), - [sym_var_pattern] = STATE(5373), - [sym_type_pattern] = STATE(5373), - [sym_list_pattern] = STATE(5373), - [sym_recursive_pattern] = STATE(5373), - [sym_positional_pattern_clause] = STATE(2624), - [sym_property_pattern_clause] = STATE(2767), - [sym_relational_pattern] = STATE(5373), - [sym_negated_pattern] = STATE(5373), - [sym_and_pattern] = STATE(5373), - [sym_or_pattern] = STATE(5373), - [sym_declaration_pattern] = STATE(5373), - [sym_expression] = STATE(4600), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5355), - [sym_postfix_unary_expression] = STATE(5354), - [sym_prefix_unary_expression] = STATE(5354), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5355), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5354), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5355), - [sym_member_access_expression] = STATE(3410), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5354), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5355), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5355), - [sym_typeof_expression] = STATE(5355), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3410), - [sym_literal] = STATE(5355), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -121375,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -121435,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), @@ -121458,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5999), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2346), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5831), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(6949), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5935), - [sym_property_pattern_clause] = STATE(6021), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4608), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5911), - [sym_postfix_unary_expression] = STATE(5917), - [sym_prefix_unary_expression] = STATE(5917), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5911), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5917), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5911), - [sym_member_access_expression] = STATE(5024), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5917), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5911), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5911), - [sym_typeof_expression] = STATE(5911), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(5024), - [sym_literal] = STATE(5911), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2275), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -121565,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -121636,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), @@ -121654,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2268), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5566), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_pattern] = STATE(7040), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(5833), - [sym_property_pattern_clause] = STATE(5934), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5612), - [sym_postfix_unary_expression] = STATE(5611), - [sym_prefix_unary_expression] = STATE(5611), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5612), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5611), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5612), - [sym_member_access_expression] = STATE(4653), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5611), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5612), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5612), - [sym_typeof_expression] = STATE(5612), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4653), - [sym_literal] = STATE(5612), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -121755,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -121826,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), @@ -121844,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2979), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2303), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(2435), - [sym_implicit_type] = STATE(3029), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7584), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7785), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(3029), - [sym_scoped_type] = STATE(3029), - [sym_tuple_type] = STATE(3011), - [sym_pattern] = STATE(5755), - [sym_constant_pattern] = STATE(5754), - [sym_parenthesized_pattern] = STATE(5754), - [sym_var_pattern] = STATE(5754), - [sym_type_pattern] = STATE(5754), - [sym_list_pattern] = STATE(5754), - [sym_recursive_pattern] = STATE(5754), - [sym_positional_pattern_clause] = STATE(2548), - [sym_property_pattern_clause] = STATE(2616), - [sym_relational_pattern] = STATE(5754), - [sym_negated_pattern] = STATE(5754), - [sym_and_pattern] = STATE(5754), - [sym_or_pattern] = STATE(5754), - [sym_declaration_pattern] = STATE(5754), - [sym_expression] = STATE(4620), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5785), - [sym_postfix_unary_expression] = STATE(5783), - [sym_prefix_unary_expression] = STATE(5783), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5785), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5783), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5785), - [sym_member_access_expression] = STATE(4726), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5783), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5785), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5785), - [sym_typeof_expression] = STATE(5785), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4726), - [sym_literal] = STATE(5785), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2256), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -121945,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -122028,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3140), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2498), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5453), - [sym_constant_pattern] = STATE(5373), - [sym_parenthesized_pattern] = STATE(5373), - [sym_var_pattern] = STATE(5373), - [sym_type_pattern] = STATE(5373), - [sym_list_pattern] = STATE(5373), - [sym_recursive_pattern] = STATE(5373), - [sym_positional_pattern_clause] = STATE(2611), - [sym_property_pattern_clause] = STATE(2707), - [sym_relational_pattern] = STATE(5373), - [sym_negated_pattern] = STATE(5373), - [sym_and_pattern] = STATE(5373), - [sym_or_pattern] = STATE(5373), - [sym_declaration_pattern] = STATE(5373), - [sym_expression] = STATE(4613), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5355), - [sym_postfix_unary_expression] = STATE(5354), - [sym_prefix_unary_expression] = STATE(5354), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5355), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5354), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5355), - [sym_member_access_expression] = STATE(3410), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5354), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5355), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5355), - [sym_typeof_expression] = STATE(5355), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3410), - [sym_literal] = STATE(5355), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -122135,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -122195,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), @@ -122218,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2462), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2221), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2276), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5621), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2310), - [sym_property_pattern_clause] = STATE(2352), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4622), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -122325,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -122396,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), @@ -122414,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3140), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2498), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5444), - [sym_constant_pattern] = STATE(5373), - [sym_parenthesized_pattern] = STATE(5373), - [sym_var_pattern] = STATE(5373), - [sym_type_pattern] = STATE(5373), - [sym_list_pattern] = STATE(5373), - [sym_recursive_pattern] = STATE(5373), - [sym_positional_pattern_clause] = STATE(2611), - [sym_property_pattern_clause] = STATE(2707), - [sym_relational_pattern] = STATE(5373), - [sym_negated_pattern] = STATE(5373), - [sym_and_pattern] = STATE(5373), - [sym_or_pattern] = STATE(5373), - [sym_declaration_pattern] = STATE(5373), - [sym_expression] = STATE(4613), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5355), - [sym_postfix_unary_expression] = STATE(5354), - [sym_prefix_unary_expression] = STATE(5354), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5355), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5354), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5355), - [sym_member_access_expression] = STATE(3410), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5354), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5355), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5355), - [sym_typeof_expression] = STATE(5355), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3410), - [sym_literal] = STATE(5355), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -122515,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -122575,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), @@ -122598,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3177), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2371), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2565), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5968), - [sym_constant_pattern] = STATE(5048), - [sym_parenthesized_pattern] = STATE(5048), - [sym_var_pattern] = STATE(5048), - [sym_type_pattern] = STATE(5048), - [sym_list_pattern] = STATE(5048), - [sym_recursive_pattern] = STATE(5048), - [sym_positional_pattern_clause] = STATE(2678), - [sym_property_pattern_clause] = STATE(2925), - [sym_relational_pattern] = STATE(5048), - [sym_negated_pattern] = STATE(5048), - [sym_and_pattern] = STATE(5048), - [sym_or_pattern] = STATE(5048), - [sym_declaration_pattern] = STATE(5048), - [sym_expression] = STATE(4615), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5051), - [sym_postfix_unary_expression] = STATE(5050), - [sym_prefix_unary_expression] = STATE(5050), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5051), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5050), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5051), - [sym_member_access_expression] = STATE(3073), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5050), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5051), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5051), - [sym_typeof_expression] = STATE(5051), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3073), - [sym_literal] = STATE(5051), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -122705,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -122776,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), @@ -122794,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2454), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2220), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2478), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), + [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(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2307), - [sym_property_pattern_clause] = STATE(2331), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4602), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -122895,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -122966,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), @@ -122984,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3168), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2322), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2479), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4776), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2592), - [sym_property_pattern_clause] = STATE(2670), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4637), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -123085,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3263), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2545), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5531), - [sym_constant_pattern] = STATE(5527), - [sym_parenthesized_pattern] = STATE(5527), - [sym_var_pattern] = STATE(5527), - [sym_type_pattern] = STATE(5527), - [sym_list_pattern] = STATE(5527), - [sym_recursive_pattern] = STATE(5527), - [sym_positional_pattern_clause] = STATE(2658), - [sym_property_pattern_clause] = STATE(2826), - [sym_relational_pattern] = STATE(5527), - [sym_negated_pattern] = STATE(5527), - [sym_and_pattern] = STATE(5527), - [sym_or_pattern] = STATE(5527), - [sym_declaration_pattern] = STATE(5527), - [sym_expression] = STATE(4616), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5492), - [sym_postfix_unary_expression] = STATE(5491), - [sym_prefix_unary_expression] = STATE(5491), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5492), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5491), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5492), - [sym_member_access_expression] = STATE(4114), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5491), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5492), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5492), - [sym_typeof_expression] = STATE(5492), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4114), - [sym_literal] = STATE(5492), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -123346,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), @@ -123363,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(5914), + [445] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3263), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2545), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5507), - [sym_constant_pattern] = STATE(5527), - [sym_parenthesized_pattern] = STATE(5527), - [sym_var_pattern] = STATE(5527), - [sym_type_pattern] = STATE(5527), - [sym_list_pattern] = STATE(5527), - [sym_recursive_pattern] = STATE(5527), - [sym_positional_pattern_clause] = STATE(2658), - [sym_property_pattern_clause] = STATE(2826), - [sym_relational_pattern] = STATE(5527), - [sym_negated_pattern] = STATE(5527), - [sym_and_pattern] = STATE(5527), - [sym_or_pattern] = STATE(5527), - [sym_declaration_pattern] = STATE(5527), - [sym_expression] = STATE(4616), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5492), - [sym_postfix_unary_expression] = STATE(5491), - [sym_prefix_unary_expression] = STATE(5491), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5492), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5491), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5492), - [sym_member_access_expression] = STATE(4114), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5491), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5492), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5492), - [sym_typeof_expression] = STATE(5492), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4114), - [sym_literal] = STATE(5492), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -123465,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -123525,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), @@ -123548,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3263), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2380), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2545), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5535), - [sym_constant_pattern] = STATE(5527), - [sym_parenthesized_pattern] = STATE(5527), - [sym_var_pattern] = STATE(5527), - [sym_type_pattern] = STATE(5527), - [sym_list_pattern] = STATE(5527), - [sym_recursive_pattern] = STATE(5527), - [sym_positional_pattern_clause] = STATE(2658), - [sym_property_pattern_clause] = STATE(2826), - [sym_relational_pattern] = STATE(5527), - [sym_negated_pattern] = STATE(5527), - [sym_and_pattern] = STATE(5527), - [sym_or_pattern] = STATE(5527), - [sym_declaration_pattern] = STATE(5527), - [sym_expression] = STATE(4616), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5492), - [sym_postfix_unary_expression] = STATE(5491), - [sym_prefix_unary_expression] = STATE(5491), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5492), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5491), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5492), - [sym_member_access_expression] = STATE(4114), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5491), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5492), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5492), - [sym_typeof_expression] = STATE(5492), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4114), - [sym_literal] = STATE(5492), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -123655,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -123715,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), @@ -123738,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3205), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2355), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2577), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5889), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2701), - [sym_property_pattern_clause] = STATE(3060), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4639), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -123845,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -123916,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), @@ -123934,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3205), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2355), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2577), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(4894), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2701), - [sym_property_pattern_clause] = STATE(3060), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4639), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -124035,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -124106,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), @@ -124124,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3205), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2355), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2577), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5908), - [sym_constant_pattern] = STATE(4836), - [sym_parenthesized_pattern] = STATE(4836), - [sym_var_pattern] = STATE(4836), - [sym_type_pattern] = STATE(4836), - [sym_list_pattern] = STATE(4836), - [sym_recursive_pattern] = STATE(4836), - [sym_positional_pattern_clause] = STATE(2701), - [sym_property_pattern_clause] = STATE(3060), - [sym_relational_pattern] = STATE(4836), - [sym_negated_pattern] = STATE(4836), - [sym_and_pattern] = STATE(4836), - [sym_or_pattern] = STATE(4836), - [sym_declaration_pattern] = STATE(4836), - [sym_expression] = STATE(4639), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4804), - [sym_postfix_unary_expression] = STATE(4798), - [sym_prefix_unary_expression] = STATE(4798), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4804), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4798), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4804), - [sym_member_access_expression] = STATE(2829), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4798), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4804), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4804), - [sym_typeof_expression] = STATE(4804), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2829), - [sym_literal] = STATE(4804), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -124225,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -124285,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), @@ -124308,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(3140), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2338), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2498), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_pattern] = STATE(5463), - [sym_constant_pattern] = STATE(5373), - [sym_parenthesized_pattern] = STATE(5373), - [sym_var_pattern] = STATE(5373), - [sym_type_pattern] = STATE(5373), - [sym_list_pattern] = STATE(5373), - [sym_recursive_pattern] = STATE(5373), - [sym_positional_pattern_clause] = STATE(2611), - [sym_property_pattern_clause] = STATE(2707), - [sym_relational_pattern] = STATE(5373), - [sym_negated_pattern] = STATE(5373), - [sym_and_pattern] = STATE(5373), - [sym_or_pattern] = STATE(5373), - [sym_declaration_pattern] = STATE(5373), - [sym_expression] = STATE(4613), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(5355), - [sym_postfix_unary_expression] = STATE(5354), - [sym_prefix_unary_expression] = STATE(5354), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(5355), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(5354), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(5355), - [sym_member_access_expression] = STATE(3410), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(5354), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(5355), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(5355), - [sym_typeof_expression] = STATE(5355), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3410), - [sym_literal] = STATE(5355), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -124415,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -124475,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), @@ -124498,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6079), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6057), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -124595,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -124605,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), @@ -124671,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), @@ -124690,87 +124773,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [453] = { [sym_attribute] = STATE(7184), - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6079), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6057), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -124780,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -124790,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), @@ -124856,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), @@ -124874,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(7096), - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6085), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6057), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -124965,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -125039,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), @@ -125057,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(7155), - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6086), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6057), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -125148,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -125222,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), @@ -125240,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(7155), - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6086), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7076), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6057), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -125331,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -125405,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), @@ -125423,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(7155), - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6086), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7362), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6057), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -125514,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -125588,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), @@ -125606,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(7155), - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6086), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7202), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6057), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -125697,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -125771,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), @@ -125789,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(7155), - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6086), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7147), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6057), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -125880,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -125954,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), @@ -125972,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(7155), - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_attribute_target_specifier] = STATE(6086), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7263), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6057), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -126063,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -126137,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), @@ -126155,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6121), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -126247,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -126260,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), @@ -126318,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), @@ -126336,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6145), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -126428,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -126441,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), @@ -126499,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), @@ -126517,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7538), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6164), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5989), - [sym_lvalue_expression] = STATE(5152), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -126609,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -126622,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), @@ -126680,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), @@ -126698,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6097), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -126790,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -126803,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), @@ -126861,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), @@ -126879,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6143), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -126971,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -126984,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), @@ -127042,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), @@ -127060,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7440), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6160), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5973), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -127152,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -127165,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), @@ -127223,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), @@ -127241,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(5914), - [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(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6111), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5959), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -127333,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -127346,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), @@ -127404,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), @@ -127422,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(5914), - [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(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6156), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5959), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -127514,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -127527,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), @@ -127585,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), @@ -127603,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(5914), - [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(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6162), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -127695,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -127708,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), @@ -127766,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), @@ -127784,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7540), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6120), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5952), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -127876,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -127889,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), @@ -127947,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), @@ -127965,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7540), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), + [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(5457), + [sym_generic_name] = STATE(2210), [sym_type] = STATE(6116), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5952), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = 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), @@ -128057,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -128070,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), @@ -128128,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), @@ -128146,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(5914), - [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(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6146), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5959), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -128238,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -128251,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), @@ -128309,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), @@ -128327,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7540), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6100), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5952), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -128419,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -128432,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), @@ -128490,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), @@ -128508,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6112), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -128600,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -128613,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), @@ -128671,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), @@ -128689,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6119), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -128781,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -128794,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), @@ -128852,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), @@ -128870,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7538), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6151), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5989), - [sym_lvalue_expression] = STATE(5152), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -128962,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -128975,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), @@ -129033,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), @@ -129051,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7538), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6114), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5989), - [sym_lvalue_expression] = STATE(5152), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -129143,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -129156,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), @@ -129214,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), @@ -129232,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(5914), - [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(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6122), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5959), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -129324,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -129337,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), @@ -129395,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), @@ -129413,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6135), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -129505,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -129518,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), @@ -129576,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), @@ -129594,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7440), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6148), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5973), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -129686,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -129699,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), @@ -129757,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), @@ -129775,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6124), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -129867,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -129880,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), @@ -129938,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), @@ -129956,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(5914), - [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(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6129), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5959), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -130048,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -130061,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), @@ -130119,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), @@ -130137,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(5914), - [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(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6094), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5959), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -130229,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -130242,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), @@ -130300,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), @@ -130318,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(5914), - [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(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6136), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5959), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -130410,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -130423,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), @@ -130481,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), @@ -130499,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7540), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6126), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5952), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -130591,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -130604,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), @@ -130662,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), @@ -130680,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6162), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -130772,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -130785,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), @@ -130843,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), @@ -130861,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6165), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -130953,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -130966,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), @@ -131024,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), @@ -131042,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7540), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6105), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5952), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -131134,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -131147,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), @@ -131205,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), @@ -131223,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6108), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -131315,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -131328,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), @@ -131386,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), @@ -131404,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7440), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6158), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5973), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -131496,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -131509,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), @@ -131567,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), @@ -131585,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7540), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6099), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5952), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -131677,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -131690,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), @@ -131748,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), @@ -131766,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(5914), - [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(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6118), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5959), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_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), @@ -131858,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -131871,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), @@ -131929,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), @@ -131947,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6102), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -132039,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -132052,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), @@ -132110,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), @@ -132128,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7440), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6162), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -132220,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -132233,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), @@ -132291,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), @@ -132309,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7540), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6162), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -132401,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -132414,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), @@ -132472,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), @@ -132490,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7540), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6167), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5952), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -132582,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -132595,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), @@ -132653,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), @@ -132671,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6162), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7497), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -132763,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -132776,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), @@ -132834,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), @@ -132852,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7538), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6162), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5152), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -132944,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -132957,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), @@ -133015,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), @@ -133033,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6157), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -133125,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -133138,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), @@ -133196,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), @@ -133214,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6153), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -133306,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -133319,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), @@ -133377,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), @@ -133395,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7540), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6096), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5952), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -133487,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -133500,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), @@ -133558,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), @@ -133576,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7540), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6107), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5952), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -133668,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -133681,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), @@ -133739,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), @@ -133757,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(5914), - [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(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6098), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5959), - [sym_lvalue_expression] = STATE(5137), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -133849,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -133862,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), @@ -133920,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), @@ -133938,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6140), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -134030,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -134043,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), @@ -134101,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), @@ -134119,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7540), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6133), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5952), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -134211,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -134224,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), @@ -134282,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), @@ -134300,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6103), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -134392,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -134405,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), @@ -134463,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), @@ -134481,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6110), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5154), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -134573,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -134586,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), @@ -134644,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), @@ -134662,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6106), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -134754,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -134767,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), @@ -134825,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), @@ -134843,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6125), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -134935,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -134948,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), @@ -135006,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), @@ -135024,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6162), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -135116,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -135129,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), @@ -135187,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), @@ -135205,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6162), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -135297,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -135310,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), @@ -135368,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), @@ -135386,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7538), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6150), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5989), - [sym_lvalue_expression] = STATE(5152), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -135478,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -135491,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), @@ -135549,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), @@ -135567,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7540), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6162), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -135659,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -135672,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), @@ -135730,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), @@ -135748,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6147), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -135840,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -135853,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), @@ -135911,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), @@ -135929,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6149), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(3417), + [sym_assignment_expression] = STATE(3369), + [sym_binary_expression] = STATE(3417), + [sym_postfix_unary_expression] = STATE(3369), + [sym_prefix_unary_expression] = STATE(3369), + [sym__pointer_indirection_expression] = STATE(2568), + [sym_query_expression] = STATE(3417), + [sym_from_clause] = STATE(6441), + [sym_conditional_expression] = STATE(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_expression] = STATE(3369), + [sym_parenthesized_expression] = STATE(3369), + [sym__parenthesized_lvalue_expression] = STATE(2568), + [sym_lambda_expression] = STATE(3417), + [sym__lambda_expression_init] = STATE(7734), + [sym__lambda_parameters] = STATE(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_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), @@ -136021,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -136034,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), @@ -136092,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), @@ -136110,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6139), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -136202,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -136215,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), @@ -136273,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), @@ -136291,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7540), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6163), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5952), - [sym_lvalue_expression] = STATE(5147), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -136383,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -136396,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), @@ -136454,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), @@ -136472,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6142), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5961), - [sym_lvalue_expression] = STATE(5138), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -136564,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -136577,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), @@ -136635,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), @@ -136653,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_argument] = STATE(7440), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6123), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(5973), - [sym_lvalue_expression] = STATE(5145), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2259), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -136745,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(3063), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -136758,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), @@ -136816,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), @@ -136834,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(5904), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3376), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(7687), - [sym_preproc_elif_in_expression] = STATE(7687), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_else_in_attribute_list] = STATE(7921), - [sym_preproc_elif_in_attribute_list] = STATE(7921), + [sym_attribute_list] = STATE(5915), + [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(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), @@ -136925,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -136990,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), @@ -137011,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(5904), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(7880), - [sym_preproc_elif_in_expression] = STATE(7880), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_else_in_attribute_list] = STATE(7921), - [sym_preproc_elif_in_attribute_list] = STATE(7921), + [sym_attribute_list] = STATE(5915), + [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(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), @@ -137102,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -137167,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), @@ -137188,88 +137271,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [522] = { - [sym_attribute_list] = STATE(5904), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3376), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(7687), - [sym_preproc_elif_in_expression] = STATE(7687), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_else_in_attribute_list] = STATE(7921), - [sym_preproc_elif_in_attribute_list] = STATE(7921), + [sym_attribute_list] = STATE(5926), + [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(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), @@ -137279,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -137344,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), @@ -137365,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(5904), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3360), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(8043), - [sym_preproc_elif_in_expression] = STATE(8043), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_else_in_attribute_list] = STATE(7921), - [sym_preproc_elif_in_attribute_list] = STATE(7921), + [sym_attribute_list] = STATE(5915), + [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(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), @@ -137456,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -137521,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), @@ -137542,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(5904), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3345), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(7923), - [sym_preproc_elif_in_expression] = STATE(7923), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_else_in_attribute_list] = STATE(7921), - [sym_preproc_elif_in_attribute_list] = STATE(7921), + [sym_attribute_list] = STATE(5915), + [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(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), @@ -137633,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -137698,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), @@ -137719,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(5896), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3397), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(7899), - [sym_preproc_elif_in_expression] = STATE(7899), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_else_in_attribute_list] = STATE(7885), - [sym_preproc_elif_in_attribute_list] = STATE(7885), + [sym_attribute_list] = STATE(5915), + [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(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), @@ -137810,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -137875,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), @@ -137896,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(5904), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3377), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(7725), - [sym_preproc_elif_in_expression] = STATE(7725), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_else_in_attribute_list] = STATE(7921), - [sym_preproc_elif_in_attribute_list] = STATE(7921), + [sym_attribute_list] = STATE(5915), + [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(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), @@ -137987,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -138052,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), @@ -138073,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(5904), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3360), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(8043), - [sym_preproc_elif_in_expression] = STATE(8043), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_else_in_attribute_list] = STATE(7921), - [sym_preproc_elif_in_attribute_list] = STATE(7921), + [sym_attribute_list] = STATE(5915), + [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(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), @@ -138164,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -138229,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), @@ -138250,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(5904), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3377), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(7725), - [sym_preproc_elif_in_expression] = STATE(7725), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_else_in_attribute_list] = STATE(7921), - [sym_preproc_elif_in_attribute_list] = STATE(7921), + [sym_attribute_list] = STATE(5915), + [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(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), @@ -138341,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -138406,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), @@ -138427,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(5904), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3439), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(7705), - [sym_preproc_elif_in_expression] = STATE(7705), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_else_in_attribute_list] = STATE(7921), - [sym_preproc_elif_in_attribute_list] = STATE(7921), + [sym_attribute_list] = STATE(5915), + [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(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), @@ -138518,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -138583,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), @@ -138604,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(5904), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3455), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(7880), - [sym_preproc_elif_in_expression] = STATE(7880), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_else_in_attribute_list] = STATE(7921), - [sym_preproc_elif_in_attribute_list] = STATE(7921), + [sym_attribute_list] = STATE(5915), + [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(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), @@ -138695,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -138760,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), @@ -138781,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7214), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5972), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6185), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7443), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = 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), @@ -138871,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -138885,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), @@ -138939,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), @@ -138957,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7136), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5972), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6185), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7542), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = 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), @@ -139047,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -139115,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), @@ -139133,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7196), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5972), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6185), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = 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), @@ -139223,184 +139306,8 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [sym__identifier_token] = ACTIONS(25), - [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_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_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [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(2875), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [534] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7136), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5972), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6185), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7438), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(534), - [sym_preproc_endregion] = STATE(534), - [sym_preproc_line] = STATE(534), - [sym_preproc_pragma] = STATE(534), - [sym_preproc_nullable] = STATE(534), - [sym_preproc_error] = STATE(534), - [sym_preproc_warning] = STATE(534), - [sym_preproc_define] = STATE(534), - [sym_preproc_undef] = STATE(534), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -139413,36 +139320,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), @@ -139467,8 +139374,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_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), + }, + [534] = { + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = 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), + [sym_preproc_pragma] = STATE(534), + [sym_preproc_nullable] = STATE(534), + [sym_preproc_error] = STATE(534), + [sym_preproc_warning] = STATE(534), + [sym_preproc_define] = STATE(534), + [sym_preproc_undef] = STATE(534), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [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_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(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_TILDE] = ACTIONS(1737), + [anon_sym_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(1283), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(2875), + [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), @@ -139485,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7330), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5972), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6185), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7534), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = 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), @@ -139575,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -139643,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), @@ -139661,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7214), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5972), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6185), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7542), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = 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), @@ -139751,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -139819,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), @@ -139837,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7084), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5972), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6185), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7378), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = 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), @@ -139927,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -139941,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), @@ -139995,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), @@ -140013,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7330), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -140102,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -140170,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), @@ -140188,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7619), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -140277,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -140345,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), @@ -140363,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7619), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -140452,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -140466,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), @@ -140520,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), @@ -140538,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7214), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -140627,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -140695,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), @@ -140713,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7619), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -140802,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -140870,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), @@ -140888,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7619), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -140977,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -141045,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), @@ -141063,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7084), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -141152,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -141220,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), @@ -141238,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7619), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -141327,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -141395,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), @@ -141413,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3397), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_else_in_expression] = STATE(7899), - [sym_preproc_elif_in_expression] = STATE(7899), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -141502,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -141567,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), @@ -141588,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7619), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -141677,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -141745,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), @@ -141763,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7619), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -141852,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -141920,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), @@ -141938,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7196), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -142027,183 +142110,8 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [sym__identifier_token] = ACTIONS(25), - [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_ref] = ACTIONS(2885), - [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_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [anon_sym_checked] = ACTIONS(1279), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [550] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7619), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(550), - [sym_preproc_endregion] = STATE(550), - [sym_preproc_line] = STATE(550), - [sym_preproc_pragma] = STATE(550), - [sym_preproc_nullable] = STATE(550), - [sym_preproc_error] = STATE(550), - [sym_preproc_warning] = STATE(550), - [sym_preproc_define] = STATE(550), - [sym_preproc_undef] = STATE(550), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -142216,36 +142124,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), @@ -142270,8 +142178,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_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), + }, + [550] = { + [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), + [sym_preproc_pragma] = STATE(550), + [sym_preproc_nullable] = STATE(550), + [sym_preproc_error] = STATE(550), + [sym_preproc_warning] = STATE(550), + [sym_preproc_define] = STATE(550), + [sym_preproc_undef] = STATE(550), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [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_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(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_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), @@ -142288,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7619), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -142377,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -142391,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), @@ -142445,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), @@ -142463,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7136), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -142552,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -142620,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), @@ -142638,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7619), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -142727,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -142795,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), @@ -142813,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7619), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -142902,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -142970,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), @@ -142988,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7619), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -143077,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -143091,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), @@ -143145,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), @@ -143163,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4136), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -143252,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -143265,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), @@ -143319,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), @@ -143337,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7263), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -143426,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -143439,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), @@ -143493,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), @@ -143511,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7202), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -143600,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -143613,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), @@ -143667,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), @@ -143685,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7610), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -143774,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -143841,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), @@ -143859,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7076), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -143948,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -143961,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), @@ -144015,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), @@ -144033,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4135), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -144122,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -144189,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), @@ -144207,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7147), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -144296,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -144309,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), @@ -144363,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), @@ -144381,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5974), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4091), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7194), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -144469,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -144537,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), @@ -144555,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5983), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2300), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5974), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3996), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7194), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -144643,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -144711,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), @@ -144729,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4090), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7194), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -144817,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -144885,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), @@ -144903,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7362), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -144992,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -145005,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), @@ -145059,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), @@ -145077,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4173), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -145166,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -145179,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), @@ -145233,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), @@ -145251,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7574), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4183), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -145340,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -145407,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), @@ -145425,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7619), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -145514,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -145527,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), @@ -145581,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), @@ -145599,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7500), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -145688,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -145755,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), @@ -145773,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_argument] = STATE(7162), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3823), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7117), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2242), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -145862,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -145875,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), @@ -145929,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), @@ -145947,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7213), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -146035,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -146102,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), @@ -146120,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3937), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -146207,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(3828), - [aux_sym_array_rank_specifier_repeat1] = STATE(7317), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -146275,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), @@ -146293,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4011), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -146380,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(3828), - [aux_sym_array_rank_specifier_repeat1] = STATE(7120), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -146448,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), @@ -146466,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7189), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -146554,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -146621,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), @@ -146639,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3850), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -146726,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(3828), - [aux_sym_array_rank_specifier_repeat1] = STATE(7159), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -146794,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), @@ -146812,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4056), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -146899,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(3828), - [aux_sym_array_rank_specifier_repeat1] = STATE(7070), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -146967,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), @@ -146985,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3887), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7201), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -147073,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -147140,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), @@ -147158,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3776), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -147245,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(3828), - [aux_sym_array_rank_specifier_repeat1] = STATE(7231), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -147313,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), @@ -147331,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7138), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -147419,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -147486,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), @@ -147504,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7282), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -147592,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -147607,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), @@ -147659,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), @@ -147677,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7332), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -147765,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -147832,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), @@ -147850,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4097), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -147937,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(3828), - [aux_sym_array_rank_specifier_repeat1] = STATE(7248), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -148005,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), @@ -148023,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4037), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -148110,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(3828), - [aux_sym_array_rank_specifier_repeat1] = STATE(7345), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -148126,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), @@ -148178,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), @@ -148196,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7094), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -148284,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -148351,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), @@ -148369,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4031), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -148456,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(3828), - [aux_sym_array_rank_specifier_repeat1] = STATE(7077), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -148524,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), @@ -148542,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5949), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4421), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(587), [sym_preproc_endregion] = STATE(587), [sym_preproc_line] = STATE(587), @@ -148629,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -148643,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), @@ -148698,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), @@ -148715,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4526), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -148802,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -148869,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), @@ -148887,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5972), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5974), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4159), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7194), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -148975,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -149041,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), @@ -149059,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4503), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4143), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), @@ -149147,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -149213,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), @@ -149231,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7611), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -149319,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -149385,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), @@ -149403,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3337), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4560), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(5374), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), @@ -149491,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -149557,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), @@ -149575,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_using_variable_declaration] = STATE(7728), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5882), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6154), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(4354), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -149664,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -149729,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), @@ -149747,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4319), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4143), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -149835,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -149853,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), @@ -149901,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), @@ -149919,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2475), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4443), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(3779), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -150007,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -150073,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), @@ -150091,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4328), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4143), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -150179,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -150197,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), @@ -150245,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), @@ -150263,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4003), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -150350,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -150417,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), @@ -150435,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4617), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4593), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(3779), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), @@ -150523,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -150589,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), @@ -150607,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4039), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -150694,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -150761,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), @@ -150779,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4337), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4143), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -150867,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -150885,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), @@ -150933,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), @@ -150951,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5974), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4091), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7194), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -151039,220 +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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [sym__identifier_token] = ACTIONS(25), - [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_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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [602] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4617), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4581), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4994), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(602), - [sym_preproc_endregion] = STATE(602), - [sym_preproc_line] = STATE(602), - [sym_preproc_pragma] = STATE(602), - [sym_preproc_nullable] = STATE(602), - [sym_preproc_error] = STATE(602), - [sym_preproc_warning] = STATE(602), - [sym_preproc_define] = STATE(602), - [sym_preproc_undef] = STATE(602), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -151277,8 +151188,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_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), + }, + [602] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), + [sym_preproc_pragma] = STATE(602), + [sym_preproc_nullable] = STATE(602), + [sym_preproc_error] = STATE(602), + [sym_preproc_warning] = STATE(602), + [sym_preproc_define] = STATE(602), + [sym_preproc_undef] = STATE(602), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [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(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(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(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), @@ -151295,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4392), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4143), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -151383,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -151449,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), @@ -151467,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2935), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4501), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4807), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -151555,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -151573,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), @@ -151621,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), @@ -151639,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4474), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4143), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), @@ -151727,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -151793,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), @@ -151811,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_using_variable_declaration] = STATE(7759), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5882), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6154), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(4567), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -151900,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -151965,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), @@ -151983,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4434), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4143), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -152071,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -152089,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), @@ -152137,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), @@ -152155,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4448), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4143), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -152243,48 +152325,49 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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(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(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(3007), + [anon_sym_default] = ACTIONS(3009), + [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), @@ -152309,8 +152392,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -152327,85 +152410,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [609] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2935), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4579), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4807), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -152415,16 +152497,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(609), [sym_preproc_define] = STATE(609), [sym_preproc_undef] = STATE(609), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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), @@ -152433,30 +152517,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), @@ -152481,8 +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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -152499,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7611), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -152587,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -152653,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), @@ -152671,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_using_variable_declaration] = STATE(7847), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5882), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6154), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(4368), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -152760,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -152825,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), @@ -152843,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4617), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4478), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4807), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -152931,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -152949,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), @@ -152997,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), @@ -153015,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2475), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4422), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(3779), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -153103,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -153121,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), @@ -153169,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), @@ -153187,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7611), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -153275,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -153285,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), @@ -153341,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), @@ -153359,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_using_variable_declaration] = STATE(7679), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5882), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6154), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(4310), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -153448,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -153513,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), @@ -153531,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4727), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4457), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(5672), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -153619,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -153637,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), @@ -153685,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), @@ -153703,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2935), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4537), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4807), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -153791,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -153809,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), @@ -153857,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), @@ -153875,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4617), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4575), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4994), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -153963,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -153981,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), @@ -154029,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), @@ -154047,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3337), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4462), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(5374), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -154135,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -154153,30 +154237,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(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(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), @@ -154201,8 +154284,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -154219,85 +154302,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [620] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5972), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5974), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4091), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7194), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -154307,48 +154390,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(620), [sym_preproc_define] = STATE(620), [sym_preproc_undef] = STATE(620), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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_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_readonly] = ACTIONS(2979), [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), @@ -154373,8 +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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -154391,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2475), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4489), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(3779), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -154479,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -154497,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), @@ -154545,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), @@ -154563,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3084), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4453), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4994), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), @@ -154651,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -154717,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), @@ -154735,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2935), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4580), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4807), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -154823,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -154841,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), @@ -154889,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), @@ -154907,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_using_variable_declaration] = STATE(8058), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5882), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6154), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(4435), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -154996,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -155061,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), @@ -155079,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3084), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4467), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4994), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -155167,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -155233,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), @@ -155251,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5974), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3824), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7306), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -155339,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -155405,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), @@ -155423,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2475), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4484), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(3779), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), @@ -155511,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -155577,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), @@ -155595,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7611), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -155683,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -155749,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), @@ -155767,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4727), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4564), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(5672), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), @@ -155855,48 +155938,392 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [630] = { + [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), + [sym_preproc_pragma] = STATE(630), + [sym_preproc_nullable] = STATE(630), + [sym_preproc_error] = STATE(630), + [sym_preproc_warning] = STATE(630), + [sym_preproc_define] = STATE(630), + [sym_preproc_undef] = STATE(630), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = 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(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), [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(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(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), + }, + [631] = { + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), + [sym_preproc_pragma] = STATE(631), + [sym_preproc_nullable] = STATE(631), + [sym_preproc_error] = STATE(631), + [sym_preproc_warning] = STATE(631), + [sym_preproc_define] = STATE(631), + [sym_preproc_undef] = STATE(631), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [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(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(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), @@ -155921,352 +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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [630] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4617), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4378), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4143), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(630), - [sym_preproc_endregion] = STATE(630), - [sym_preproc_line] = STATE(630), - [sym_preproc_pragma] = STATE(630), - [sym_preproc_nullable] = STATE(630), - [sym_preproc_error] = STATE(630), - [sym_preproc_warning] = STATE(630), - [sym_preproc_define] = STATE(630), - [sym_preproc_undef] = STATE(630), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [sym__identifier_token] = ACTIONS(25), - [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(3015), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [631] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3084), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4568), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4994), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(631), - [sym_preproc_endregion] = STATE(631), - [sym_preproc_line] = STATE(631), - [sym_preproc_pragma] = STATE(631), - [sym_preproc_nullable] = STATE(631), - [sym_preproc_error] = STATE(631), - [sym_preproc_warning] = STATE(631), - [sym_preproc_define] = STATE(631), - [sym_preproc_undef] = STATE(631), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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_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(2999), - [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), @@ -156283,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2935), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4577), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4807), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), @@ -156371,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -156437,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), @@ -156455,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3337), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4452), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(5374), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), @@ -156543,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -156609,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), @@ -156627,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7611), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -156715,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -156781,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), @@ -156799,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7611), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -156887,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -156897,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), @@ -156953,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), @@ -156971,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7611), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -157059,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -157125,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), @@ -157143,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2475), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4542), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(3779), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -157231,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -157249,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), @@ -157297,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), @@ -157315,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4538), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4143), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -157403,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -157469,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), @@ -157487,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4617), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4493), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4807), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -157575,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -157641,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), @@ -157659,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4241), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -157746,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -157813,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), @@ -157831,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3337), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4548), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(5374), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), @@ -157919,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -157985,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), @@ -158003,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3084), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4417), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4994), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), @@ -158091,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -158157,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), @@ -158175,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2935), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4574), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4807), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -158263,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -158329,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), @@ -158347,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3084), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4492), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4994), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -158435,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -158501,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), @@ -158519,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7611), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -158607,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -158673,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), @@ -158691,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2475), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4413), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(3779), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), @@ -158779,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -158845,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), @@ -158863,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4042), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -158950,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -159017,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), @@ -159035,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_variable_declaration] = STATE(7740), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6095), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4062), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -159123,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -159189,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), @@ -159207,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7611), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -159295,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -159361,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), @@ -159379,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4617), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4414), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4143), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -159467,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -159533,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), @@ -159551,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3084), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4347), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4994), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), @@ -159639,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -159705,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), @@ -159723,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7611), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -159811,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -159877,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), @@ -159895,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4393), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), @@ -159982,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -160049,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), @@ -160067,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2935), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4424), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4807), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -160155,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -160221,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), @@ -160239,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4727), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4366), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(5672), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(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), @@ -160327,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -160393,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), @@ -160411,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3084), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4582), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4994), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -160499,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -160565,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), @@ -160583,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_using_variable_declaration] = STATE(8073), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5882), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6154), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(4461), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -160672,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -160737,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), @@ -160755,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4093), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -160842,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -160909,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), @@ -160927,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7611), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -161015,48 +161097,49 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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(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(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(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_case] = ACTIONS(3055), + [anon_sym_default] = ACTIONS(3057), + [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), @@ -161081,8 +161164,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -161099,85 +161182,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [660] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2475), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4555), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(3779), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -161187,15 +161271,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(660), [sym_preproc_define] = STATE(660), [sym_preproc_undef] = STATE(660), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(2977), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), @@ -161205,30 +161289,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(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), @@ -161253,8 +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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -161271,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4617), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4507), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4994), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -161359,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -161377,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), @@ -161425,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), @@ -161443,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3979), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -161530,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -161597,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), @@ -161615,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4523), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -161702,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -161769,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), @@ -161787,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4491), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4143), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -161875,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -161893,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), @@ -161941,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), @@ -161959,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_using_variable_declaration] = STATE(8024), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5882), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6154), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(4536), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -162048,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -162113,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), @@ -162131,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3932), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -162218,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -162229,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), @@ -162285,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), @@ -162303,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(5974), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4159), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7194), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -162391,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -162457,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), @@ -162475,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3084), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4401), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4994), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -162563,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -162629,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), @@ -162647,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3910), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -162734,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = 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), @@ -162801,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), @@ -162819,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4500), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -162906,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -162973,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), @@ -162991,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2475), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4335), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(3779), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -163079,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -163097,30 +163181,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(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(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [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), @@ -163145,8 +163228,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -163163,85 +163246,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [672] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2571), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4423), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(4143), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -163251,48 +163334,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(672), [sym_preproc_define] = STATE(672), [sym_preproc_undef] = STATE(672), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -163317,8 +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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -163335,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(7337), - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4164), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2316), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -163423,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -163489,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), @@ -163507,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7611), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -163595,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -163661,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), @@ -163679,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_using_variable_declaration] = STATE(7928), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5882), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6154), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_expression] = STATE(4573), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -163768,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -163833,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), @@ -163851,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4727), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4451), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_member_binding_expression] = STATE(5672), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -163939,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -164005,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), @@ -164023,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4795), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3220), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -164111,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(3828), - [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(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), @@ -164164,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), @@ -164188,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3994), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), + [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(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(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -164281,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -164347,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), @@ -164365,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4293), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3946), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -164453,47 +164536,218 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(1919), + [anon_sym_ref] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(3069), + [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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [680] = { + [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), + [sym_preproc_pragma] = STATE(680), + [sym_preproc_nullable] = STATE(680), + [sym_preproc_error] = STATE(680), + [sym_preproc_warning] = STATE(680), + [sym_preproc_define] = STATE(680), + [sym_preproc_undef] = STATE(680), + [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(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_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(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(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(1909), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [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), @@ -164506,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), @@ -164530,141 +164784,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, - [680] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4499), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(680), - [sym_preproc_endregion] = STATE(680), - [sym_preproc_line] = STATE(680), - [sym_preproc_pragma] = STATE(680), - [sym_preproc_nullable] = STATE(680), - [sym_preproc_error] = STATE(680), - [sym_preproc_warning] = STATE(680), - [sym_preproc_define] = STATE(680), - [sym_preproc_undef] = STATE(680), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [681] = { + [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(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), + [sym_preproc_pragma] = STATE(681), + [sym_preproc_nullable] = STATE(681), + [sym_preproc_error] = STATE(681), + [sym_preproc_warning] = STATE(681), + [sym_preproc_define] = STATE(681), + [sym_preproc_undef] = STATE(681), + [aux_sym__class_declaration_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(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), @@ -164689,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), @@ -164706,136 +164960,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), }, - [681] = { - [sym_attribute_list] = STATE(5914), + [682] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4220), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(681), - [sym_preproc_endregion] = STATE(681), - [sym_preproc_line] = STATE(681), - [sym_preproc_pragma] = STATE(681), - [sym_preproc_nullable] = STATE(681), - [sym_preproc_error] = STATE(681), - [sym_preproc_warning] = STATE(681), - [sym_preproc_define] = STATE(681), - [sym_preproc_undef] = STATE(681), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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), + [sym_preproc_pragma] = STATE(682), + [sym_preproc_nullable] = STATE(682), + [sym_preproc_error] = STATE(682), + [sym_preproc_warning] = STATE(682), + [sym_preproc_define] = STATE(682), + [sym_preproc_undef] = STATE(682), + [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_RBRACE] = ACTIONS(3073), - [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_readonly] = ACTIONS(3023), [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), @@ -164848,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -164872,141 +165126,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, - [682] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4021), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(682), - [sym_preproc_endregion] = STATE(682), - [sym_preproc_line] = STATE(682), - [sym_preproc_pragma] = STATE(682), - [sym_preproc_nullable] = STATE(682), - [sym_preproc_error] = STATE(682), - [sym_preproc_warning] = STATE(682), - [sym_preproc_define] = STATE(682), - [sym_preproc_undef] = STATE(682), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [683] = { + [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), + [sym_preproc_pragma] = STATE(683), + [sym_preproc_nullable] = STATE(683), + [sym_preproc_error] = STATE(683), + [sym_preproc_warning] = STATE(683), + [sym_preproc_define] = STATE(683), + [sym_preproc_undef] = STATE(683), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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(1527), + [anon_sym_LPAREN] = ACTIONS(1585), + [anon_sym_ref] = ACTIONS(1587), + [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(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), @@ -165031,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), @@ -165048,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), }, - [683] = { - [sym_attribute_list] = STATE(5914), + [684] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3404), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(683), - [sym_preproc_endregion] = STATE(683), - [sym_preproc_line] = STATE(683), - [sym_preproc_pragma] = STATE(683), - [sym_preproc_nullable] = STATE(683), - [sym_preproc_error] = STATE(683), - [sym_preproc_warning] = STATE(683), - [sym_preproc_define] = STATE(683), - [sym_preproc_undef] = STATE(683), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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_LPAREN] = ACTIONS(1919), + [anon_sym_ref] = ACTIONS(1921), [anon_sym_LBRACE] = ACTIONS(1611), [anon_sym_delegate] = ACTIONS(1613), - [anon_sym_readonly] = ACTIONS(2997), + [anon_sym_readonly] = ACTIONS(3023), [anon_sym_async] = ACTIONS(1259), [anon_sym_file] = ACTIONS(1603), [anon_sym_new] = ACTIONS(1683), @@ -165155,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), @@ -165219,136 +165473,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1675), [sym_raw_string_start] = ACTIONS(1677), }, - [684] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4982), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4040), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(1521), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_ref] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_delegate] = ACTIONS(1529), + [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(1991), + [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(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(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(1997), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [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), @@ -165361,191 +165615,20 @@ static const uint16_t ts_parse_table[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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [685] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5679), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3391), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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_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(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_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_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), @@ -165556,90 +165639,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(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), }, [686] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2697), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -165649,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -165703,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), @@ -165727,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2729), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -165820,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(3828), - [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(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), @@ -165874,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), @@ -165898,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4220), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -165991,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -166057,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), @@ -166075,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3112), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(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), @@ -166162,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -166228,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), @@ -166246,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2851), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(2306), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(2595), - [sym_implicit_type] = STATE(3029), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7584), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7785), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(3029), - [sym_scoped_type] = STATE(3029), - [sym_tuple_type] = STATE(3011), - [sym_expression] = STATE(4039), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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(2263), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -166333,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -166400,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), @@ -166417,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4405), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -166504,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -166559,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), @@ -166582,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5403), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2674), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -166676,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -166729,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), @@ -166753,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3288), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -166846,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -166900,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), @@ -166924,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4293), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3065), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -167018,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -167072,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), @@ -167095,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5882), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4039), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -167188,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -167254,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), @@ -167272,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4795), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2749), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -167360,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(3828), - [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(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), @@ -167413,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), @@ -167437,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3953), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -167530,74 +167613,74 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), + [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), @@ -167608,91 +167691,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [698] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(3855), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4222), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -167702,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -167755,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), @@ -167779,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4186), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -167872,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_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), @@ -167926,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), @@ -167950,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4982), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3320), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -168044,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -168097,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), @@ -168121,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4982), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3326), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -168215,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -168268,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), @@ -168298,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3091), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -168385,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -168439,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), @@ -168463,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4039), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(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), @@ -168556,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -168622,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), @@ -168640,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4795), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3419), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -168728,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(3828), - [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(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), @@ -168793,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), @@ -168811,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3283), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -168898,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -168952,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), @@ -168982,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3421), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -169069,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(3828), - [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(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), @@ -169123,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), @@ -169147,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5679), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4079), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -169241,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -169318,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3650), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(708), [sym_preproc_endregion] = STATE(708), [sym_preproc_line] = STATE(708), @@ -169411,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -169477,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), @@ -169495,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4343), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -169582,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -169648,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), @@ -169666,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2898), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -169753,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -169807,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), @@ -169831,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4421), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -169924,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -169978,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), @@ -170002,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4506), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [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), @@ -170095,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -170161,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), @@ -170179,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5403), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2626), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -170267,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -170320,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), @@ -170344,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3881), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(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), @@ -170437,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -170491,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), @@ -170515,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4544), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), + [sym__attribute_list] = STATE(5916), + [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), @@ -170608,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -170686,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2630), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -170779,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -170833,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), @@ -170857,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4293), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4304), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -170951,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -171004,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), @@ -171034,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4220), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -171121,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -171199,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4220), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_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), @@ -171292,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -171347,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), @@ -171370,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5679), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3304), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -171464,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -171541,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4476), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -171634,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -171688,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), @@ -171718,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5988), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4421), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -171805,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -171859,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), @@ -171883,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(3855), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3085), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -171977,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -172030,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), @@ -172054,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5948), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -172147,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -172213,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), @@ -172231,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4220), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -172318,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -172384,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), @@ -172402,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(3855), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4288), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -172490,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -172543,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), @@ -172567,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3251), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -172660,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -172715,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), @@ -172738,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4253), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(728), [sym_preproc_endregion] = STATE(728), [sym_preproc_line] = STATE(728), @@ -172831,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_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), @@ -172885,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), @@ -172909,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4982), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3475), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -173003,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -173056,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), @@ -173086,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6003), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2345), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4039), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2275), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -173173,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -173239,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), @@ -173257,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4795), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3719), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -173345,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(3828), - [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(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), @@ -173398,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), @@ -173422,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3492), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -173515,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -173569,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), @@ -173599,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3765), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -173686,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(3828), - [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(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), @@ -173740,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), @@ -173764,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3791), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -173857,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_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), @@ -173911,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), @@ -173941,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4982), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3789), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -174029,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -174082,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), @@ -174112,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3328), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -174199,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -174277,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4398), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -174370,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -174424,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), @@ -174448,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5949), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4421), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -174541,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -174595,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), @@ -174625,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4293), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3535), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -174713,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -174766,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), @@ -174790,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4403), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -174883,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -174937,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), @@ -174967,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5403), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2880), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -175055,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -175108,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), @@ -175132,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4220), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -175225,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -175291,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), @@ -175309,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4293), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4559), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -175397,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -175462,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), @@ -175480,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4293), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4481), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -175568,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -175633,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), @@ -175651,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4220), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -175738,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -175804,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), @@ -175822,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2453), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2222), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_expression] = STATE(4039), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2218), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -175909,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -175975,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), @@ -175993,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3238), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -176080,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(3828), - [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(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), @@ -176134,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), @@ -176158,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3740), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -176251,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -176305,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), @@ -176335,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4293), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4569), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), + [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_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -176423,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -176476,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), @@ -176500,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(3855), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4244), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -176594,47 +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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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_LBRACK] = ACTIONS(1697), + [anon_sym_LPAREN] = ACTIONS(43), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_LBRACE] = ACTIONS(3087), + [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(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(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), @@ -176647,20 +176730,20 @@ static const uint16_t ts_parse_table[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), @@ -176671,90 +176754,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [751] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4323), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -176764,48 +176847,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(751), [sym_preproc_define] = STATE(751), [sym_preproc_undef] = STATE(751), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(43), + [anon_sym_ref] = ACTIONS(2255), [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(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(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(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), @@ -176830,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), @@ -176848,85 +176931,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [752] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4293), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4008), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -176936,47 +177018,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(752), [sym_preproc_define] = STATE(752), [sym_preproc_undef] = STATE(752), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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_LPAREN] = ACTIONS(671), + [anon_sym_RPAREN] = ACTIONS(3127), + [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), @@ -177001,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), @@ -177019,84 +177102,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [753] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4220), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -177106,48 +177190,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(753), [sym_preproc_define] = STATE(753), [sym_preproc_undef] = STATE(753), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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_RBRACE] = ACTIONS(3123), - [anon_sym_delegate] = ACTIONS(681), + [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(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(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [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(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(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [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), @@ -177160,20 +177243,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -177184,90 +177267,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [754] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4141), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(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), @@ -177277,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -177343,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), @@ -177361,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4795), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3655), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -177449,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(3828), - [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(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), @@ -177502,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), @@ -177526,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4520), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -177619,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -177673,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), @@ -177697,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4982), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3747), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -177791,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -177856,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), @@ -177874,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3943), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -177961,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -178015,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), @@ -178039,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4982), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4001), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -178133,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_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), @@ -178186,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), @@ -178216,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3644), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -178303,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(3828), - [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(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), @@ -178357,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), @@ -178381,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4293), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3204), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -178475,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -178529,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), @@ -178552,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3035), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym__ordering] = STATE(6620), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -178646,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -178699,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), @@ -178723,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6016), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2332), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4421), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2275), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -178816,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -178882,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), @@ -178900,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4306), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -178987,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -179053,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), @@ -179071,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5990), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2290), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4039), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -179158,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -179224,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), @@ -179242,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5882), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3756), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -179329,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -179395,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), @@ -179413,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4220), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -179500,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -179566,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), @@ -179584,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3154), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -179671,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -179725,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), @@ -179749,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(3855), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4109), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -179843,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -179908,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), @@ -179926,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(3855), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3151), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -180014,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -180079,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), @@ -180097,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3796), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7306), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -180185,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -180238,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), @@ -180268,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2453), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2222), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_expression] = STATE(4039), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2309), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -180355,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -180409,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), @@ -180433,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4293), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4355), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -180527,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -180580,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), @@ -180610,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5972), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2271), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3756), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -180697,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -180751,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), @@ -180775,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4539), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -180868,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -180934,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), @@ -180952,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4267), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -181039,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -181093,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), @@ -181117,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(3855), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2930), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -181211,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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), @@ -181288,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2903), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -181381,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -181435,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), @@ -181459,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3756), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -181552,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -181618,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), @@ -181636,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4982), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3830), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -181724,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -181777,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), @@ -181807,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(2779), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2222), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_expression] = STATE(4039), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2247), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -181894,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -181960,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), @@ -181978,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3886), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -182065,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -182143,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5403), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2742), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -182237,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -182290,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), @@ -182314,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4334), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -182407,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -182461,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), @@ -182485,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4795), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3712), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -182579,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(3828), - [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(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), @@ -182632,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), @@ -182656,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3821), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(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), @@ -182749,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -182768,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), @@ -182815,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), @@ -182833,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3710), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -182920,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(3828), - [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(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), @@ -182986,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), @@ -183004,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3577), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(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), @@ -183091,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(3828), - [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(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), @@ -183145,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), @@ -183169,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(3855), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3399), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -183263,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -183316,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), @@ -183340,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -183433,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -183487,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), @@ -183517,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4795), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3531), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -183605,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(3828), - [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(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), @@ -183658,20 +183741,20 @@ static const uint16_t ts_parse_table[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), @@ -183682,90 +183765,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [792] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4220), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -183775,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -183841,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), @@ -183859,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -183946,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -184000,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), @@ -184024,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3774), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -184117,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -184183,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), @@ -184201,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3771), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -184288,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -184342,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), @@ -184366,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3933), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -184459,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -184525,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), @@ -184543,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4128), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym__anonymous_object_member_declarator] = STATE(7611), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2337), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -184631,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -184696,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), @@ -184714,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2777), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -184801,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -184855,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), @@ -184879,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(5679), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3736), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -184973,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -185050,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4982), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3904), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -185144,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -185197,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), @@ -185227,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3366), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -185314,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -185333,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), @@ -185380,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), @@ -185398,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4982), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3213), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -185486,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -185539,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), @@ -185563,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4482), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -185656,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -185710,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), @@ -185740,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4220), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -185827,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -185881,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), @@ -185905,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4472), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -185998,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -186053,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), @@ -186076,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5983), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2300), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3521), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(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), @@ -186169,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -186223,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), @@ -186253,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4388), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -186340,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -186393,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), @@ -186418,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(5914), + [sym_attribute_argument] = STATE(7423), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4293), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3478), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -186512,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -186530,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), @@ -186577,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), @@ -186595,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4293), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3688), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(6062), + [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(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), @@ -186683,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -186748,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), @@ -186766,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5882), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2249), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4039), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -186853,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -186907,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), @@ -186937,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3589), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -187024,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4407), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -187261,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), @@ -187278,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(5914), + [812] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4053), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -187432,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), @@ -187449,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), }, - [814] = { - [sym_attribute_list] = STATE(5914), + [813] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4057), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(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), @@ -187537,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -187591,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), @@ -187621,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3976), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -187708,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -187774,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), @@ -187792,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4795), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3433), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -187880,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(3828), - [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(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), @@ -187933,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), @@ -187957,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(7457), - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4164), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2316), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -188051,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -188104,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), @@ -188128,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4220), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -188221,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -188275,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), @@ -188305,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(3855), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4203), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -188393,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -188446,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), @@ -188470,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(6065), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4388), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -188563,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -188628,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), @@ -188647,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3035), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym__ordering] = STATE(6639), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -188735,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -188788,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), @@ -188812,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4293), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4531), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -188906,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -188959,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), @@ -188983,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4285), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -189076,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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), @@ -189154,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4456), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -189247,48 +189330,48 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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_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), @@ -189313,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), @@ -189331,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4982), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4027), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -189419,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -189472,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), @@ -189496,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3198), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -189589,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -189643,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), @@ -189673,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_block] = STATE(4795), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3591), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -189761,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(3828), - [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(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), @@ -189814,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), @@ -189838,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4054), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -189931,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -189985,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), @@ -190015,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3582), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -190102,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(3828), - [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(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), @@ -190156,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), @@ -190180,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4404), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [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), @@ -190273,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -190339,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), @@ -190357,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4598), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -190444,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -190510,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), @@ -190528,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3756), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -190615,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -190669,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), @@ -190699,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3484), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -190786,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_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), @@ -190852,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), @@ -190870,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4360), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(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), @@ -190957,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -191023,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), @@ -191041,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4067), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -191128,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -191142,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), @@ -191194,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), @@ -191212,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(2326), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3427), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -191299,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(3828), - [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(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), @@ -191353,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), @@ -191377,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6215), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4090), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_declaration_expression] = STATE(7194), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -191471,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -191524,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), @@ -191554,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4331), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -191641,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -191694,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), @@ -191724,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3893), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -191811,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -191876,8 +191959,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -191894,84 +191977,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [840] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4498), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -191981,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -192034,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), @@ -192058,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4447), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -192151,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -192204,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), @@ -192228,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4442), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -192321,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -192374,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), @@ -192398,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4439), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -192491,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -192544,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), @@ -192568,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4438), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -192661,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -192726,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), @@ -192744,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3507), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -192831,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(3828), - [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(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), @@ -192884,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -192908,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(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), }, [846] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3609), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -193001,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(3828), - [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(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(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(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(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(2105), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [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), @@ -193054,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -193078,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(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), }, [847] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4419), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -193171,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [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), @@ -193224,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(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), @@ -193254,84 +193337,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [848] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3608), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -193341,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(3828), - [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(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(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(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(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), @@ -193418,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(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), }, [849] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4570), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -193511,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [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), @@ -193564,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(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), @@ -193594,84 +193677,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [850] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3603), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -193681,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(3828), - [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(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(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(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(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(2105), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [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), @@ -193734,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -193758,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(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), }, [851] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3596), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -193851,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(3828), - [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(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(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(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(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(2105), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [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), @@ -193904,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -193928,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(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), }, [852] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3595), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -194021,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(3828), - [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(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(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(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(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(2105), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [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), @@ -194074,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -194098,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(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), }, [853] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3594), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -194191,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(3828), - [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(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(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(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(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(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), @@ -194244,20 +194327,20 @@ static const uint16_t ts_parse_table[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), @@ -194268,90 +194351,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [854] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3510), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -194361,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(3828), - [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(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(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(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(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(2105), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [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), @@ -194414,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -194438,90 +194521,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [855] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2576), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -194531,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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_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(1983), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -194584,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), @@ -194614,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3199), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -194701,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [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), @@ -194755,19 +194838,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), @@ -194778,90 +194861,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [857] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3511), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -194871,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(3828), - [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(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(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(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(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(2105), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [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), @@ -194924,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), @@ -194948,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3420), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -195041,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(3828), - [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(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(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(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(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(1851), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -195094,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), @@ -195118,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4146), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -195211,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -195264,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), @@ -195294,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3353), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -195381,73 +195464,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(1679), - [anon_sym_ref] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [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(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(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(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(105), + [anon_sym_throw] = ACTIONS(1981), + [anon_sym_when] = ACTIONS(29), + [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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), @@ -195458,90 +195541,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [861] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3525), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -195551,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(3828), - [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(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(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(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(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(2105), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [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), @@ -195604,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -195628,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(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), }, [862] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3593), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -195721,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(3828), - [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(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(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(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(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(2105), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [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), @@ -195774,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -195798,90 +195881,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [863] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3570), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -195891,47 +195974,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(863), [sym_preproc_define] = STATE(863), [sym_preproc_undef] = STATE(863), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [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(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(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(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(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(2105), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [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), @@ -195944,20 +196027,20 @@ static const uint16_t ts_parse_table[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), @@ -195968,90 +196051,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [864] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4201), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -196061,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -196126,8 +196209,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -196144,84 +196227,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [865] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3590), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -196231,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(3828), - [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(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(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(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(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(2105), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [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), @@ -196284,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -196308,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(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), }, [866] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3625), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -196401,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(3828), - [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(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(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(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(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(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [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), @@ -196454,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -196478,90 +196561,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [867] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3418), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -196571,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(3828), - [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(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(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), @@ -196624,20 +196707,20 @@ static const uint16_t ts_parse_table[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), @@ -196648,90 +196731,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [868] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4250), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -196741,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -196794,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), @@ -196818,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3498), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -196911,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(3828), - [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(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(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(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(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(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [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), @@ -196964,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -196988,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(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), }, [870] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3499), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -197081,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(3828), - [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(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(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(2061), + [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(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(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(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [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), @@ -197134,20 +197217,20 @@ static const uint16_t ts_parse_table[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), @@ -197158,90 +197241,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [871] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4406), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -197251,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -197304,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), @@ -197334,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3500), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -197421,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(3828), - [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(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), @@ -197474,20 +197557,20 @@ static const uint16_t ts_parse_table[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), @@ -197498,90 +197581,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [873] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4255), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -197591,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -197644,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), @@ -197668,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3087), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -197761,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [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), @@ -197814,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), @@ -197838,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4628), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(3127), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -197931,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(3171), - [anon_sym_ref] = ACTIONS(745), - [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(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(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(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -197984,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), @@ -198008,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4353), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -198101,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -198155,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), @@ -198178,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4149), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -198271,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [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(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(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [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), @@ -198324,20 +198407,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -198348,90 +198431,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [878] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3660), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -198441,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(3828), - [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(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(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(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(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(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [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), @@ -198494,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -198518,90 +198601,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [879] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3662), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -198611,47 +198694,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(879), [sym_preproc_define] = STATE(879), [sym_preproc_undef] = STATE(879), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [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(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(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(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(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(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [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), @@ -198664,20 +198747,20 @@ static const uint16_t ts_parse_table[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), @@ -198688,90 +198771,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [880] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4153), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -198781,8 +198864,8 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -198794,34 +198877,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), @@ -198846,8 +198929,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -198864,84 +198947,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [881] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3663), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -198951,217 +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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), - [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_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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [882] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4311), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(882), - [sym_preproc_endregion] = STATE(882), - [sym_preproc_line] = STATE(882), - [sym_preproc_pragma] = STATE(882), - [sym_preproc_nullable] = STATE(882), - [sym_preproc_error] = STATE(882), - [sym_preproc_warning] = STATE(882), - [sym_preproc_define] = STATE(882), - [sym_preproc_undef] = STATE(882), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -199186,8 +199099,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -199203,275 +199116,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), }, - [883] = { - [sym_attribute_list] = STATE(5914), + [882] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4312), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(883), - [sym_preproc_endregion] = STATE(883), - [sym_preproc_line] = STATE(883), - [sym_preproc_pragma] = STATE(883), - [sym_preproc_nullable] = STATE(883), - [sym_preproc_error] = STATE(883), - [sym_preproc_warning] = STATE(883), - [sym_preproc_define] = STATE(883), - [sym_preproc_undef] = STATE(883), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), + [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), + [sym_preproc_pragma] = STATE(882), + [sym_preproc_nullable] = STATE(882), + [sym_preproc_error] = STATE(882), + [sym_preproc_warning] = STATE(882), + [sym_preproc_define] = STATE(882), + [sym_preproc_undef] = STATE(882), + [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_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), - }, - [884] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3354), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(884), - [sym_preproc_endregion] = STATE(884), - [sym_preproc_line] = STATE(884), - [sym_preproc_pragma] = STATE(884), - [sym_preproc_nullable] = STATE(884), - [sym_preproc_error] = STATE(884), - [sym_preproc_warning] = STATE(884), - [sym_preproc_define] = STATE(884), - [sym_preproc_undef] = STATE(884), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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_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(1603), [anon_sym_new] = ACTIONS(1683), @@ -199479,29 +199222,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), @@ -199543,135 +199286,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1675), [sym_raw_string_start] = ACTIONS(1677), }, - [885] = { - [sym_attribute_list] = STATE(5914), + [883] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4313), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(885), - [sym_preproc_endregion] = STATE(885), - [sym_preproc_line] = STATE(885), - [sym_preproc_pragma] = STATE(885), - [sym_preproc_nullable] = STATE(885), - [sym_preproc_error] = STATE(885), - [sym_preproc_warning] = STATE(885), - [sym_preproc_define] = STATE(885), - [sym_preproc_undef] = STATE(885), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), + [sym_preproc_pragma] = STATE(883), + [sym_preproc_nullable] = STATE(883), + [sym_preproc_error] = STATE(883), + [sym_preproc_warning] = STATE(883), + [sym_preproc_define] = STATE(883), + [sym_preproc_undef] = STATE(883), + [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(1461), + [anon_sym_delegate] = ACTIONS(1463), + [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_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(1479), + [anon_sym_throw] = ACTIONS(2461), + [anon_sym_when] = ACTIONS(29), + [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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), + }, + [884] = { + [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), + [sym_preproc_pragma] = STATE(884), + [sym_preproc_nullable] = STATE(884), + [sym_preproc_error] = STATE(884), + [sym_preproc_warning] = STATE(884), + [sym_preproc_define] = STATE(884), + [sym_preproc_undef] = STATE(884), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -199696,8 +199609,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -199713,85 +199626,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), }, + [885] = { + [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(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), + [sym_preproc_pragma] = STATE(885), + [sym_preproc_nullable] = STATE(885), + [sym_preproc_error] = STATE(885), + [sym_preproc_warning] = STATE(885), + [sym_preproc_define] = STATE(885), + [sym_preproc_undef] = STATE(885), + [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_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_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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, [886] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4314), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -199801,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -199854,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), @@ -199878,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4416), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -199971,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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_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), @@ -200036,8 +200119,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -200054,84 +200137,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [888] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3642), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -200141,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [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(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(1329), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [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), @@ -200206,8 +200289,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -200224,84 +200307,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [889] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3355), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -200311,73 +200394,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -200388,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(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), }, [890] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4315), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -200481,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -200546,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), @@ -200564,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3664), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -200651,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(3828), - [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(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(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(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(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(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [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), @@ -200704,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -200728,90 +200811,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [892] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4384), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -200821,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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_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), @@ -200886,8 +200969,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -200904,84 +200987,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [893] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4431), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -200991,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -201056,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), @@ -201074,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4316), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -201161,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -201226,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), @@ -201244,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3668), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -201331,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(3828), - [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(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(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(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(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(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), @@ -201384,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -201408,90 +201491,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [896] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4437), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -201501,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -201554,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), @@ -201578,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4317), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -201671,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -201736,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), @@ -201754,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4400), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -201841,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -201854,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), @@ -201906,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), @@ -201924,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4356), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -202011,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2379), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [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), @@ -202064,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -202088,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(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), }, [900] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3671), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -202181,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(3828), - [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(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(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(2061), + [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(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(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(2069), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [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), @@ -202234,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -202258,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(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), }, [901] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3505), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -202351,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(3828), - [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(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(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(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(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(1397), - [anon_sym_throw] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [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), @@ -202404,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -202428,90 +202511,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [902] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4318), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -202521,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -202586,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), @@ -202604,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3203), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -202691,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -202745,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), @@ -202768,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3225), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -202861,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1541), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [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), @@ -202914,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), @@ -202944,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3681), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -203031,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(3828), - [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(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), @@ -203084,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -203108,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(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), }, [906] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3583), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -203201,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(3828), - [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(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(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(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(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(2105), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [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), @@ -203254,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -203278,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(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), }, [907] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3614), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -203371,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(3828), - [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(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(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(2097), + [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(2101), + [anon_sym_checked] = ACTIONS(1279), [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_this] = ACTIONS(77), + [anon_sym_scoped] = ACTIONS(79), + [anon_sym_base] = ACTIONS(81), + [anon_sym_var] = ACTIONS(83), [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), + [sym_predefined_type] = ACTIONS(1477), + [anon_sym_unchecked] = ACTIONS(1279), [anon_sym_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), + [anon_sym_default] = ACTIONS(1479), [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), [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), @@ -203424,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -203448,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(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), }, [908] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3423), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_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), @@ -203541,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(3828), - [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(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(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(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(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(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -203594,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -203618,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(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), }, [909] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3411), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_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), @@ -203711,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(3828), - [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(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(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(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(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(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -203764,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -203788,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(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), }, [910] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4587), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -203881,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2379), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [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), @@ -203934,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -203958,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(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), }, [911] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4142), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -204051,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -204104,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(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), @@ -204134,84 +204217,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [912] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4325), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -204221,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -204286,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), @@ -204304,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4140), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -204391,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(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(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(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), @@ -204468,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(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), }, [914] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4586), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -204561,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(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(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(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), @@ -204638,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(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), }, [915] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4336), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -204731,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -204796,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), @@ -204814,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4050), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -204901,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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), @@ -204966,8 +205049,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = 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), @@ -204984,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4032), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -205071,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [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), @@ -205136,7 +205219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -205154,84 +205237,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [918] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3286), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -205241,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(1531), + [anon_sym_new] = ACTIONS(2153), [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_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(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -205306,7 +205389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -205324,84 +205407,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [919] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4585), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -205411,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(2371), + [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(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(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(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [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), @@ -205464,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), @@ -205494,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4584), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -205581,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -205635,19 +205718,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), @@ -205658,90 +205741,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [921] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4583), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -205751,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(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(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(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), @@ -205828,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4572), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -205921,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(2371), + [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(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(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(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [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), @@ -205974,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), @@ -206004,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4566), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -206091,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(2371), + [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(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(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(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [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), @@ -206144,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(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), @@ -206174,84 +206257,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [924] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4377), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -206261,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -206338,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4562), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -206431,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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_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(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(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(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [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), @@ -206496,8 +206579,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -206514,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4391), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -206601,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -206654,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), @@ -206684,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4561), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -206771,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(2371), + [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(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(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(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [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), @@ -206824,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), @@ -206854,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4533), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -206941,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(2371), + [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(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(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(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [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), @@ -206994,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(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), @@ -207024,84 +207107,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [929] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4412), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -207111,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -207164,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), @@ -207194,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4532), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -207281,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(2371), + [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(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(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(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [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), @@ -207334,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(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), @@ -207364,84 +207447,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [931] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4430), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -207451,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -207504,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), @@ -207534,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4199), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -207621,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -207698,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4303), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -207791,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2379), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [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), @@ -207844,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -207868,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(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), }, [934] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4432), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -207961,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -208014,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), @@ -208044,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3192), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -208131,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(3828), - [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(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(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(1377), + [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(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(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(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [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), @@ -208184,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), @@ -208208,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4565), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -208301,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(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(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(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), @@ -208378,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(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), }, [937] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4026), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -208471,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(2133), + [anon_sym_new] = ACTIONS(2153), [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(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(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [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), @@ -208536,7 +208619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -208554,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3836), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -208641,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(2043), + [anon_sym_new] = ACTIONS(2153), [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(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(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [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), @@ -208706,7 +208789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -208724,84 +208807,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [939] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3509), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -208811,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -208864,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), @@ -208894,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3764), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -208981,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -209034,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), @@ -209064,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3371), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -209151,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(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), @@ -209204,20 +209287,20 @@ static const uint16_t ts_parse_table[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), @@ -209228,90 +209311,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [942] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4445), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -209321,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -209374,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -209398,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(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), }, [943] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3919), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -209491,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2133), + [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(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(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(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [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), @@ -209544,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(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), @@ -209574,84 +209657,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [944] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4019), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -209661,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(2133), + [anon_sym_new] = ACTIONS(2153), [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(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(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2159), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [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), @@ -209726,7 +209809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -209744,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4148), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -209831,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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(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(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), @@ -209908,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(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), }, [946] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3321), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -210001,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), - [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), @@ -210078,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4446), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -210171,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -210236,8 +210319,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -210254,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2576), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -210341,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -210394,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -210418,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4129), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -210511,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(1465), + [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(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(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(2255), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -210576,7 +210659,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), @@ -210594,84 +210677,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [950] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4130), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -210681,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(2255), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -210734,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -210758,90 +210841,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [951] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4131), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -210851,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(2255), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -210904,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -210928,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(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), }, [952] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3810), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -211021,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -211098,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(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), }, [953] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4205), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -211191,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(2255), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -211244,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -211268,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(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), }, [954] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4504), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -211361,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(2371), + [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(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(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(2379), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2381), - [anon_sym_DOT_DOT] = ACTIONS(2383), + [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), @@ -211426,8 +211509,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -211444,84 +211527,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [955] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3296), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -211531,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(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(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -211584,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(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), @@ -211614,84 +211697,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [956] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3197), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -211701,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(3828), - [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(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(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(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(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(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [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), @@ -211754,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), @@ -211778,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4206), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -211871,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(2255), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -211924,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -211948,90 +212031,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [958] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3456), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -212041,15 +212124,185 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [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(2477), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [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(105), + [anon_sym_throw] = ACTIONS(2483), + [anon_sym_when] = ACTIONS(29), + [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), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [anon_sym_group] = ACTIONS(29), + [anon_sym_by] = ACTIONS(29), + [anon_sym_select] = ACTIONS(29), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_integer_literal] = ACTIONS(139), + [sym_real_literal] = 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), + }, + [959] = { + [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(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), + [sym_preproc_pragma] = STATE(959), + [sym_preproc_nullable] = STATE(959), + [sym_preproc_error] = STATE(959), + [sym_preproc_warning] = STATE(959), + [sym_preproc_define] = STATE(959), + [sym_preproc_undef] = STATE(959), + [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), @@ -212059,29 +212312,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), @@ -212123,255 +212376,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), }, - [959] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3327), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(959), - [sym_preproc_endregion] = STATE(959), - [sym_preproc_line] = STATE(959), - [sym_preproc_pragma] = STATE(959), - [sym_preproc_nullable] = STATE(959), - [sym_preproc_error] = STATE(959), - [sym_preproc_warning] = STATE(959), - [sym_preproc_define] = STATE(959), - [sym_preproc_undef] = STATE(959), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), - [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_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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, [960] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3951), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -212381,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2043), + [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(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(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(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [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), @@ -212434,20 +212517,20 @@ static const uint16_t ts_parse_table[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), @@ -212464,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3950), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -212551,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2043), + [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(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(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(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [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), @@ -212604,20 +212687,20 @@ static const uint16_t ts_parse_table[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), @@ -212634,84 +212717,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [962] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4207), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -212721,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -212774,20 +212857,20 @@ static const uint16_t ts_parse_table[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), @@ -212798,90 +212881,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [963] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3949), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -212891,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2043), + [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(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(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(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [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), @@ -212944,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(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), @@ -212974,84 +213057,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [964] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4294), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -213061,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2427), + [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(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(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(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [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), @@ -213114,20 +213197,20 @@ static const uint16_t ts_parse_table[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), @@ -213138,90 +213221,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [965] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4408), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -213231,47 +213314,387 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [966] = { + [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(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), + [sym_preproc_pragma] = STATE(966), + [sym_preproc_nullable] = STATE(966), + [sym_preproc_error] = STATE(966), + [sym_preproc_warning] = STATE(966), + [sym_preproc_define] = STATE(966), + [sym_preproc_undef] = STATE(966), + [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(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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [967] = { + [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), + [sym_preproc_pragma] = STATE(967), + [sym_preproc_nullable] = STATE(967), + [sym_preproc_error] = STATE(967), + [sym_preproc_warning] = STATE(967), + [sym_preproc_define] = STATE(967), + [sym_preproc_undef] = STATE(967), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -213296,8 +213719,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -213313,425 +213736,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), }, - [966] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3488), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(966), - [sym_preproc_endregion] = STATE(966), - [sym_preproc_line] = STATE(966), - [sym_preproc_pragma] = STATE(966), - [sym_preproc_nullable] = STATE(966), - [sym_preproc_error] = STATE(966), - [sym_preproc_warning] = STATE(966), - [sym_preproc_define] = STATE(966), - [sym_preproc_undef] = STATE(966), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), - [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_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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [967] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3374), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(967), - [sym_preproc_endregion] = STATE(967), - [sym_preproc_line] = STATE(967), - [sym_preproc_pragma] = STATE(967), - [sym_preproc_nullable] = STATE(967), - [sym_preproc_error] = STATE(967), - [sym_preproc_warning] = STATE(967), - [sym_preproc_define] = STATE(967), - [sym_preproc_undef] = STATE(967), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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_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(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_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1719), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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), - }, [968] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4297), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -213741,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -213818,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4187), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -213911,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(1483), - [anon_sym_throw] = ACTIONS(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [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), @@ -213964,20 +214047,20 @@ static const uint16_t ts_parse_table[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), @@ -213988,90 +214071,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [970] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2857), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -214081,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2115), + [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(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(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(2123), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), + [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), @@ -214134,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(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), @@ -214158,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4188), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -214251,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2427), + [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(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(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(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [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), @@ -214304,20 +214387,20 @@ static const uint16_t ts_parse_table[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), @@ -214328,90 +214411,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [972] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4189), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -214421,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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), @@ -214498,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(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), }, [973] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4296), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -214591,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -214656,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), @@ -214674,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4190), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -214761,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2435), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [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), @@ -214814,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -214838,90 +214921,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [975] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4191), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -214931,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -214984,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -215008,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(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), }, [976] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4120), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -215101,15 +215184,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -215119,29 +215202,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), @@ -215166,8 +215249,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), @@ -215184,84 +215267,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [977] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3490), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -215271,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(3828), - [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(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), @@ -215324,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -215348,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(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), }, [978] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4192), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -215441,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(2423), - [anon_sym_ref] = ACTIONS(2425), - [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(2427), + [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(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(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(2435), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [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), @@ -215494,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -215518,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(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), }, [979] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3849), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -215611,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -215664,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), @@ -215688,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3497), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -215781,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(3828), - [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(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), @@ -215858,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(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), }, [981] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4193), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -215951,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(2427), + [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(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_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(2435), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [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), @@ -216016,7 +216099,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), @@ -216034,84 +216117,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [982] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3627), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -216121,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [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(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(1329), + [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_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), @@ -216174,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), @@ -216198,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3547), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -216291,217 +216374,217 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [984] = { + [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), + [sym_preproc_pragma] = STATE(984), + [sym_preproc_nullable] = STATE(984), + [sym_preproc_error] = STATE(984), + [sym_preproc_warning] = STATE(984), + [sym_preproc_define] = STATE(984), + [sym_preproc_undef] = STATE(984), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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_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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [984] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4194), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(984), - [sym_preproc_endregion] = STATE(984), - [sym_preproc_line] = STATE(984), - [sym_preproc_pragma] = STATE(984), - [sym_preproc_nullable] = STATE(984), - [sym_preproc_error] = STATE(984), - [sym_preproc_warning] = STATE(984), - [sym_preproc_define] = STATE(984), - [sym_preproc_undef] = STATE(984), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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(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(2427), + [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(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(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(2435), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [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), @@ -216514,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -216538,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(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), }, [985] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4195), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -216631,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(2423), - [anon_sym_ref] = ACTIONS(2425), - [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(2427), + [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(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(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(2435), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [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), @@ -216684,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -216708,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(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), }, [986] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3551), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -216801,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [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(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(1329), + [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_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), @@ -216854,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), @@ -216878,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3552), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -216971,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [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(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(1329), + [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_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), @@ -217024,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -217048,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(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), }, [988] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3553), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -217141,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [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(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(1329), + [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_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), @@ -217194,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -217218,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(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), }, [989] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3554), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -217311,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -217376,8 +217459,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -217394,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3557), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -217481,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [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(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(1329), + [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_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), @@ -217534,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -217558,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(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), }, [991] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2932), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -217651,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -217704,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), @@ -217728,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2931), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -217821,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -217874,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), @@ -217898,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4197), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -217991,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(2423), - [anon_sym_ref] = ACTIONS(2425), - [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(2427), + [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(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(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(2435), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [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), @@ -218044,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -218068,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(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), }, [994] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2921), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -218161,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -218214,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), @@ -218238,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3558), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -218331,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [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(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(1329), + [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_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), @@ -218384,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -218408,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2904), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -218501,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -218554,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), @@ -218578,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2821), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -218671,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -218724,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), @@ -218748,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3560), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -218841,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [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(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(1329), + [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_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), @@ -218894,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), @@ -218918,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3562), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -219011,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -219064,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), @@ -219094,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2823), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -219181,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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), @@ -219258,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4198), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -219351,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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), @@ -219428,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(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), }, [1002] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3563), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -219521,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -219586,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), @@ -219604,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3942), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), + [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(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(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -219691,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), - [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(2039), - [anon_sym_ref] = ACTIONS(2041), - [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(2043), - [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_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(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), @@ -219768,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(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), }, [1004] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2858), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -219861,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -219914,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), @@ -219938,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4221), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -220031,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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), @@ -220108,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(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), }, [1006] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2863), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -220201,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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), @@ -220278,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2572), [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4208), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -220371,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(2255), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -220424,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -220448,90 +220531,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1008] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3941), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -220541,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(2043), + [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(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(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(2051), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [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), @@ -220594,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(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), @@ -220618,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3572), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -220711,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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), @@ -220764,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), @@ -220794,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4209), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -220881,73 +220964,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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(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(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), @@ -220958,90 +221041,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1011] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2864), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -221051,47 +221134,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1011), [sym_preproc_define] = STATE(1011), [sym_preproc_undef] = STATE(1011), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -221104,20 +221187,20 @@ static const uint16_t ts_parse_table[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), @@ -221128,90 +221211,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1012] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2876), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -221221,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -221274,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), @@ -221298,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3940), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), + [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(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(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -221391,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), - [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(2039), - [anon_sym_ref] = ACTIONS(2041), - [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(2043), - [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_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(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), @@ -221468,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(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), }, [1014] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4210), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -221561,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(1465), + [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(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(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(2255), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -221614,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -221638,90 +221721,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1015] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3935), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -221731,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -221784,22 +221867,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(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), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_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), @@ -221808,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(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), }, [1016] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4132), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -221901,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(2255), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -221954,20 +222037,20 @@ static const uint16_t ts_parse_table[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), @@ -221978,90 +222061,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1017] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2873), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_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), @@ -222071,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(2123), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), + [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), @@ -222124,20 +222207,20 @@ static const uint16_t ts_parse_table[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), @@ -222154,84 +222237,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1018] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2881), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -222241,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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_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(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(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(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), @@ -222294,20 +222377,20 @@ static const uint16_t ts_parse_table[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), @@ -222318,90 +222401,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1019] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2929), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -222411,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -222464,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), @@ -222488,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4362), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -222581,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -222634,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), @@ -222664,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3934), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -222751,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(2039), - [anon_sym_ref] = ACTIONS(2041), - [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(2043), + [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(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(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(2051), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [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), @@ -222804,20 +222887,20 @@ static const uint16_t ts_parse_table[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), @@ -222828,90 +222911,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1022] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4363), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(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), @@ -222921,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -222974,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), @@ -223004,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3245), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -223091,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -223144,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), @@ -223168,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3931), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -223261,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(2043), + [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(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(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(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [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), @@ -223326,7 +223409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -223344,84 +223427,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1025] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2938), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -223431,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -223484,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), @@ -223508,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2852), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -223601,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -223654,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), @@ -223678,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3107), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -223771,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -223824,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), @@ -223848,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2978), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -223941,47 +224024,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1028), [sym_preproc_define] = STATE(1028), [sym_preproc_undef] = STATE(1028), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(2111), - [anon_sym_ref] = ACTIONS(2113), - [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(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(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(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(2123), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), + [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), @@ -223994,20 +224077,20 @@ static const uint16_t ts_parse_table[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), @@ -224018,90 +224101,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1029] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2905), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -224111,47 +224194,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1029), [sym_preproc_define] = STATE(1029), [sym_preproc_undef] = STATE(1029), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -224164,20 +224247,20 @@ static const uint16_t ts_parse_table[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), @@ -224188,90 +224271,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1030] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2917), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -224281,47 +224364,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1030), [sym_preproc_define] = STATE(1030), [sym_preproc_undef] = STATE(1030), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -224334,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -224358,90 +224441,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1031] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3928), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), + [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(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -224451,73 +224534,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1031), [sym_preproc_define] = STATE(1031), [sym_preproc_undef] = STATE(1031), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), - [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(2039), - [anon_sym_ref] = ACTIONS(2041), - [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(2043), - [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_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2051), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(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), @@ -224528,90 +224611,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1032] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3927), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -224621,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(2043), + [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(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(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(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [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), @@ -224686,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), @@ -224704,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3451), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -224791,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(3828), - [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(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(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(1843), + [anon_sym_new] = ACTIONS(2117), [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(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(1397), - [anon_sym_throw] = ACTIONS(1925), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [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), @@ -224844,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -224868,90 +224951,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1034] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3852), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -224961,53 +225044,53 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(2043), + [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(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(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(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), + [anon_sym_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), [anon_sym_ascending] = ACTIONS(29), [anon_sym_descending] = ACTIONS(29), @@ -225026,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), @@ -225044,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3267), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -225131,73 +225214,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(2117), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [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(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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), @@ -225208,90 +225291,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1036] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3293), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -225301,15 +225384,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1741), + [anon_sym_ref] = ACTIONS(1743), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), @@ -225319,29 +225402,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(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(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [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), @@ -225366,7 +225449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -225384,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4459), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -225471,47 +225554,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1037), [sym_preproc_define] = STATE(1037), [sym_preproc_undef] = STATE(1037), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(1447), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [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), @@ -225524,20 +225607,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -225548,90 +225631,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1038] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4213), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -225641,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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(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(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), @@ -225718,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(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), }, [1039] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4361), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -225811,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -225888,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3652), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -225981,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(3828), - [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(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), @@ -226034,20 +226117,20 @@ static const uint16_t ts_parse_table[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), @@ -226058,90 +226141,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1041] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3513), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -226151,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(3828), - [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(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(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(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(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), @@ -226228,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(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), }, [1042] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3908), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -226321,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(2043), + [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(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(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(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2123), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [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), @@ -226386,7 +226469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -226404,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3617), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -226491,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(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(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [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(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), @@ -226568,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3636), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -226661,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [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), @@ -226726,8 +226809,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -226744,84 +226827,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1045] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4202), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -226831,73 +226914,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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(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(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(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), @@ -226908,90 +226991,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1046] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3921), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -227001,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -227054,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), @@ -227078,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3450), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -227171,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(3828), - [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(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(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(1843), + [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(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(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(1851), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -227224,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -227248,90 +227331,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1048] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3905), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -227341,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2043), + [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(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(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(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [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), @@ -227394,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), @@ -227424,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3902), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -227511,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2043), + [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(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(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(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [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), @@ -227564,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), @@ -227594,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3516), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -227681,48 +227764,48 @@ 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(3828), - [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(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(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(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(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(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), - [anon_sym_from] = ACTIONS(125), + [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), [anon_sym_on] = ACTIONS(29), @@ -227734,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -227758,90 +227841,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1051] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3579), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -227851,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(3828), - [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(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(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(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(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(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [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), @@ -227904,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -227928,90 +228011,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1052] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3517), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -228021,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(3828), - [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(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(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(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(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(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [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), @@ -228074,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(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), @@ -228098,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3692), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -228191,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(3828), - [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(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(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(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(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(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [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), @@ -228244,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -228268,90 +228351,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1054] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3518), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -228361,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(3828), - [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(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(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(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(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(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [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), @@ -228414,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(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), @@ -228438,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3487), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -228531,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(3828), - [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(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), @@ -228584,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), @@ -228608,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3519), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -228701,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(3828), - [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(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(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(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(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(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2361), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [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), @@ -228754,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(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), @@ -228778,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3656), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -228871,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(3828), - [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(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), @@ -228924,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), @@ -228948,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3657), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -229041,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(3828), - [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(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), @@ -229094,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), @@ -229118,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4223), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -229211,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -229264,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -229288,90 +229371,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1060] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3659), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -229381,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(3828), - [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(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), @@ -229446,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), @@ -229464,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3661), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -229551,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(3828), - [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(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), @@ -229628,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3665), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -229721,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(3828), - [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(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), @@ -229798,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3666), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -229891,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(3828), - [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(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), @@ -229944,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), @@ -229968,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3461), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -230061,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(3828), - [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(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), @@ -230114,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), @@ -230138,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3670), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -230231,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(3828), - [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(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), @@ -230296,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), @@ -230314,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3673), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -230401,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(3828), - [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(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), @@ -230454,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), @@ -230478,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4265), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -230571,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -230648,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3674), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -230741,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(3828), - [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(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), @@ -230794,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -230818,90 +230901,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1069] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3677), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -230911,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(3828), - [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(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), @@ -230964,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), @@ -230988,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3678), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -231081,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(3828), - [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(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), @@ -231134,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), @@ -231158,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3522), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -231251,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(3828), - [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(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(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(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(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(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [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), @@ -231304,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -231328,90 +231411,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1072] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3523), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -231421,47 +231504,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1072), [sym_preproc_define] = STATE(1072), [sym_preproc_undef] = STATE(1072), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [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(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(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(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(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(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [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), @@ -231474,20 +231557,20 @@ static const uint16_t ts_parse_table[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), @@ -231498,90 +231581,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1073] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3524), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -231591,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(3828), - [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(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(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(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(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(2015), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [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), @@ -231644,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -231668,90 +231751,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1074] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3482), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -231761,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(3828), - [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(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(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(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(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(1939), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [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), @@ -231814,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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(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), @@ -231838,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(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), }, [1075] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3682), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -231931,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(3828), - [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(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(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(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(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(1939), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [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), @@ -231984,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -232008,90 +232091,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1076] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4262), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -232101,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -232166,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), @@ -232184,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3526), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -232271,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(3828), - [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(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(2173), + [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), @@ -232324,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -232348,90 +232431,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1078] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3454), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -232441,185 +232524,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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_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), - }, - [1079] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3693), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1079), - [sym_preproc_endregion] = STATE(1079), - [sym_preproc_line] = STATE(1079), - [sym_preproc_pragma] = STATE(1079), - [sym_preproc_nullable] = STATE(1079), - [sym_preproc_error] = STATE(1079), - [sym_preproc_warning] = STATE(1079), - [sym_preproc_define] = STATE(1079), - [sym_preproc_undef] = STATE(1079), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), + [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), @@ -232629,29 +232542,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(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(2015), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [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), @@ -232676,7 +232589,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), @@ -232693,85 +232606,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), }, + [1079] = { + [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(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), + [sym_preproc_pragma] = STATE(1079), + [sym_preproc_nullable] = STATE(1079), + [sym_preproc_error] = STATE(1079), + [sym_preproc_warning] = STATE(1079), + [sym_preproc_define] = STATE(1079), + [sym_preproc_undef] = STATE(1079), + [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_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_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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, [1080] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3695), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -232781,15 +232864,15 @@ 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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), + [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), @@ -232799,29 +232882,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(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(2015), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [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), @@ -232846,7 +232929,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), @@ -232864,84 +232947,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1081] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3746), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -232951,15 +233034,15 @@ 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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), + [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), @@ -232969,29 +233052,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(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(2015), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [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), @@ -233016,7 +233099,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), @@ -233034,84 +233117,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1082] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4352), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -233121,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(1447), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [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), @@ -233174,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -233198,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4346), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -233291,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(1447), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [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), @@ -233344,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), @@ -233368,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4204), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -233461,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2255), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -233514,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -233538,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(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), }, [1085] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4200), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -233631,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(2427), + [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(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_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(2435), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [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), @@ -233696,7 +233779,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), @@ -233714,84 +233797,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1086] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3530), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -233801,15 +233884,15 @@ 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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), + [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), @@ -233819,29 +233902,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(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(2015), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [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), @@ -233866,7 +233949,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), @@ -233884,84 +233967,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1087] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4228), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -233971,217 +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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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_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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [1088] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3575), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1088), - [sym_preproc_endregion] = STATE(1088), - [sym_preproc_line] = STATE(1088), - [sym_preproc_pragma] = STATE(1088), - [sym_preproc_nullable] = STATE(1088), - [sym_preproc_error] = STATE(1088), - [sym_preproc_warning] = STATE(1088), - [sym_preproc_define] = STATE(1088), - [sym_preproc_undef] = STATE(1088), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), + [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(1377), + [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(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(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(2015), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [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), @@ -234206,7 +234119,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), @@ -234223,135 +234136,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), }, - [1089] = { - [sym_attribute_list] = STATE(5914), + [1088] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2576), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1089), - [sym_preproc_endregion] = STATE(1089), - [sym_preproc_line] = STATE(1089), - [sym_preproc_pragma] = STATE(1089), - [sym_preproc_nullable] = STATE(1089), - [sym_preproc_error] = STATE(1089), - [sym_preproc_warning] = STATE(1089), - [sym_preproc_define] = STATE(1089), - [sym_preproc_undef] = STATE(1089), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), + [sym_preproc_pragma] = STATE(1088), + [sym_preproc_nullable] = STATE(1088), + [sym_preproc_error] = STATE(1088), + [sym_preproc_warning] = STATE(1088), + [sym_preproc_define] = STATE(1088), + [sym_preproc_undef] = STATE(1088), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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_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), @@ -234376,8 +234289,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -234393,135 +234306,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), }, - [1090] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4345), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1090), - [sym_preproc_endregion] = STATE(1090), - [sym_preproc_line] = STATE(1090), - [sym_preproc_pragma] = STATE(1090), - [sym_preproc_nullable] = STATE(1090), - [sym_preproc_error] = STATE(1090), - [sym_preproc_warning] = STATE(1090), - [sym_preproc_define] = STATE(1090), - [sym_preproc_undef] = STATE(1090), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [1089] = { + [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(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), + [sym_preproc_pragma] = STATE(1089), + [sym_preproc_nullable] = STATE(1089), + [sym_preproc_error] = STATE(1089), + [sym_preproc_warning] = STATE(1089), + [sym_preproc_define] = STATE(1089), + [sym_preproc_undef] = STATE(1089), + [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_async] = ACTIONS(1259), - [anon_sym_file] = ACTIONS(29), - [anon_sym_new] = ACTIONS(1273), + [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(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(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(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(1447), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [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), @@ -234534,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -234558,90 +234471,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), + }, + [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), + [sym_preproc_pragma] = STATE(1090), + [sym_preproc_nullable] = STATE(1090), + [sym_preproc_error] = STATE(1090), + [sym_preproc_warning] = STATE(1090), + [sym_preproc_define] = STATE(1090), + [sym_preproc_undef] = STATE(1090), + [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(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(2063), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [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(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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), }, [1091] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3646), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -234651,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -234704,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -234728,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(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), }, [1092] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4281), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -234821,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2255), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -234874,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), @@ -234898,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4214), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -234991,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2255), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -235044,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(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), @@ -235068,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4260), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -235161,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -235174,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), @@ -235226,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), @@ -235244,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3866), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -235331,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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_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), @@ -235384,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -235408,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(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), }, [1096] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3537), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -235501,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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_ref] = ACTIONS(2007), + [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(1377), + [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(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(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(2015), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [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), @@ -235566,7 +235649,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), @@ -235584,84 +235667,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1097] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3460), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -235671,73 +235754,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -235748,90 +235831,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1098] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3588), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -235841,73 +235924,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [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(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(2063), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [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(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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), @@ -235918,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(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), }, [1099] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4340), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -236011,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1273), + [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(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(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(1447), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [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), @@ -236064,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -236088,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(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), }, [1100] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4099), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -236181,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -236234,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), @@ -236258,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4601), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4685), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -236351,73 +236434,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(3173), - [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_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_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_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), + [anon_sym_file] = ACTIONS(29), + [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_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(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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), @@ -236428,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(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), }, [1102] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4225), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -236521,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -236574,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), @@ -236598,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4094), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -236691,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -236744,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), @@ -236768,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4230), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -236861,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -236914,114 +236997,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(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), + [anon_sym_stackalloc] = ACTIONS(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_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(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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4231), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -237031,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -237084,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), @@ -237108,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4232), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -237201,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -237254,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), @@ -237278,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4233), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -237371,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -237424,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), @@ -237448,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4234), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -237541,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -237594,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), @@ -237618,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4235), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -237711,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -237764,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), @@ -237788,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4236), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -237881,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -237934,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), @@ -237958,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4237), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -238051,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -238104,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), @@ -238128,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4238), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -238221,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -238274,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -238298,90 +238381,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1113] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2917), [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4239), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -238391,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -238444,20 +238527,20 @@ static const uint16_t ts_parse_table[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), @@ -238468,90 +238551,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1114] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4240), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -238561,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -238614,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), @@ -238638,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3272), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -238731,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1595), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [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), @@ -238784,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(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), @@ -238808,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(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), }, [1116] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3175), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -238901,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -238954,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(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), @@ -238984,84 +239067,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1117] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4242), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -239071,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -239124,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -239148,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(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), }, [1118] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4259), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -239241,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -239294,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), @@ -239324,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3261), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -239411,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1541), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [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), @@ -239476,7 +239559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -239494,84 +239577,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1120] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4628), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(3127), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -239581,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(3171), - [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(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(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), @@ -239634,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -239658,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3200), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -239751,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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), @@ -239804,20 +239887,20 @@ static const uint16_t ts_parse_table[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), @@ -239828,90 +239911,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1122] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4220), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -239921,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -239974,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), @@ -239998,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3208), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -240091,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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), @@ -240144,20 +240227,20 @@ static const uint16_t ts_parse_table[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), @@ -240168,90 +240251,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1124] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3242), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -240261,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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), @@ -240314,20 +240397,20 @@ static const uint16_t ts_parse_table[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), @@ -240338,90 +240421,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1125] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3491), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5053), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6485), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7898), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -240431,15 +240514,15 @@ 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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_ref] = ACTIONS(1933), + [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), @@ -240449,29 +240532,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_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(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), + [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(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1943), + [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), @@ -240496,8 +240579,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), @@ -240514,84 +240597,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1126] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3249), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -240601,47 +240684,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1126), [sym_preproc_define] = STATE(1126), [sym_preproc_undef] = STATE(1126), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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), @@ -240654,20 +240737,20 @@ static const uint16_t ts_parse_table[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), @@ -240678,90 +240761,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1127] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3259), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -240771,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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), @@ -240824,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), @@ -240848,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3248), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -240941,47 +241024,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1128), [sym_preproc_define] = STATE(1128), [sym_preproc_undef] = STATE(1128), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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), @@ -240994,20 +241077,20 @@ static const uint16_t ts_parse_table[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), @@ -241018,90 +241101,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1129] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4245), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -241111,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -241129,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), @@ -241176,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), @@ -241194,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3222), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -241281,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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), @@ -241334,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(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), @@ -241358,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(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), }, [1131] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3210), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -241451,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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), @@ -241504,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(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), @@ -241528,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4110), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -241621,15 +241704,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -241639,29 +241722,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), @@ -241686,8 +241769,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), @@ -241704,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4247), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -241791,15 +241874,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -241809,29 +241892,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), @@ -241856,8 +241939,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), @@ -241874,84 +241957,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1134] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3195), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -241961,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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), @@ -242014,20 +242097,20 @@ static const uint16_t ts_parse_table[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), @@ -242038,90 +242121,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1135] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3185), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -242131,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1541), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [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), @@ -242184,20 +242267,20 @@ static const uint16_t ts_parse_table[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), @@ -242208,90 +242291,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1136] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3171), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -242301,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(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), @@ -242354,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(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), @@ -242384,84 +242467,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1137] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3840), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -242471,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(2141), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [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), @@ -242524,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(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), @@ -242548,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(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), }, [1138] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4458), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -242641,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -242706,8 +242789,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(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), @@ -242724,84 +242807,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1139] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4390), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -242811,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -242864,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -242888,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(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), }, [1140] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4383), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -242981,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2503), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [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), @@ -243034,20 +243117,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -243058,90 +243141,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1141] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4382), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -243151,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -243204,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -243228,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(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), }, [1142] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4381), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -243321,47 +243404,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1142), [sym_preproc_define] = STATE(1142), [sym_preproc_undef] = STATE(1142), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2503), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [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), @@ -243374,20 +243457,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -243398,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(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), }, [1143] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4379), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -243491,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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_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(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(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(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), @@ -243556,8 +243639,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -243574,84 +243657,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1144] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3811), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -243661,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(2133), + [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(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(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(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [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), @@ -243726,7 +243809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -243744,84 +243827,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1145] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3276), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -243831,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -243896,7 +243979,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -243914,84 +243997,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1146] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4375), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -244001,47 +244084,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1146), [sym_preproc_define] = STATE(1146), [sym_preproc_undef] = STATE(1146), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(2495), + [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(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(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(2503), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [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), @@ -244054,20 +244137,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -244084,84 +244167,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1147] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3274), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -244171,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -244224,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(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), @@ -244248,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(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), }, [1148] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3339), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -244341,73 +244424,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -244418,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(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), }, [1149] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3282), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -244511,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -244576,7 +244659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -244594,84 +244677,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1150] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2747), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -244681,47 +244764,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1150), [sym_preproc_define] = STATE(1150), [sym_preproc_undef] = STATE(1150), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(1951), + [anon_sym_new] = ACTIONS(2045), [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(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(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [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), @@ -244734,20 +244817,20 @@ static const uint16_t ts_parse_table[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), @@ -244758,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(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), }, [1151] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3298), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -244851,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -244916,7 +244999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -244934,84 +245017,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1152] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3317), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -245021,47 +245104,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1152), [sym_preproc_define] = STATE(1152), [sym_preproc_undef] = STATE(1152), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1573), - [anon_sym_ref] = ACTIONS(1575), - [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(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(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(1579), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -245074,20 +245157,20 @@ static const uint16_t ts_parse_table[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), @@ -245098,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(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), }, [1153] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3318), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -245191,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1579), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -245244,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(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), @@ -245268,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3319), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -245361,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -245426,7 +245509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -245444,84 +245527,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1155] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3334), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -245531,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -245584,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), @@ -245614,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3335), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -245701,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1579), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -245754,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(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), @@ -245778,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(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), }, [1157] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3279), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -245871,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1573), - [anon_sym_ref] = ACTIONS(1575), - [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(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(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(1579), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1395), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -245924,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(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), @@ -245948,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(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), }, [1158] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2760), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -246041,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(1951), + [anon_sym_new] = ACTIONS(2063), [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(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(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [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), @@ -246094,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(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), @@ -246118,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(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), }, [1159] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3787), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -246211,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(2133), + [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(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(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(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [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), @@ -246276,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), @@ -246294,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4372), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -246381,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(2495), + [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(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(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(2503), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [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), @@ -246434,20 +246517,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -246464,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3287), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -246551,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -246604,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(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), @@ -246634,84 +246717,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1162] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3311), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -246721,73 +246804,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -246798,90 +246881,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1163] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4329), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -246891,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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_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(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(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(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(1447), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1895), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [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), @@ -246944,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -246968,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4371), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -247061,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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), @@ -247126,8 +247209,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -247144,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3341), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -247231,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2051), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -247296,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), @@ -247314,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4327), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -247401,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1273), + [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(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(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(1447), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2069), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [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), @@ -247454,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -247478,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(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), }, [1167] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4370), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -247571,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -247624,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), @@ -247648,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3825), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -247741,47 +247824,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1168), [sym_preproc_define] = STATE(1168), [sym_preproc_undef] = STATE(1168), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(2141), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [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), @@ -247794,20 +247877,20 @@ static const uint16_t ts_parse_table[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), @@ -247818,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(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), }, [1169] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4359), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -247911,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(2495), + [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(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(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(2503), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [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), @@ -247964,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -247988,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(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), }, [1170] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3819), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -248081,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(2141), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [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), @@ -248134,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), @@ -248158,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3854), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -248251,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -248304,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(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), @@ -248334,84 +248417,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1172] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4326), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -248421,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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_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(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(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(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(1447), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [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), @@ -248474,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -248498,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(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), }, [1173] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4308), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -248591,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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_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(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(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(1447), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [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), @@ -248644,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(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), @@ -248668,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2738), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -248761,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -248814,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(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), @@ -248838,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(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), }, [1175] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3856), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -248931,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(2141), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [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), @@ -248984,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(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), @@ -249008,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3860), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -249101,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2133), + [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(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(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(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [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), @@ -249154,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(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), @@ -249184,84 +249267,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1177] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4409), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -249271,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -249325,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), @@ -249348,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3459), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -249441,73 +249524,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -249518,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(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), }, [1179] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3428), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -249611,73 +249694,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -249688,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(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), }, [1180] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4302), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -249781,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [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), @@ -249834,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(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), @@ -249864,84 +249947,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1181] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2647), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -249951,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(1947), - [anon_sym_ref] = ACTIONS(1949), - [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(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(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(1959), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [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), @@ -250004,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(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), @@ -250028,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(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), }, [1182] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4151), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -250121,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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_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(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(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(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_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), @@ -250174,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(2275), + [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), @@ -250198,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4497), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -250291,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -250356,8 +250439,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = 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), @@ -250374,84 +250457,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1184] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4410), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -250461,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -250526,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), @@ -250544,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4411), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -250631,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -250696,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), @@ -250714,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4471), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -250801,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1273), + [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(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(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(1447), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [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), @@ -250854,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -250878,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(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), }, [1187] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4502), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -250971,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -251024,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -251048,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(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), }, [1188] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4358), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -251141,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(2495), + [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(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(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(2503), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [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), @@ -251206,8 +251289,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251224,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4454), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -251311,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(2495), + [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(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(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(2503), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [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), @@ -251376,8 +251459,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251394,84 +251477,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1190] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2745), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -251481,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(1951), + [anon_sym_new] = ACTIONS(1313), [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(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(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [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), @@ -251534,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(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), @@ -251558,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(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), }, [1191] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4226), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -251651,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2477), + [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(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(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(2485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [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), @@ -251704,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), @@ -251728,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4483), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -251821,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(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), @@ -251886,8 +251969,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -251904,84 +251987,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1193] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4576), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -251991,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(2495), + [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(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(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(2503), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [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), @@ -252056,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(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -252074,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4184), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -252161,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(2427), + [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(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_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(2435), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [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), @@ -252226,7 +252309,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), @@ -252244,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3424), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -252331,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1719), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [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), @@ -252384,20 +252467,20 @@ static const uint16_t ts_parse_table[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), @@ -252408,90 +252491,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1196] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4305), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -252501,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(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), @@ -252566,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), @@ -252584,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3364), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -252671,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(1709), - [anon_sym_ref] = ACTIONS(1711), - [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(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(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(1719), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [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), @@ -252724,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -252748,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(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), }, [1198] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3936), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -252841,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(2141), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [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), @@ -252894,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(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), @@ -252918,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3998), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -253011,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1883), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [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), @@ -253064,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(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), @@ -253094,84 +253177,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1200] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2705), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -253181,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(3828), - [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(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(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(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(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(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(1399), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [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), @@ -253234,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -253258,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(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), }, [1201] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4399), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -253351,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -253404,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), @@ -253428,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4152), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5151), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6456), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7877), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -253521,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(2269), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2273), + [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), @@ -253574,20 +253657,20 @@ static const uint16_t ts_parse_table[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), @@ -253598,90 +253681,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1203] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2766), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -253691,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(1951), + [anon_sym_new] = ACTIONS(1313), [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(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(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [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), @@ -253744,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(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), @@ -253768,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(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), }, [1204] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2785), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -253861,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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), @@ -253914,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(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), @@ -253938,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(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), }, [1205] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3944), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -254031,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2133), + [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(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(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(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [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), @@ -254084,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(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), @@ -254114,84 +254197,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1206] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2739), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -254201,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -254254,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(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), @@ -254278,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(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), }, [1207] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4505), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -254371,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -254436,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(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -254454,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4387), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -254541,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -254594,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), @@ -254618,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4386), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -254711,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -254764,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), @@ -254788,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4385), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -254881,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -254934,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), @@ -254958,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4516), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -255051,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -255104,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), @@ -255134,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4028), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -255221,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2153), + [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(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(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(2161), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1327), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [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), @@ -255274,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(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), @@ -255304,84 +255387,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1213] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4522), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -255391,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -255456,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), @@ -255474,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4524), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -255561,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(2317), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [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), @@ -255615,19 +255698,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(2323), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_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), @@ -255638,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(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), }, [1215] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4527), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -255731,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -255784,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = 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), @@ -255808,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(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), }, [1216] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4528), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -255901,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -255954,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = 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), @@ -255978,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(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), }, [1217] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4529), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -256071,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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), @@ -256136,8 +256219,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = 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), @@ -256154,84 +256237,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1218] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4376), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -256241,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -256306,8 +256389,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = 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), @@ -256324,84 +256407,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1219] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4534), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -256411,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -256476,8 +256559,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = 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), @@ -256494,84 +256577,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1220] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3733), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -256581,47 +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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), + [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(2061), + [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(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_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(2069), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [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), @@ -256646,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), @@ -256664,84 +256747,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1221] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3777), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -256751,47 +256834,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1221), [sym_preproc_define] = STATE(1221), [sym_preproc_undef] = STATE(1221), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -256816,8 +256899,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -256834,84 +256917,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1222] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2758), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -256921,73 +257004,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1222), [sym_preproc_define] = STATE(1222), [sym_preproc_undef] = STATE(1222), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), - [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(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(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(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), @@ -256998,90 +257081,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1223] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2728), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -257091,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(1951), + [anon_sym_new] = ACTIONS(1827), [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(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(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [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), @@ -257144,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(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(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -257168,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(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), }, [1224] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4307), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -257261,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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_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(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(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(1447), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [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), @@ -257314,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), @@ -257338,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4185), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -257431,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(2423), - [anon_sym_ref] = ACTIONS(2425), - [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(2427), + [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(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(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(2435), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [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), @@ -257484,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -257508,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(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), }, [1226] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2713), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -257601,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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), @@ -257654,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(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), @@ -257678,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(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), }, [1227] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4098), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -257771,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(1909), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [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), @@ -257824,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -257848,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(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), }, [1228] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2712), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -257941,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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(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(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(2289), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [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), @@ -257994,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(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), @@ -258018,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(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), }, [1229] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2710), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -258111,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(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), @@ -258164,20 +258247,20 @@ static const uint16_t ts_parse_table[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), @@ -258188,90 +258271,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1230] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2706), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -258281,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(1951), + [anon_sym_new] = ACTIONS(2135), [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(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(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [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), @@ -258334,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(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), @@ -258358,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(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), }, [1231] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2773), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -258451,47 +258534,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1231), [sym_preproc_define] = STATE(1231), [sym_preproc_undef] = STATE(1231), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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(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(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(2289), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [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), @@ -258504,20 +258587,20 @@ static const uint16_t ts_parse_table[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), @@ -258528,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(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), }, [1232] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2776), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -258621,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(1951), + [anon_sym_new] = ACTIONS(2135), [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(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(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [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), @@ -258674,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(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), @@ -258698,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(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), }, [1233] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2725), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -258791,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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), + [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(1377), + [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(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(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(1399), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [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), @@ -258856,7 +258939,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), @@ -258874,84 +258957,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1234] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3294), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -258961,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(1531), + [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(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(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(1595), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [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), @@ -259014,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(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), @@ -259038,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(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), }, [1235] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2780), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -259131,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(1951), + [anon_sym_new] = ACTIONS(2135), [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(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(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [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), @@ -259184,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(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), @@ -259208,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(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), }, [1236] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3392), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -259301,73 +259384,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(2135), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [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(1393), + [anon_sym_throw] = ACTIONS(2141), + [anon_sym_when] = ACTIONS(29), + [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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), @@ -259378,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(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), }, [1237] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3402), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -259471,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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), @@ -259524,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -259548,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(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), }, [1238] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3473), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -259641,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -259694,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), @@ -259718,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3623), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -259811,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -259864,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(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), @@ -259888,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3624), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -259981,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -260034,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), @@ -260058,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2750), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -260151,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(3828), - [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(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(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(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(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(1399), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [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), @@ -260204,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -260228,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(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), }, [1242] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2751), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -260321,52 +260404,52 @@ 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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), + [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(1377), + [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(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(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(1399), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [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_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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), [anon_sym_let] = ACTIONS(29), [anon_sym_orderby] = ACTIONS(29), [anon_sym_ascending] = ACTIONS(29), @@ -260386,7 +260469,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), @@ -260404,84 +260487,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1243] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2752), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -260491,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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), + [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(1377), + [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(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(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(1399), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [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), @@ -260556,7 +260639,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), @@ -260574,84 +260657,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1244] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3633), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -260661,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1807), - [anon_sym_ref] = ACTIONS(1809), - [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(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(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(1819), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [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), @@ -260714,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), @@ -260738,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2756), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -260831,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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), + [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(1377), + [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(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(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(1399), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [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), @@ -260896,7 +260979,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), @@ -260914,84 +260997,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1246] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3598), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -261001,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -261054,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), @@ -261078,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3566), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -261171,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1807), - [anon_sym_ref] = ACTIONS(1809), - [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(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(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(1819), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [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), @@ -261224,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), @@ -261248,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2757), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -261341,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(3828), - [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(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), @@ -261394,20 +261477,20 @@ static const uint16_t ts_parse_table[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), @@ -261418,90 +261501,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1249] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3564), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -261511,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -261564,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), @@ -261594,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3546), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -261681,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(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_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), @@ -261746,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), @@ -261764,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3735), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -261851,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1807), - [anon_sym_ref] = ACTIONS(1809), - [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(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(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(1819), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [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), @@ -261904,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), @@ -261928,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3728), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -262021,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -262074,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), @@ -262104,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2768), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -262191,47 +262274,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1253), [sym_preproc_define] = STATE(1253), [sym_preproc_undef] = STATE(1253), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [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(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), @@ -262244,20 +262327,20 @@ static const uint16_t ts_parse_table[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), @@ -262268,90 +262351,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1254] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2771), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -262361,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(3828), - [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(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(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(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(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(1399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [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), @@ -262414,20 +262497,20 @@ static const uint16_t ts_parse_table[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), @@ -262438,90 +262521,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1255] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2772), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -262531,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(3828), - [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(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), @@ -262584,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), @@ -262608,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2778), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -262701,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(3828), - [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(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(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(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(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(1399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [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), @@ -262754,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), @@ -262778,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3654), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -262871,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [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(1811), + [anon_sym_new] = ACTIONS(2455), [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(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(1819), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [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), @@ -262924,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(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), @@ -262948,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(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), }, [1258] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3745), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -263041,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1807), - [anon_sym_ref] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_delegate] = ACTIONS(1529), + [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(1811), + [anon_sym_new] = ACTIONS(2455), [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(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(1819), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [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), @@ -263094,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(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), @@ -263118,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(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), }, [1259] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2781), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -263211,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(3828), - [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(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), @@ -263264,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), @@ -263288,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2783), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -263381,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(3828), - [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(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), @@ -263434,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), @@ -263458,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3898), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -263551,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [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(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(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [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), @@ -263604,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -263628,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(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), }, [1262] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2720), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -263721,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(3828), - [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(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), @@ -263774,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), @@ -263798,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2730), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -263891,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(1951), + [anon_sym_new] = ACTIONS(2455), [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(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(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [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), @@ -263944,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(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), @@ -263968,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(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), }, [1264] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3196), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -264061,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(3828), - [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(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(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(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(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(1567), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [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), @@ -264114,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), @@ -264138,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2715), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -264231,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(3828), - [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(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), @@ -264284,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), @@ -264308,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2711), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -264401,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(3828), - [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(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), @@ -264454,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), @@ -264478,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4332), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -264571,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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), @@ -264624,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -264648,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(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), }, [1268] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3395), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -264741,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(1719), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [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), @@ -264806,7 +264889,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), @@ -264824,84 +264907,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1269] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3945), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -264911,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(2133), + [anon_sym_new] = ACTIONS(2455), [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(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(2141), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [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), @@ -264964,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(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), @@ -264988,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(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), }, [1270] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3543), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -265081,73 +265164,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [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(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(2063), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [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(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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), @@ -265158,90 +265241,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1271] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3587), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -265251,47 +265334,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1271), [sym_preproc_define] = STATE(1271), [sym_preproc_undef] = STATE(1271), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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(1605), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_ref] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1611), - [anon_sym_delegate] = ACTIONS(1613), + [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(1603), - [anon_sym_new] = ACTIONS(1615), + [anon_sym_new] = ACTIONS(1273), [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_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(1637), - [anon_sym_throw] = ACTIONS(1973), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [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), @@ -265304,20 +265387,20 @@ 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_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), + [anon_sym_stackalloc] = ACTIONS(127), + [anon_sym_sizeof] = ACTIONS(129), + [anon_sym_typeof] = ACTIONS(131), + [anon_sym___makeref] = ACTIONS(133), + [anon_sym___reftype] = ACTIONS(135), + [anon_sym___refvalue] = ACTIONS(137), + [sym_null_literal] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(141), + [sym_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(1669), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -265328,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(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), }, [1272] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4251), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -265421,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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_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(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(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_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), @@ -265486,7 +265569,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), @@ -265504,84 +265587,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1273] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3952), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -265591,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(2141), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [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), @@ -265644,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(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), @@ -265668,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(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), }, [1274] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3351), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -265761,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(1719), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [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), @@ -265826,7 +265909,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), @@ -265844,84 +265927,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1275] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3344), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -265931,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -265984,20 +266067,20 @@ static const uint16_t ts_parse_table[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), @@ -266008,90 +266091,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1276] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4436), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -266101,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -266166,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), @@ -266184,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4181), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -266271,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -266284,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), @@ -266336,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), @@ -266354,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3373), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -266441,47 +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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(1719), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2461), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [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), @@ -266506,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), @@ -266524,84 +266607,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1279] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3346), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -266611,47 +266694,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1279), [sym_preproc_define] = STATE(1279), [sym_preproc_undef] = STATE(1279), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -266664,20 +266747,20 @@ static const uint16_t ts_parse_table[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), @@ -266688,90 +266771,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1280] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3375), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -266781,47 +266864,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1280), [sym_preproc_define] = STATE(1280), [sym_preproc_undef] = STATE(1280), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -266834,20 +266917,20 @@ static const uint16_t ts_parse_table[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), @@ -266858,90 +266941,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1281] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3372), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -266951,47 +267034,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1281), [sym_preproc_define] = STATE(1281), [sym_preproc_undef] = STATE(1281), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -267004,20 +267087,20 @@ static const uint16_t ts_parse_table[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), @@ -267028,90 +267111,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1282] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3380), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -267121,47 +267204,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1282), [sym_preproc_define] = STATE(1282), [sym_preproc_undef] = STATE(1282), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(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), @@ -267174,20 +267257,20 @@ static const uint16_t ts_parse_table[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), @@ -267198,90 +267281,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1283] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3315), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -267291,15 +267374,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1741), + [anon_sym_ref] = ACTIONS(1743), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), @@ -267309,29 +267392,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(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(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [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), @@ -267356,7 +267439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -267374,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3384), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -267461,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -267514,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -267538,90 +267621,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1285] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3645), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -267631,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(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_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), @@ -267696,7 +267779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -267714,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3388), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -267801,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -267854,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -267878,90 +267961,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1287] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3389), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -267971,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -268024,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -268048,90 +268131,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1288] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3398), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -268141,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -268194,20 +268277,20 @@ static const uint16_t ts_parse_table[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), @@ -268218,90 +268301,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1289] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3739), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -268311,217 +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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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_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), - }, - [1290] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3369), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1290), - [sym_preproc_endregion] = STATE(1290), - [sym_preproc_line] = STATE(1290), - [sym_preproc_pragma] = STATE(1290), - [sym_preproc_nullable] = STATE(1290), - [sym_preproc_error] = STATE(1290), - [sym_preproc_warning] = STATE(1290), - [sym_preproc_define] = STATE(1290), - [sym_preproc_undef] = STATE(1290), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -268534,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -268558,101 +268471,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, - [1291] = { - [sym_attribute_list] = STATE(5914), + [1290] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3308), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1291), - [sym_preproc_endregion] = STATE(1291), - [sym_preproc_line] = STATE(1291), - [sym_preproc_pragma] = STATE(1291), - [sym_preproc_nullable] = STATE(1291), - [sym_preproc_error] = STATE(1291), - [sym_preproc_warning] = STATE(1291), - [sym_preproc_define] = STATE(1291), - [sym_preproc_undef] = STATE(1291), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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), + [sym_preproc_pragma] = STATE(1290), + [sym_preproc_nullable] = STATE(1290), + [sym_preproc_error] = STATE(1290), + [sym_preproc_warning] = STATE(1290), + [sym_preproc_define] = STATE(1290), + [sym_preproc_undef] = STATE(1290), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4065), [sym__identifier_token] = ACTIONS(1601), [anon_sym_alias] = ACTIONS(1603), [anon_sym_global] = ACTIONS(1603), @@ -268669,29 +268582,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(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(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_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), @@ -268733,305 +268646,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), }, - [1292] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4425), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1292), - [sym_preproc_endregion] = STATE(1292), - [sym_preproc_line] = STATE(1292), - [sym_preproc_pragma] = STATE(1292), - [sym_preproc_nullable] = STATE(1292), - [sym_preproc_error] = STATE(1292), - [sym_preproc_warning] = STATE(1292), - [sym_preproc_define] = STATE(1292), - [sym_preproc_undef] = STATE(1292), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [sym__identifier_token] = ACTIONS(25), - [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_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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [1293] = { - [sym_attribute_list] = STATE(5914), + [1291] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2807), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4182), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6482), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7893), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1293), - [sym_preproc_endregion] = STATE(1293), - [sym_preproc_line] = STATE(1293), - [sym_preproc_pragma] = STATE(1293), - [sym_preproc_nullable] = STATE(1293), - [sym_preproc_error] = STATE(1293), - [sym_preproc_warning] = STATE(1293), - [sym_preproc_define] = STATE(1293), - [sym_preproc_undef] = STATE(1293), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), + [sym_preproc_pragma] = STATE(1291), + [sym_preproc_nullable] = STATE(1291), + [sym_preproc_error] = STATE(1291), + [sym_preproc_warning] = STATE(1291), + [sym_preproc_define] = STATE(1291), + [sym_preproc_undef] = STATE(1291), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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(2111), - [anon_sym_ref] = ACTIONS(2113), - [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(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(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(2123), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2125), - [anon_sym_DOT_DOT] = ACTIONS(2127), + [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), @@ -269044,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -269068,108 +268811,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(1815), + [sym_interpolation_verbatim_start] = ACTIONS(1817), + [sym_interpolation_raw_start] = ACTIONS(1819), + [sym_raw_string_start] = ACTIONS(1821), }, - [1294] = { - [sym_attribute_list] = STATE(5914), + [1292] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3732), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1294), - [sym_preproc_endregion] = STATE(1294), - [sym_preproc_line] = STATE(1294), - [sym_preproc_pragma] = STATE(1294), - [sym_preproc_nullable] = STATE(1294), - [sym_preproc_error] = STATE(1294), - [sym_preproc_warning] = STATE(1294), - [sym_preproc_define] = STATE(1294), - [sym_preproc_undef] = STATE(1294), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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), + [sym_preproc_pragma] = STATE(1292), + [sym_preproc_nullable] = STATE(1292), + [sym_preproc_error] = STATE(1292), + [sym_preproc_warning] = STATE(1292), + [sym_preproc_define] = STATE(1292), + [sym_preproc_undef] = STATE(1292), + [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(1965), - [anon_sym_ref] = ACTIONS(1967), + [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), @@ -269179,29 +268922,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(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_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(1637), - [anon_sym_throw] = ACTIONS(1973), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [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), @@ -269243,135 +268986,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), }, - [1295] = { - [sym_attribute_list] = STATE(5914), + [1293] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3452), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1295), - [sym_preproc_endregion] = STATE(1295), - [sym_preproc_line] = STATE(1295), - [sym_preproc_pragma] = STATE(1295), - [sym_preproc_nullable] = STATE(1295), - [sym_preproc_error] = STATE(1295), - [sym_preproc_warning] = STATE(1295), - [sym_preproc_define] = STATE(1295), - [sym_preproc_undef] = STATE(1295), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [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), + [sym_preproc_pragma] = STATE(1293), + [sym_preproc_nullable] = STATE(1293), + [sym_preproc_error] = STATE(1293), + [sym_preproc_warning] = STATE(1293), + [sym_preproc_define] = STATE(1293), + [sym_preproc_undef] = STATE(1293), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(1843), + [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(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(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(1925), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [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), @@ -269384,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -269408,108 +269151,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(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), }, - [1296] = { - [sym_attribute_list] = STATE(5914), + [1294] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3231), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1296), - [sym_preproc_endregion] = STATE(1296), - [sym_preproc_line] = STATE(1296), - [sym_preproc_pragma] = STATE(1296), - [sym_preproc_nullable] = STATE(1296), - [sym_preproc_error] = STATE(1296), - [sym_preproc_warning] = STATE(1296), - [sym_preproc_define] = STATE(1296), - [sym_preproc_undef] = STATE(1296), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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), + [sym_preproc_pragma] = STATE(1294), + [sym_preproc_nullable] = STATE(1294), + [sym_preproc_error] = STATE(1294), + [sym_preproc_warning] = STATE(1294), + [sym_preproc_define] = STATE(1294), + [sym_preproc_undef] = STATE(1294), + [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(1741), + [anon_sym_ref] = ACTIONS(1743), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), @@ -269519,29 +269262,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(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(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(1541), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [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), @@ -269566,7 +269309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -269583,135 +269326,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), }, - [1297] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4100), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1297), - [sym_preproc_endregion] = STATE(1297), - [sym_preproc_line] = STATE(1297), - [sym_preproc_pragma] = STATE(1297), - [sym_preproc_nullable] = STATE(1297), - [sym_preproc_error] = STATE(1297), - [sym_preproc_warning] = STATE(1297), - [sym_preproc_define] = STATE(1297), - [sym_preproc_undef] = STATE(1297), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [1295] = { + [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(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), + [sym_preproc_pragma] = STATE(1295), + [sym_preproc_nullable] = STATE(1295), + [sym_preproc_error] = STATE(1295), + [sym_preproc_warning] = STATE(1295), + [sym_preproc_define] = STATE(1295), + [sym_preproc_undef] = STATE(1295), + [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(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(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(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(2161), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [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), @@ -269736,7 +269479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -269753,135 +269496,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), }, - [1298] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3218), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1298), - [sym_preproc_endregion] = STATE(1298), - [sym_preproc_line] = STATE(1298), - [sym_preproc_pragma] = STATE(1298), - [sym_preproc_nullable] = STATE(1298), - [sym_preproc_error] = STATE(1298), - [sym_preproc_warning] = STATE(1298), - [sym_preproc_define] = STATE(1298), - [sym_preproc_undef] = STATE(1298), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [1296] = { + [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(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), + [sym_preproc_pragma] = STATE(1296), + [sym_preproc_nullable] = STATE(1296), + [sym_preproc_error] = STATE(1296), + [sym_preproc_warning] = STATE(1296), + [sym_preproc_define] = STATE(1296), + [sym_preproc_undef] = STATE(1296), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(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), @@ -269894,20 +269637,20 @@ static const uint16_t ts_parse_table[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), @@ -269923,135 +269666,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), }, - [1299] = { - [sym_attribute_list] = STATE(5914), + [1297] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3867), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1299), - [sym_preproc_endregion] = STATE(1299), - [sym_preproc_line] = STATE(1299), - [sym_preproc_pragma] = STATE(1299), - [sym_preproc_nullable] = STATE(1299), - [sym_preproc_error] = STATE(1299), - [sym_preproc_warning] = STATE(1299), - [sym_preproc_define] = STATE(1299), - [sym_preproc_undef] = STATE(1299), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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), + [sym_preproc_pragma] = STATE(1297), + [sym_preproc_nullable] = STATE(1297), + [sym_preproc_error] = STATE(1297), + [sym_preproc_warning] = STATE(1297), + [sym_preproc_define] = STATE(1297), + [sym_preproc_undef] = STATE(1297), + [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(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_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_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(1637), - [anon_sym_throw] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), + [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), @@ -270093,96 +269836,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1675), [sym_raw_string_start] = ACTIONS(1677), }, - [1300] = { - [sym_attribute_list] = STATE(5914), + [1298] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4429), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1300), - [sym_preproc_endregion] = STATE(1300), - [sym_preproc_line] = STATE(1300), - [sym_preproc_pragma] = STATE(1300), - [sym_preproc_nullable] = STATE(1300), - [sym_preproc_error] = STATE(1300), - [sym_preproc_warning] = STATE(1300), - [sym_preproc_define] = STATE(1300), - [sym_preproc_undef] = STATE(1300), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), + [sym_preproc_pragma] = STATE(1298), + [sym_preproc_nullable] = STATE(1298), + [sym_preproc_error] = STATE(1298), + [sym_preproc_warning] = STATE(1298), + [sym_preproc_define] = STATE(1298), + [sym_preproc_undef] = STATE(1298), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -270194,34 +269937,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), @@ -270246,8 +269989,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -270263,135 +270006,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), }, - [1301] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4292), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1301), - [sym_preproc_endregion] = STATE(1301), - [sym_preproc_line] = STATE(1301), - [sym_preproc_pragma] = STATE(1301), - [sym_preproc_nullable] = STATE(1301), - [sym_preproc_error] = STATE(1301), - [sym_preproc_warning] = STATE(1301), - [sym_preproc_define] = STATE(1301), - [sym_preproc_undef] = STATE(1301), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [1299] = { + [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), + [sym_preproc_pragma] = STATE(1299), + [sym_preproc_nullable] = STATE(1299), + [sym_preproc_error] = STATE(1299), + [sym_preproc_warning] = STATE(1299), + [sym_preproc_define] = STATE(1299), + [sym_preproc_undef] = STATE(1299), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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_LBRACK] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(2473), [anon_sym_ref] = ACTIONS(2475), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [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_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(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(2485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2483), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [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), @@ -270404,20 +270147,20 @@ static const uint16_t ts_parse_table[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), @@ -270428,140 +270171,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, - [1302] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4257), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1302), - [sym_preproc_endregion] = STATE(1302), - [sym_preproc_line] = STATE(1302), - [sym_preproc_pragma] = STATE(1302), - [sym_preproc_nullable] = STATE(1302), - [sym_preproc_error] = STATE(1302), - [sym_preproc_warning] = STATE(1302), - [sym_preproc_define] = STATE(1302), - [sym_preproc_undef] = STATE(1302), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [1300] = { + [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(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), + [sym_preproc_pragma] = STATE(1300), + [sym_preproc_nullable] = STATE(1300), + [sym_preproc_error] = STATE(1300), + [sym_preproc_warning] = STATE(1300), + [sym_preproc_define] = STATE(1300), + [sym_preproc_undef] = STATE(1300), + [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(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(2477), + [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(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(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(2485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [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), @@ -270574,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -270598,140 +270341,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, - [1303] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4092), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1303), - [sym_preproc_endregion] = STATE(1303), - [sym_preproc_line] = STATE(1303), - [sym_preproc_pragma] = STATE(1303), - [sym_preproc_nullable] = STATE(1303), - [sym_preproc_error] = STATE(1303), - [sym_preproc_warning] = STATE(1303), - [sym_preproc_define] = STATE(1303), - [sym_preproc_undef] = STATE(1303), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [1301] = { + [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(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), + [sym_preproc_pragma] = STATE(1301), + [sym_preproc_nullable] = STATE(1301), + [sym_preproc_error] = STATE(1301), + [sym_preproc_warning] = STATE(1301), + [sym_preproc_define] = STATE(1301), + [sym_preproc_undef] = STATE(1301), + [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(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(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(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(2161), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [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), @@ -270756,7 +270499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -270773,135 +270516,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), }, - [1304] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4290), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1304), - [sym_preproc_endregion] = STATE(1304), - [sym_preproc_line] = STATE(1304), - [sym_preproc_pragma] = STATE(1304), - [sym_preproc_nullable] = STATE(1304), - [sym_preproc_error] = STATE(1304), - [sym_preproc_warning] = STATE(1304), - [sym_preproc_define] = STATE(1304), - [sym_preproc_undef] = STATE(1304), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [1302] = { + [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), + [sym_preproc_pragma] = STATE(1302), + [sym_preproc_nullable] = STATE(1302), + [sym_preproc_error] = STATE(1302), + [sym_preproc_warning] = STATE(1302), + [sym_preproc_define] = STATE(1302), + [sym_preproc_undef] = STATE(1302), + [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(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(2477), + [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(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(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(2485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [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), @@ -270914,20 +270657,20 @@ static const uint16_t ts_parse_table[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), @@ -270938,166 +270681,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_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), }, - [1305] = { - [sym_attribute_list] = STATE(5914), + [1303] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3760), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1305), - [sym_preproc_endregion] = STATE(1305), - [sym_preproc_line] = STATE(1305), - [sym_preproc_pragma] = STATE(1305), - [sym_preproc_nullable] = STATE(1305), - [sym_preproc_error] = STATE(1305), - [sym_preproc_warning] = STATE(1305), - [sym_preproc_define] = STATE(1305), - [sym_preproc_undef] = STATE(1305), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [sym__identifier_token] = ACTIONS(1601), - [anon_sym_alias] = ACTIONS(1603), - [anon_sym_global] = ACTIONS(1603), + [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), + [sym_preproc_pragma] = STATE(1303), + [sym_preproc_nullable] = STATE(1303), + [sym_preproc_error] = STATE(1303), + [sym_preproc_warning] = STATE(1303), + [sym_preproc_define] = STATE(1303), + [sym_preproc_undef] = STATE(1303), + [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), @@ -271108,108 +270851,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(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), }, - [1306] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3325), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1306), - [sym_preproc_endregion] = STATE(1306), - [sym_preproc_line] = STATE(1306), - [sym_preproc_pragma] = STATE(1306), - [sym_preproc_nullable] = STATE(1306), - [sym_preproc_error] = STATE(1306), - [sym_preproc_warning] = STATE(1306), - [sym_preproc_define] = STATE(1306), - [sym_preproc_undef] = STATE(1306), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [1304] = { + [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(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), + [sym_preproc_pragma] = STATE(1304), + [sym_preproc_nullable] = STATE(1304), + [sym_preproc_error] = STATE(1304), + [sym_preproc_warning] = STATE(1304), + [sym_preproc_define] = STATE(1304), + [sym_preproc_undef] = STATE(1304), + [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(1741), + [anon_sym_ref] = ACTIONS(1743), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), @@ -271219,29 +270962,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(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(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [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), @@ -271266,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), @@ -271283,135 +271026,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), }, - [1307] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3630), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1307), - [sym_preproc_endregion] = STATE(1307), - [sym_preproc_line] = STATE(1307), - [sym_preproc_pragma] = STATE(1307), - [sym_preproc_nullable] = STATE(1307), - [sym_preproc_error] = STATE(1307), - [sym_preproc_warning] = STATE(1307), - [sym_preproc_define] = STATE(1307), - [sym_preproc_undef] = STATE(1307), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4925), + [1305] = { + [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), + [sym_preproc_pragma] = STATE(1305), + [sym_preproc_nullable] = STATE(1305), + [sym_preproc_error] = STATE(1305), + [sym_preproc_warning] = STATE(1305), + [sym_preproc_define] = STATE(1305), + [sym_preproc_undef] = STATE(1305), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -271424,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), @@ -271448,140 +271191,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, - [1308] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4286), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1308), - [sym_preproc_endregion] = STATE(1308), - [sym_preproc_line] = STATE(1308), - [sym_preproc_pragma] = STATE(1308), - [sym_preproc_nullable] = STATE(1308), - [sym_preproc_error] = STATE(1308), - [sym_preproc_warning] = STATE(1308), - [sym_preproc_define] = STATE(1308), - [sym_preproc_undef] = STATE(1308), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [1306] = { + [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), + [sym_preproc_pragma] = STATE(1306), + [sym_preproc_nullable] = STATE(1306), + [sym_preproc_error] = STATE(1306), + [sym_preproc_warning] = STATE(1306), + [sym_preproc_define] = STATE(1306), + [sym_preproc_undef] = STATE(1306), + [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(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(2477), + [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(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(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(2485), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [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), @@ -271606,7 +271349,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), @@ -271623,85 +271366,425 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(1517), [sym_raw_string_start] = ACTIONS(1519), }, + [1307] = { + [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(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), + [sym_preproc_pragma] = STATE(1307), + [sym_preproc_nullable] = STATE(1307), + [sym_preproc_error] = STATE(1307), + [sym_preproc_warning] = STATE(1307), + [sym_preproc_define] = STATE(1307), + [sym_preproc_undef] = STATE(1307), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [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(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(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(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(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), + }, + [1308] = { + [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(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), + [sym_preproc_pragma] = STATE(1308), + [sym_preproc_nullable] = STATE(1308), + [sym_preproc_error] = STATE(1308), + [sym_preproc_warning] = STATE(1308), + [sym_preproc_define] = STATE(1308), + [sym_preproc_undef] = STATE(1308), + [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), + }, [1309] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4007), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -271711,47 +271794,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1309), [sym_preproc_define] = STATE(1309), [sym_preproc_undef] = STATE(1309), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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(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_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_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(1637), - [anon_sym_throw] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), + [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), @@ -271794,84 +271877,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1677), }, [1310] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4010), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -271881,47 +271964,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1310), [sym_preproc_define] = STATE(1310), [sym_preproc_undef] = STATE(1310), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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(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_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_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(1637), - [anon_sym_throw] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), + [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), @@ -271964,84 +272047,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1677), }, [1311] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4279), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -272051,47 +272134,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1311), [sym_preproc_define] = STATE(1311), [sym_preproc_undef] = STATE(1311), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -272104,20 +272187,20 @@ static const uint16_t ts_parse_table[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), @@ -272128,90 +272211,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1312] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4102), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -272221,73 +272304,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1312), [sym_preproc_define] = STATE(1312), [sym_preproc_undef] = STATE(1312), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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(2473), - [anon_sym_ref] = ACTIONS(2475), - [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(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(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_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -272298,90 +272381,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1313] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4051), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -272391,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(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(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(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), @@ -272468,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(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), }, [1314] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4277), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -272561,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -272614,20 +272697,20 @@ static const uint16_t ts_parse_table[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), @@ -272638,90 +272721,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1315] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4176), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -272731,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -272744,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), @@ -272796,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), @@ -272814,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4441), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -272901,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -272966,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), @@ -272984,85 +273067,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1317] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4276), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1317), + [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(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), [sym_preproc_pragma] = STATE(1317), @@ -273071,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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(2473), - [anon_sym_ref] = ACTIONS(2475), - [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(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(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_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2485), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -273148,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(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), }, [1318] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4275), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -273241,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(2477), + [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(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(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(1483), - [anon_sym_throw] = ACTIONS(2485), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [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), @@ -273294,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -273318,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(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), }, [1319] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3997), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -273411,47 +273494,217 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), + }, + [1320] = { + [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(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), + [sym_preproc_pragma] = STATE(1320), + [sym_preproc_nullable] = STATE(1320), + [sym_preproc_error] = STATE(1320), + [sym_preproc_warning] = STATE(1320), + [sym_preproc_define] = STATE(1320), + [sym_preproc_undef] = STATE(1320), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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_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), @@ -273476,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), @@ -273493,135 +273746,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), }, - [1320] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4274), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1320), - [sym_preproc_endregion] = STATE(1320), - [sym_preproc_line] = STATE(1320), - [sym_preproc_pragma] = STATE(1320), - [sym_preproc_nullable] = STATE(1320), - [sym_preproc_error] = STATE(1320), - [sym_preproc_warning] = STATE(1320), - [sym_preproc_define] = STATE(1320), - [sym_preproc_undef] = STATE(1320), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [1321] = { + [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(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), + [sym_preproc_pragma] = STATE(1321), + [sym_preproc_nullable] = STATE(1321), + [sym_preproc_error] = STATE(1321), + [sym_preproc_warning] = STATE(1321), + [sym_preproc_define] = STATE(1321), + [sym_preproc_undef] = STATE(1321), + [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(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(2477), + [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(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(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(2485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [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), @@ -273634,190 +273887,20 @@ static const uint16_t ts_parse_table[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), - }, - [1321] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4013), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1321), - [sym_preproc_endregion] = STATE(1321), - [sym_preproc_line] = STATE(1321), - [sym_preproc_pragma] = STATE(1321), - [sym_preproc_nullable] = STATE(1321), - [sym_preproc_error] = STATE(1321), - [sym_preproc_warning] = STATE(1321), - [sym_preproc_define] = STATE(1321), - [sym_preproc_undef] = STATE(1321), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), + [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), @@ -273828,90 +273911,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1322] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4014), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -273921,73 +274004,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -273998,90 +274081,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1323] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4015), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -274091,47 +274174,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1323), [sym_preproc_define] = STATE(1323), [sym_preproc_undef] = STATE(1323), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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(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_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_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(1637), - [anon_sym_throw] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), + [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), @@ -274174,84 +274257,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1677), }, [1324] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4017), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -274261,47 +274344,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1324), [sym_preproc_define] = STATE(1324), [sym_preproc_undef] = STATE(1324), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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(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_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_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(1637), - [anon_sym_throw] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), + [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), @@ -274344,84 +274427,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1677), }, [1325] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4023), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -274431,73 +274514,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(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(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), @@ -274508,90 +274591,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1326] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4068), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -274601,217 +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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), - }, - [1327] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4273), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1327), - [sym_preproc_endregion] = STATE(1327), - [sym_preproc_line] = STATE(1327), - [sym_preproc_pragma] = STATE(1327), - [sym_preproc_nullable] = STATE(1327), - [sym_preproc_error] = STATE(1327), - [sym_preproc_warning] = STATE(1327), - [sym_preproc_define] = STATE(1327), - [sym_preproc_undef] = STATE(1327), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -274824,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -274848,140 +274761,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, - [1328] = { - [sym_attribute_list] = STATE(5914), + [1327] = { + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4083), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1328), - [sym_preproc_endregion] = STATE(1328), - [sym_preproc_line] = STATE(1328), - [sym_preproc_pragma] = STATE(1328), - [sym_preproc_nullable] = STATE(1328), - [sym_preproc_error] = STATE(1328), - [sym_preproc_warning] = STATE(1328), - [sym_preproc_define] = STATE(1328), - [sym_preproc_undef] = STATE(1328), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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), + [sym_preproc_pragma] = STATE(1327), + [sym_preproc_nullable] = STATE(1327), + [sym_preproc_error] = STATE(1327), + [sym_preproc_warning] = STATE(1327), + [sym_preproc_define] = STATE(1327), + [sym_preproc_undef] = STATE(1327), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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(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_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_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(1637), - [anon_sym_throw] = ACTIONS(1833), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1837), + [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), @@ -275023,85 +274936,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), }, + [1328] = { + [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), + [sym_preproc_pragma] = STATE(1328), + [sym_preproc_nullable] = STATE(1328), + [sym_preproc_error] = STATE(1328), + [sym_preproc_warning] = STATE(1328), + [sym_preproc_define] = STATE(1328), + [sym_preproc_undef] = STATE(1328), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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(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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, [1329] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4096), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -275111,73 +275194,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -275188,90 +275271,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1330] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3851), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -275281,73 +275364,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -275358,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(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), }, [1331] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4272), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -275451,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -275504,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -275528,90 +275611,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1332] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4268), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -275621,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -275674,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), @@ -275698,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4266), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -275791,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -275844,20 +275927,20 @@ static const uint16_t ts_parse_table[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), @@ -275868,90 +275951,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1334] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4264), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -275961,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -276014,20 +276097,20 @@ static const uint16_t ts_parse_table[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), @@ -276038,90 +276121,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1335] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4088), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -276131,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2153), + [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(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(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(2161), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [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), @@ -276184,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(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), @@ -276208,90 +276291,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1336] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3469), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -276301,73 +276384,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(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), @@ -276378,90 +276461,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1337] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4115), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -276471,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -276524,20 +276607,20 @@ static const uint16_t ts_parse_table[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), @@ -276548,90 +276631,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1338] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3759), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -276641,73 +276724,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(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), @@ -276718,90 +276801,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1339] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2714), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -276811,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(1951), + [anon_sym_new] = ACTIONS(2377), [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(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(1769), - [anon_sym_throw] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2293), + [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), @@ -276864,20 +276947,20 @@ static const uint16_t ts_parse_table[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), @@ -276888,90 +276971,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1340] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3758), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -276981,15 +277064,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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(1965), - [anon_sym_ref] = ACTIONS(1967), + [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), @@ -276999,29 +277082,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(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_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(1637), - [anon_sym_throw] = ACTIONS(1973), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [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), @@ -277064,84 +277147,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1677), }, [1341] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3798), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -277151,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [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), @@ -277216,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), @@ -277234,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3871), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -277321,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [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), @@ -277386,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), @@ -277404,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4087), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -277491,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -277544,20 +277627,20 @@ static const uint16_t ts_parse_table[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), @@ -277574,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3999), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -277661,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [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), @@ -277726,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), @@ -277744,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3754), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -277831,15 +277914,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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(1965), - [anon_sym_ref] = ACTIONS(1967), + [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), @@ -277849,29 +277932,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(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_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(1637), - [anon_sym_throw] = ACTIONS(1973), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1635), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [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), @@ -277914,84 +277997,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1677), }, [1346] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3782), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -278001,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -278066,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), @@ -278084,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3803), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -278171,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [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), @@ -278236,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), @@ -278254,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3843), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -278341,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [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), @@ -278406,8 +278489,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(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), @@ -278424,84 +278507,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1349] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3752), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -278511,73 +278594,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(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), @@ -278588,90 +278671,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1350] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3750), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -278681,73 +278764,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(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), @@ -278758,90 +278841,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1351] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3749), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -278851,73 +278934,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(2117), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [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(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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), @@ -278928,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(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), }, [1352] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4084), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -279021,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -279074,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(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), @@ -279104,84 +279187,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1353] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3847), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -279191,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [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), @@ -279256,8 +279339,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -279274,84 +279357,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1354] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3471), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -279361,73 +279444,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(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), @@ -279438,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(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), }, [1355] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4074), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -279531,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2153), + [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(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(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(2161), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [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), @@ -279584,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(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), @@ -279608,90 +279691,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1356] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3853), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -279701,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1733), + [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(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(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(1909), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [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), @@ -279754,20 +279837,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -279778,90 +279861,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1357] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3277), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -279871,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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), @@ -279924,20 +280007,20 @@ static const uint16_t ts_parse_table[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), @@ -279954,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3291), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -280041,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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_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(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), @@ -280094,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(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), @@ -280118,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(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), }, [1359] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3890), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -280211,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1733), + [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(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(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(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [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), @@ -280264,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), @@ -280294,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3472), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -280381,73 +280464,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(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), @@ -280458,90 +280541,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1361] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3474), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -280551,73 +280634,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(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(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), @@ -280628,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(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), }, [1362] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4072), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -280721,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -280774,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(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), @@ -280798,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(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), }, [1363] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3966), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -280891,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -280945,19 +281028,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), @@ -280968,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(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), }, [1364] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3845), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -281061,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1733), + [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(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(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(1909), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [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), @@ -281114,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -281138,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(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), }, [1365] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4070), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -281231,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -281284,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(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), @@ -281308,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3858), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -281401,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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), @@ -281454,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), @@ -281478,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3466), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -281571,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -281624,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(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), @@ -281648,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(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), }, [1368] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3708), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -281741,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(1811), + [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(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(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(1819), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [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), @@ -281794,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(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), @@ -281818,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(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), }, [1369] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3214), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -281911,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1541), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [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), @@ -281964,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(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), @@ -281988,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(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), }, [1370] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3470), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -282081,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(1811), + [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(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(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(1819), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [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), @@ -282134,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(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), @@ -282158,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(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), }, [1371] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4060), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -282251,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(2161), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [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), @@ -282304,114 +282387,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), + [anon_sym_stackalloc] = ACTIONS(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1372] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3584), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -282421,73 +282504,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(1965), - [anon_sym_ref] = ACTIONS(1967), - [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(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(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), @@ -282498,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(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), }, [1373] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3707), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -282591,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1273), + [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(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(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(1297), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [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), @@ -282644,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -282668,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(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), }, [1374] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4058), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -282761,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -282814,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(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), @@ -282838,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4055), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -282931,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -282984,20 +283067,20 @@ static const uint16_t ts_parse_table[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), @@ -283008,90 +283091,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1376] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3206), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4641), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7789), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -283101,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1541), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_DOT_DOT] = ACTIONS(1545), + [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), @@ -283154,20 +283237,20 @@ static const uint16_t ts_parse_table[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), @@ -283178,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3857), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -283271,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -283324,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(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), @@ -283348,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3555), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -283441,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(1811), + [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(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(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(1819), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [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), @@ -283494,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), @@ -283518,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3444), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -283611,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(3828), - [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(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), @@ -283676,7 +283759,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), @@ -283694,84 +283777,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1380] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3706), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -283781,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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), + [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(2061), + [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(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_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(2069), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [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), @@ -283846,7 +283929,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), @@ -283864,84 +283947,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1381] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3357), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_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), @@ -283951,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(3828), - [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(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(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(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(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(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(1925), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [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), @@ -284004,20 +284087,20 @@ static const uint16_t ts_parse_table[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), @@ -284028,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(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), }, [1382] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3496), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -284121,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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_ref] = ACTIONS(2059), + [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(2061), + [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(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_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(2069), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [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), @@ -284186,7 +284269,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), @@ -284204,84 +284287,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1383] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4488), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -284291,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -284345,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), @@ -284368,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4487), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -284461,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [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(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), @@ -284514,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(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), @@ -284538,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3178), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -284631,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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), + [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(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(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(1567), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [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), @@ -284696,7 +284779,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), @@ -284714,84 +284797,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1386] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3176), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -284801,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(3828), - [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(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), @@ -284854,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -284878,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(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), }, [1387] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3804), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -284971,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -284984,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), @@ -285036,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), @@ -285054,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3174), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -285141,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(3828), - [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(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), @@ -285194,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -285218,90 +285301,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1389] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3173), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -285311,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(3828), - [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(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(1979), + [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), @@ -285364,20 +285447,20 @@ static const uint16_t ts_parse_table[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), @@ -285388,90 +285471,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1390] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3378), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -285481,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(3828), - [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(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(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(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(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(1851), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -285534,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), @@ -285558,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3431), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -285651,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(3828), - [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(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(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(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(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(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -285704,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -285728,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(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), }, [1392] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3172), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -285821,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(3828), - [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(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(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(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(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(1397), - [anon_sym_throw] = ACTIONS(1567), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2175), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [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), @@ -285874,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -285898,90 +285981,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1393] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4486), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -285991,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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), @@ -286044,20 +286127,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -286074,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3379), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -286161,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(3828), - [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(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(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(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(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(1851), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -286214,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), @@ -286238,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3256), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -286331,47 +286414,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1395), [sym_preproc_define] = STATE(1395), [sym_preproc_undef] = STATE(1395), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [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(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(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(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(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(1567), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [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), @@ -286384,20 +286467,20 @@ static const uint16_t ts_parse_table[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), @@ -286408,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(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), }, [1396] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3381), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -286501,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(3828), - [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(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(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(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(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(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -286554,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), @@ -286578,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3201), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -286671,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(3828), - [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(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), @@ -286724,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -286748,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(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), }, [1398] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3207), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -286841,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(3828), - [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(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), @@ -286894,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), @@ -286918,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3212), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -287011,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(3828), - [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(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), @@ -287064,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -287088,90 +287171,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1400] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3382), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -287181,47 +287264,47 @@ 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(3828), - [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(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(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(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(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(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -287234,20 +287317,20 @@ static const uint16_t ts_parse_table[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), @@ -287258,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(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), }, [1401] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3190), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -287351,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(3828), - [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(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), @@ -287404,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), @@ -287428,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4175), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -287521,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -287534,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), @@ -287586,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), @@ -287604,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3217), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -287691,15 +287774,15 @@ 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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), + [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), @@ -287709,29 +287792,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(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(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(1567), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [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), @@ -287756,8 +287839,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), @@ -287774,84 +287857,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1404] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3434), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -287861,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(3828), - [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(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), @@ -287914,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), @@ -287938,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3244), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -288031,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(3828), - [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(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), @@ -288084,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), @@ -288108,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3383), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -288201,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(3828), - [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(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(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(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(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(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -288254,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), @@ -288278,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4095), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), + [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(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -288371,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -288448,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3432), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -288541,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(3828), - [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(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), @@ -288594,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), @@ -288618,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3445), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -288711,73 +288794,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(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), @@ -288788,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(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), }, [1410] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3385), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -288881,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(3828), - [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(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(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(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(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(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -288934,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -288958,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(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), }, [1411] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3386), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -289051,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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), + [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(1843), + [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(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(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(1851), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2141), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -289116,7 +289199,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), @@ -289134,84 +289217,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1412] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3430), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -289221,47 +289304,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1412), [sym_preproc_define] = STATE(1412), [sym_preproc_undef] = STATE(1412), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), - [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(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(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(1397), - [anon_sym_throw] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -289274,20 +289357,20 @@ static const uint16_t ts_parse_table[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), @@ -289298,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(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), }, [1413] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3429), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -289391,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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), + [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(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(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(1851), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -289456,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), @@ -289474,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3342), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -289561,47 +289644,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1414), [sym_preproc_define] = STATE(1414), [sym_preproc_undef] = STATE(1414), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [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(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(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(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(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(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -289614,20 +289697,20 @@ static const uint16_t ts_parse_table[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), @@ -289638,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(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), }, [1415] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3253), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -289731,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -289784,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(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), @@ -289808,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(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), }, [1416] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3667), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -289901,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(3828), - [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(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), @@ -289954,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), @@ -289978,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3275), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), + [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(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(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -290071,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1579), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -290136,8 +290219,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = 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), @@ -290154,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3067), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -290241,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(1465), + [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(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(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(1485), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2441), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [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), @@ -290306,7 +290389,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), @@ -290324,84 +290407,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1419] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3457), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -290411,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -290488,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4604), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2576), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -290581,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(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), @@ -290634,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -290658,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(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), }, [1421] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3755), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -290751,15 +290834,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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), @@ -290769,29 +290852,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(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(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), @@ -290816,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), @@ -290834,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4078), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -290921,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -290998,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3122), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -291091,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [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), @@ -291144,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -291168,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(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), }, [1424] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3448), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -291261,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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), + [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(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(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(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(1851), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -291326,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), @@ -291344,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3121), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -291431,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [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), @@ -291484,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -291508,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(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), }, [1426] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3903), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -291601,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(1995), + [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), @@ -291666,8 +291749,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -291684,84 +291767,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1427] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3805), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5072), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7998), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -291771,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1733), + [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(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(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(1909), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1913), + [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), @@ -291824,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(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), @@ -291854,84 +291937,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1428] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3120), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -291941,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(1465), + [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(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(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(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [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), @@ -291994,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -292018,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(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), }, [1429] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3119), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -292111,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [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), @@ -292164,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -292188,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(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), }, [1430] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3118), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -292281,47 +292364,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1430), [sym_preproc_define] = STATE(1430), [sym_preproc_undef] = STATE(1430), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(1485), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [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), @@ -292346,7 +292429,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), @@ -292364,84 +292447,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1431] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4000), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -292451,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -292464,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), @@ -292516,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), @@ -292534,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3117), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -292621,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(1465), + [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(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(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(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [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), @@ -292674,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -292698,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(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), }, [1433] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3116), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -292791,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(1465), + [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(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(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(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [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), @@ -292844,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -292868,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(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), }, [1434] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3081), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -292961,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(1465), + [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(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(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(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [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), @@ -293014,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -293038,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(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), }, [1435] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3092), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -293131,47 +293214,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1435), [sym_preproc_define] = STATE(1435), [sym_preproc_undef] = STATE(1435), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(1485), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [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), @@ -293196,7 +293279,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), @@ -293214,84 +293297,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1436] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4444), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -293301,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -293314,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), @@ -293366,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), @@ -293384,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3105), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -293471,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(1465), + [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(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(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(1483), - [anon_sym_throw] = ACTIONS(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [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), @@ -293524,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -293548,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(1513), - [sym_interpolation_verbatim_start] = ACTIONS(1515), - [sym_interpolation_raw_start] = ACTIONS(1517), - [sym_raw_string_start] = ACTIONS(1519), - }, - [1438] = { - [sym_attribute_list] = STATE(5914), + [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(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3462), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -293641,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(3828), - [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(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(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(2061), + [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(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(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(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [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), @@ -293694,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), @@ -293718,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3442), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -293811,47 +293894,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1439), [sym_preproc_define] = STATE(1439), [sym_preproc_undef] = STATE(1439), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [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(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(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(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(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(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(1925), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [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), @@ -293864,20 +293947,20 @@ static const uint16_t ts_parse_table[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), @@ -293888,90 +293971,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1440] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6191), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4460), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -293981,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(2317), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [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), @@ -294046,8 +294129,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = 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), @@ -294064,84 +294147,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1441] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2867), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -294151,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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(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(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(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [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), @@ -294204,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(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), @@ -294228,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(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), }, [1442] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3062), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -294321,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(1485), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [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), @@ -294374,20 +294457,20 @@ static const uint16_t ts_parse_table[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), @@ -294398,90 +294481,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1443] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4634), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2487), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -294491,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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), @@ -294544,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(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), @@ -294574,84 +294657,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1444] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4369), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -294661,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -294714,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(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), @@ -294744,84 +294827,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1445] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3684), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -294831,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(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(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [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), @@ -294884,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(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), @@ -294914,84 +294997,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1446] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4373), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -295001,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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), @@ -295054,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), @@ -295084,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3481), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -295171,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(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(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [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), @@ -295224,20 +295307,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -295254,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4365), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -295341,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(2391), + [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(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(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(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [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), @@ -295394,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(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), @@ -295424,84 +295507,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1449] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3483), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -295511,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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_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(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(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(1297), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2243), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [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), @@ -295564,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -295588,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(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), }, [1450] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4396), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -295681,47 +295764,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1450), [sym_preproc_define] = STATE(1450), [sym_preproc_undef] = STATE(1450), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -295734,20 +295817,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -295758,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(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), }, [1451] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3485), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -295851,15 +295934,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(43), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), @@ -295869,29 +295952,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(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(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), @@ -295916,8 +295999,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -295934,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4433), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -296021,47 +296104,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1452), [sym_preproc_define] = STATE(1452), [sym_preproc_undef] = STATE(1452), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -296074,20 +296157,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -296098,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(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), }, [1453] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4029), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -296191,47 +296274,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1453), [sym_preproc_define] = STATE(1453), [sym_preproc_undef] = STATE(1453), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(2153), + [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(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(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(2161), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [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), @@ -296244,20 +296327,20 @@ static const uint16_t ts_parse_table[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), @@ -296268,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(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), }, [1454] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4043), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -296361,47 +296444,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1454), [sym_preproc_define] = STATE(1454), [sym_preproc_undef] = STATE(1454), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(2153), + [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(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(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(2161), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [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), @@ -296414,20 +296497,20 @@ static const uint16_t ts_parse_table[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), @@ -296438,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(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), }, [1455] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4002), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -296531,47 +296614,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1455), [sym_preproc_define] = STATE(1455), [sym_preproc_undef] = STATE(1455), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(2153), + [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(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(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(2161), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [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), @@ -296584,20 +296667,20 @@ static const uint16_t ts_parse_table[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), @@ -296608,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(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), }, [1456] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3486), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -296701,47 +296784,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1456), [sym_preproc_define] = STATE(1456), [sym_preproc_undef] = STATE(1456), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [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), @@ -296754,20 +296837,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -296784,84 +296867,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1457] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3416), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -296871,73 +296954,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(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), @@ -296948,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(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), }, [1458] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4374), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -297041,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -297094,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), @@ -297118,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3514), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -297211,15 +297294,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -297229,29 +297312,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), @@ -297276,8 +297359,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -297294,84 +297377,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1460] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3299), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -297381,47 +297464,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1460), [sym_preproc_define] = STATE(1460), [sym_preproc_undef] = STATE(1460), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -297434,20 +297517,20 @@ static const uint16_t ts_parse_table[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), @@ -297458,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(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), + }, [1461] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3515), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -297551,15 +297634,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -297569,29 +297652,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), @@ -297616,8 +297699,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -297634,84 +297717,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1462] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4530), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -297721,47 +297804,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1462), [sym_preproc_define] = STATE(1462), [sym_preproc_undef] = STATE(1462), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -297786,8 +297869,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -297804,84 +297887,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1463] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4540), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -297891,47 +297974,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1463), [sym_preproc_define] = STATE(1463), [sym_preproc_undef] = STATE(1463), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(2391), + [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(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(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(2399), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [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), @@ -297944,20 +298027,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -297968,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(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), }, [1464] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4631), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(3349), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -298061,47 +298144,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1464), [sym_preproc_define] = STATE(1464), [sym_preproc_undef] = STATE(1464), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(3179), - [anon_sym_ref] = ACTIONS(745), + [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_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(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(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), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -298126,8 +298209,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -298144,84 +298227,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1465] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3312), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -298231,47 +298314,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1465), [sym_preproc_define] = STATE(1465), [sym_preproc_undef] = STATE(1465), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -298284,20 +298367,20 @@ static const uint16_t ts_parse_table[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), @@ -298308,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(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), }, [1466] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3939), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -298401,73 +298484,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -298478,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(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), }, [1467] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4059), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -298571,73 +298654,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(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), @@ -298648,90 +298731,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1468] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3534), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -298741,15 +298824,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -298759,29 +298842,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), @@ -298806,8 +298889,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -298824,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3536), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -298911,47 +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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -298964,20 +299047,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -298988,90 +299071,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1470] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3548), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -299081,15 +299164,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1470), [sym_preproc_define] = STATE(1470), [sym_preproc_undef] = STATE(1470), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -299099,29 +299182,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), @@ -299146,8 +299229,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -299164,84 +299247,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1471] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3549), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -299251,47 +299334,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1471), [sym_preproc_define] = STATE(1471), [sym_preproc_undef] = STATE(1471), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -299304,20 +299387,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -299328,90 +299411,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1472] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3973), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -299421,47 +299504,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1472), [sym_preproc_define] = STATE(1472), [sym_preproc_undef] = STATE(1472), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -299474,20 +299557,20 @@ static const uint16_t ts_parse_table[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), @@ -299504,84 +299587,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1473] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3556), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -299591,15 +299674,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -299609,29 +299692,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), @@ -299656,8 +299739,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -299674,84 +299757,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1474] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3494), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -299761,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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), @@ -299814,20 +299897,20 @@ static const uint16_t ts_parse_table[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), @@ -299844,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4634), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2487), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -299931,47 +300014,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1475), [sym_preproc_define] = STATE(1475), [sym_preproc_undef] = STATE(1475), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(3177), - [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(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_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), @@ -299996,8 +300079,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -300014,84 +300097,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1476] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3324), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -300101,15 +300184,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1741), + [anon_sym_ref] = ACTIONS(1743), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), @@ -300119,29 +300202,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(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(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1749), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [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), @@ -300166,7 +300249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -300184,84 +300267,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1477] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3959), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -300271,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -300336,8 +300419,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -300354,84 +300437,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1478] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4543), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -300441,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(2391), + [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(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(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(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [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), @@ -300494,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(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), @@ -300524,84 +300607,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1479] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3265), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -300611,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -300664,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(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), @@ -300694,84 +300777,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1480] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3310), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -300781,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(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), @@ -300834,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(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), @@ -300864,84 +300947,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1481] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3528), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -300951,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -301004,20 +301087,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -301028,90 +301111,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1482] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4450), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [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), @@ -301121,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -301186,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), @@ -301204,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4479), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -301291,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -301356,8 +301439,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301374,84 +301457,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1484] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4321), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -301461,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -301526,8 +301609,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301544,84 +301627,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1485] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4509), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -301631,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -301696,8 +301779,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -301714,84 +301797,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1486] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3301), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -301801,217 +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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), - [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_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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [1487] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4510), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1487), - [sym_preproc_endregion] = STATE(1487), - [sym_preproc_line] = STATE(1487), - [sym_preproc_pragma] = STATE(1487), - [sym_preproc_nullable] = STATE(1487), - [sym_preproc_error] = STATE(1487), - [sym_preproc_warning] = STATE(1487), - [sym_preproc_define] = STATE(1487), - [sym_preproc_undef] = STATE(1487), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -302036,8 +301949,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302053,135 +301966,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), }, - [1488] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3322), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1488), - [sym_preproc_endregion] = STATE(1488), - [sym_preproc_line] = STATE(1488), - [sym_preproc_pragma] = STATE(1488), - [sym_preproc_nullable] = STATE(1488), - [sym_preproc_error] = STATE(1488), - [sym_preproc_warning] = STATE(1488), - [sym_preproc_define] = STATE(1488), - [sym_preproc_undef] = STATE(1488), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [1487] = { + [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), + [sym_preproc_pragma] = STATE(1487), + [sym_preproc_nullable] = STATE(1487), + [sym_preproc_error] = STATE(1487), + [sym_preproc_warning] = STATE(1487), + [sym_preproc_define] = STATE(1487), + [sym_preproc_undef] = STATE(1487), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -302194,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(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), @@ -302223,135 +302136,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), }, - [1489] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4511), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1489), - [sym_preproc_endregion] = STATE(1489), - [sym_preproc_line] = STATE(1489), - [sym_preproc_pragma] = STATE(1489), - [sym_preproc_nullable] = STATE(1489), - [sym_preproc_error] = STATE(1489), - [sym_preproc_warning] = STATE(1489), - [sym_preproc_define] = STATE(1489), - [sym_preproc_undef] = STATE(1489), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [1488] = { + [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), + [sym_preproc_pragma] = STATE(1488), + [sym_preproc_nullable] = STATE(1488), + [sym_preproc_error] = STATE(1488), + [sym_preproc_warning] = STATE(1488), + [sym_preproc_define] = STATE(1488), + [sym_preproc_undef] = STATE(1488), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -302376,8 +302289,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302393,85 +302306,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), }, + [1489] = { + [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), + [sym_preproc_pragma] = STATE(1489), + [sym_preproc_nullable] = STATE(1489), + [sym_preproc_error] = STATE(1489), + [sym_preproc_warning] = STATE(1489), + [sym_preproc_define] = STATE(1489), + [sym_preproc_undef] = STATE(1489), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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(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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, [1490] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4512), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -302481,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2221), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [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), @@ -302534,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), @@ -302558,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4513), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -302651,47 +302734,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -302716,8 +302799,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302734,84 +302817,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1492] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3683), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -302821,47 +302904,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1492), [sym_preproc_define] = STATE(1492), [sym_preproc_undef] = STATE(1492), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(1297), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1299), - [anon_sym_DOT_DOT] = ACTIONS(1303), + [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), @@ -302886,8 +302969,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -302904,84 +302987,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1493] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4514), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -302991,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -303056,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), @@ -303074,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4515), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -303161,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -303226,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), @@ -303244,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3329), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -303331,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -303384,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(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), @@ -303414,84 +303497,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1496] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4517), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -303501,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -303566,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), @@ -303584,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4518), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -303671,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -303736,8 +303819,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -303754,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4519), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_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), @@ -303841,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -303906,8 +303989,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -303924,84 +304007,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1499] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4545), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -304011,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -304076,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), @@ -304094,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4521), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -304181,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -304246,8 +304329,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -304264,84 +304347,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1501] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4546), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -304351,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [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), @@ -304416,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), @@ -304434,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4558), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -304521,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -304586,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), @@ -304604,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4261), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -304691,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2455), + [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(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(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(2463), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [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), @@ -304744,20 +304827,20 @@ static const uint16_t ts_parse_table[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), @@ -304768,90 +304851,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1504] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4547), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -304861,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [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), @@ -304926,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), @@ -304944,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2576), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -305031,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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_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), @@ -305096,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), @@ -305114,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3332), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -305201,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1595), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [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), @@ -305254,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(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), @@ -305278,90 +305361,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1507] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4550), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(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), @@ -305371,217 +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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [sym__identifier_token] = ACTIONS(25), - [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_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(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_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(109), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), - }, - [1508] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3333), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1508), - [sym_preproc_endregion] = STATE(1508), - [sym_preproc_line] = STATE(1508), - [sym_preproc_pragma] = STATE(1508), - [sym_preproc_nullable] = STATE(1508), - [sym_preproc_error] = STATE(1508), - [sym_preproc_warning] = STATE(1508), - [sym_preproc_define] = STATE(1508), - [sym_preproc_undef] = STATE(1508), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1595), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1599), + [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), @@ -305606,8 +305519,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = 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), @@ -305623,85 +305536,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), }, + [1508] = { + [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), + [sym_preproc_pragma] = STATE(1508), + [sym_preproc_nullable] = STATE(1508), + [sym_preproc_error] = STATE(1508), + [sym_preproc_warning] = STATE(1508), + [sym_preproc_define] = STATE(1508), + [sym_preproc_undef] = STATE(1508), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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), + }, [1509] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3180), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -305711,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -305765,19 +305848,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), @@ -305788,90 +305871,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1510] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4549), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -305881,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(2391), + [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(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(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(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [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), @@ -305934,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), @@ -305964,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4551), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -306051,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2399), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [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), @@ -306104,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), @@ -306128,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3224), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -306221,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(3828), - [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(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(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(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), @@ -306274,20 +306357,20 @@ static const uint16_t ts_parse_table[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), @@ -306298,90 +306381,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1513] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3239), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -306391,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -306445,19 +306528,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), @@ -306468,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(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), }, [1514] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3215), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -306561,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2413), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2031), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [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), @@ -306614,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_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), @@ -306644,84 +306727,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1515] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4397), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -306731,217 +306814,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1515), [sym_preproc_define] = STATE(1515), [sym_preproc_undef] = STATE(1515), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [sym__identifier_token] = ACTIONS(25), - [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), - }, - [1516] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3687), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1516), - [sym_preproc_endregion] = STATE(1516), - [sym_preproc_line] = STATE(1516), - [sym_preproc_pragma] = STATE(1516), - [sym_preproc_nullable] = STATE(1516), - [sym_preproc_error] = STATE(1516), - [sym_preproc_warning] = STATE(1516), - [sym_preproc_define] = STATE(1516), - [sym_preproc_undef] = STATE(1516), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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(1965), - [anon_sym_ref] = ACTIONS(1967), + [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(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(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_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(1973), + [anon_sym_default] = ACTIONS(1633), + [anon_sym_throw] = ACTIONS(1925), [anon_sym_when] = ACTIONS(1603), - [anon_sym_await] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1977), + [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), @@ -306983,85 +306896,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), }, + [1516] = { + [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(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), + [sym_preproc_pragma] = STATE(1516), + [sym_preproc_nullable] = STATE(1516), + [sym_preproc_error] = STATE(1516), + [sym_preproc_warning] = STATE(1516), + [sym_preproc_define] = STATE(1516), + [sym_preproc_undef] = STATE(1516), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), + [sym__identifier_token] = ACTIONS(25), + [anon_sym_alias] = ACTIONS(29), + [anon_sym_global] = ACTIONS(29), + [anon_sym_static] = ACTIONS(1259), + [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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, [1517] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3458), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -307071,73 +307154,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(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), @@ -307148,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(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), }, [1518] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3352), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -307241,73 +307324,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(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), @@ -307318,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(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), }, [1519] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3343), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -307411,47 +307494,217 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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), + }, + [1520] = { + [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), + [sym_preproc_pragma] = STATE(1520), + [sym_preproc_nullable] = STATE(1520), + [sym_preproc_error] = STATE(1520), + [sym_preproc_warning] = STATE(1520), + [sym_preproc_define] = STATE(1520), + [sym_preproc_undef] = STATE(1520), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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(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_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_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(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_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), @@ -307493,255 +307746,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), }, - [1520] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4034), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1520), - [sym_preproc_endregion] = STATE(1520), - [sym_preproc_line] = STATE(1520), - [sym_preproc_pragma] = STATE(1520), - [sym_preproc_nullable] = STATE(1520), - [sym_preproc_error] = STATE(1520), - [sym_preproc_warning] = STATE(1520), - [sym_preproc_define] = STATE(1520), - [sym_preproc_undef] = STATE(1520), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), - [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_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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, [1521] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4073), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -307751,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(1991), + [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(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(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(1997), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [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), @@ -307816,8 +307899,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = 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(1839), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -307834,84 +307917,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1522] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4455), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -307921,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -307974,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), @@ -308004,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4048), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -308091,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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), @@ -308144,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(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), @@ -308174,84 +308257,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1524] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4338), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -308261,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -308315,19 +308398,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), @@ -308338,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(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), }, [1525] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4339), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -308431,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -308484,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(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), @@ -308514,84 +308597,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1526] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4380), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -308601,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -308654,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -308678,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(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), }, [1527] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3880), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -308771,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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), @@ -308824,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), @@ -308854,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3872), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -308941,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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), @@ -308994,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -309018,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(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), }, [1529] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3390), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -309111,73 +309194,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(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(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(1479), + [anon_sym_throw] = ACTIONS(2105), + [anon_sym_when] = ACTIONS(29), + [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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [anon_sym_descending] = ACTIONS(29), + [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), @@ -309188,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(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), }, [1530] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4172), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -309281,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -309294,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), @@ -309346,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), @@ -309364,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4061), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -309451,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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), @@ -309504,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -309528,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(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), }, [1532] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3914), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -309621,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -309686,8 +309769,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -309704,84 +309787,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1533] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4342), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -309791,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -309804,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), @@ -309856,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), @@ -309874,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3711), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -309961,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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), + [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(2025), + [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(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(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(2033), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [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), @@ -310026,7 +310109,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), @@ -310044,84 +310127,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1535] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3115), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -310131,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1485), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [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), @@ -310184,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(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), @@ -310214,84 +310297,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1536] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4525), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -310301,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -310366,8 +310449,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -310384,84 +310467,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1537] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3145), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -310471,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2361), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [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), @@ -310524,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -310548,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(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), }, [1538] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4348), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -310641,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -310706,8 +310789,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -310724,84 +310807,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1539] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4553), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -310811,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -310864,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -310888,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(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), }, [1540] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4349), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -310981,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [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(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), @@ -311034,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -311058,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(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), }, [1541] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4350), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -311151,8 +311234,8 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -311164,34 +311247,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), @@ -311216,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), @@ -311234,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4263), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -311321,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -311374,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -311398,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(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), }, [1543] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3158), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -311491,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(2115), + [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(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(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(2361), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [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), @@ -311544,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -311568,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(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), }, [1544] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3143), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -311661,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(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(2361), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [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), @@ -311714,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -311738,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4351), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -311831,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [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(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), @@ -311884,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(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -311908,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(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), }, [1546] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3387), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -312001,73 +312084,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(2081), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [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(1393), + [anon_sym_throw] = ACTIONS(2087), + [anon_sym_when] = ACTIONS(29), + [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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), @@ -312078,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(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), }, [1547] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3330), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4702), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6462), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8027), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -312171,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -312224,20 +312307,20 @@ static const uint16_t ts_parse_table[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), @@ -312254,84 +312337,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1548] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3453), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -312341,73 +312424,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -312418,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(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), }, [1549] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3370), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4882), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7799), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -312511,73 +312594,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(2081), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [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(1393), + [anon_sym_throw] = ACTIONS(2087), + [anon_sym_when] = ACTIONS(29), + [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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), @@ -312588,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(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), }, [1550] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3409), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -312681,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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), + [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(1843), + [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(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(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(1925), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [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), @@ -312746,7 +312829,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), @@ -312764,84 +312847,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1551] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2689), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -312851,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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(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(1771), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [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), @@ -312904,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(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), @@ -312928,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(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), }, [1552] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3095), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -313021,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -313075,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), @@ -313098,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3844), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -313191,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1867), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -313244,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(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), @@ -313268,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(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), }, [1554] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3792), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -313361,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1867), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -313414,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(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), @@ -313438,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(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), }, [1555] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3801), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -313531,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1867), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -313584,20 +313667,20 @@ static const uint16_t ts_parse_table[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), @@ -313614,84 +313697,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1556] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3807), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -313701,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1867), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -313754,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(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), @@ -313778,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(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), }, [1557] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3219), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -313871,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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_ref] = ACTIONS(1559), + [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(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(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(1567), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [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), @@ -313936,7 +314019,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), @@ -313954,84 +314037,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1558] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3417), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -314041,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(3828), - [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(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(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(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(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(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_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314094,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -314118,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(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), }, [1559] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3415), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), + [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(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -314211,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(3828), - [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(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(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(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(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(1925), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [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), @@ -314264,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -314288,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(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), }, [1560] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3163), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -314381,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -314446,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), @@ -314464,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2885), [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3414), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -314551,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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), + [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(1843), + [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(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(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(1925), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2087), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [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), @@ -314616,7 +314699,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), @@ -314634,84 +314717,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1562] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2677), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -314721,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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(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(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [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), @@ -314774,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(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), @@ -314798,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(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), }, [1563] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3435), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -314891,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(3828), - [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(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(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(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(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(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_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -314944,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -314968,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(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), }, [1564] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3812), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -315061,47 +315144,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1867), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -315114,20 +315197,20 @@ static const uint16_t ts_parse_table[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), @@ -315144,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3813), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -315231,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1867), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -315284,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), @@ -315308,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4022), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -315401,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1997), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [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), @@ -315466,8 +315549,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = 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), @@ -315484,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4420), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5216), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7953), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -315571,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(1447), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1451), + [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), @@ -315624,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), @@ -315654,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3436), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -315741,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(3828), - [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(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(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(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_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(29), + [anon_sym_when] = ACTIONS(1603), [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_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), @@ -315818,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(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), }, [1569] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3571), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -315911,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [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(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(1329), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [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), @@ -315964,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -315988,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(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), }, [1570] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3826), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -316081,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1867), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -316134,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(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), @@ -316158,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2680), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -316251,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(1751), + [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(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(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(1771), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [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), @@ -316304,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(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), @@ -316328,90 +316411,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1572] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3829), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -316421,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1867), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -316474,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(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), @@ -316498,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(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), }, [1573] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3831), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -316591,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1867), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -316644,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(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), @@ -316668,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(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), }, [1574] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3838), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -316761,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1867), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -316814,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), @@ -316838,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3768), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -316931,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1867), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -316984,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), @@ -317008,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3862), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -317101,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -317154,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(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), @@ -317178,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(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), }, [1577] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3915), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -317271,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -317324,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -317348,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2754), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -317441,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(3828), - [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(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), @@ -317494,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -317518,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(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), }, [1579] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2692), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -317611,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(1751), + [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(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(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(1771), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [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), @@ -317664,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(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), @@ -317688,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(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), }, [1580] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2660), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -317781,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(1751), + [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(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(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(1771), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [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), @@ -317834,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(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), @@ -317858,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(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), }, [1581] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2661), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -317951,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(1751), + [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(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(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(1771), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [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), @@ -318004,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(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), @@ -318028,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(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), }, [1582] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2662), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -318121,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(1751), + [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(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(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(1771), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [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), @@ -318174,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(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), @@ -318198,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(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), }, [1583] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3166), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -318291,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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), @@ -318344,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -318368,90 +318451,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1584] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3641), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -318461,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(1727), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(1725), - [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(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(1329), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1331), - [anon_sym_DOT_DOT] = ACTIONS(723), + [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), @@ -318514,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -318538,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2663), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -318631,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(1751), + [anon_sym_new] = ACTIONS(1313), [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(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(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1447), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [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), @@ -318684,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(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), @@ -318708,90 +318791,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1586] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2665), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -318801,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -318854,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(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), @@ -318878,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(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), }, [1587] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3437), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -318971,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(3828), - [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(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), @@ -319036,8 +319119,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), @@ -319054,84 +319137,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1588] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2666), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -319141,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(1751), + [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(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(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(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [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), @@ -319194,20 +319277,20 @@ static const uint16_t ts_parse_table[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), @@ -319218,90 +319301,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1589] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2693), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -319311,47 +319394,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1589), [sym_preproc_define] = STATE(1589), [sym_preproc_undef] = STATE(1589), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -319364,20 +319447,20 @@ static const uint16_t ts_parse_table[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), @@ -319388,90 +319471,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1590] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2683), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -319481,47 +319564,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1590), [sym_preproc_define] = STATE(1590), [sym_preproc_undef] = STATE(1590), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -319534,20 +319617,20 @@ static const uint16_t ts_parse_table[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), @@ -319558,90 +319641,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1591] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4601), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4685), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -319651,73 +319734,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(3173), - [anon_sym_ref] = ACTIONS(745), - [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(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(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_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_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_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), + [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), @@ -319728,90 +319811,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1592] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3868), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -319821,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -319886,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), @@ -319904,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2702), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -319991,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -320044,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(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), @@ -320068,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(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), }, [1594] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3438), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -320161,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(3828), - [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(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), @@ -320226,7 +320309,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), @@ -320244,84 +320327,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1595] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2853), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -320331,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(1751), + [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(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(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(2303), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [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), @@ -320384,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(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), @@ -320408,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(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), }, [1596] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6205), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2330), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3948), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5130), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8131), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -320501,73 +320584,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -320578,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(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), }, [1597] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3477), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -320671,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(3828), - [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(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), [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(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(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_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), @@ -320724,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), @@ -320748,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3926), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -320841,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -320894,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), @@ -320918,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3080), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -321011,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2087), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2417), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [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), @@ -321064,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_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), @@ -321094,84 +321177,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1600] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3079), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -321181,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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(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(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(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), @@ -321258,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(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), }, [1601] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2840), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -321351,47 +321434,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1601), [sym_preproc_define] = STATE(1601), [sym_preproc_undef] = STATE(1601), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [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), @@ -321404,20 +321487,20 @@ static const uint16_t ts_parse_table[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), @@ -321428,90 +321511,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1602] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3440), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -321521,47 +321604,47 @@ 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(3828), - [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(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(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(1843), + [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(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(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(1925), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1831), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [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), @@ -321574,20 +321657,20 @@ static const uint16_t ts_parse_table[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), @@ -321598,90 +321681,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1603] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2839), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -321691,47 +321774,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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(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(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [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), @@ -321744,20 +321827,20 @@ static const uint16_t ts_parse_table[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), @@ -321768,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(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), }, [1604] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3441), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -321861,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(3828), - [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(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(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(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(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(1925), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [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), @@ -321914,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), @@ -321938,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2838), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -322031,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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(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(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [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), @@ -322084,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(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), @@ -322108,90 +322191,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1606] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2837), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -322201,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), - [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(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(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(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), @@ -322278,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(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), }, [1607] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2836), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -322371,47 +322454,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1607), [sym_preproc_define] = STATE(1607), [sym_preproc_undef] = STATE(1607), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [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), @@ -322424,20 +322507,20 @@ static const uint16_t ts_parse_table[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), @@ -322448,90 +322531,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1608] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2835), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -322541,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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(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(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [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), @@ -322594,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(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), @@ -322618,90 +322701,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1609] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2834), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -322711,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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(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(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [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), @@ -322764,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(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), @@ -322788,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(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), }, [1610] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2833), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -322881,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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(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(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [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), @@ -322934,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(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), @@ -322958,90 +323041,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1611] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2832), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -323051,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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(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(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [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), @@ -323104,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(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), @@ -323128,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(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), }, [1612] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2831), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -323221,47 +323304,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1612), [sym_preproc_define] = STATE(1612), [sym_preproc_undef] = STATE(1612), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -323274,20 +323357,20 @@ static const uint16_t ts_parse_table[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), @@ -323298,90 +323381,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1613] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3715), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -323391,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(3828), - [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(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(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(2025), + [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(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(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(2033), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [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), @@ -323444,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), @@ -323468,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2817), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -323561,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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), @@ -323614,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(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), @@ -323638,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(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), }, [1615] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3675), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -323731,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(3828), - [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(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(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(2025), + [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(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(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(2033), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [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), @@ -323784,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -323808,90 +323891,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1616] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2690), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -323901,47 +323984,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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(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(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [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), @@ -323954,20 +324037,20 @@ static const uint16_t ts_parse_table[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), @@ -323978,90 +324061,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1617] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3136), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -324071,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -324124,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -324148,90 +324231,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1618] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3156), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -324241,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [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), @@ -324294,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), @@ -324318,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3159), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -324411,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -324464,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -324488,90 +324571,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1620] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3137), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -324581,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [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), @@ -324634,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -324658,90 +324741,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1621] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3113), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -324751,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2087), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [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), @@ -324804,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_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), @@ -324828,90 +324911,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1622] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3150), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -324921,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [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), @@ -324974,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -324998,90 +325081,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1623] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3413), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -325091,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(3828), - [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(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(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(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(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(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_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -325144,20 +325227,20 @@ static const uint16_t ts_parse_table[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), @@ -325168,90 +325251,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1624] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3164), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -325261,47 +325344,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1624), [sym_preproc_define] = STATE(1624), [sym_preproc_undef] = STATE(1624), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -325314,20 +325397,20 @@ static const uint16_t ts_parse_table[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), @@ -325338,90 +325421,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1625] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6208), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4463), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -325431,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2317), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [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), @@ -325484,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(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), @@ -325514,84 +325597,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1626] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3131), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -325601,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -325654,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_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), @@ -325678,90 +325761,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1627] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3134), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -325771,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -325824,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -325848,90 +325931,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1628] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3130), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -325941,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2087), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [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), @@ -325994,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_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), @@ -326018,90 +326101,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1629] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3443), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -326111,47 +326194,47 @@ 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(3828), - [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(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(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(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(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(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), @@ -326164,20 +326247,20 @@ static const uint16_t ts_parse_table[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), @@ -326188,90 +326271,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1630] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3781), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -326281,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1867), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -326334,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(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), @@ -326358,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(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), }, [1631] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3773), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -326451,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1867), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -326504,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(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), @@ -326528,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(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), }, [1632] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3578), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -326621,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(3828), - [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(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), @@ -326674,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), @@ -326698,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3788), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), + [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(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -326791,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -326844,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(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), @@ -326868,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(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), }, [1634] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3083), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -326961,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2087), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [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), @@ -327014,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_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), @@ -327038,90 +327121,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1635] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3094), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -327131,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [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), @@ -327184,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -327208,90 +327291,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1636] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3082), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -327301,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(1485), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1487), - [anon_sym_DOT_DOT] = ACTIONS(1489), + [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), @@ -327354,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -327378,90 +327461,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1637] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3089), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -327471,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2087), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1579), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [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), @@ -327524,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(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), @@ -327548,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(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), }, [1638] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3690), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_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), @@ -327641,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(3828), - [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(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), @@ -327694,20 +327777,20 @@ static const uint16_t ts_parse_table[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), @@ -327718,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(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), }, [1639] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4554), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -327811,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1981), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [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), @@ -327864,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), @@ -327894,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3790), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -327981,47 +328064,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1640), [sym_preproc_define] = STATE(1640), [sym_preproc_undef] = STATE(1640), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1867), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1287), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1289), + [anon_sym_DOT_DOT] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(1737), + [anon_sym_CARET] = ACTIONS(1737), + [anon_sym_PLUS] = ACTIONS(1739), + [anon_sym_DASH] = ACTIONS(1739), + [anon_sym_BANG] = ACTIONS(1737), + [anon_sym_PLUS_PLUS] = ACTIONS(1737), + [anon_sym_DASH_DASH] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(123), + [anon_sym_false] = ACTIONS(123), [anon_sym_from] = ACTIONS(125), [anon_sym_into] = ACTIONS(29), [anon_sym_join] = ACTIONS(29), @@ -328034,20 +328117,20 @@ static const uint16_t ts_parse_table[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), @@ -328064,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3072), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -328151,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -328205,19 +328288,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), @@ -328228,90 +328311,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1642] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3273), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4723), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7672), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -328321,47 +328404,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1642), [sym_preproc_define] = STATE(1642), [sym_preproc_undef] = STATE(1642), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1573), - [anon_sym_ref] = ACTIONS(1575), - [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(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(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(1579), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1581), - [anon_sym_DOT_DOT] = ACTIONS(1583), + [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), @@ -328374,20 +328457,20 @@ static const uint16_t ts_parse_table[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), @@ -328398,90 +328481,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1643] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3102), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -328491,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(2087), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [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), @@ -328556,8 +328639,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), @@ -328574,84 +328657,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1644] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4628), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(3127), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -328661,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(3171), - [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(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_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), @@ -328714,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), @@ -328738,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3717), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -328831,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(3828), - [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(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(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(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(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(2033), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(1783), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [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), @@ -328884,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -328908,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(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), }, [1646] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3106), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -329001,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(2075), - [anon_sym_ref] = ACTIONS(2077), - [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(2079), + [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(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(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(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [anon_sym_await] = ACTIONS(2231), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_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), @@ -329054,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(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(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), @@ -329078,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(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), }, [1647] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3183), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -329171,47 +329254,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1647), [sym_preproc_define] = STATE(1647), [sym_preproc_undef] = STATE(1647), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [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(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(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(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), @@ -329224,20 +329307,20 @@ static const uint16_t ts_parse_table[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), @@ -329248,90 +329331,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1648] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3138), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -329341,73 +329424,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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(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(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(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(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_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2361), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [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(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(1629), + [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), @@ -329418,90 +329501,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1649] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3720), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -329511,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(3828), - [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(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(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(2025), + [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(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(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(2033), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [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), @@ -329564,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), @@ -329588,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3148), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -329681,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(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(2361), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [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), @@ -329746,7 +329829,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), @@ -329764,84 +329847,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1651] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3181), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -329851,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(3828), - [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(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(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(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(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(1567), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1571), + [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), @@ -329904,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), @@ -329928,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3111), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -330021,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -330074,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_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), @@ -330104,84 +330187,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1653] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3405), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -330191,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(3828), - [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(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(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(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(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(1851), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2199), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -330244,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -330268,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(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), }, [1654] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4557), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -330361,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(2391), + [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(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(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(2399), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [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), @@ -330414,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), @@ -330438,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3709), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -330531,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(1729), - [anon_sym_ref] = ACTIONS(1731), - [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(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [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(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(1735), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1481), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [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), @@ -330584,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), @@ -330608,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3721), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -330701,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(3828), - [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(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(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(2025), + [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(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(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(2033), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [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), @@ -330754,20 +330837,20 @@ static const uint16_t ts_parse_table[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), @@ -330778,90 +330861,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1657] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3406), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -330871,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(3828), - [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(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(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(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(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(1851), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -330924,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -330948,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(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), }, [1658] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3734), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -331041,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(3828), - [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(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), @@ -331094,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -331118,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(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), }, [1659] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3743), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_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), @@ -331211,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1899), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2399), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [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), @@ -331264,20 +331347,20 @@ static const uint16_t ts_parse_table[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), @@ -331288,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3581), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4938), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6464), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8019), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -331381,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1807), - [anon_sym_ref] = ACTIONS(1809), - [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(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(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(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(1819), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_DOT_DOT] = ACTIONS(1823), + [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), @@ -331434,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(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), @@ -331458,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(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), }, [1661] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4628), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(3127), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -331551,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(745), + [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_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(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_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), @@ -331616,8 +331699,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -331634,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3705), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -331721,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -331774,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -331798,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3704), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -331891,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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), @@ -331945,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), @@ -331968,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4490), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -332061,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -332126,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), @@ -332144,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4464), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [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), @@ -332231,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -332296,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), @@ -332314,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4103), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -332401,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -332419,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(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), @@ -332466,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), @@ -332484,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4571), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -332571,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -332624,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), @@ -332648,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3702), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -332741,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -332794,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -332818,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3701), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -332911,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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), @@ -332976,8 +333059,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -332994,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4578), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -333081,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -333146,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(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -333164,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3700), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -333251,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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), @@ -333316,8 +333399,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -333334,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4541), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -333421,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -333474,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -333498,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4160), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -333591,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(2245), - [anon_sym_ref] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_delegate] = ACTIONS(1463), + [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(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(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(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(1483), - [anon_sym_throw] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -333644,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -333668,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(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), }, [1674] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3699), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -333761,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -333814,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -333838,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4556), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -333931,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -333984,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -334008,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3698), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -334101,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(1735), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1867), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [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), @@ -334154,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(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), @@ -334184,84 +334267,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1677] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4552), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -334271,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -334336,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), @@ -334354,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3761), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -334441,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -334494,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -334518,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4599), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -334611,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -334664,20 +334747,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -334694,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3981), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -334781,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(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), @@ -334834,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), @@ -334864,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4634), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2487), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -334951,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(3177), - [anon_sym_ref] = ACTIONS(745), + [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(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(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(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), @@ -335016,8 +335099,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335034,84 +335117,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1682] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3697), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -335121,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -335174,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -335198,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3694), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -335291,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(1729), - [anon_sym_ref] = ACTIONS(1731), - [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(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(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [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(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(1735), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [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), @@ -335344,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -335368,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3631), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -335461,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(3828), - [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(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(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(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(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(2069), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [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), @@ -335514,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -335538,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(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), }, [1685] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4592), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -335631,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -335696,8 +335779,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -335714,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4591), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -335801,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -335854,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -335878,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4590), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -335971,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -336036,8 +336119,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -336054,84 +336137,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1688] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4065), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -336141,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -336194,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), @@ -336218,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3152), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -336311,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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), @@ -336364,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -336388,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(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), }, [1690] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4589), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -336481,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -336534,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), @@ -336558,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3629), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -336651,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(3828), - [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(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(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(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(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(2069), + [anon_sym_default] = ACTIONS(1781), + [anon_sym_throw] = ACTIONS(2229), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [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), @@ -336704,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -336728,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(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), }, [1692] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3723), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -336821,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(3828), - [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(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(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(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(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(2033), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [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), @@ -336874,20 +336957,20 @@ static const uint16_t ts_parse_table[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), @@ -336898,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(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), }, [1693] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3725), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -336991,47 +337074,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1693), [sym_preproc_define] = STATE(1693), [sym_preproc_undef] = STATE(1693), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [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(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(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(2025), + [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(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(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(2033), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [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), @@ -337044,20 +337127,20 @@ static const uint16_t ts_parse_table[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), @@ -337068,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(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), }, [1694] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6182), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3365), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4752), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6454), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7977), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -337161,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1719), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1723), + [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), @@ -337214,20 +337297,20 @@ static const uint16_t ts_parse_table[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), @@ -337238,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2576), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -337331,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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), @@ -337396,8 +337479,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -337414,84 +337497,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1696] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3691), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -337501,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(3828), - [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(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(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(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(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(2033), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [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), @@ -337554,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -337578,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(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), }, [1697] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4465), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [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), @@ -337671,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -337736,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), @@ -337754,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3726), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -337841,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(3828), - [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(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(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(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(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_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -337918,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(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), }, [1699] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3956), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -338011,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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), @@ -338076,8 +338159,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338094,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3512), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -338181,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(3828), - [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(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(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(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(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_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_throw] = ACTIONS(2033), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -338258,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(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), }, [1701] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3649), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -338351,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(3828), - [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(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(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(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(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(2033), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [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), @@ -338404,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -338428,90 +338511,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1702] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3727), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -338521,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(3828), - [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(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(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(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(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(2033), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [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), @@ -338574,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -338598,90 +338681,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1703] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3503), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -338691,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(3828), - [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(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(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(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(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(2033), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [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), @@ -338744,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -338768,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(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), }, [1704] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3958), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -338861,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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), @@ -338926,8 +339009,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -338944,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3527), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4979), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6469), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7907), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -339031,15 +339114,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(43), + [anon_sym_ref] = ACTIONS(914), [anon_sym_LBRACE] = ACTIONS(1703), [anon_sym_delegate] = ACTIONS(681), [anon_sym_async] = ACTIONS(1259), @@ -339049,29 +339132,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(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(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), @@ -339096,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), @@ -339114,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2576), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -339201,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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), @@ -339266,8 +339349,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -339284,84 +339367,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1707] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3827), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -339371,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1883), + [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_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), @@ -339424,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(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), @@ -339454,84 +339537,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1708] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4427), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -339541,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(2317), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [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), @@ -339606,8 +339689,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = 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), @@ -339624,84 +339707,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1709] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3480), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -339711,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(3828), - [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(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(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(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(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(2105), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1879), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [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), @@ -339764,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -339788,90 +339871,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1710] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2635), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -339881,47 +339964,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1710), [sym_preproc_define] = STATE(1710), [sym_preproc_undef] = STATE(1710), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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(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(1959), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [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), @@ -339934,20 +340017,20 @@ static const uint16_t ts_parse_table[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), @@ -339958,90 +340041,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1711] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3968), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -340051,47 +340134,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1711), [sym_preproc_define] = STATE(1711), [sym_preproc_undef] = STATE(1711), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -340104,20 +340187,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -340128,90 +340211,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1712] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3501), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -340221,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(3828), - [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(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(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(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(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(2105), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2109), + [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), @@ -340274,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -340298,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(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), }, [1713] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3809), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -340391,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(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), @@ -340444,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(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), @@ -340474,84 +340557,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1714] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3155), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -340561,47 +340644,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1714), [sym_preproc_define] = STATE(1714), [sym_preproc_undef] = STATE(1714), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(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(2361), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [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), @@ -340626,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), @@ -340644,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4631), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(3349), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -340731,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(3179), - [anon_sym_ref] = ACTIONS(745), + [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(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(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), @@ -340796,8 +340879,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -340814,84 +340897,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1716] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3686), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -340901,47 +340984,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1716), [sym_preproc_define] = STATE(1716), [sym_preproc_undef] = STATE(1716), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(1729), - [anon_sym_ref] = ACTIONS(1731), - [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(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(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [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(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(1735), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [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), @@ -340954,20 +341037,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -340978,90 +341061,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1717] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3971), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -341071,47 +341154,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -341124,20 +341207,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -341148,90 +341231,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1718] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3605), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -341241,47 +341324,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1718), [sym_preproc_define] = STATE(1718), [sym_preproc_undef] = STATE(1718), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(1729), - [anon_sym_ref] = ACTIONS(1731), - [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(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(75), - [anon_sym_TILDE] = ACTIONS(75), - [anon_sym_PLUS_PLUS] = ACTIONS(75), - [anon_sym_DASH_DASH] = ACTIONS(75), - [anon_sym_true] = ACTIONS(77), - [anon_sym_false] = ACTIONS(77), - [anon_sym_PLUS] = ACTIONS(79), - [anon_sym_DASH] = ACTIONS(79), - [anon_sym_STAR] = ACTIONS(81), - [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(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(1735), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1739), + [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), @@ -341294,20 +341377,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -341318,90 +341401,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1719] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3737), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -341411,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(3828), - [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(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), @@ -341464,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -341488,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(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), }, [1720] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3816), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -341581,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -341634,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -341658,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2694), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -341751,47 +341834,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1721), [sym_preproc_define] = STATE(1721), [sym_preproc_undef] = STATE(1721), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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(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(1771), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [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), @@ -341804,20 +341887,20 @@ static const uint16_t ts_parse_table[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), @@ -341828,90 +341911,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1722] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4324), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -341921,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2399), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2401), - [anon_sym_DOT_DOT] = ACTIONS(2403), + [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), @@ -341974,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -341998,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3883), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -342091,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1873), - [anon_sym_ref] = ACTIONS(1875), - [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(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(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(1883), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [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), @@ -342144,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(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), @@ -342168,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3748), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -342261,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -342314,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(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), @@ -342338,90 +342421,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1725] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2775), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -342431,15 +342514,15 @@ 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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(1369), - [anon_sym_ref] = ACTIONS(1371), + [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), @@ -342449,29 +342532,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_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(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(1399), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1849), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [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), @@ -342496,7 +342579,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), @@ -342514,84 +342597,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1726] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3098), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -342601,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -342655,19 +342738,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), @@ -342678,90 +342761,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1727] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4466), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [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), @@ -342771,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -342836,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), @@ -342854,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3730), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -342941,47 +343024,47 @@ 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(3828), - [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(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), @@ -342994,20 +343077,20 @@ static const uint16_t ts_parse_table[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), @@ -343018,90 +343101,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1729] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2617), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -343111,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -343164,20 +343247,20 @@ static const uint16_t ts_parse_table[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), @@ -343188,90 +343271,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1730] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3833), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -343281,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1873), - [anon_sym_ref] = ACTIONS(1875), - [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(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(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(1883), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(1717), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [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), @@ -343334,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(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), @@ -343358,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2629), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -343451,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), - [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), @@ -343528,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(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), }, [1732] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4005), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -343621,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -343674,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), @@ -343698,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4357), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5236), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6457), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7855), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -343791,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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), @@ -343868,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3601), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -343961,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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), @@ -344014,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), @@ -344044,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3763), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -344131,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), - [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(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(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(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), @@ -344208,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4634), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2487), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -344301,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(3177), - [anon_sym_ref] = ACTIONS(745), - [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(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(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(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), @@ -344354,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(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -344378,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(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), }, [1737] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2896), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -344471,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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(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(1769), - [anon_sym_throw] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2305), - [anon_sym_DOT_DOT] = ACTIONS(2307), + [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), @@ -344524,20 +344607,20 @@ static const uint16_t ts_parse_table[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), @@ -344548,90 +344631,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1738] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4166), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -344641,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2463), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [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), @@ -344694,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -344718,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4127), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -344811,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(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), @@ -344864,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -344888,90 +344971,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1740] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4126), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -344981,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(2463), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [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), @@ -345034,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(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), @@ -345064,84 +345147,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1741] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4333), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5243), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6478), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7815), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -345151,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(2495), + [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(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(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(2503), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2505), - [anon_sym_DOT_DOT] = ACTIONS(2507), + [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), @@ -345204,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(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), @@ -345234,84 +345317,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1742] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(2504), [sym__name] = STATE(6189), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4628), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(3127), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -345321,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(3171), - [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(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(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), @@ -345374,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -345398,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(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), }, [1743] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4125), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -345491,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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), @@ -345568,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(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), }, [1744] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4124), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -345661,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(2463), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [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), @@ -345714,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(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), @@ -345744,84 +345827,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1745] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2762), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3980), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(8078), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -345831,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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), @@ -345884,20 +345967,20 @@ static const uint16_t ts_parse_table[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), @@ -345908,90 +345991,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1746] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4628), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(3127), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -346001,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(3171), - [anon_sym_ref] = ACTIONS(745), - [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(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_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(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), @@ -346078,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4123), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -346171,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2455), + [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(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(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(2463), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [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), @@ -346224,20 +346307,20 @@ static const uint16_t ts_parse_table[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), @@ -346248,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4044), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -346341,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), - [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(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(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(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), @@ -346418,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(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), }, [1749] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4122), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -346511,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2463), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [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), @@ -346564,20 +346647,20 @@ static const uint16_t ts_parse_table[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), @@ -346588,90 +346671,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1750] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2576), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -346681,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(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(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_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(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), @@ -346758,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(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), }, [1751] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3722), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -346851,76 +346934,76 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), - [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(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(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), + [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), @@ -346928,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6181), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4196), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5136), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6450), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8050), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -347021,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(2423), - [anon_sym_ref] = ACTIONS(2425), - [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(2427), + [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(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(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(2435), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2437), - [anon_sym_DOT_DOT] = ACTIONS(2439), + [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), @@ -347074,20 +347157,20 @@ static const uint16_t ts_parse_table[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), @@ -347098,90 +347181,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1753] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4606), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2918), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -347191,73 +347274,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(3181), - [anon_sym_ref] = ACTIONS(745), - [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(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_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(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), @@ -347268,90 +347351,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1754] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4121), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -347361,47 +347444,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2463), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [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), @@ -347414,20 +347497,20 @@ static const uint16_t ts_parse_table[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), @@ -347438,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(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), }, [1755] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2717), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -347531,47 +347614,47 @@ 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(3828), - [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(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), @@ -347596,7 +347679,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), @@ -347614,84 +347697,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1756] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4628), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(3127), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -347701,47 +347784,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1756), [sym_preproc_define] = STATE(1756), [sym_preproc_undef] = STATE(1756), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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_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(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -347754,20 +347837,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -347778,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(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), }, [1757] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4322), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5234), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6460), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7790), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -347871,47 +347954,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1757), [sym_preproc_define] = STATE(1757), [sym_preproc_undef] = STATE(1757), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(2211), - [anon_sym_ref] = ACTIONS(2213), - [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(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(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(2221), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2225), + [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), @@ -347924,20 +348007,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -347948,90 +348031,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1758] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4606), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2918), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -348041,47 +348124,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1758), [sym_preproc_define] = STATE(1758), [sym_preproc_undef] = STATE(1758), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(3181), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [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(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_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(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -348094,20 +348177,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -348118,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(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), }, [1759] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4119), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -348211,47 +348294,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1759), [sym_preproc_define] = STATE(1759), [sym_preproc_undef] = STATE(1759), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2463), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [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), @@ -348264,20 +348347,20 @@ static const uint16_t ts_parse_table[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), @@ -348288,90 +348371,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1760] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4118), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -348381,47 +348464,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1760), [sym_preproc_define] = STATE(1760), [sym_preproc_undef] = STATE(1760), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2463), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [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), @@ -348434,20 +348517,20 @@ static const uint16_t ts_parse_table[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), @@ -348458,90 +348541,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1761] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3229), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4643), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6455), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7966), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -348551,47 +348634,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1761), [sym_preproc_define] = STATE(1761), [sym_preproc_undef] = STATE(1761), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [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(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), @@ -348616,7 +348699,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), @@ -348634,84 +348717,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1762] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6192), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4606), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2918), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -348721,73 +348804,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1762), [sym_preproc_define] = STATE(1762), [sym_preproc_undef] = STATE(1762), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(3181), - [anon_sym_ref] = ACTIONS(745), - [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(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_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(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), @@ -348798,90 +348881,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1763] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4117), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -348891,73 +348974,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1763), [sym_preproc_define] = STATE(1763), [sym_preproc_undef] = STATE(1763), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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), @@ -348968,90 +349051,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1764] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4116), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -349061,73 +349144,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1764), [sym_preproc_define] = STATE(1764), [sym_preproc_undef] = STATE(1764), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), - [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), @@ -349138,90 +349221,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1765] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6177), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3408), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4765), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6474), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7979), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -349231,47 +349314,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1765), [sym_preproc_define] = STATE(1765), [sym_preproc_undef] = STATE(1765), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(1915), - [anon_sym_ref] = ACTIONS(1917), + [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(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(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(1925), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1929), + [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), @@ -349296,7 +349379,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), @@ -349314,84 +349397,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1766] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4634), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2487), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -349401,73 +349484,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1766), [sym_preproc_define] = STATE(1766), [sym_preproc_undef] = STATE(1766), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(3177), - [anon_sym_ref] = ACTIONS(745), - [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(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_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(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), @@ -349478,90 +349561,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1767] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2671), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -349571,217 +349654,217 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [1768] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4112), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1768), - [sym_preproc_endregion] = STATE(1768), - [sym_preproc_line] = STATE(1768), - [sym_preproc_pragma] = STATE(1768), + [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), + }, + [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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2463), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [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), @@ -349794,20 +349877,20 @@ static const uint16_t ts_parse_table[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), @@ -349818,90 +349901,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1769] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4006), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5057), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6466), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7915), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -349911,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(2043), + [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(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(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(2051), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2053), - [anon_sym_DOT_DOT] = ACTIONS(2055), + [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), @@ -349976,7 +350059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -349994,84 +350077,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1770] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3611), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -350081,47 +350164,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1770), [sym_preproc_define] = STATE(1770), [sym_preproc_undef] = STATE(1770), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [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(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), @@ -350146,7 +350229,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), @@ -350164,84 +350247,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1771] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4634), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2487), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -350251,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(3177), - [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(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_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), @@ -350316,8 +350399,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -350334,84 +350417,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1772] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3504), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -350421,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(3828), - [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(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), @@ -350486,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), @@ -350504,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3193), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -350591,73 +350674,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(2405), - [anon_sym_ref] = ACTIONS(2407), - [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(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(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_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(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_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), @@ -350668,90 +350751,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1774] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4108), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -350761,47 +350844,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1774), [sym_preproc_define] = STATE(1774), [sym_preproc_undef] = STATE(1774), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2463), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1541), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [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), @@ -350814,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -350838,90 +350921,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1775] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6173), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4254), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5144), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6486), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7955), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -350931,47 +351014,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1775), [sym_preproc_define] = STATE(1775), [sym_preproc_undef] = STATE(1775), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2485), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2487), - [anon_sym_DOT_DOT] = ACTIONS(2489), + [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), @@ -350996,8 +351079,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), @@ -351014,84 +351097,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1776] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4606), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2918), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -351101,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(3181), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [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(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(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(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -351154,20 +351237,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -351178,90 +351261,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1777] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4270), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -351271,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2463), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [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), @@ -351324,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -351348,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4428), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -351441,47 +351524,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1778), [sym_preproc_define] = STATE(1778), [sym_preproc_undef] = STATE(1778), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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_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(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(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(2317), + [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_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), @@ -351494,20 +351577,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = 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(1491), + [anon_sym_sizeof] = ACTIONS(1493), + [anon_sym_typeof] = ACTIONS(1495), + [anon_sym___makeref] = ACTIONS(1497), + [anon_sym___reftype] = ACTIONS(1499), + [anon_sym___refvalue] = ACTIONS(1501), + [sym_null_literal] = ACTIONS(1503), + [anon_sym_SQUOTE] = ACTIONS(1505), + [sym_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), @@ -351518,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(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), }, [1779] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3126), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -351611,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -351664,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), @@ -351688,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4469), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -351781,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2317), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2319), - [anon_sym_DOT_DOT] = ACTIONS(2321), + [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), @@ -351834,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(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), @@ -351864,84 +351947,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1781] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4105), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -351951,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(2455), + [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(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(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(2463), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [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), @@ -352016,8 +352099,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), @@ -352034,84 +352117,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1782] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3975), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5085), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6451), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7909), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -352121,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(2161), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2165), + [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), @@ -352174,20 +352257,20 @@ static const uint16_t ts_parse_table[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), @@ -352198,90 +352281,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1783] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4475), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5182), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6475), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8080), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -352291,47 +352374,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1783), [sym_preproc_define] = STATE(1783), [sym_preproc_undef] = STATE(1783), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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), @@ -352356,8 +352439,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = 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), @@ -352374,84 +352457,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1784] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4634), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2487), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -352461,47 +352544,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(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), @@ -352514,20 +352597,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -352544,84 +352627,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1785] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6197), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4269), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5148), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6448), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7945), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -352631,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2463), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2465), - [anon_sym_DOT_DOT] = ACTIONS(2467), + [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), @@ -352684,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -352708,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6187), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2427), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4628), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(3127), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -352801,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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_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), @@ -352866,8 +352949,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -352884,84 +352967,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1787] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3637), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -352971,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -353024,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(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), @@ -353054,84 +353137,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1788] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3628), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4932), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6484), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7906), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -353141,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(3828), - [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(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(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(2061), + [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(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(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(2069), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2073), + [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), @@ -353194,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -353218,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(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), }, [1789] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6184), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2432), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4628), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(3127), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -353311,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(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(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -353364,20 +353447,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -353388,90 +353471,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, [1790] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6176), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2361), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3447), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4860), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6472), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7929), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -353481,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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_ref] = ACTIONS(1841), + [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(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(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(1851), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1855), + [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), @@ -353546,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), @@ -353564,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3313), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -353651,73 +353734,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -353728,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(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), }, [1792] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6175), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2428), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4606), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2918), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4180), + [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(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -353821,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(3181), - [anon_sym_ref] = ACTIONS(745), - [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(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(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(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -353874,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -353898,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(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), }, [1793] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3187), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -353991,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2413), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [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), @@ -354044,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), @@ -354068,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3797), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5071), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6477), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7642), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -354161,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(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(1867), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_DOT_DOT] = ACTIONS(1871), + [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), @@ -354214,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(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), @@ -354238,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(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), }, [1795] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3309), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -354331,73 +354414,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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), @@ -354408,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(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), }, [1796] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4628), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(3127), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(4180), + [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(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -354501,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(3171), - [anon_sym_ref] = ACTIONS(745), - [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(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(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(1983), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -354554,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -354578,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(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), }, [1797] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4280), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(5150), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6463), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(7922), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -354671,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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(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(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(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(2255), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_DOT_DOT] = ACTIONS(2259), + [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), @@ -354724,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -354748,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(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), }, [1798] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4606), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2918), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -354841,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(3181), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [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(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(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(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -354894,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(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -354918,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6171), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2429), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3502), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4952), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6467), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7896), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -355011,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(3828), - [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(1367), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_ref] = ACTIONS(2023), + [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(2025), + [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(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(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(2033), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2037), + [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), @@ -355076,7 +355159,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), @@ -355094,84 +355177,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1800] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4606), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2918), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -355181,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(3181), - [anon_sym_ref] = ACTIONS(745), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_delegate] = ACTIONS(681), + [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(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(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(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -355234,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), @@ -355258,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6172), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2425), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3561), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4977), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6458), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7892), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -355351,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(3828), - [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(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), @@ -355416,7 +355499,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), @@ -355434,84 +355517,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1433), }, [1802] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4606), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2918), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -355521,47 +355604,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1802), [sym_preproc_define] = STATE(1802), [sym_preproc_undef] = STATE(1802), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(3181), - [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), @@ -355586,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), @@ -355604,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3565), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(5012), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6453), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7887), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -355691,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(3828), - [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(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(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(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(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(2015), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2017), - [anon_sym_DOT_DOT] = ACTIONS(2019), + [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), @@ -355744,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -355768,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(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), }, [1804] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3270), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -355861,73 +355944,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -355938,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(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), }, [1805] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3817), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5089), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -356031,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1565), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -356084,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), @@ -356108,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3264), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -356201,73 +356284,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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), @@ -356278,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(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), }, [1807] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5926), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4638), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(2576), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7678), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -356371,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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_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(1983), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(2013), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1985), - [anon_sym_DOT_DOT] = ACTIONS(123), + [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), @@ -356424,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), @@ -356448,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3297), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -356541,73 +356624,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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), @@ -356618,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(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), }, [1809] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3271), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -356711,73 +356794,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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), @@ -356788,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(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), }, [1810] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4485), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [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), @@ -356881,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -356946,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), @@ -356964,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2886), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -357051,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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), @@ -357104,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(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), @@ -357128,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(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), }, [1812] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), + [sym_parameter_list] = STATE(7966), + [sym_bracketed_argument_list] = STATE(3973), [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3269), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -357221,15 +357304,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), + [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), @@ -357239,29 +357322,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), @@ -357304,84 +357387,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1677), }, [1813] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3236), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(3417), + [sym_conditional_access_expression] = STATE(3417), + [sym_as_expression] = STATE(3417), + [sym_is_expression] = STATE(3417), + [sym_is_pattern_expression] = STATE(3417), + [sym_cast_expression] = STATE(3417), + [sym_checked_expression] = STATE(3417), + [sym_invocation_expression] = STATE(3369), + [sym_switch_expression] = STATE(3417), + [sym_await_expression] = STATE(3369), + [sym_throw_expression] = STATE(3417), + [sym_element_access_expression] = STATE(2568), + [sym_interpolated_string_expression] = STATE(3417), + [sym_member_access_expression] = STATE(2568), + [sym_object_creation_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), @@ -357391,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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_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(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(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(2413), + [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_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), @@ -357456,8 +357539,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), @@ -357474,84 +357557,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1814] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3237), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -357561,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [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), @@ -357614,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_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), @@ -357638,90 +357721,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1815] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3307), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -357731,73 +357814,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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), @@ -357808,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(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), }, [1816] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3240), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -357901,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -357954,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_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), @@ -357984,84 +358067,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1817] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3241), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -358071,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [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), @@ -358124,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_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), @@ -358148,90 +358231,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1818] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3305), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -358241,73 +358324,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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), @@ -358318,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(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), }, [1819] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3243), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -358411,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [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), @@ -358464,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(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), @@ -358488,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3250), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -358581,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [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), @@ -358634,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_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), @@ -358658,90 +358741,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1821] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3300), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -358751,73 +358834,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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), @@ -358828,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(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), }, [1822] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3292), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -358921,73 +359004,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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), @@ -358998,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(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), }, [1823] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3280), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -359091,73 +359174,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(2081), + [anon_sym_where] = ACTIONS(29), + [anon_sym_notnull] = ACTIONS(29), + [anon_sym_unmanaged] = ACTIONS(29), + [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(1393), + [anon_sym_throw] = ACTIONS(2087), + [anon_sym_when] = ACTIONS(29), + [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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), @@ -359168,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(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), }, [1824] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3260), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -359261,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [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), @@ -359314,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_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), @@ -359338,90 +359421,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1825] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3306), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -359431,73 +359514,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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(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(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(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), + [anon_sym_on] = ACTIONS(29), + [anon_sym_equals] = ACTIONS(29), + [anon_sym_let] = ACTIONS(29), + [anon_sym_orderby] = ACTIONS(29), + [anon_sym_ascending] = ACTIONS(29), + [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), @@ -359508,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(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), }, [1826] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3258), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -359601,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -359654,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_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), @@ -359684,84 +359767,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1827] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3170), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -359771,47 +359854,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1827), [sym_preproc_define] = STATE(1827), [sym_preproc_undef] = STATE(1827), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [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), @@ -359824,20 +359907,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -359848,90 +359931,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1828] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3268), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), + [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(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -359941,73 +360024,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -360018,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(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), }, [1829] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3255), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -360111,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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(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(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(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(2413), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), + [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), @@ -360164,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(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), @@ -360188,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(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), }, [1830] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3191), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -360281,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -360334,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(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), @@ -360364,84 +360447,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1831] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3303), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -360451,73 +360534,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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(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(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), @@ -360528,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(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), }, [1832] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3284), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(4731), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6471), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(7825), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -360621,73 +360704,73 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -360698,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(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), }, [1833] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4468), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [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), @@ -360791,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -360856,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), @@ -360874,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3818), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -360961,15 +361044,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1585), + [anon_sym_ref] = ACTIONS(1587), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), @@ -360979,29 +361062,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(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(1883), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [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), @@ -361026,7 +361109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -361044,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3161), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -361131,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [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), @@ -361184,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(1491), - [anon_sym_sizeof] = ACTIONS(1493), - [anon_sym_typeof] = ACTIONS(1495), - [anon_sym___makeref] = ACTIONS(1497), - [anon_sym___reftype] = ACTIONS(1499), - [anon_sym___refvalue] = ACTIONS(1501), - [sym_null_literal] = ACTIONS(1503), - [anon_sym_SQUOTE] = ACTIONS(1505), - [sym_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), @@ -361208,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(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), }, [1836] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3891), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -361301,15 +361384,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1585), + [anon_sym_ref] = ACTIONS(1587), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), @@ -361319,29 +361402,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(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(1883), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [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), @@ -361366,7 +361449,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -361384,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3896), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -361471,15 +361554,15 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1585), + [anon_sym_ref] = ACTIONS(1587), [anon_sym_LBRACE] = ACTIONS(1527), [anon_sym_delegate] = ACTIONS(1529), [anon_sym_async] = ACTIONS(1259), @@ -361489,29 +361572,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(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(1883), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1593), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [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), @@ -361536,7 +361619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -361554,84 +361637,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1838] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3897), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -361641,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(1883), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1909), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [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), @@ -361694,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(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), @@ -361718,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(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), }, [1839] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3900), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -361811,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1883), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [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), @@ -361864,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(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), @@ -361894,84 +361977,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1840] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3901), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -361981,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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), @@ -362034,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), @@ -362064,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3906), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -362151,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1873), - [anon_sym_ref] = ACTIONS(1875), - [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(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(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(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(1883), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [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), @@ -362204,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(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), @@ -362228,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(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), }, [1842] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3912), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -362321,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1873), - [anon_sym_ref] = ACTIONS(1875), - [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(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(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(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(1883), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [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), @@ -362374,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(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), @@ -362398,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4301), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [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), @@ -362491,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -362556,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), @@ -362574,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3920), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -362661,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1873), - [anon_sym_ref] = ACTIONS(1875), - [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(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(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(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(1883), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2213), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1885), - [anon_sym_DOT_DOT] = ACTIONS(1887), + [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), @@ -362714,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(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), @@ -362738,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4594), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -362831,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(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(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), @@ -362908,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3924), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -363001,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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), @@ -363054,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(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), @@ -363084,84 +363167,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1847] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4595), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -363171,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(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(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), @@ -363248,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(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), }, [1848] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2627), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -363341,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -363394,20 +363477,20 @@ static const uint16_t ts_parse_table[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), @@ -363418,90 +363501,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1849] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3929), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -363511,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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), @@ -363564,20 +363647,20 @@ static const uint16_t ts_parse_table[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), @@ -363594,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), + [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(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4596), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [sym_qualified_name] = STATE(5457), + [sym_generic_name] = STATE(2210), + [sym_type] = STATE(6217), + [sym_implicit_type] = STATE(2359), + [sym_array_type] = STATE(5560), + [sym__array_base_type] = STATE(7452), + [sym_nullable_type] = STATE(5527), + [sym_pointer_type] = STATE(5527), + [sym__pointer_base_type] = STATE(7930), + [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), @@ -363681,8 +363764,8 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [anon_sym_alias] = ACTIONS(29), [anon_sym_global] = ACTIONS(29), @@ -363694,34 +363777,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), @@ -363746,8 +363829,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -363764,84 +363847,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1851] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2648), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -363851,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -363904,20 +363987,20 @@ static const uint16_t ts_parse_table[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), @@ -363928,90 +364011,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1852] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2646), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -364021,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(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), @@ -364074,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), @@ -364098,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2644), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -364191,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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_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(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(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_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), @@ -364244,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), @@ -364268,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2615), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -364361,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1959), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [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), @@ -364414,20 +364497,20 @@ static const uint16_t ts_parse_table[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), @@ -364438,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(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), }, [1855] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2612), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -364531,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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_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(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(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_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), @@ -364584,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(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), @@ -364608,90 +364691,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1856] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4597), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -364701,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(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), @@ -364766,8 +364849,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -364784,84 +364867,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1857] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4470), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -364871,47 +364954,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -364924,20 +365007,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(29), [anon_sym_by] = ACTIONS(29), [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(129), - [anon_sym_typeof] = ACTIONS(131), - [anon_sym___makeref] = ACTIONS(133), - [anon_sym___reftype] = ACTIONS(135), - [anon_sym___refvalue] = ACTIONS(137), - [sym_null_literal] = ACTIONS(139), - [anon_sym_SQUOTE] = ACTIONS(141), - [sym_integer_literal] = ACTIONS(139), - [sym_real_literal] = ACTIONS(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), @@ -364948,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(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), }, [1858] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6170), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3767), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5118), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6476), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8009), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -365041,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(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), @@ -365094,20 +365177,20 @@ static const uint16_t ts_parse_table[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), @@ -365124,84 +365207,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1859] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4449), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -365211,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -365276,8 +365359,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -365294,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2613), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -365381,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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_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(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(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_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), @@ -365434,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(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), @@ -365458,90 +365541,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1861] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2640), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -365551,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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_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(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(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_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), @@ -365604,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(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), @@ -365628,90 +365711,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1862] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3246), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4646), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6483), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8101), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -365721,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), - [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(2405), - [anon_sym_ref] = ACTIONS(2407), - [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(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(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_yield] = ACTIONS(29), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(2413), - [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2415), - [anon_sym_DOT_DOT] = ACTIONS(2417), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = ACTIONS(29), - [anon_sym_equals] = ACTIONS(29), - [anon_sym_let] = ACTIONS(29), - [anon_sym_orderby] = ACTIONS(29), - [anon_sym_ascending] = ACTIONS(29), - [anon_sym_descending] = ACTIONS(29), - [anon_sym_group] = ACTIONS(29), - [anon_sym_by] = ACTIONS(29), - [anon_sym_select] = ACTIONS(29), - [anon_sym_stackalloc] = ACTIONS(127), - [anon_sym_sizeof] = ACTIONS(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_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), @@ -365798,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(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), }, [1863] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3061), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -365891,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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_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), @@ -365956,8 +366039,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), @@ -365974,84 +366057,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(1519), }, [1864] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4389), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -366061,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(2391), + [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(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(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_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), @@ -366115,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), @@ -366138,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2800), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -366231,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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(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), @@ -366284,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(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), @@ -366308,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(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), }, [1866] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2968), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(4165), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6449), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7803), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -366401,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -366454,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(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), @@ -366478,90 +366561,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1867] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2279), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4426), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4990), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7856), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -366571,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [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), @@ -366624,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(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), @@ -366654,84 +366737,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1868] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6202), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3093), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4535), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6461), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8031), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -366741,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -366794,20 +366877,20 @@ static const uint16_t ts_parse_table[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), @@ -366818,90 +366901,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1869] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2619), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -366911,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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_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(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(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_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), @@ -366964,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(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), @@ -366988,90 +367071,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1870] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4415), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -367081,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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), @@ -367146,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), @@ -367164,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2947), - [sym__name] = STATE(6180), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2229), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2734), - [sym_non_lvalue_expression] = STATE(4845), - [sym_lvalue_expression] = STATE(4089), - [sym__expression_statement_expression] = STATE(4846), - [sym_assignment_expression] = STATE(4857), - [sym_binary_expression] = STATE(4846), - [sym_postfix_unary_expression] = STATE(4857), - [sym_prefix_unary_expression] = STATE(4857), - [sym__pointer_indirection_expression] = STATE(2951), - [sym_query_expression] = STATE(4846), - [sym_from_clause] = STATE(6481), - [sym_conditional_expression] = STATE(4846), - [sym_conditional_access_expression] = STATE(4846), - [sym_as_expression] = STATE(4846), - [sym_is_expression] = STATE(4846), - [sym_is_pattern_expression] = STATE(4846), - [sym_cast_expression] = STATE(4846), - [sym_checked_expression] = STATE(4846), - [sym_invocation_expression] = STATE(4857), - [sym_switch_expression] = STATE(4846), - [sym_await_expression] = STATE(4857), - [sym_throw_expression] = STATE(4846), - [sym_element_access_expression] = STATE(2951), - [sym_interpolated_string_expression] = STATE(4846), - [sym_member_access_expression] = STATE(2951), - [sym_object_creation_expression] = STATE(4857), - [sym_parenthesized_expression] = STATE(4857), - [sym__parenthesized_lvalue_expression] = STATE(2951), - [sym_lambda_expression] = STATE(4846), - [sym__lambda_expression_init] = STATE(7996), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4846), - [sym_anonymous_method_expression] = STATE(4846), - [sym_anonymous_object_creation_expression] = STATE(4846), - [sym_implicit_array_creation_expression] = STATE(4846), - [sym_implicit_object_creation_expression] = STATE(4846), - [sym_implicit_stackalloc_expression] = STATE(4846), - [sym_initializer_expression] = STATE(4846), - [sym_default_expression] = STATE(4846), - [sym_with_expression] = STATE(4846), - [sym_sizeof_expression] = STATE(4846), - [sym_typeof_expression] = STATE(4846), - [sym_makeref_expression] = STATE(4846), - [sym_ref_expression] = STATE(4846), - [sym_reftype_expression] = STATE(4846), - [sym_refvalue_expression] = STATE(4846), - [sym_stackalloc_expression] = STATE(4846), - [sym_range_expression] = STATE(4846), - [sym_tuple_expression] = STATE(2951), - [sym_literal] = STATE(4846), - [sym_character_literal] = STATE(4760), - [sym_string_literal] = STATE(4760), - [sym_raw_string_literal] = STATE(4760), - [sym_boolean_literal] = STATE(4760), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4846), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -367251,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(3828), - [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(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(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(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(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(1399), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1403), + [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), @@ -367304,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(1405), - [anon_sym_sizeof] = ACTIONS(1407), - [anon_sym_typeof] = ACTIONS(1409), - [anon_sym___makeref] = ACTIONS(1411), - [anon_sym___reftype] = ACTIONS(1413), - [anon_sym___refvalue] = ACTIONS(1415), - [sym_null_literal] = ACTIONS(1417), - [anon_sym_SQUOTE] = ACTIONS(1419), - [sym_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), @@ -367328,90 +367411,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1872] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2625), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -367421,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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_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(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(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_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), @@ -367474,114 +367557,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(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), - }, + [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), + }, [1873] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4563), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5219), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6479), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(8016), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -367591,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -367656,8 +367739,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_real_literal] = ACTIONS(143), [anon_sym_DQUOTE] = ACTIONS(145), [sym_verbatim_string_literal] = ACTIONS(143), - [sym_grit_metavariable] = ACTIONS(1307), - [aux_sym_preproc_if_token1] = ACTIONS(1309), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -367674,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4052), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -367761,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1997), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [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), @@ -367814,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(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), @@ -367844,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6206), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2426), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4069), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5084), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6465), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7984), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -367931,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(2141), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2145), + [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), @@ -367984,20 +368067,20 @@ static const uint16_t ts_parse_table[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), @@ -368014,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3626), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -368101,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [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), @@ -368154,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), @@ -368184,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3622), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -368271,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [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), @@ -368324,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(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), @@ -368354,84 +368437,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1878] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3620), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -368441,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [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), @@ -368494,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), @@ -368524,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3619), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -368611,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [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), @@ -368664,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), @@ -368694,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3615), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -368781,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(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(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [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), @@ -368846,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), @@ -368864,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2641), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -368951,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1959), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [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), @@ -369004,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(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), @@ -369028,90 +369111,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1882] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3613), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -369121,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [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), @@ -369174,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), @@ -369204,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2632), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -369291,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [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(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_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(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(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_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), @@ -369344,20 +369427,20 @@ static const uint16_t ts_parse_table[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), @@ -369368,90 +369451,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1884] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3612), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -369461,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [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), @@ -369514,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), @@ -369544,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3610), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -369631,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(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(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [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), @@ -369696,7 +369779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -369714,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(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3606), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -369801,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(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(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(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(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1997), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [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), @@ -369866,7 +369949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_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), @@ -369884,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(5822), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(4473), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(5041), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6473), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7845), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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(7895), + [sym_array_creation_expression] = STATE(3417), + [sym_anonymous_method_expression] = STATE(3417), + [sym_anonymous_object_creation_expression] = STATE(3417), + [sym_implicit_array_creation_expression] = STATE(3417), + [sym_implicit_object_creation_expression] = STATE(3417), + [sym_implicit_stackalloc_expression] = STATE(3417), + [sym_initializer_expression] = STATE(3417), + [sym_default_expression] = STATE(3417), + [sym_with_expression] = STATE(3417), + [sym_sizeof_expression] = STATE(3417), + [sym_typeof_expression] = STATE(3417), + [sym_makeref_expression] = STATE(3417), + [sym_ref_expression] = STATE(3417), + [sym_reftype_expression] = STATE(3417), + [sym_refvalue_expression] = STATE(3417), + [sym_stackalloc_expression] = STATE(3417), + [sym_range_expression] = STATE(3417), + [sym_tuple_expression] = STATE(2568), + [sym_literal] = STATE(3417), + [sym_character_literal] = STATE(4615), + [sym_string_literal] = STATE(4615), + [sym_raw_string_literal] = STATE(4615), + [sym_boolean_literal] = STATE(4615), + [sym_identifier] = STATE(2212), + [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), @@ -369971,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -370036,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), @@ -370054,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3599), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -370141,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [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), @@ -370194,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), @@ -370224,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2628), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -370311,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1959), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2105), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [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), @@ -370364,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(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), @@ -370388,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(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), }, [1890] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3592), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -370481,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [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), @@ -370534,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), @@ -370564,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6195), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2381), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3680), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(4989), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6470), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(8119), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2305), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -370651,47 +370734,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1899), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1901), - [anon_sym_DOT_DOT] = ACTIONS(1903), + [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), @@ -370704,20 +370787,20 @@ static const uint16_t ts_parse_table[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), @@ -370734,84 +370817,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1892] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3078), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -370821,47 +370904,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(2087), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [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), @@ -370875,19 +370958,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), @@ -370898,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(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), }, [1893] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3104), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -370991,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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_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(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(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(1483), - [anon_sym_throw] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1953), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [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), @@ -371045,189 +371128,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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [1894] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3984), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1894), - [sym_preproc_endregion] = STATE(1894), - [sym_preproc_line] = STATE(1894), - [sym_preproc_pragma] = STATE(1894), - [sym_preproc_nullable] = STATE(1894), - [sym_preproc_error] = STATE(1894), - [sym_preproc_warning] = STATE(1894), - [sym_preproc_define] = STATE(1894), - [sym_preproc_undef] = STATE(1894), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), - [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_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), + [sym_grit_metavariable] = ACTIONS(1301), + [aux_sym_preproc_if_token1] = ACTIONS(1303), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -371243,135 +371156,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), }, - [1895] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3985), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1895), - [sym_preproc_endregion] = STATE(1895), - [sym_preproc_line] = STATE(1895), - [sym_preproc_pragma] = STATE(1895), - [sym_preproc_nullable] = STATE(1895), - [sym_preproc_error] = STATE(1895), - [sym_preproc_warning] = STATE(1895), - [sym_preproc_define] = STATE(1895), - [sym_preproc_undef] = STATE(1895), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [1894] = { + [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), + [sym_preproc_pragma] = STATE(1894), + [sym_preproc_nullable] = STATE(1894), + [sym_preproc_error] = STATE(1894), + [sym_preproc_warning] = STATE(1894), + [sym_preproc_define] = STATE(1894), + [sym_preproc_undef] = STATE(1894), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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(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(1991), + [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(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(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(1997), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [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), @@ -371384,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(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), @@ -371408,140 +371321,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(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), }, - [1896] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3986), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), - [sym_preproc_region] = STATE(1896), - [sym_preproc_endregion] = STATE(1896), - [sym_preproc_line] = STATE(1896), - [sym_preproc_pragma] = STATE(1896), - [sym_preproc_nullable] = STATE(1896), - [sym_preproc_error] = STATE(1896), - [sym_preproc_warning] = STATE(1896), - [sym_preproc_define] = STATE(1896), - [sym_preproc_undef] = STATE(1896), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [1895] = { + [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(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), + [sym_preproc_pragma] = STATE(1895), + [sym_preproc_nullable] = STATE(1895), + [sym_preproc_error] = STATE(1895), + [sym_preproc_warning] = STATE(1895), + [sym_preproc_define] = STATE(1895), + [sym_preproc_undef] = STATE(1895), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1997), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [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), @@ -371554,20 +371467,20 @@ static const uint16_t ts_parse_table[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), @@ -371583,85 +371496,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), }, + [1896] = { + [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), + [sym_preproc_pragma] = STATE(1896), + [sym_preproc_nullable] = STATE(1896), + [sym_preproc_error] = STATE(1896), + [sym_preproc_warning] = STATE(1896), + [sym_preproc_define] = STATE(1896), + [sym_preproc_undef] = STATE(1896), + [aux_sym__class_declaration_initializer_repeat1] = STATE(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(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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, [1897] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3987), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -371671,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -371724,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), @@ -371754,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3146), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -371841,47 +371924,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [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), @@ -371894,20 +371977,20 @@ static const uint16_t ts_parse_table[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), @@ -371918,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(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), }, [1899] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3988), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -372011,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -372064,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), @@ -372088,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3989), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -372181,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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), @@ -372234,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), @@ -372258,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3990), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -372351,47 +372434,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(1991), + [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(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(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(1997), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2383), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [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), @@ -372404,20 +372487,20 @@ static const uint16_t ts_parse_table[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), @@ -372434,84 +372517,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1902] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2614), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -372521,47 +372604,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [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), @@ -372574,20 +372657,20 @@ static const uint16_t ts_parse_table[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(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -372598,90 +372681,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1903] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2634), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -372691,47 +372774,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [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), @@ -372744,20 +372827,20 @@ static const uint16_t ts_parse_table[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(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -372768,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(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), }, [1904] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6178), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2390), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2649), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3396), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7817), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -372861,47 +372944,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1769), - [anon_sym_throw] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1961), - [anon_sym_DOT_DOT] = ACTIONS(1963), + [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), @@ -372914,20 +372997,20 @@ static const uint16_t ts_parse_table[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(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -372938,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(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), }, [1905] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3991), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -373031,47 +373114,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -373084,20 +373167,20 @@ static const uint16_t ts_parse_table[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), @@ -373114,84 +373197,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1906] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3992), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -373201,47 +373284,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -373254,20 +373337,20 @@ static const uint16_t ts_parse_table[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), @@ -373284,84 +373367,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1907] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3993), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -373371,47 +373454,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(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(1991), + [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(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(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(1997), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_throw] = ACTIONS(2499), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [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), @@ -373424,20 +373507,20 @@ static const uint16_t ts_parse_table[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), @@ -373448,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(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), }, [1908] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3995), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -373541,47 +373624,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [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(1987), - [anon_sym_ref] = ACTIONS(1989), - [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(1991), + [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(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(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(1997), + [anon_sym_default] = ACTIONS(1393), + [anon_sym_throw] = ACTIONS(1943), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(2001), + [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), @@ -373594,20 +373677,20 @@ static const uint16_t ts_parse_table[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(1405), + [anon_sym_sizeof] = ACTIONS(1407), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym___makeref] = ACTIONS(1411), + [anon_sym___reftype] = ACTIONS(1413), + [anon_sym___refvalue] = ACTIONS(1415), + [sym_null_literal] = ACTIONS(1417), + [anon_sym_SQUOTE] = ACTIONS(1419), + [sym_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), @@ -373618,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(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), }, [1909] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3075), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -373711,47 +373794,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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), @@ -373765,19 +373848,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), @@ -373788,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(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), }, [1910] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3076), - [sym__name] = STATE(6169), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2236), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3837), - [sym_non_lvalue_expression] = STATE(5034), - [sym_lvalue_expression] = STATE(5119), - [sym__expression_statement_expression] = STATE(5044), - [sym_assignment_expression] = STATE(5031), - [sym_binary_expression] = STATE(5044), - [sym_postfix_unary_expression] = STATE(5031), - [sym_prefix_unary_expression] = STATE(5031), - [sym__pointer_indirection_expression] = STATE(3090), - [sym_query_expression] = STATE(5044), - [sym_from_clause] = STATE(6459), - [sym_conditional_expression] = STATE(5044), - [sym_conditional_access_expression] = STATE(5044), - [sym_as_expression] = STATE(5044), - [sym_is_expression] = STATE(5044), - [sym_is_pattern_expression] = STATE(5044), - [sym_cast_expression] = STATE(5044), - [sym_checked_expression] = STATE(5044), - [sym_invocation_expression] = STATE(5031), - [sym_switch_expression] = STATE(5044), - [sym_await_expression] = STATE(5031), - [sym_throw_expression] = STATE(5044), - [sym_element_access_expression] = STATE(3090), - [sym_interpolated_string_expression] = STATE(5044), - [sym_member_access_expression] = STATE(3090), - [sym_object_creation_expression] = STATE(5031), - [sym_parenthesized_expression] = STATE(5031), - [sym__parenthesized_lvalue_expression] = STATE(3090), - [sym_lambda_expression] = STATE(5044), - [sym__lambda_expression_init] = STATE(7807), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5044), - [sym_anonymous_method_expression] = STATE(5044), - [sym_anonymous_object_creation_expression] = STATE(5044), - [sym_implicit_array_creation_expression] = STATE(5044), - [sym_implicit_object_creation_expression] = STATE(5044), - [sym_implicit_stackalloc_expression] = STATE(5044), - [sym_initializer_expression] = STATE(5044), - [sym_default_expression] = STATE(5044), - [sym_with_expression] = STATE(5044), - [sym_sizeof_expression] = STATE(5044), - [sym_typeof_expression] = STATE(5044), - [sym_makeref_expression] = STATE(5044), - [sym_ref_expression] = STATE(5044), - [sym_reftype_expression] = STATE(5044), - [sym_refvalue_expression] = STATE(5044), - [sym_stackalloc_expression] = STATE(5044), - [sym_range_expression] = STATE(5044), - [sym_tuple_expression] = STATE(3090), - [sym_literal] = STATE(5044), - [sym_character_literal] = STATE(4970), - [sym_string_literal] = STATE(4970), - [sym_raw_string_literal] = STATE(4970), - [sym_boolean_literal] = STATE(4970), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5044), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -373881,47 +373964,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4883), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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), @@ -373934,20 +374017,20 @@ static const uint16_t ts_parse_table[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), @@ -373964,84 +374047,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(159), }, [1911] = { - [sym_attribute_list] = STATE(5914), + [sym_attribute_list] = STATE(5920), [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(4696), - [sym__name] = STATE(6196), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2339), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2296), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3753), - [sym_non_lvalue_expression] = STATE(5684), - [sym_lvalue_expression] = STATE(5049), - [sym__expression_statement_expression] = STATE(5652), - [sym_assignment_expression] = STATE(5683), - [sym_binary_expression] = STATE(5652), - [sym_postfix_unary_expression] = STATE(5683), - [sym_prefix_unary_expression] = STATE(5683), - [sym__pointer_indirection_expression] = STATE(4722), - [sym_query_expression] = STATE(5652), - [sym_from_clause] = STATE(6468), - [sym_conditional_expression] = STATE(5652), - [sym_conditional_access_expression] = STATE(5652), - [sym_as_expression] = STATE(5652), - [sym_is_expression] = STATE(5652), - [sym_is_pattern_expression] = STATE(5652), - [sym_cast_expression] = STATE(5652), - [sym_checked_expression] = STATE(5652), - [sym_invocation_expression] = STATE(5683), - [sym_switch_expression] = STATE(5652), - [sym_await_expression] = STATE(5683), - [sym_throw_expression] = STATE(5652), - [sym_element_access_expression] = STATE(4722), - [sym_interpolated_string_expression] = STATE(5652), - [sym_member_access_expression] = STATE(4722), - [sym_object_creation_expression] = STATE(5683), - [sym_parenthesized_expression] = STATE(5683), - [sym__parenthesized_lvalue_expression] = STATE(4722), - [sym_lambda_expression] = STATE(5652), - [sym__lambda_expression_init] = STATE(8039), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5652), - [sym_anonymous_method_expression] = STATE(5652), - [sym_anonymous_object_creation_expression] = STATE(5652), - [sym_implicit_array_creation_expression] = STATE(5652), - [sym_implicit_object_creation_expression] = STATE(5652), - [sym_implicit_stackalloc_expression] = STATE(5652), - [sym_initializer_expression] = STATE(5652), - [sym_default_expression] = STATE(5652), - [sym_with_expression] = STATE(5652), - [sym_sizeof_expression] = STATE(5652), - [sym_typeof_expression] = STATE(5652), - [sym_makeref_expression] = STATE(5652), - [sym_ref_expression] = STATE(5652), - [sym_reftype_expression] = STATE(5652), - [sym_refvalue_expression] = STATE(5652), - [sym_stackalloc_expression] = STATE(5652), - [sym_range_expression] = STATE(5652), - [sym_tuple_expression] = STATE(4722), - [sym_literal] = STATE(5652), - [sym_character_literal] = STATE(5708), - [sym_string_literal] = STATE(5708), - [sym_raw_string_literal] = STATE(5708), - [sym_boolean_literal] = STATE(5708), - [sym_identifier] = STATE(2282), - [sym__reserved_identifier] = STATE(2263), - [sym_preproc_if_in_expression] = STATE(5652), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -374051,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4844), - [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), @@ -374128,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(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2561), - [sym__name] = STATE(6200), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2434), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3069), - [sym_non_lvalue_expression] = STATE(4299), - [sym_lvalue_expression] = STATE(4477), - [sym__expression_statement_expression] = STATE(4180), - [sym_assignment_expression] = STATE(4298), - [sym_binary_expression] = STATE(4180), - [sym_postfix_unary_expression] = STATE(4298), - [sym_prefix_unary_expression] = STATE(4298), - [sym__pointer_indirection_expression] = STATE(2540), - [sym_query_expression] = STATE(4180), - [sym_from_clause] = STATE(6480), - [sym_conditional_expression] = STATE(4180), - [sym_conditional_access_expression] = STATE(4180), - [sym_as_expression] = STATE(4180), - [sym_is_expression] = STATE(4180), - [sym_is_pattern_expression] = STATE(4180), - [sym_cast_expression] = STATE(4180), - [sym_checked_expression] = STATE(4180), - [sym_invocation_expression] = STATE(4298), - [sym_switch_expression] = STATE(4180), - [sym_await_expression] = STATE(4298), - [sym_throw_expression] = STATE(4180), - [sym_element_access_expression] = STATE(2540), - [sym_interpolated_string_expression] = STATE(4180), - [sym_member_access_expression] = STATE(2540), - [sym_object_creation_expression] = STATE(4298), - [sym_parenthesized_expression] = STATE(4298), - [sym__parenthesized_lvalue_expression] = STATE(2540), - [sym_lambda_expression] = STATE(4180), - [sym__lambda_expression_init] = STATE(7668), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(4180), - [sym_anonymous_method_expression] = STATE(4180), - [sym_anonymous_object_creation_expression] = STATE(4180), - [sym_implicit_array_creation_expression] = STATE(4180), - [sym_implicit_object_creation_expression] = STATE(4180), - [sym_implicit_stackalloc_expression] = STATE(4180), - [sym_initializer_expression] = STATE(4180), - [sym_default_expression] = STATE(4180), - [sym_with_expression] = STATE(4180), - [sym_sizeof_expression] = STATE(4180), - [sym_typeof_expression] = STATE(4180), - [sym_makeref_expression] = STATE(4180), - [sym_ref_expression] = STATE(4180), - [sym_reftype_expression] = STATE(4180), - [sym_refvalue_expression] = STATE(4180), - [sym_stackalloc_expression] = STATE(4180), - [sym_range_expression] = STATE(4180), - [sym_tuple_expression] = STATE(2540), - [sym_literal] = STATE(4180), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(4180), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -374221,47 +374304,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4766), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [sym__identifier_token] = ACTIONS(25), [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(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(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(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(2087), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2089), - [anon_sym_DOT_DOT] = ACTIONS(2091), + [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), @@ -374275,19 +374358,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(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -374298,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(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), }, [1913] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2700), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -374391,47 +374474,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [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), @@ -374444,20 +374527,20 @@ static const uint16_t ts_parse_table[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(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -374468,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(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), }, [1914] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(3362), - [sym__name] = STATE(6199), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2394), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(2696), - [sym_non_lvalue_expression] = STATE(5277), - [sym_lvalue_expression] = STATE(3520), - [sym__expression_statement_expression] = STATE(5302), - [sym_assignment_expression] = STATE(5274), - [sym_binary_expression] = STATE(5302), - [sym_postfix_unary_expression] = STATE(5274), - [sym_prefix_unary_expression] = STATE(5274), - [sym__pointer_indirection_expression] = STATE(3368), - [sym_query_expression] = STATE(5302), - [sym_from_clause] = STATE(6452), - [sym_conditional_expression] = STATE(5302), - [sym_conditional_access_expression] = STATE(5302), - [sym_as_expression] = STATE(5302), - [sym_is_expression] = STATE(5302), - [sym_is_pattern_expression] = STATE(5302), - [sym_cast_expression] = STATE(5302), - [sym_checked_expression] = STATE(5302), - [sym_invocation_expression] = STATE(5274), - [sym_switch_expression] = STATE(5302), - [sym_await_expression] = STATE(5274), - [sym_throw_expression] = STATE(5302), - [sym_element_access_expression] = STATE(3368), - [sym_interpolated_string_expression] = STATE(5302), - [sym_member_access_expression] = STATE(3368), - [sym_object_creation_expression] = STATE(5274), - [sym_parenthesized_expression] = STATE(5274), - [sym__parenthesized_lvalue_expression] = STATE(3368), - [sym_lambda_expression] = STATE(5302), - [sym__lambda_expression_init] = STATE(7746), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(5302), - [sym_anonymous_method_expression] = STATE(5302), - [sym_anonymous_object_creation_expression] = STATE(5302), - [sym_implicit_array_creation_expression] = STATE(5302), - [sym_implicit_object_creation_expression] = STATE(5302), - [sym_implicit_stackalloc_expression] = STATE(5302), - [sym_initializer_expression] = STATE(5302), - [sym_default_expression] = STATE(5302), - [sym_with_expression] = STATE(5302), - [sym_sizeof_expression] = STATE(5302), - [sym_typeof_expression] = STATE(5302), - [sym_makeref_expression] = STATE(5302), - [sym_ref_expression] = STATE(5302), - [sym_reftype_expression] = STATE(5302), - [sym_refvalue_expression] = STATE(5302), - [sym_stackalloc_expression] = STATE(5302), - [sym_range_expression] = STATE(5302), - [sym_tuple_expression] = STATE(3368), - [sym_literal] = STATE(5302), - [sym_character_literal] = STATE(5285), - [sym_string_literal] = STATE(5285), - [sym_raw_string_literal] = STATE(5285), - [sym_boolean_literal] = STATE(5285), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(5302), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -374561,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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4847), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(1769), - [anon_sym_throw] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(1773), - [anon_sym_DOT_DOT] = ACTIONS(1775), + [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), @@ -374614,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(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(2307), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -374638,90 +374721,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, [1915] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3165), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -374731,47 +374814,47 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(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(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(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(2299), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), + [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), @@ -374784,20 +374867,20 @@ static const uint16_t ts_parse_table[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), @@ -374808,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(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), }, [1916] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym_bracketed_argument_list] = STATE(2481), - [sym__name] = STATE(6190), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(2424), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_type] = STATE(6221), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_expression] = STATE(3144), - [sym_non_lvalue_expression] = STATE(3785), - [sym_lvalue_expression] = STATE(4627), - [sym__expression_statement_expression] = STATE(3795), - [sym_assignment_expression] = STATE(3784), - [sym_binary_expression] = STATE(3795), - [sym_postfix_unary_expression] = STATE(3784), - [sym_prefix_unary_expression] = STATE(3784), - [sym__pointer_indirection_expression] = STATE(2480), - [sym_query_expression] = STATE(3795), - [sym_from_clause] = STATE(6447), - [sym_conditional_expression] = STATE(3795), - [sym_conditional_access_expression] = STATE(3795), - [sym_as_expression] = STATE(3795), - [sym_is_expression] = STATE(3795), - [sym_is_pattern_expression] = STATE(3795), - [sym_cast_expression] = STATE(3795), - [sym_checked_expression] = STATE(3795), - [sym_invocation_expression] = STATE(3784), - [sym_switch_expression] = STATE(3795), - [sym_await_expression] = STATE(3784), - [sym_throw_expression] = STATE(3795), - [sym_element_access_expression] = STATE(2480), - [sym_interpolated_string_expression] = STATE(3795), - [sym_member_access_expression] = STATE(2480), - [sym_object_creation_expression] = STATE(3784), - [sym_parenthesized_expression] = STATE(3784), - [sym__parenthesized_lvalue_expression] = STATE(2480), - [sym_lambda_expression] = STATE(3795), - [sym__lambda_expression_init] = STATE(8098), - [sym__lambda_parameters] = STATE(7683), - [sym_array_creation_expression] = STATE(3795), - [sym_anonymous_method_expression] = STATE(3795), - [sym_anonymous_object_creation_expression] = STATE(3795), - [sym_implicit_array_creation_expression] = STATE(3795), - [sym_implicit_object_creation_expression] = STATE(3795), - [sym_implicit_stackalloc_expression] = STATE(3795), - [sym_initializer_expression] = STATE(3795), - [sym_default_expression] = STATE(3795), - [sym_with_expression] = STATE(3795), - [sym_sizeof_expression] = STATE(3795), - [sym_typeof_expression] = STATE(3795), - [sym_makeref_expression] = STATE(3795), - [sym_ref_expression] = STATE(3795), - [sym_reftype_expression] = STATE(3795), - [sym_refvalue_expression] = STATE(3795), - [sym_stackalloc_expression] = STATE(3795), - [sym_range_expression] = STATE(3795), - [sym_tuple_expression] = STATE(2480), - [sym_literal] = STATE(3795), - [sym_character_literal] = STATE(3793), - [sym_string_literal] = STATE(3793), - [sym_raw_string_literal] = STATE(3793), - [sym_boolean_literal] = STATE(3793), - [sym_identifier] = STATE(2208), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_expression] = STATE(3795), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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(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), @@ -374901,51 +374984,51 @@ 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(3828), - [aux_sym__lambda_expression_init_repeat1] = STATE(4822), + [aux_sym__class_declaration_initializer_repeat1] = STATE(3308), + [aux_sym__lambda_expression_init_repeat1] = STATE(4383), [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(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(2115), + [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(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(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(2361), + [anon_sym_default] = ACTIONS(105), + [anon_sym_throw] = ACTIONS(1731), [anon_sym_when] = ACTIONS(29), - [anon_sym_await] = ACTIONS(2363), - [anon_sym_DOT_DOT] = ACTIONS(2365), - [anon_sym_from] = ACTIONS(125), - [anon_sym_into] = ACTIONS(29), - [anon_sym_join] = ACTIONS(29), - [anon_sym_on] = 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), @@ -374954,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), @@ -374978,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), @@ -375039,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), @@ -375067,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), @@ -375087,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), @@ -375099,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), @@ -375207,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), @@ -375235,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), @@ -375255,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), @@ -375267,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), @@ -375367,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), @@ -375395,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), @@ -375416,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), @@ -375428,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), @@ -375530,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), @@ -375576,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), @@ -375681,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), @@ -375727,161 +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_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_as] = ACTIONS(3203), - [anon_sym_is] = ACTIONS(3203), - [anon_sym_DASH_GT] = ACTIONS(3205), - [anon_sym_stackalloc] = ACTIONS(3199), - [anon_sym_with] = ACTIONS(3203), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [1922] = { - [sym_preproc_region] = STATE(1922), - [sym_preproc_endregion] = STATE(1922), - [sym_preproc_line] = STATE(1922), - [sym_preproc_pragma] = STATE(1922), - [sym_preproc_nullable] = STATE(1922), - [sym_preproc_error] = STATE(1922), - [sym_preproc_warning] = STATE(1922), - [sym_preproc_define] = STATE(1922), - [sym_preproc_undef] = STATE(1922), - [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_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_where] = ACTIONS(3199), - [anon_sym_QMARK] = ACTIONS(3203), - [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), - [sym_predefined_type] = ACTIONS(3199), - [anon_sym_break] = ACTIONS(3199), - [anon_sym_unchecked] = ACTIONS(3199), - [anon_sym_continue] = ACTIONS(3199), - [anon_sym_do] = ACTIONS(3199), - [anon_sym_while] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3199), - [anon_sym_lock] = ACTIONS(3199), - [anon_sym_yield] = ACTIONS(3199), - [anon_sym_switch] = ACTIONS(3199), - [anon_sym_default] = ACTIONS(3199), - [anon_sym_throw] = ACTIONS(3199), - [anon_sym_try] = ACTIONS(3199), - [anon_sym_when] = ACTIONS(3199), - [anon_sym_await] = ACTIONS(3199), - [anon_sym_foreach] = ACTIONS(3199), - [anon_sym_goto] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_else] = ACTIONS(3199), - [anon_sym_DOT_DOT] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_PIPE_PIPE] = ACTIONS(3205), - [sym_op_coalescing] = ACTIONS(3205), [anon_sym_from] = ACTIONS(3199), [anon_sym_into] = ACTIONS(3199), [anon_sym_join] = ACTIONS(3199), @@ -375912,6 +375843,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -375927,16 +375861,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3201), [sym_raw_string_start] = ACTIONS(3201), }, - [1923] = { - [sym_preproc_region] = STATE(1923), - [sym_preproc_endregion] = STATE(1923), - [sym_preproc_line] = STATE(1923), - [sym_preproc_pragma] = STATE(1923), - [sym_preproc_nullable] = STATE(1923), - [sym_preproc_error] = STATE(1923), - [sym_preproc_warning] = STATE(1923), - [sym_preproc_define] = STATE(1923), - [sym_preproc_undef] = STATE(1923), + [1922] = { + [sym_preproc_region] = STATE(1922), + [sym_preproc_endregion] = STATE(1922), + [sym_preproc_line] = STATE(1922), + [sym_preproc_pragma] = STATE(1922), + [sym_preproc_nullable] = STATE(1922), + [sym_preproc_error] = STATE(1922), + [sym_preproc_warning] = STATE(1922), + [sym_preproc_define] = STATE(1922), + [sym_preproc_undef] = STATE(1922), [ts_builtin_sym_end] = ACTIONS(3193), [sym__identifier_token] = ACTIONS(3191), [anon_sym_extern] = ACTIONS(3191), @@ -375982,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), @@ -376028,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), @@ -376076,136 +376010,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3193), [sym_raw_string_start] = ACTIONS(3193), }, - [1924] = { - [sym_preproc_region] = STATE(1924), - [sym_preproc_endregion] = STATE(1924), - [sym_preproc_line] = STATE(1924), - [sym_preproc_pragma] = STATE(1924), - [sym_preproc_nullable] = STATE(1924), - [sym_preproc_error] = STATE(1924), - [sym_preproc_warning] = STATE(1924), - [sym_preproc_define] = STATE(1924), - [sym_preproc_undef] = STATE(1924), - [sym__identifier_token] = ACTIONS(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_COMMA] = ACTIONS(3197), - [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_LT] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3195), - [anon_sym_where] = ACTIONS(3191), - [anon_sym_QMARK] = ACTIONS(3195), - [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), - [sym_predefined_type] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_unchecked] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_do] = ACTIONS(3191), - [anon_sym_while] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_lock] = ACTIONS(3191), - [anon_sym_yield] = ACTIONS(3191), - [anon_sym_switch] = ACTIONS(3191), - [anon_sym_case] = ACTIONS(3191), - [anon_sym_default] = ACTIONS(3191), - [anon_sym_throw] = ACTIONS(3191), - [anon_sym_try] = ACTIONS(3191), - [anon_sym_when] = ACTIONS(3191), - [anon_sym_await] = ACTIONS(3191), - [anon_sym_foreach] = ACTIONS(3191), - [anon_sym_goto] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_else] = ACTIONS(3191), - [anon_sym_DOT_DOT] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [sym_op_coalescing] = ACTIONS(3197), - [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_as] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3195), - [anon_sym_DASH_GT] = ACTIONS(3197), - [anon_sym_stackalloc] = ACTIONS(3191), - [anon_sym_with] = ACTIONS(3195), - [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), + [1923] = { + [sym_preproc_region] = STATE(1923), + [sym_preproc_endregion] = STATE(1923), + [sym_preproc_line] = STATE(1923), + [sym_preproc_pragma] = STATE(1923), + [sym_preproc_nullable] = STATE(1923), + [sym_preproc_error] = STATE(1923), + [sym_preproc_warning] = STATE(1923), + [sym_preproc_define] = STATE(1923), + [sym_preproc_undef] = STATE(1923), + [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_LT] = ACTIONS(3203), + [anon_sym_GT] = ACTIONS(3203), + [anon_sym_where] = ACTIONS(3199), + [anon_sym_QMARK] = ACTIONS(3203), + [anon_sym_notnull] = ACTIONS(3199), + [anon_sym_unmanaged] = ACTIONS(3199), + [anon_sym_checked] = ACTIONS(3199), + [anon_sym_TILDE] = ACTIONS(3201), + [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), + [anon_sym_continue] = ACTIONS(3199), + [anon_sym_do] = ACTIONS(3199), + [anon_sym_while] = ACTIONS(3199), + [anon_sym_for] = ACTIONS(3199), + [anon_sym_lock] = ACTIONS(3199), + [anon_sym_yield] = ACTIONS(3199), + [anon_sym_switch] = ACTIONS(3199), + [anon_sym_default] = ACTIONS(3199), + [anon_sym_throw] = ACTIONS(3199), + [anon_sym_try] = ACTIONS(3199), + [anon_sym_when] = ACTIONS(3199), + [anon_sym_await] = ACTIONS(3199), + [anon_sym_foreach] = ACTIONS(3199), + [anon_sym_goto] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_else] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_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), + [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_as] = ACTIONS(3203), + [anon_sym_is] = ACTIONS(3203), + [anon_sym_DASH_GT] = ACTIONS(3205), + [anon_sym_stackalloc] = ACTIONS(3199), + [anon_sym_with] = ACTIONS(3203), + [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), @@ -376216,21 +376154,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(3193), - [sym_interpolation_verbatim_start] = ACTIONS(3193), - [sym_interpolation_raw_start] = ACTIONS(3193), - [sym_raw_string_start] = ACTIONS(3193), + [sym_interpolation_regular_start] = ACTIONS(3201), + [sym_interpolation_verbatim_start] = ACTIONS(3201), + [sym_interpolation_raw_start] = ACTIONS(3201), + [sym_raw_string_start] = ACTIONS(3201), }, - [1925] = { - [sym_preproc_region] = STATE(1925), - [sym_preproc_endregion] = STATE(1925), - [sym_preproc_line] = STATE(1925), - [sym_preproc_pragma] = STATE(1925), - [sym_preproc_nullable] = STATE(1925), - [sym_preproc_error] = STATE(1925), - [sym_preproc_warning] = STATE(1925), - [sym_preproc_define] = STATE(1925), - [sym_preproc_undef] = STATE(1925), + [1924] = { + [sym_preproc_region] = STATE(1924), + [sym_preproc_endregion] = STATE(1924), + [sym_preproc_line] = STATE(1924), + [sym_preproc_pragma] = STATE(1924), + [sym_preproc_nullable] = STATE(1924), + [sym_preproc_error] = STATE(1924), + [sym_preproc_warning] = STATE(1924), + [sym_preproc_define] = STATE(1924), + [sym_preproc_undef] = STATE(1924), [sym__identifier_token] = ACTIONS(3199), [anon_sym_extern] = ACTIONS(3199), [anon_sym_alias] = ACTIONS(3199), @@ -376271,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), @@ -376318,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), @@ -376366,60 +376304,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3201), [sym_raw_string_start] = ACTIONS(3201), }, + [1925] = { + [sym_preproc_region] = STATE(1925), + [sym_preproc_endregion] = STATE(1925), + [sym_preproc_line] = STATE(1925), + [sym_preproc_pragma] = STATE(1925), + [sym_preproc_nullable] = STATE(1925), + [sym_preproc_error] = STATE(1925), + [sym_preproc_warning] = STATE(1925), + [sym_preproc_define] = STATE(1925), + [sym_preproc_undef] = STATE(1925), + [sym__identifier_token] = ACTIONS(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_COMMA] = ACTIONS(3197), + [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_LT] = ACTIONS(3195), + [anon_sym_GT] = ACTIONS(3195), + [anon_sym_where] = ACTIONS(3191), + [anon_sym_QMARK] = ACTIONS(3195), + [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_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), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_do] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_lock] = ACTIONS(3191), + [anon_sym_yield] = ACTIONS(3191), + [anon_sym_switch] = ACTIONS(3191), + [anon_sym_case] = ACTIONS(3191), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_throw] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(3191), + [anon_sym_when] = ACTIONS(3191), + [anon_sym_await] = ACTIONS(3191), + [anon_sym_foreach] = ACTIONS(3191), + [anon_sym_goto] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_else] = ACTIONS(3191), + [anon_sym_DOT_DOT] = ACTIONS(3193), + [anon_sym_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), + [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_as] = ACTIONS(3195), + [anon_sym_is] = ACTIONS(3195), + [anon_sym_DASH_GT] = ACTIONS(3197), + [anon_sym_stackalloc] = ACTIONS(3191), + [anon_sym_with] = ACTIONS(3195), + [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), + }, [1926] = { - [sym_using_directive] = STATE(2969), - [sym_attribute_list] = STATE(3096), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2969), - [sym_class_declaration] = STATE(2969), - [sym__class_declaration_initializer] = STATE(8110), - [sym_struct_declaration] = STATE(2969), - [sym__struct_declaration_initializer] = STATE(7527), - [sym_enum_declaration] = STATE(2969), - [sym_interface_declaration] = STATE(2969), - [sym__interface_declaration_initializer] = STATE(7528), - [sym_delegate_declaration] = STATE(2969), - [sym__delegate_declaration_initializer] = STATE(6993), - [sym_record_declaration] = STATE(2969), - [sym__record_declaration_initializer] = STATE(7277), - [sym_modifier] = STATE(4309), - [sym_operator_declaration] = STATE(2969), - [sym_conversion_operator_declaration] = STATE(2969), - [sym_declaration] = STATE(2990), - [sym_field_declaration] = STATE(2969), - [sym_constructor_declaration] = STATE(2969), + [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(2969), - [sym_method_declaration] = STATE(2969), - [sym_event_declaration] = STATE(2969), - [sym_event_field_declaration] = STATE(2969), - [sym_indexer_declaration] = STATE(2969), - [sym_property_declaration] = STATE(2969), - [sym_variable_declaration] = STATE(7851), + [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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5906), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6001), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if] = STATE(2969), - [sym_preproc_else] = STATE(7961), - [sym_preproc_elif] = STATE(7961), - [sym_preproc_if_in_attribute_list] = STATE(3597), - [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(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), @@ -376429,8 +376512,8 @@ 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(2234), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2314), + [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), @@ -376470,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), @@ -376507,59 +376590,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [1927] = { - [sym_using_directive] = STATE(2969), - [sym_attribute_list] = STATE(3103), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2969), - [sym_class_declaration] = STATE(2969), - [sym__class_declaration_initializer] = STATE(8110), - [sym_struct_declaration] = STATE(2969), - [sym__struct_declaration_initializer] = STATE(7527), - [sym_enum_declaration] = STATE(2969), - [sym_interface_declaration] = STATE(2969), - [sym__interface_declaration_initializer] = STATE(7528), - [sym_delegate_declaration] = STATE(2969), - [sym__delegate_declaration_initializer] = STATE(6993), - [sym_record_declaration] = STATE(2969), - [sym__record_declaration_initializer] = STATE(7277), - [sym_modifier] = STATE(4309), - [sym_operator_declaration] = STATE(2969), - [sym_conversion_operator_declaration] = STATE(2969), - [sym_declaration] = STATE(2990), - [sym_field_declaration] = STATE(2969), - [sym_constructor_declaration] = STATE(2969), + [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(2969), - [sym_method_declaration] = STATE(2969), - [sym_event_declaration] = STATE(2969), - [sym_event_field_declaration] = STATE(2969), - [sym_indexer_declaration] = STATE(2969), - [sym_property_declaration] = STATE(2969), - [sym_variable_declaration] = STATE(7851), + [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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5906), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6001), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if] = STATE(2969), - [sym_preproc_else] = STATE(7667), - [sym_preproc_elif] = STATE(7667), - [sym_preproc_if_in_attribute_list] = STATE(3597), - [sym_preproc_else_in_attribute_list] = STATE(7885), - [sym_preproc_elif_in_attribute_list] = STATE(7885), + [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), @@ -376569,8 +376652,8 @@ 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(2234), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2314), + [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), @@ -376610,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), @@ -376647,57 +376730,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [1928] = { - [sym_using_directive] = STATE(2969), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2969), - [sym_class_declaration] = STATE(2969), - [sym__class_declaration_initializer] = STATE(8110), - [sym_struct_declaration] = STATE(2969), - [sym__struct_declaration_initializer] = STATE(7527), - [sym_enum_declaration] = STATE(2969), - [sym_interface_declaration] = STATE(2969), - [sym__interface_declaration_initializer] = STATE(7528), - [sym_delegate_declaration] = STATE(2969), - [sym__delegate_declaration_initializer] = STATE(6993), - [sym_record_declaration] = STATE(2969), - [sym__record_declaration_initializer] = STATE(7277), - [sym_modifier] = STATE(4309), - [sym_operator_declaration] = STATE(2969), - [sym_conversion_operator_declaration] = STATE(2969), - [sym_declaration] = STATE(2990), - [sym_field_declaration] = STATE(2969), - [sym_constructor_declaration] = STATE(2969), + [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(2969), - [sym_method_declaration] = STATE(2969), - [sym_event_declaration] = STATE(2969), - [sym_event_field_declaration] = STATE(2969), - [sym_indexer_declaration] = STATE(2969), - [sym_property_declaration] = STATE(2969), - [sym_variable_declaration] = STATE(7851), + [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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5906), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6001), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if] = STATE(2969), - [sym_preproc_else] = STATE(7667), - [sym_preproc_elif] = STATE(7667), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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), @@ -376707,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(2234), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2314), - [aux_sym_declaration_list_repeat1] = STATE(1929), + [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), @@ -376748,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), @@ -376770,7 +376853,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(3253), + [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), @@ -376785,57 +376868,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [1929] = { - [sym_using_directive] = STATE(2969), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2969), - [sym_class_declaration] = STATE(2969), - [sym__class_declaration_initializer] = STATE(8110), - [sym_struct_declaration] = STATE(2969), - [sym__struct_declaration_initializer] = STATE(7527), - [sym_enum_declaration] = STATE(2969), - [sym_interface_declaration] = STATE(2969), - [sym__interface_declaration_initializer] = STATE(7528), - [sym_delegate_declaration] = STATE(2969), - [sym__delegate_declaration_initializer] = STATE(6993), - [sym_record_declaration] = STATE(2969), - [sym__record_declaration_initializer] = STATE(7277), - [sym_modifier] = STATE(4309), - [sym_operator_declaration] = STATE(2969), - [sym_conversion_operator_declaration] = STATE(2969), - [sym_declaration] = STATE(2990), - [sym_field_declaration] = STATE(2969), - [sym_constructor_declaration] = STATE(2969), + [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(2969), - [sym_method_declaration] = STATE(2969), - [sym_event_declaration] = STATE(2969), - [sym_event_field_declaration] = STATE(2969), - [sym_indexer_declaration] = STATE(2969), - [sym_property_declaration] = STATE(2969), - [sym_variable_declaration] = STATE(7851), + [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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5906), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6001), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if] = STATE(2969), - [sym_preproc_else] = STATE(7647), - [sym_preproc_elif] = STATE(7647), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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), @@ -376845,8 +376928,8 @@ 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(2234), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2314), + [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), @@ -376886,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), @@ -376923,57 +377006,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [1930] = { - [sym_using_directive] = STATE(2969), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2969), - [sym_class_declaration] = STATE(2969), - [sym__class_declaration_initializer] = STATE(8110), - [sym_struct_declaration] = STATE(2969), - [sym__struct_declaration_initializer] = STATE(7527), - [sym_enum_declaration] = STATE(2969), - [sym_interface_declaration] = STATE(2969), - [sym__interface_declaration_initializer] = STATE(7528), - [sym_delegate_declaration] = STATE(2969), - [sym__delegate_declaration_initializer] = STATE(6993), - [sym_record_declaration] = STATE(2969), - [sym__record_declaration_initializer] = STATE(7277), - [sym_modifier] = STATE(4309), - [sym_operator_declaration] = STATE(2969), - [sym_conversion_operator_declaration] = STATE(2969), - [sym_declaration] = STATE(2990), - [sym_field_declaration] = STATE(2969), - [sym_constructor_declaration] = STATE(2969), + [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(2969), - [sym_method_declaration] = STATE(2969), - [sym_event_declaration] = STATE(2969), - [sym_event_field_declaration] = STATE(2969), - [sym_indexer_declaration] = STATE(2969), - [sym_property_declaration] = STATE(2969), - [sym_variable_declaration] = STATE(7851), + [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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5906), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6001), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if] = STATE(2969), - [sym_preproc_else] = STATE(7870), - [sym_preproc_elif] = STATE(7870), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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), @@ -376983,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(2234), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2314), + [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), @@ -377024,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), @@ -377061,55 +377144,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [1931] = { - [sym_using_directive] = STATE(2969), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2969), - [sym_class_declaration] = STATE(2969), - [sym__class_declaration_initializer] = STATE(8110), - [sym_struct_declaration] = STATE(2969), - [sym__struct_declaration_initializer] = STATE(7527), - [sym_enum_declaration] = STATE(2969), - [sym_interface_declaration] = STATE(2969), - [sym__interface_declaration_initializer] = STATE(7528), - [sym_delegate_declaration] = STATE(2969), - [sym__delegate_declaration_initializer] = STATE(6993), - [sym_record_declaration] = STATE(2969), - [sym__record_declaration_initializer] = STATE(7277), - [sym_modifier] = STATE(4309), - [sym_operator_declaration] = STATE(2969), - [sym_conversion_operator_declaration] = STATE(2969), - [sym_declaration] = STATE(2990), - [sym_field_declaration] = STATE(2969), - [sym_constructor_declaration] = STATE(2969), + [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(2969), - [sym_method_declaration] = STATE(2969), - [sym_event_declaration] = STATE(2969), - [sym_event_field_declaration] = STATE(2969), - [sym_indexer_declaration] = STATE(2969), - [sym_property_declaration] = STATE(2969), - [sym_variable_declaration] = STATE(7851), + [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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5906), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6001), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if] = STATE(2969), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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), @@ -377119,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(2234), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2314), + [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), @@ -377161,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), @@ -377198,8 +377281,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [1932] = { - [sym_catch_clause] = STATE(1943), - [sym_finally_clause] = STATE(1954), + [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), @@ -377251,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), @@ -377288,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), @@ -377333,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(1943), - [sym_finally_clause] = STATE(1963), + [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), @@ -377344,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(1938), + [aux_sym_try_statement_repeat1] = STATE(1935), [sym__identifier_token] = ACTIONS(3348), [anon_sym_extern] = ACTIONS(3348), [anon_sym_alias] = ACTIONS(3348), @@ -377386,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), @@ -377423,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), @@ -377468,55 +377551,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(3350), }, [1934] = { - [sym_using_directive] = STATE(2969), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2969), - [sym_class_declaration] = STATE(2969), - [sym__class_declaration_initializer] = STATE(8110), - [sym_struct_declaration] = STATE(2969), - [sym__struct_declaration_initializer] = STATE(7527), - [sym_enum_declaration] = STATE(2969), - [sym_interface_declaration] = STATE(2969), - [sym__interface_declaration_initializer] = STATE(7528), - [sym_delegate_declaration] = STATE(2969), - [sym__delegate_declaration_initializer] = STATE(6993), - [sym_record_declaration] = STATE(2969), - [sym__record_declaration_initializer] = STATE(7277), - [sym_modifier] = STATE(4309), - [sym_operator_declaration] = STATE(2969), - [sym_conversion_operator_declaration] = STATE(2969), - [sym_declaration] = STATE(2990), - [sym_field_declaration] = STATE(2969), - [sym_constructor_declaration] = STATE(2969), + [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(2969), - [sym_method_declaration] = STATE(2969), - [sym_event_declaration] = STATE(2969), - [sym_event_field_declaration] = STATE(2969), - [sym_indexer_declaration] = STATE(2969), - [sym_property_declaration] = STATE(2969), - [sym_variable_declaration] = STATE(7851), + [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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5906), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6001), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if] = STATE(2969), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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), @@ -377526,9 +377609,9 @@ 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__class_declaration_initializer_repeat1] = STATE(2234), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2314), - [aux_sym_declaration_list_repeat1] = STATE(1939), + [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), @@ -377544,6 +377627,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(3352), [anon_sym_interface] = ACTIONS(59), [anon_sym_delegate] = ACTIONS(3229), [anon_sym_record] = ACTIONS(63), @@ -377567,9 +377651,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), @@ -377589,7 +377673,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(3352), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -377602,55 +377685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [1935] = { - [sym_using_directive] = STATE(2969), - [sym_attribute_list] = STATE(3449), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2969), - [sym_class_declaration] = STATE(2969), - [sym__class_declaration_initializer] = STATE(8110), - [sym_struct_declaration] = STATE(2969), - [sym__struct_declaration_initializer] = STATE(7527), - [sym_enum_declaration] = STATE(2969), - [sym_interface_declaration] = STATE(2969), - [sym__interface_declaration_initializer] = STATE(7528), - [sym_delegate_declaration] = STATE(2969), - [sym__delegate_declaration_initializer] = STATE(6993), - [sym_record_declaration] = STATE(2969), - [sym__record_declaration_initializer] = STATE(7277), - [sym_modifier] = STATE(4309), - [sym_operator_declaration] = STATE(2969), - [sym_conversion_operator_declaration] = STATE(2969), - [sym_declaration] = STATE(2990), - [sym_field_declaration] = STATE(2969), - [sym_constructor_declaration] = STATE(2969), - [sym__constructor_declaration_initializer] = STATE(6742), - [sym_destructor_declaration] = STATE(2969), - [sym_method_declaration] = STATE(2969), - [sym_event_declaration] = STATE(2969), - [sym_event_field_declaration] = STATE(2969), - [sym_indexer_declaration] = STATE(2969), - [sym_property_declaration] = STATE(2969), - [sym_variable_declaration] = STATE(7851), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5906), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6001), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if] = STATE(2969), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [sym_catch_clause] = STATE(1944), [sym_preproc_region] = STATE(1935), [sym_preproc_endregion] = STATE(1935), [sym_preproc_line] = STATE(1935), @@ -377660,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(2234), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2314), - [aux_sym_declaration_list_repeat1] = STATE(1939), + [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), @@ -377701,9 +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_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), @@ -377723,7 +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(3352), + [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), @@ -377735,68 +377952,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [1936] = { - [sym_using_directive] = STATE(2969), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2969), - [sym_class_declaration] = STATE(2969), - [sym__class_declaration_initializer] = STATE(8110), - [sym_struct_declaration] = STATE(2969), - [sym__struct_declaration_initializer] = STATE(7527), - [sym_enum_declaration] = STATE(2969), - [sym_interface_declaration] = STATE(2969), - [sym__interface_declaration_initializer] = STATE(7528), - [sym_delegate_declaration] = STATE(2969), - [sym__delegate_declaration_initializer] = STATE(6993), - [sym_record_declaration] = STATE(2969), - [sym__record_declaration_initializer] = STATE(7277), - [sym_modifier] = STATE(4309), - [sym_operator_declaration] = STATE(2969), - [sym_conversion_operator_declaration] = STATE(2969), - [sym_declaration] = STATE(2990), - [sym_field_declaration] = STATE(2969), - [sym_constructor_declaration] = STATE(2969), + [1937] = { + [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(2969), - [sym_method_declaration] = STATE(2969), - [sym_event_declaration] = STATE(2969), - [sym_event_field_declaration] = STATE(2969), - [sym_indexer_declaration] = STATE(2969), - [sym_property_declaration] = STATE(2969), - [sym_variable_declaration] = STATE(7851), + [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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5906), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6001), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if] = STATE(2969), - [sym_preproc_if_in_attribute_list] = STATE(3597), - [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(2234), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2314), - [aux_sym_declaration_list_repeat1] = STATE(1931), + [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), + [sym_preproc_pragma] = STATE(1937), + [sym_preproc_nullable] = STATE(1937), + [sym_preproc_error] = STATE(1937), + [sym_preproc_warning] = STATE(1937), + [sym_preproc_define] = STATE(1937), + [sym_preproc_undef] = STATE(1937), + [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), @@ -377812,7 +378029,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(3354), [anon_sym_interface] = ACTIONS(59), [anon_sym_delegate] = ACTIONS(3229), [anon_sym_record] = ACTIONS(63), @@ -377836,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), @@ -377858,6 +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(3363), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -377869,68 +378086,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [1937] = { - [sym_using_directive] = STATE(2969), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2969), - [sym_class_declaration] = STATE(2969), - [sym__class_declaration_initializer] = STATE(8110), - [sym_struct_declaration] = STATE(2969), - [sym__struct_declaration_initializer] = STATE(7527), - [sym_enum_declaration] = STATE(2969), - [sym_interface_declaration] = STATE(2969), - [sym__interface_declaration_initializer] = STATE(7528), - [sym_delegate_declaration] = STATE(2969), - [sym__delegate_declaration_initializer] = STATE(6993), - [sym_record_declaration] = STATE(2969), - [sym__record_declaration_initializer] = STATE(7277), - [sym_modifier] = STATE(4309), - [sym_operator_declaration] = STATE(2969), - [sym_conversion_operator_declaration] = STATE(2969), - [sym_declaration] = STATE(2990), - [sym_field_declaration] = STATE(2969), - [sym_constructor_declaration] = STATE(2969), + [1938] = { + [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(2969), - [sym_method_declaration] = STATE(2969), - [sym_event_declaration] = STATE(2969), - [sym_event_field_declaration] = STATE(2969), - [sym_indexer_declaration] = STATE(2969), - [sym_property_declaration] = STATE(2969), - [sym_variable_declaration] = STATE(7851), + [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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5906), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6001), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if] = STATE(2969), - [sym_preproc_if_in_attribute_list] = STATE(3597), - [sym_preproc_region] = STATE(1937), - [sym_preproc_endregion] = STATE(1937), - [sym_preproc_line] = STATE(1937), - [sym_preproc_pragma] = STATE(1937), - [sym_preproc_nullable] = STATE(1937), - [sym_preproc_error] = STATE(1937), - [sym_preproc_warning] = STATE(1937), - [sym_preproc_define] = STATE(1937), - [sym_preproc_undef] = STATE(1937), - [aux_sym__class_declaration_initializer_repeat1] = STATE(2234), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2314), - [aux_sym_declaration_list_repeat1] = STATE(1936), + [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), + [sym_preproc_pragma] = STATE(1938), + [sym_preproc_nullable] = STATE(1938), + [sym_preproc_error] = STATE(1938), + [sym_preproc_warning] = STATE(1938), + [sym_preproc_define] = STATE(1938), + [sym_preproc_undef] = STATE(1938), + [aux_sym__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), @@ -377946,7 +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(3356), + [anon_sym_RBRACE] = ACTIONS(3365), [anon_sym_interface] = ACTIONS(59), [anon_sym_delegate] = ACTIONS(3229), [anon_sym_record] = ACTIONS(63), @@ -377970,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), @@ -378003,190 +378220,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [1938] = { - [sym_catch_clause] = STATE(1943), - [sym_preproc_region] = STATE(1938), - [sym_preproc_endregion] = STATE(1938), - [sym_preproc_line] = STATE(1938), - [sym_preproc_pragma] = STATE(1938), - [sym_preproc_nullable] = STATE(1938), - [sym_preproc_error] = STATE(1938), - [sym_preproc_warning] = STATE(1938), - [sym_preproc_define] = STATE(1938), - [sym_preproc_undef] = STATE(1938), - [aux_sym_try_statement_repeat1] = STATE(1938), - [sym__identifier_token] = ACTIONS(3358), - [anon_sym_extern] = ACTIONS(3358), - [anon_sym_alias] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym_global] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_unsafe] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_ref] = ACTIONS(3358), - [anon_sym_struct] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_interface] = ACTIONS(3358), - [anon_sym_delegate] = ACTIONS(3358), - [anon_sym_record] = ACTIONS(3358), - [anon_sym_public] = ACTIONS(3358), - [anon_sym_private] = ACTIONS(3358), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_abstract] = ACTIONS(3358), - [anon_sym_async] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_file] = ACTIONS(3358), - [anon_sym_fixed] = ACTIONS(3358), - [anon_sym_internal] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_override] = ACTIONS(3358), - [anon_sym_partial] = ACTIONS(3358), - [anon_sym_protected] = ACTIONS(3358), - [anon_sym_required] = ACTIONS(3358), - [anon_sym_sealed] = ACTIONS(3358), - [anon_sym_virtual] = ACTIONS(3358), - [anon_sym_volatile] = ACTIONS(3358), - [anon_sym_where] = ACTIONS(3358), - [anon_sym_notnull] = ACTIONS(3358), - [anon_sym_unmanaged] = ACTIONS(3358), - [anon_sym_checked] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3360), - [anon_sym_DASH_DASH] = ACTIONS(3360), - [anon_sym_true] = ACTIONS(3358), - [anon_sym_false] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_this] = ACTIONS(3358), - [anon_sym_scoped] = ACTIONS(3358), - [anon_sym_base] = ACTIONS(3358), - [anon_sym_var] = ACTIONS(3358), - [sym_predefined_type] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_unchecked] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_lock] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_catch] = ACTIONS(3362), - [anon_sym_when] = ACTIONS(3358), - [anon_sym_finally] = ACTIONS(3358), - [anon_sym_await] = ACTIONS(3358), - [anon_sym_foreach] = ACTIONS(3358), - [anon_sym_goto] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_else] = ACTIONS(3358), - [anon_sym_DOT_DOT] = ACTIONS(3360), - [anon_sym_from] = ACTIONS(3358), - [anon_sym_into] = ACTIONS(3358), - [anon_sym_join] = ACTIONS(3358), - [anon_sym_on] = ACTIONS(3358), - [anon_sym_equals] = ACTIONS(3358), - [anon_sym_let] = ACTIONS(3358), - [anon_sym_orderby] = ACTIONS(3358), - [anon_sym_ascending] = ACTIONS(3358), - [anon_sym_descending] = ACTIONS(3358), - [anon_sym_group] = ACTIONS(3358), - [anon_sym_by] = ACTIONS(3358), - [anon_sym_select] = ACTIONS(3358), - [anon_sym_stackalloc] = ACTIONS(3358), - [anon_sym_sizeof] = ACTIONS(3358), - [anon_sym_typeof] = ACTIONS(3358), - [anon_sym___makeref] = ACTIONS(3358), - [anon_sym___reftype] = ACTIONS(3358), - [anon_sym___refvalue] = ACTIONS(3358), - [sym_null_literal] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(3360), - [sym_integer_literal] = ACTIONS(3358), - [sym_real_literal] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [sym_verbatim_string_literal] = ACTIONS(3360), - [sym_grit_metavariable] = ACTIONS(3360), - [aux_sym_preproc_if_token1] = ACTIONS(3360), - [aux_sym_preproc_if_token3] = ACTIONS(3360), - [aux_sym_preproc_else_token1] = ACTIONS(3360), - [aux_sym_preproc_elif_token1] = ACTIONS(3360), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3360), - [sym_interpolation_verbatim_start] = ACTIONS(3360), - [sym_interpolation_raw_start] = ACTIONS(3360), - [sym_raw_string_start] = ACTIONS(3360), - }, [1939] = { - [sym_using_directive] = STATE(2969), - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_namespace_declaration] = STATE(2969), - [sym_class_declaration] = STATE(2969), - [sym__class_declaration_initializer] = STATE(8110), - [sym_struct_declaration] = STATE(2969), - [sym__struct_declaration_initializer] = STATE(7527), - [sym_enum_declaration] = STATE(2969), - [sym_interface_declaration] = STATE(2969), - [sym__interface_declaration_initializer] = STATE(7528), - [sym_delegate_declaration] = STATE(2969), - [sym__delegate_declaration_initializer] = STATE(6993), - [sym_record_declaration] = STATE(2969), - [sym__record_declaration_initializer] = STATE(7277), - [sym_modifier] = STATE(4309), - [sym_operator_declaration] = STATE(2969), - [sym_conversion_operator_declaration] = STATE(2969), - [sym_declaration] = STATE(2990), - [sym_field_declaration] = STATE(2969), - [sym_constructor_declaration] = STATE(2969), + [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(2969), - [sym_method_declaration] = STATE(2969), - [sym_event_declaration] = STATE(2969), - [sym_event_field_declaration] = STATE(2969), - [sym_indexer_declaration] = STATE(2969), - [sym_property_declaration] = STATE(2969), - [sym_variable_declaration] = STATE(7851), + [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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5906), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6001), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if] = STATE(2969), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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), @@ -378196,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(2234), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2314), - [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), @@ -378237,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), @@ -378259,7 +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(3365), + [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), @@ -378272,8 +378355,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [1940] = { - [sym_catch_clause] = STATE(1968), - [sym_finally_clause] = STATE(2033), + [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), @@ -378326,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), @@ -378363,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), @@ -378405,8 +378488,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_start] = ACTIONS(3342), }, [1941] = { - [sym_catch_clause] = STATE(1968), - [sym_finally_clause] = STATE(2043), + [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), @@ -378416,7 +378499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1941), [sym_preproc_define] = STATE(1941), [sym_preproc_undef] = STATE(1941), - [aux_sym_try_statement_repeat1] = STATE(1947), + [aux_sym_try_statement_repeat1] = STATE(1942), [ts_builtin_sym_end] = ACTIONS(3350), [sym__identifier_token] = ACTIONS(3348), [anon_sym_extern] = ACTIONS(3348), @@ -378459,21 +378542,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), @@ -378496,6 +378570,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), @@ -378538,6 +378621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -378547,127 +378631,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1942), [sym_preproc_define] = STATE(1942), [sym_preproc_undef] = STATE(1942), - [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), + [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(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), + [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), @@ -378679,127 +378762,127 @@ 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(3375), - [anon_sym_extern] = ACTIONS(3375), - [anon_sym_alias] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_global] = ACTIONS(3375), - [anon_sym_using] = ACTIONS(3375), - [anon_sym_unsafe] = ACTIONS(3375), - [anon_sym_static] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_namespace] = ACTIONS(3375), - [anon_sym_class] = ACTIONS(3375), - [anon_sym_ref] = ACTIONS(3375), - [anon_sym_struct] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_delegate] = ACTIONS(3375), - [anon_sym_record] = ACTIONS(3375), - [anon_sym_public] = ACTIONS(3375), - [anon_sym_private] = ACTIONS(3375), - [anon_sym_readonly] = ACTIONS(3375), - [anon_sym_abstract] = ACTIONS(3375), - [anon_sym_async] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_file] = ACTIONS(3375), - [anon_sym_fixed] = ACTIONS(3375), - [anon_sym_internal] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3375), - [anon_sym_partial] = ACTIONS(3375), - [anon_sym_protected] = ACTIONS(3375), - [anon_sym_required] = ACTIONS(3375), - [anon_sym_sealed] = ACTIONS(3375), - [anon_sym_virtual] = ACTIONS(3375), - [anon_sym_volatile] = ACTIONS(3375), - [anon_sym_where] = ACTIONS(3375), - [anon_sym_notnull] = ACTIONS(3375), - [anon_sym_unmanaged] = ACTIONS(3375), - [anon_sym_checked] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(3377), - [anon_sym_CARET] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3377), - [anon_sym_this] = ACTIONS(3375), - [anon_sym_scoped] = ACTIONS(3375), - [anon_sym_base] = ACTIONS(3375), - [anon_sym_var] = ACTIONS(3375), - [sym_predefined_type] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_unchecked] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_lock] = ACTIONS(3375), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_switch] = ACTIONS(3375), - [anon_sym_default] = ACTIONS(3375), - [anon_sym_throw] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_catch] = ACTIONS(3375), - [anon_sym_when] = ACTIONS(3375), - [anon_sym_finally] = ACTIONS(3375), - [anon_sym_await] = ACTIONS(3375), - [anon_sym_foreach] = ACTIONS(3375), - [anon_sym_goto] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_else] = ACTIONS(3375), - [anon_sym_DOT_DOT] = ACTIONS(3377), - [anon_sym_from] = ACTIONS(3375), - [anon_sym_into] = ACTIONS(3375), - [anon_sym_join] = ACTIONS(3375), - [anon_sym_on] = ACTIONS(3375), - [anon_sym_equals] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_orderby] = ACTIONS(3375), - [anon_sym_ascending] = ACTIONS(3375), - [anon_sym_descending] = ACTIONS(3375), - [anon_sym_group] = ACTIONS(3375), - [anon_sym_by] = ACTIONS(3375), - [anon_sym_select] = ACTIONS(3375), - [anon_sym_stackalloc] = ACTIONS(3375), - [anon_sym_sizeof] = ACTIONS(3375), - [anon_sym_typeof] = ACTIONS(3375), - [anon_sym___makeref] = ACTIONS(3375), - [anon_sym___reftype] = ACTIONS(3375), - [anon_sym___refvalue] = ACTIONS(3375), - [sym_null_literal] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3377), - [sym_integer_literal] = ACTIONS(3375), - [sym_real_literal] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [sym_verbatim_string_literal] = ACTIONS(3377), - [sym_grit_metavariable] = ACTIONS(3377), - [aux_sym_preproc_if_token1] = ACTIONS(3377), - [aux_sym_preproc_if_token3] = ACTIONS(3377), - [aux_sym_preproc_else_token1] = ACTIONS(3377), - [aux_sym_preproc_elif_token1] = ACTIONS(3377), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3377), - [sym_interpolation_verbatim_start] = ACTIONS(3377), - [sym_interpolation_raw_start] = ACTIONS(3377), - [sym_raw_string_start] = ACTIONS(3377), + [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_preproc_region] = STATE(1944), @@ -378811,127 +378894,127 @@ 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), - [sym__identifier_token] = ACTIONS(3379), - [anon_sym_extern] = ACTIONS(3379), - [anon_sym_alias] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_global] = ACTIONS(3379), - [anon_sym_using] = ACTIONS(3379), - [anon_sym_unsafe] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_namespace] = ACTIONS(3379), - [anon_sym_class] = ACTIONS(3379), - [anon_sym_ref] = ACTIONS(3379), - [anon_sym_struct] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_delegate] = ACTIONS(3379), - [anon_sym_record] = ACTIONS(3379), - [anon_sym_public] = ACTIONS(3379), - [anon_sym_private] = ACTIONS(3379), - [anon_sym_readonly] = ACTIONS(3379), - [anon_sym_abstract] = ACTIONS(3379), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_file] = ACTIONS(3379), - [anon_sym_fixed] = ACTIONS(3379), - [anon_sym_internal] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3379), - [anon_sym_partial] = ACTIONS(3379), - [anon_sym_protected] = ACTIONS(3379), - [anon_sym_required] = ACTIONS(3379), - [anon_sym_sealed] = ACTIONS(3379), - [anon_sym_virtual] = ACTIONS(3379), - [anon_sym_volatile] = ACTIONS(3379), - [anon_sym_where] = ACTIONS(3379), - [anon_sym_notnull] = ACTIONS(3379), - [anon_sym_unmanaged] = ACTIONS(3379), - [anon_sym_checked] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3381), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_CARET] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3381), - [anon_sym_this] = ACTIONS(3379), - [anon_sym_scoped] = ACTIONS(3379), - [anon_sym_base] = ACTIONS(3379), - [anon_sym_var] = ACTIONS(3379), - [sym_predefined_type] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_unchecked] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_lock] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_switch] = ACTIONS(3379), - [anon_sym_default] = ACTIONS(3379), - [anon_sym_throw] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_catch] = ACTIONS(3379), - [anon_sym_when] = ACTIONS(3379), - [anon_sym_finally] = ACTIONS(3379), - [anon_sym_await] = ACTIONS(3379), - [anon_sym_foreach] = ACTIONS(3379), - [anon_sym_goto] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_else] = ACTIONS(3379), - [anon_sym_DOT_DOT] = ACTIONS(3381), - [anon_sym_from] = ACTIONS(3379), - [anon_sym_into] = ACTIONS(3379), - [anon_sym_join] = ACTIONS(3379), - [anon_sym_on] = ACTIONS(3379), - [anon_sym_equals] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_orderby] = ACTIONS(3379), - [anon_sym_ascending] = ACTIONS(3379), - [anon_sym_descending] = ACTIONS(3379), - [anon_sym_group] = ACTIONS(3379), - [anon_sym_by] = ACTIONS(3379), - [anon_sym_select] = ACTIONS(3379), - [anon_sym_stackalloc] = ACTIONS(3379), - [anon_sym_sizeof] = ACTIONS(3379), - [anon_sym_typeof] = ACTIONS(3379), - [anon_sym___makeref] = ACTIONS(3379), - [anon_sym___reftype] = ACTIONS(3379), - [anon_sym___refvalue] = ACTIONS(3379), - [sym_null_literal] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3381), - [sym_integer_literal] = ACTIONS(3379), - [sym_real_literal] = ACTIONS(3381), - [anon_sym_DQUOTE] = ACTIONS(3381), - [sym_verbatim_string_literal] = ACTIONS(3381), - [sym_grit_metavariable] = ACTIONS(3381), - [aux_sym_preproc_if_token1] = ACTIONS(3381), - [aux_sym_preproc_if_token3] = ACTIONS(3381), - [aux_sym_preproc_else_token1] = ACTIONS(3381), - [aux_sym_preproc_elif_token1] = ACTIONS(3381), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3381), - [sym_interpolation_verbatim_start] = ACTIONS(3381), - [sym_interpolation_raw_start] = ACTIONS(3381), - [sym_raw_string_start] = ACTIONS(3381), + [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_if_token3] = ACTIONS(3380), + [aux_sym_preproc_else_token1] = ACTIONS(3380), + [aux_sym_preproc_elif_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), }, [1945] = { [sym_preproc_region] = STATE(1945), @@ -378943,127 +379026,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1945), [sym_preproc_define] = STATE(1945), [sym_preproc_undef] = STATE(1945), - [sym__identifier_token] = ACTIONS(3383), - [anon_sym_extern] = ACTIONS(3383), - [anon_sym_alias] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_global] = ACTIONS(3383), - [anon_sym_using] = ACTIONS(3383), - [anon_sym_unsafe] = ACTIONS(3383), - [anon_sym_static] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_namespace] = ACTIONS(3383), - [anon_sym_class] = ACTIONS(3383), - [anon_sym_ref] = ACTIONS(3383), - [anon_sym_struct] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_interface] = ACTIONS(3383), - [anon_sym_delegate] = ACTIONS(3383), - [anon_sym_record] = ACTIONS(3383), - [anon_sym_public] = ACTIONS(3383), - [anon_sym_private] = ACTIONS(3383), - [anon_sym_readonly] = ACTIONS(3383), - [anon_sym_abstract] = ACTIONS(3383), - [anon_sym_async] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_file] = ACTIONS(3383), - [anon_sym_fixed] = ACTIONS(3383), - [anon_sym_internal] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_override] = ACTIONS(3383), - [anon_sym_partial] = ACTIONS(3383), - [anon_sym_protected] = ACTIONS(3383), - [anon_sym_required] = ACTIONS(3383), - [anon_sym_sealed] = ACTIONS(3383), - [anon_sym_virtual] = ACTIONS(3383), - [anon_sym_volatile] = ACTIONS(3383), - [anon_sym_where] = ACTIONS(3383), - [anon_sym_notnull] = ACTIONS(3383), - [anon_sym_unmanaged] = ACTIONS(3383), - [anon_sym_checked] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_PLUS_PLUS] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_STAR] = ACTIONS(3385), - [anon_sym_CARET] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3385), - [anon_sym_this] = ACTIONS(3383), - [anon_sym_scoped] = ACTIONS(3383), - [anon_sym_base] = ACTIONS(3383), - [anon_sym_var] = ACTIONS(3383), - [sym_predefined_type] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_unchecked] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_lock] = ACTIONS(3383), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_switch] = ACTIONS(3383), - [anon_sym_default] = ACTIONS(3383), - [anon_sym_throw] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_catch] = ACTIONS(3383), - [anon_sym_when] = ACTIONS(3383), - [anon_sym_finally] = ACTIONS(3383), - [anon_sym_await] = ACTIONS(3383), - [anon_sym_foreach] = ACTIONS(3383), - [anon_sym_goto] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_else] = ACTIONS(3383), - [anon_sym_DOT_DOT] = ACTIONS(3385), - [anon_sym_from] = ACTIONS(3383), - [anon_sym_into] = ACTIONS(3383), - [anon_sym_join] = ACTIONS(3383), - [anon_sym_on] = ACTIONS(3383), - [anon_sym_equals] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_orderby] = ACTIONS(3383), - [anon_sym_ascending] = ACTIONS(3383), - [anon_sym_descending] = ACTIONS(3383), - [anon_sym_group] = ACTIONS(3383), - [anon_sym_by] = ACTIONS(3383), - [anon_sym_select] = ACTIONS(3383), - [anon_sym_stackalloc] = ACTIONS(3383), - [anon_sym_sizeof] = ACTIONS(3383), - [anon_sym_typeof] = ACTIONS(3383), - [anon_sym___makeref] = ACTIONS(3383), - [anon_sym___reftype] = ACTIONS(3383), - [anon_sym___refvalue] = ACTIONS(3383), - [sym_null_literal] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3385), - [sym_integer_literal] = ACTIONS(3383), - [sym_real_literal] = ACTIONS(3385), - [anon_sym_DQUOTE] = ACTIONS(3385), - [sym_verbatim_string_literal] = ACTIONS(3385), - [sym_grit_metavariable] = ACTIONS(3385), - [aux_sym_preproc_if_token1] = ACTIONS(3385), - [aux_sym_preproc_if_token3] = ACTIONS(3385), - [aux_sym_preproc_else_token1] = ACTIONS(3385), - [aux_sym_preproc_elif_token1] = ACTIONS(3385), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3385), - [sym_interpolation_verbatim_start] = ACTIONS(3385), - [sym_interpolation_raw_start] = ACTIONS(3385), - [sym_raw_string_start] = ACTIONS(3385), + [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_if_token3] = ACTIONS(3384), + [aux_sym_preproc_else_token1] = ACTIONS(3384), + [aux_sym_preproc_elif_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), }, [1946] = { [sym_preproc_region] = STATE(1946), @@ -379075,113 +379158,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1946), [sym_preproc_define] = STATE(1946), [sym_preproc_undef] = STATE(1946), - [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), + [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), @@ -379192,13 +379275,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(3201), - [sym_interpolation_verbatim_start] = ACTIONS(3201), - [sym_interpolation_raw_start] = ACTIONS(3201), - [sym_raw_string_start] = ACTIONS(3201), + [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_catch_clause] = STATE(1968), [sym_preproc_region] = STATE(1947), [sym_preproc_endregion] = STATE(1947), [sym_preproc_line] = STATE(1947), @@ -379208,126 +379290,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1947), [sym_preproc_define] = STATE(1947), [sym_preproc_undef] = STATE(1947), - [aux_sym_try_statement_repeat1] = STATE(1947), - [ts_builtin_sym_end] = ACTIONS(3360), - [sym__identifier_token] = ACTIONS(3358), - [anon_sym_extern] = ACTIONS(3358), - [anon_sym_alias] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym_global] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_unsafe] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_ref] = ACTIONS(3358), - [anon_sym_struct] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_interface] = ACTIONS(3358), - [anon_sym_delegate] = ACTIONS(3358), - [anon_sym_record] = ACTIONS(3358), - [anon_sym_public] = ACTIONS(3358), - [anon_sym_private] = ACTIONS(3358), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_abstract] = ACTIONS(3358), - [anon_sym_async] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_file] = ACTIONS(3358), - [anon_sym_fixed] = ACTIONS(3358), - [anon_sym_internal] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_override] = ACTIONS(3358), - [anon_sym_partial] = ACTIONS(3358), - [anon_sym_protected] = ACTIONS(3358), - [anon_sym_required] = ACTIONS(3358), - [anon_sym_sealed] = ACTIONS(3358), - [anon_sym_virtual] = ACTIONS(3358), - [anon_sym_volatile] = ACTIONS(3358), - [anon_sym_where] = ACTIONS(3358), - [anon_sym_notnull] = ACTIONS(3358), - [anon_sym_unmanaged] = ACTIONS(3358), - [anon_sym_checked] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3360), - [anon_sym_DASH_DASH] = ACTIONS(3360), - [anon_sym_true] = ACTIONS(3358), - [anon_sym_false] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_this] = ACTIONS(3358), - [anon_sym_scoped] = ACTIONS(3358), - [anon_sym_base] = ACTIONS(3358), - [anon_sym_var] = ACTIONS(3358), - [sym_predefined_type] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_unchecked] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_lock] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_catch] = ACTIONS(3387), - [anon_sym_when] = ACTIONS(3358), - [anon_sym_finally] = ACTIONS(3358), - [anon_sym_await] = ACTIONS(3358), - [anon_sym_foreach] = ACTIONS(3358), - [anon_sym_goto] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_else] = ACTIONS(3358), - [anon_sym_DOT_DOT] = ACTIONS(3360), - [anon_sym_from] = ACTIONS(3358), - [anon_sym_into] = ACTIONS(3358), - [anon_sym_join] = ACTIONS(3358), - [anon_sym_on] = ACTIONS(3358), - [anon_sym_equals] = ACTIONS(3358), - [anon_sym_let] = ACTIONS(3358), - [anon_sym_orderby] = ACTIONS(3358), - [anon_sym_ascending] = ACTIONS(3358), - [anon_sym_descending] = ACTIONS(3358), - [anon_sym_group] = ACTIONS(3358), - [anon_sym_by] = ACTIONS(3358), - [anon_sym_select] = ACTIONS(3358), - [anon_sym_stackalloc] = ACTIONS(3358), - [anon_sym_sizeof] = ACTIONS(3358), - [anon_sym_typeof] = ACTIONS(3358), - [anon_sym___makeref] = ACTIONS(3358), - [anon_sym___reftype] = ACTIONS(3358), - [anon_sym___refvalue] = ACTIONS(3358), - [sym_null_literal] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(3360), - [sym_integer_literal] = ACTIONS(3358), - [sym_real_literal] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [sym_verbatim_string_literal] = ACTIONS(3360), - [sym_grit_metavariable] = ACTIONS(3360), - [aux_sym_preproc_if_token1] = ACTIONS(3360), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3360), - [sym_interpolation_verbatim_start] = ACTIONS(3360), - [sym_interpolation_raw_start] = ACTIONS(3360), - [sym_raw_string_start] = ACTIONS(3360), + [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_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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1948] = { [sym_preproc_region] = STATE(1948), @@ -379380,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), @@ -379415,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), @@ -379510,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), @@ -379545,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), @@ -379640,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), @@ -379673,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), @@ -379729,125 +379812,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1951), [sym_preproc_define] = STATE(1951), [sym_preproc_undef] = STATE(1951), - [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(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), @@ -379859,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(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(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), @@ -379989,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(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(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), @@ -380119,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(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), + [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), @@ -380249,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(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(3418), - [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), + [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), @@ -380379,125 +380462,125 @@ 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(3422), - [anon_sym_extern] = ACTIONS(3422), - [anon_sym_alias] = ACTIONS(3422), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_global] = ACTIONS(3422), - [anon_sym_using] = ACTIONS(3422), - [anon_sym_unsafe] = ACTIONS(3422), - [anon_sym_static] = ACTIONS(3422), - [anon_sym_LBRACK] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(3424), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_namespace] = ACTIONS(3422), - [anon_sym_class] = ACTIONS(3422), - [anon_sym_ref] = ACTIONS(3422), - [anon_sym_struct] = ACTIONS(3422), - [anon_sym_enum] = ACTIONS(3422), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_interface] = ACTIONS(3422), - [anon_sym_delegate] = ACTIONS(3422), - [anon_sym_record] = ACTIONS(3422), - [anon_sym_public] = ACTIONS(3422), - [anon_sym_private] = ACTIONS(3422), - [anon_sym_readonly] = ACTIONS(3422), - [anon_sym_abstract] = ACTIONS(3422), - [anon_sym_async] = ACTIONS(3422), - [anon_sym_const] = ACTIONS(3422), - [anon_sym_file] = ACTIONS(3422), - [anon_sym_fixed] = ACTIONS(3422), - [anon_sym_internal] = ACTIONS(3422), - [anon_sym_new] = ACTIONS(3422), - [anon_sym_override] = ACTIONS(3422), - [anon_sym_partial] = ACTIONS(3422), - [anon_sym_protected] = ACTIONS(3422), - [anon_sym_required] = ACTIONS(3422), - [anon_sym_sealed] = ACTIONS(3422), - [anon_sym_virtual] = ACTIONS(3422), - [anon_sym_volatile] = ACTIONS(3422), - [anon_sym_where] = ACTIONS(3422), - [anon_sym_notnull] = ACTIONS(3422), - [anon_sym_unmanaged] = ACTIONS(3422), - [anon_sym_checked] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3424), - [anon_sym_DASH_DASH] = ACTIONS(3424), - [anon_sym_true] = ACTIONS(3422), - [anon_sym_false] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_STAR] = ACTIONS(3424), - [anon_sym_CARET] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - [anon_sym_this] = ACTIONS(3422), - [anon_sym_scoped] = ACTIONS(3422), - [anon_sym_base] = ACTIONS(3422), - [anon_sym_var] = ACTIONS(3422), - [sym_predefined_type] = ACTIONS(3422), - [anon_sym_break] = ACTIONS(3422), - [anon_sym_unchecked] = ACTIONS(3422), - [anon_sym_continue] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_lock] = ACTIONS(3422), - [anon_sym_yield] = ACTIONS(3422), - [anon_sym_switch] = ACTIONS(3422), - [anon_sym_default] = ACTIONS(3422), - [anon_sym_throw] = ACTIONS(3422), - [anon_sym_try] = ACTIONS(3422), - [anon_sym_when] = ACTIONS(3422), - [anon_sym_await] = ACTIONS(3422), - [anon_sym_foreach] = ACTIONS(3422), - [anon_sym_goto] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3422), - [anon_sym_DOT_DOT] = ACTIONS(3424), - [anon_sym_from] = ACTIONS(3422), - [anon_sym_into] = ACTIONS(3422), - [anon_sym_join] = ACTIONS(3422), - [anon_sym_on] = ACTIONS(3422), - [anon_sym_equals] = ACTIONS(3422), - [anon_sym_let] = ACTIONS(3422), - [anon_sym_orderby] = ACTIONS(3422), - [anon_sym_ascending] = ACTIONS(3422), - [anon_sym_descending] = ACTIONS(3422), - [anon_sym_group] = ACTIONS(3422), - [anon_sym_by] = ACTIONS(3422), - [anon_sym_select] = ACTIONS(3422), - [anon_sym_stackalloc] = ACTIONS(3422), - [anon_sym_sizeof] = ACTIONS(3422), - [anon_sym_typeof] = ACTIONS(3422), - [anon_sym___makeref] = ACTIONS(3422), - [anon_sym___reftype] = ACTIONS(3422), - [anon_sym___refvalue] = ACTIONS(3422), - [sym_null_literal] = ACTIONS(3422), - [anon_sym_SQUOTE] = ACTIONS(3424), - [sym_integer_literal] = ACTIONS(3422), - [sym_real_literal] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [sym_verbatim_string_literal] = ACTIONS(3424), - [sym_grit_metavariable] = ACTIONS(3424), - [aux_sym_preproc_if_token1] = ACTIONS(3424), - [aux_sym_preproc_if_token3] = ACTIONS(3424), - [aux_sym_preproc_else_token1] = ACTIONS(3424), - [aux_sym_preproc_elif_token1] = ACTIONS(3424), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3424), - [sym_interpolation_verbatim_start] = ACTIONS(3424), - [sym_interpolation_raw_start] = ACTIONS(3424), - [sym_raw_string_start] = ACTIONS(3424), + [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_if_token3] = ACTIONS(3426), + [aux_sym_preproc_else_token1] = ACTIONS(3426), + [aux_sym_preproc_elif_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), }, [1957] = { [sym_preproc_region] = STATE(1957), @@ -380509,125 +380592,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1957), [sym_preproc_define] = STATE(1957), [sym_preproc_undef] = STATE(1957), - [sym__identifier_token] = ACTIONS(3426), - [anon_sym_extern] = ACTIONS(3426), - [anon_sym_alias] = ACTIONS(3426), - [anon_sym_SEMI] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3426), - [anon_sym_using] = ACTIONS(3426), - [anon_sym_unsafe] = ACTIONS(3426), - [anon_sym_static] = ACTIONS(3426), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3426), - [anon_sym_namespace] = ACTIONS(3426), - [anon_sym_class] = ACTIONS(3426), - [anon_sym_ref] = ACTIONS(3426), - [anon_sym_struct] = ACTIONS(3426), - [anon_sym_enum] = ACTIONS(3426), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3426), - [anon_sym_delegate] = ACTIONS(3426), - [anon_sym_record] = ACTIONS(3426), - [anon_sym_public] = ACTIONS(3426), - [anon_sym_private] = ACTIONS(3426), - [anon_sym_readonly] = ACTIONS(3426), - [anon_sym_abstract] = ACTIONS(3426), - [anon_sym_async] = ACTIONS(3426), - [anon_sym_const] = ACTIONS(3426), - [anon_sym_file] = ACTIONS(3426), - [anon_sym_fixed] = ACTIONS(3426), - [anon_sym_internal] = ACTIONS(3426), - [anon_sym_new] = ACTIONS(3426), - [anon_sym_override] = ACTIONS(3426), - [anon_sym_partial] = ACTIONS(3426), - [anon_sym_protected] = ACTIONS(3426), - [anon_sym_required] = ACTIONS(3426), - [anon_sym_sealed] = ACTIONS(3426), - [anon_sym_virtual] = ACTIONS(3426), - [anon_sym_volatile] = ACTIONS(3426), - [anon_sym_where] = ACTIONS(3426), - [anon_sym_notnull] = ACTIONS(3426), - [anon_sym_unmanaged] = ACTIONS(3426), - [anon_sym_checked] = ACTIONS(3426), - [anon_sym_BANG] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3428), - [anon_sym_PLUS_PLUS] = ACTIONS(3428), - [anon_sym_DASH_DASH] = ACTIONS(3428), - [anon_sym_true] = ACTIONS(3426), - [anon_sym_false] = ACTIONS(3426), - [anon_sym_PLUS] = ACTIONS(3426), - [anon_sym_DASH] = ACTIONS(3426), - [anon_sym_STAR] = ACTIONS(3428), - [anon_sym_CARET] = ACTIONS(3428), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_this] = ACTIONS(3426), - [anon_sym_scoped] = ACTIONS(3426), - [anon_sym_base] = ACTIONS(3426), - [anon_sym_var] = ACTIONS(3426), - [sym_predefined_type] = ACTIONS(3426), - [anon_sym_break] = ACTIONS(3426), - [anon_sym_unchecked] = ACTIONS(3426), - [anon_sym_continue] = ACTIONS(3426), - [anon_sym_do] = ACTIONS(3426), - [anon_sym_while] = ACTIONS(3426), - [anon_sym_for] = ACTIONS(3426), - [anon_sym_lock] = ACTIONS(3426), - [anon_sym_yield] = ACTIONS(3426), - [anon_sym_switch] = ACTIONS(3426), - [anon_sym_default] = ACTIONS(3426), - [anon_sym_throw] = ACTIONS(3426), - [anon_sym_try] = ACTIONS(3426), - [anon_sym_when] = ACTIONS(3426), - [anon_sym_await] = ACTIONS(3426), - [anon_sym_foreach] = ACTIONS(3426), - [anon_sym_goto] = ACTIONS(3426), - [anon_sym_if] = ACTIONS(3426), - [anon_sym_else] = ACTIONS(3426), - [anon_sym_DOT_DOT] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3426), - [anon_sym_into] = ACTIONS(3426), - [anon_sym_join] = ACTIONS(3426), - [anon_sym_on] = ACTIONS(3426), - [anon_sym_equals] = ACTIONS(3426), - [anon_sym_let] = ACTIONS(3426), - [anon_sym_orderby] = ACTIONS(3426), - [anon_sym_ascending] = ACTIONS(3426), - [anon_sym_descending] = ACTIONS(3426), - [anon_sym_group] = ACTIONS(3426), - [anon_sym_by] = ACTIONS(3426), - [anon_sym_select] = ACTIONS(3426), - [anon_sym_stackalloc] = ACTIONS(3426), - [anon_sym_sizeof] = ACTIONS(3426), - [anon_sym_typeof] = ACTIONS(3426), - [anon_sym___makeref] = ACTIONS(3426), - [anon_sym___reftype] = ACTIONS(3426), - [anon_sym___refvalue] = ACTIONS(3426), - [sym_null_literal] = ACTIONS(3426), - [anon_sym_SQUOTE] = ACTIONS(3428), - [sym_integer_literal] = ACTIONS(3426), - [sym_real_literal] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [sym_verbatim_string_literal] = ACTIONS(3428), - [sym_grit_metavariable] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token3] = ACTIONS(3428), - [aux_sym_preproc_else_token1] = ACTIONS(3428), - [aux_sym_preproc_elif_token1] = ACTIONS(3428), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3428), - [sym_interpolation_verbatim_start] = ACTIONS(3428), - [sym_interpolation_raw_start] = ACTIONS(3428), - [sym_raw_string_start] = ACTIONS(3428), + [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_if_token3] = ACTIONS(3430), + [aux_sym_preproc_else_token1] = ACTIONS(3430), + [aux_sym_preproc_elif_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), }, [1958] = { [sym_preproc_region] = STATE(1958), @@ -380639,125 +380722,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1958), [sym_preproc_define] = STATE(1958), [sym_preproc_undef] = STATE(1958), - [sym__identifier_token] = ACTIONS(3430), - [anon_sym_extern] = ACTIONS(3430), - [anon_sym_alias] = ACTIONS(3430), - [anon_sym_SEMI] = ACTIONS(3432), - [anon_sym_global] = ACTIONS(3430), - [anon_sym_using] = ACTIONS(3430), - [anon_sym_unsafe] = ACTIONS(3430), - [anon_sym_static] = ACTIONS(3430), - [anon_sym_LBRACK] = ACTIONS(3432), - [anon_sym_LPAREN] = ACTIONS(3432), - [anon_sym_return] = ACTIONS(3430), - [anon_sym_namespace] = ACTIONS(3430), - [anon_sym_class] = ACTIONS(3430), - [anon_sym_ref] = ACTIONS(3430), - [anon_sym_struct] = ACTIONS(3430), - [anon_sym_enum] = ACTIONS(3430), - [anon_sym_LBRACE] = ACTIONS(3432), - [anon_sym_interface] = ACTIONS(3430), - [anon_sym_delegate] = ACTIONS(3430), - [anon_sym_record] = ACTIONS(3430), - [anon_sym_public] = ACTIONS(3430), - [anon_sym_private] = ACTIONS(3430), - [anon_sym_readonly] = ACTIONS(3430), - [anon_sym_abstract] = ACTIONS(3430), - [anon_sym_async] = ACTIONS(3430), - [anon_sym_const] = ACTIONS(3430), - [anon_sym_file] = ACTIONS(3430), - [anon_sym_fixed] = ACTIONS(3430), - [anon_sym_internal] = ACTIONS(3430), - [anon_sym_new] = ACTIONS(3430), - [anon_sym_override] = ACTIONS(3430), - [anon_sym_partial] = ACTIONS(3430), - [anon_sym_protected] = ACTIONS(3430), - [anon_sym_required] = ACTIONS(3430), - [anon_sym_sealed] = ACTIONS(3430), - [anon_sym_virtual] = ACTIONS(3430), - [anon_sym_volatile] = ACTIONS(3430), - [anon_sym_where] = ACTIONS(3430), - [anon_sym_notnull] = ACTIONS(3430), - [anon_sym_unmanaged] = ACTIONS(3430), - [anon_sym_checked] = ACTIONS(3430), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3432), - [anon_sym_PLUS_PLUS] = ACTIONS(3432), - [anon_sym_DASH_DASH] = ACTIONS(3432), - [anon_sym_true] = ACTIONS(3430), - [anon_sym_false] = ACTIONS(3430), - [anon_sym_PLUS] = ACTIONS(3430), - [anon_sym_DASH] = ACTIONS(3430), - [anon_sym_STAR] = ACTIONS(3432), - [anon_sym_CARET] = ACTIONS(3432), - [anon_sym_AMP] = ACTIONS(3432), - [anon_sym_this] = ACTIONS(3430), - [anon_sym_scoped] = ACTIONS(3430), - [anon_sym_base] = ACTIONS(3430), - [anon_sym_var] = ACTIONS(3430), - [sym_predefined_type] = ACTIONS(3430), - [anon_sym_break] = ACTIONS(3430), - [anon_sym_unchecked] = ACTIONS(3430), - [anon_sym_continue] = ACTIONS(3430), - [anon_sym_do] = ACTIONS(3430), - [anon_sym_while] = ACTIONS(3430), - [anon_sym_for] = ACTIONS(3430), - [anon_sym_lock] = ACTIONS(3430), - [anon_sym_yield] = ACTIONS(3430), - [anon_sym_switch] = ACTIONS(3430), - [anon_sym_default] = ACTIONS(3430), - [anon_sym_throw] = ACTIONS(3430), - [anon_sym_try] = ACTIONS(3430), - [anon_sym_when] = ACTIONS(3430), - [anon_sym_await] = ACTIONS(3430), - [anon_sym_foreach] = ACTIONS(3430), - [anon_sym_goto] = ACTIONS(3430), - [anon_sym_if] = ACTIONS(3430), - [anon_sym_else] = ACTIONS(3430), - [anon_sym_DOT_DOT] = ACTIONS(3432), - [anon_sym_from] = ACTIONS(3430), - [anon_sym_into] = ACTIONS(3430), - [anon_sym_join] = ACTIONS(3430), - [anon_sym_on] = ACTIONS(3430), - [anon_sym_equals] = ACTIONS(3430), - [anon_sym_let] = ACTIONS(3430), - [anon_sym_orderby] = ACTIONS(3430), - [anon_sym_ascending] = ACTIONS(3430), - [anon_sym_descending] = ACTIONS(3430), - [anon_sym_group] = ACTIONS(3430), - [anon_sym_by] = ACTIONS(3430), - [anon_sym_select] = ACTIONS(3430), - [anon_sym_stackalloc] = ACTIONS(3430), - [anon_sym_sizeof] = ACTIONS(3430), - [anon_sym_typeof] = ACTIONS(3430), - [anon_sym___makeref] = ACTIONS(3430), - [anon_sym___reftype] = ACTIONS(3430), - [anon_sym___refvalue] = ACTIONS(3430), - [sym_null_literal] = ACTIONS(3430), - [anon_sym_SQUOTE] = ACTIONS(3432), - [sym_integer_literal] = ACTIONS(3430), - [sym_real_literal] = ACTIONS(3432), - [anon_sym_DQUOTE] = ACTIONS(3432), - [sym_verbatim_string_literal] = ACTIONS(3432), - [sym_grit_metavariable] = ACTIONS(3432), - [aux_sym_preproc_if_token1] = ACTIONS(3432), - [aux_sym_preproc_if_token3] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3432), - [aux_sym_preproc_elif_token1] = ACTIONS(3432), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3432), - [sym_interpolation_verbatim_start] = ACTIONS(3432), - [sym_interpolation_raw_start] = ACTIONS(3432), - [sym_raw_string_start] = ACTIONS(3432), + [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_if_token3] = ACTIONS(3434), + [aux_sym_preproc_else_token1] = ACTIONS(3434), + [aux_sym_preproc_elif_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), }, [1959] = { [sym_preproc_region] = STATE(1959), @@ -380769,125 +380852,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1959), [sym_preproc_define] = STATE(1959), [sym_preproc_undef] = STATE(1959), - [sym__identifier_token] = ACTIONS(3434), - [anon_sym_extern] = ACTIONS(3434), - [anon_sym_alias] = ACTIONS(3434), - [anon_sym_SEMI] = ACTIONS(3436), - [anon_sym_global] = ACTIONS(3434), - [anon_sym_using] = ACTIONS(3434), - [anon_sym_unsafe] = ACTIONS(3434), - [anon_sym_static] = ACTIONS(3434), - [anon_sym_LBRACK] = ACTIONS(3436), - [anon_sym_LPAREN] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3434), - [anon_sym_namespace] = ACTIONS(3434), - [anon_sym_class] = ACTIONS(3434), - [anon_sym_ref] = ACTIONS(3434), - [anon_sym_struct] = ACTIONS(3434), - [anon_sym_enum] = ACTIONS(3434), - [anon_sym_LBRACE] = ACTIONS(3436), - [anon_sym_interface] = ACTIONS(3434), - [anon_sym_delegate] = ACTIONS(3434), - [anon_sym_record] = ACTIONS(3434), - [anon_sym_public] = ACTIONS(3434), - [anon_sym_private] = ACTIONS(3434), - [anon_sym_readonly] = ACTIONS(3434), - [anon_sym_abstract] = ACTIONS(3434), - [anon_sym_async] = ACTIONS(3434), - [anon_sym_const] = ACTIONS(3434), - [anon_sym_file] = ACTIONS(3434), - [anon_sym_fixed] = ACTIONS(3434), - [anon_sym_internal] = ACTIONS(3434), - [anon_sym_new] = ACTIONS(3434), - [anon_sym_override] = ACTIONS(3434), - [anon_sym_partial] = ACTIONS(3434), - [anon_sym_protected] = ACTIONS(3434), - [anon_sym_required] = ACTIONS(3434), - [anon_sym_sealed] = ACTIONS(3434), - [anon_sym_virtual] = ACTIONS(3434), - [anon_sym_volatile] = ACTIONS(3434), - [anon_sym_where] = ACTIONS(3434), - [anon_sym_notnull] = ACTIONS(3434), - [anon_sym_unmanaged] = ACTIONS(3434), - [anon_sym_checked] = ACTIONS(3434), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_TILDE] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3436), - [anon_sym_DASH_DASH] = ACTIONS(3436), - [anon_sym_true] = ACTIONS(3434), - [anon_sym_false] = ACTIONS(3434), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_STAR] = ACTIONS(3436), - [anon_sym_CARET] = ACTIONS(3436), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym_this] = ACTIONS(3434), - [anon_sym_scoped] = ACTIONS(3434), - [anon_sym_base] = ACTIONS(3434), - [anon_sym_var] = ACTIONS(3434), - [sym_predefined_type] = ACTIONS(3434), - [anon_sym_break] = ACTIONS(3434), - [anon_sym_unchecked] = ACTIONS(3434), - [anon_sym_continue] = ACTIONS(3434), - [anon_sym_do] = ACTIONS(3434), - [anon_sym_while] = ACTIONS(3434), - [anon_sym_for] = ACTIONS(3434), - [anon_sym_lock] = ACTIONS(3434), - [anon_sym_yield] = ACTIONS(3434), - [anon_sym_switch] = ACTIONS(3434), - [anon_sym_default] = ACTIONS(3434), - [anon_sym_throw] = ACTIONS(3434), - [anon_sym_try] = ACTIONS(3434), - [anon_sym_when] = ACTIONS(3434), - [anon_sym_await] = ACTIONS(3434), - [anon_sym_foreach] = ACTIONS(3434), - [anon_sym_goto] = ACTIONS(3434), - [anon_sym_if] = ACTIONS(3434), - [anon_sym_else] = ACTIONS(3434), - [anon_sym_DOT_DOT] = ACTIONS(3436), - [anon_sym_from] = ACTIONS(3434), - [anon_sym_into] = ACTIONS(3434), - [anon_sym_join] = ACTIONS(3434), - [anon_sym_on] = ACTIONS(3434), - [anon_sym_equals] = ACTIONS(3434), - [anon_sym_let] = ACTIONS(3434), - [anon_sym_orderby] = ACTIONS(3434), - [anon_sym_ascending] = ACTIONS(3434), - [anon_sym_descending] = ACTIONS(3434), - [anon_sym_group] = ACTIONS(3434), - [anon_sym_by] = ACTIONS(3434), - [anon_sym_select] = ACTIONS(3434), - [anon_sym_stackalloc] = ACTIONS(3434), - [anon_sym_sizeof] = ACTIONS(3434), - [anon_sym_typeof] = ACTIONS(3434), - [anon_sym___makeref] = ACTIONS(3434), - [anon_sym___reftype] = ACTIONS(3434), - [anon_sym___refvalue] = ACTIONS(3434), - [sym_null_literal] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3436), - [sym_integer_literal] = ACTIONS(3434), - [sym_real_literal] = ACTIONS(3436), - [anon_sym_DQUOTE] = ACTIONS(3436), - [sym_verbatim_string_literal] = ACTIONS(3436), - [sym_grit_metavariable] = ACTIONS(3436), - [aux_sym_preproc_if_token1] = ACTIONS(3436), - [aux_sym_preproc_if_token3] = ACTIONS(3436), - [aux_sym_preproc_else_token1] = ACTIONS(3436), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3436), - [sym_interpolation_verbatim_start] = ACTIONS(3436), - [sym_interpolation_raw_start] = ACTIONS(3436), - [sym_raw_string_start] = ACTIONS(3436), + [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_if_token3] = ACTIONS(3438), + [aux_sym_preproc_else_token1] = ACTIONS(3438), + [aux_sym_preproc_elif_token1] = ACTIONS(3438), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [1960] = { [sym_preproc_region] = STATE(1960), @@ -380899,125 +380982,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1960), [sym_preproc_define] = STATE(1960), [sym_preproc_undef] = STATE(1960), - [sym__identifier_token] = ACTIONS(3438), - [anon_sym_extern] = ACTIONS(3438), - [anon_sym_alias] = ACTIONS(3438), - [anon_sym_SEMI] = ACTIONS(3440), - [anon_sym_global] = ACTIONS(3438), - [anon_sym_using] = ACTIONS(3438), - [anon_sym_unsafe] = ACTIONS(3438), - [anon_sym_static] = ACTIONS(3438), - [anon_sym_LBRACK] = ACTIONS(3440), - [anon_sym_LPAREN] = ACTIONS(3440), - [anon_sym_return] = ACTIONS(3438), - [anon_sym_namespace] = ACTIONS(3438), - [anon_sym_class] = ACTIONS(3438), - [anon_sym_ref] = ACTIONS(3438), - [anon_sym_struct] = ACTIONS(3438), - [anon_sym_enum] = ACTIONS(3438), - [anon_sym_LBRACE] = ACTIONS(3440), - [anon_sym_interface] = ACTIONS(3438), - [anon_sym_delegate] = ACTIONS(3438), - [anon_sym_record] = ACTIONS(3438), - [anon_sym_public] = ACTIONS(3438), - [anon_sym_private] = ACTIONS(3438), - [anon_sym_readonly] = ACTIONS(3438), - [anon_sym_abstract] = ACTIONS(3438), - [anon_sym_async] = ACTIONS(3438), - [anon_sym_const] = ACTIONS(3438), - [anon_sym_file] = ACTIONS(3438), - [anon_sym_fixed] = ACTIONS(3438), - [anon_sym_internal] = ACTIONS(3438), - [anon_sym_new] = ACTIONS(3438), - [anon_sym_override] = ACTIONS(3438), - [anon_sym_partial] = ACTIONS(3438), - [anon_sym_protected] = ACTIONS(3438), - [anon_sym_required] = ACTIONS(3438), - [anon_sym_sealed] = ACTIONS(3438), - [anon_sym_virtual] = ACTIONS(3438), - [anon_sym_volatile] = ACTIONS(3438), - [anon_sym_where] = ACTIONS(3438), - [anon_sym_notnull] = ACTIONS(3438), - [anon_sym_unmanaged] = ACTIONS(3438), - [anon_sym_checked] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3440), - [anon_sym_TILDE] = ACTIONS(3440), - [anon_sym_PLUS_PLUS] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3440), - [anon_sym_true] = ACTIONS(3438), - [anon_sym_false] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3438), - [anon_sym_DASH] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(3440), - [anon_sym_CARET] = ACTIONS(3440), - [anon_sym_AMP] = ACTIONS(3440), - [anon_sym_this] = ACTIONS(3438), - [anon_sym_scoped] = ACTIONS(3438), - [anon_sym_base] = ACTIONS(3438), - [anon_sym_var] = ACTIONS(3438), - [sym_predefined_type] = ACTIONS(3438), - [anon_sym_break] = ACTIONS(3438), - [anon_sym_unchecked] = ACTIONS(3438), - [anon_sym_continue] = ACTIONS(3438), - [anon_sym_do] = ACTIONS(3438), - [anon_sym_while] = ACTIONS(3438), - [anon_sym_for] = ACTIONS(3438), - [anon_sym_lock] = ACTIONS(3438), - [anon_sym_yield] = ACTIONS(3438), - [anon_sym_switch] = ACTIONS(3438), - [anon_sym_default] = ACTIONS(3438), - [anon_sym_throw] = ACTIONS(3438), - [anon_sym_try] = ACTIONS(3438), - [anon_sym_when] = ACTIONS(3438), - [anon_sym_await] = ACTIONS(3438), - [anon_sym_foreach] = ACTIONS(3438), - [anon_sym_goto] = ACTIONS(3438), - [anon_sym_if] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3438), - [anon_sym_DOT_DOT] = ACTIONS(3440), - [anon_sym_from] = ACTIONS(3438), - [anon_sym_into] = ACTIONS(3438), - [anon_sym_join] = ACTIONS(3438), - [anon_sym_on] = ACTIONS(3438), - [anon_sym_equals] = ACTIONS(3438), - [anon_sym_let] = ACTIONS(3438), - [anon_sym_orderby] = ACTIONS(3438), - [anon_sym_ascending] = ACTIONS(3438), - [anon_sym_descending] = ACTIONS(3438), - [anon_sym_group] = ACTIONS(3438), - [anon_sym_by] = ACTIONS(3438), - [anon_sym_select] = ACTIONS(3438), - [anon_sym_stackalloc] = ACTIONS(3438), - [anon_sym_sizeof] = ACTIONS(3438), - [anon_sym_typeof] = ACTIONS(3438), - [anon_sym___makeref] = ACTIONS(3438), - [anon_sym___reftype] = ACTIONS(3438), - [anon_sym___refvalue] = ACTIONS(3438), - [sym_null_literal] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(3440), - [sym_integer_literal] = ACTIONS(3438), - [sym_real_literal] = ACTIONS(3440), - [anon_sym_DQUOTE] = ACTIONS(3440), - [sym_verbatim_string_literal] = ACTIONS(3440), - [sym_grit_metavariable] = ACTIONS(3440), - [aux_sym_preproc_if_token1] = ACTIONS(3440), - [aux_sym_preproc_if_token3] = ACTIONS(3440), - [aux_sym_preproc_else_token1] = ACTIONS(3440), - [aux_sym_preproc_elif_token1] = ACTIONS(3440), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3440), - [sym_interpolation_verbatim_start] = ACTIONS(3440), - [sym_interpolation_raw_start] = ACTIONS(3440), - [sym_raw_string_start] = ACTIONS(3440), + [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_if_token3] = ACTIONS(3442), + [aux_sym_preproc_else_token1] = ACTIONS(3442), + [aux_sym_preproc_elif_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), }, [1961] = { [sym_preproc_region] = STATE(1961), @@ -381029,125 +381112,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1961), [sym_preproc_define] = STATE(1961), [sym_preproc_undef] = STATE(1961), - [sym__identifier_token] = ACTIONS(3442), - [anon_sym_extern] = ACTIONS(3442), - [anon_sym_alias] = ACTIONS(3442), - [anon_sym_SEMI] = ACTIONS(3444), - [anon_sym_global] = ACTIONS(3442), - [anon_sym_using] = ACTIONS(3442), - [anon_sym_unsafe] = ACTIONS(3442), - [anon_sym_static] = ACTIONS(3442), - [anon_sym_LBRACK] = ACTIONS(3444), - [anon_sym_LPAREN] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3442), - [anon_sym_namespace] = ACTIONS(3442), - [anon_sym_class] = ACTIONS(3442), - [anon_sym_ref] = ACTIONS(3442), - [anon_sym_struct] = ACTIONS(3442), - [anon_sym_enum] = ACTIONS(3442), - [anon_sym_LBRACE] = ACTIONS(3444), - [anon_sym_interface] = ACTIONS(3442), - [anon_sym_delegate] = ACTIONS(3442), - [anon_sym_record] = ACTIONS(3442), - [anon_sym_public] = ACTIONS(3442), - [anon_sym_private] = ACTIONS(3442), - [anon_sym_readonly] = ACTIONS(3442), - [anon_sym_abstract] = ACTIONS(3442), - [anon_sym_async] = ACTIONS(3442), - [anon_sym_const] = ACTIONS(3442), - [anon_sym_file] = ACTIONS(3442), - [anon_sym_fixed] = ACTIONS(3442), - [anon_sym_internal] = ACTIONS(3442), - [anon_sym_new] = ACTIONS(3442), - [anon_sym_override] = ACTIONS(3442), - [anon_sym_partial] = ACTIONS(3442), - [anon_sym_protected] = ACTIONS(3442), - [anon_sym_required] = ACTIONS(3442), - [anon_sym_sealed] = ACTIONS(3442), - [anon_sym_virtual] = ACTIONS(3442), - [anon_sym_volatile] = ACTIONS(3442), - [anon_sym_where] = ACTIONS(3442), - [anon_sym_notnull] = ACTIONS(3442), - [anon_sym_unmanaged] = ACTIONS(3442), - [anon_sym_checked] = ACTIONS(3442), - [anon_sym_BANG] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3444), - [anon_sym_true] = ACTIONS(3442), - [anon_sym_false] = ACTIONS(3442), - [anon_sym_PLUS] = ACTIONS(3442), - [anon_sym_DASH] = ACTIONS(3442), - [anon_sym_STAR] = ACTIONS(3444), - [anon_sym_CARET] = ACTIONS(3444), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym_this] = ACTIONS(3442), - [anon_sym_scoped] = ACTIONS(3442), - [anon_sym_base] = ACTIONS(3442), - [anon_sym_var] = ACTIONS(3442), - [sym_predefined_type] = ACTIONS(3442), - [anon_sym_break] = ACTIONS(3442), - [anon_sym_unchecked] = ACTIONS(3442), - [anon_sym_continue] = ACTIONS(3442), - [anon_sym_do] = ACTIONS(3442), - [anon_sym_while] = ACTIONS(3442), - [anon_sym_for] = ACTIONS(3442), - [anon_sym_lock] = ACTIONS(3442), - [anon_sym_yield] = ACTIONS(3442), - [anon_sym_switch] = ACTIONS(3442), - [anon_sym_default] = ACTIONS(3442), - [anon_sym_throw] = ACTIONS(3442), - [anon_sym_try] = ACTIONS(3442), - [anon_sym_when] = ACTIONS(3442), - [anon_sym_await] = ACTIONS(3442), - [anon_sym_foreach] = ACTIONS(3442), - [anon_sym_goto] = ACTIONS(3442), - [anon_sym_if] = ACTIONS(3442), - [anon_sym_else] = ACTIONS(3442), - [anon_sym_DOT_DOT] = ACTIONS(3444), - [anon_sym_from] = ACTIONS(3442), - [anon_sym_into] = ACTIONS(3442), - [anon_sym_join] = ACTIONS(3442), - [anon_sym_on] = ACTIONS(3442), - [anon_sym_equals] = ACTIONS(3442), - [anon_sym_let] = ACTIONS(3442), - [anon_sym_orderby] = ACTIONS(3442), - [anon_sym_ascending] = ACTIONS(3442), - [anon_sym_descending] = ACTIONS(3442), - [anon_sym_group] = ACTIONS(3442), - [anon_sym_by] = ACTIONS(3442), - [anon_sym_select] = ACTIONS(3442), - [anon_sym_stackalloc] = ACTIONS(3442), - [anon_sym_sizeof] = ACTIONS(3442), - [anon_sym_typeof] = ACTIONS(3442), - [anon_sym___makeref] = ACTIONS(3442), - [anon_sym___reftype] = ACTIONS(3442), - [anon_sym___refvalue] = ACTIONS(3442), - [sym_null_literal] = ACTIONS(3442), - [anon_sym_SQUOTE] = ACTIONS(3444), - [sym_integer_literal] = ACTIONS(3442), - [sym_real_literal] = ACTIONS(3444), - [anon_sym_DQUOTE] = ACTIONS(3444), - [sym_verbatim_string_literal] = ACTIONS(3444), - [sym_grit_metavariable] = ACTIONS(3444), - [aux_sym_preproc_if_token1] = ACTIONS(3444), - [aux_sym_preproc_if_token3] = ACTIONS(3444), - [aux_sym_preproc_else_token1] = ACTIONS(3444), - [aux_sym_preproc_elif_token1] = ACTIONS(3444), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3444), - [sym_interpolation_verbatim_start] = ACTIONS(3444), - [sym_interpolation_raw_start] = ACTIONS(3444), - [sym_raw_string_start] = ACTIONS(3444), + [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), @@ -381159,125 +381242,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1962), [sym_preproc_define] = STATE(1962), [sym_preproc_undef] = STATE(1962), - [sym__identifier_token] = ACTIONS(3446), - [anon_sym_extern] = ACTIONS(3446), - [anon_sym_alias] = ACTIONS(3446), - [anon_sym_SEMI] = ACTIONS(3448), - [anon_sym_global] = ACTIONS(3446), - [anon_sym_using] = ACTIONS(3446), - [anon_sym_unsafe] = ACTIONS(3446), - [anon_sym_static] = ACTIONS(3446), - [anon_sym_LBRACK] = ACTIONS(3448), - [anon_sym_LPAREN] = ACTIONS(3448), - [anon_sym_return] = ACTIONS(3446), - [anon_sym_namespace] = ACTIONS(3446), - [anon_sym_class] = ACTIONS(3446), - [anon_sym_ref] = ACTIONS(3446), - [anon_sym_struct] = ACTIONS(3446), - [anon_sym_enum] = ACTIONS(3446), - [anon_sym_LBRACE] = ACTIONS(3448), - [anon_sym_interface] = ACTIONS(3446), - [anon_sym_delegate] = ACTIONS(3446), - [anon_sym_record] = ACTIONS(3446), - [anon_sym_public] = ACTIONS(3446), - [anon_sym_private] = ACTIONS(3446), - [anon_sym_readonly] = ACTIONS(3446), - [anon_sym_abstract] = ACTIONS(3446), - [anon_sym_async] = ACTIONS(3446), - [anon_sym_const] = ACTIONS(3446), - [anon_sym_file] = ACTIONS(3446), - [anon_sym_fixed] = ACTIONS(3446), - [anon_sym_internal] = ACTIONS(3446), - [anon_sym_new] = ACTIONS(3446), - [anon_sym_override] = ACTIONS(3446), - [anon_sym_partial] = ACTIONS(3446), - [anon_sym_protected] = ACTIONS(3446), - [anon_sym_required] = ACTIONS(3446), - [anon_sym_sealed] = ACTIONS(3446), - [anon_sym_virtual] = ACTIONS(3446), - [anon_sym_volatile] = ACTIONS(3446), - [anon_sym_where] = ACTIONS(3446), - [anon_sym_notnull] = ACTIONS(3446), - [anon_sym_unmanaged] = ACTIONS(3446), - [anon_sym_checked] = ACTIONS(3446), - [anon_sym_BANG] = ACTIONS(3448), - [anon_sym_TILDE] = ACTIONS(3448), - [anon_sym_PLUS_PLUS] = ACTIONS(3448), - [anon_sym_DASH_DASH] = ACTIONS(3448), - [anon_sym_true] = ACTIONS(3446), - [anon_sym_false] = ACTIONS(3446), - [anon_sym_PLUS] = ACTIONS(3446), - [anon_sym_DASH] = ACTIONS(3446), - [anon_sym_STAR] = ACTIONS(3448), - [anon_sym_CARET] = ACTIONS(3448), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_this] = ACTIONS(3446), - [anon_sym_scoped] = ACTIONS(3446), - [anon_sym_base] = ACTIONS(3446), - [anon_sym_var] = ACTIONS(3446), - [sym_predefined_type] = ACTIONS(3446), - [anon_sym_break] = ACTIONS(3446), - [anon_sym_unchecked] = ACTIONS(3446), - [anon_sym_continue] = ACTIONS(3446), - [anon_sym_do] = ACTIONS(3446), - [anon_sym_while] = ACTIONS(3446), - [anon_sym_for] = ACTIONS(3446), - [anon_sym_lock] = ACTIONS(3446), - [anon_sym_yield] = ACTIONS(3446), - [anon_sym_switch] = ACTIONS(3446), - [anon_sym_default] = ACTIONS(3446), - [anon_sym_throw] = ACTIONS(3446), - [anon_sym_try] = ACTIONS(3446), - [anon_sym_when] = ACTIONS(3446), - [anon_sym_await] = ACTIONS(3446), - [anon_sym_foreach] = ACTIONS(3446), - [anon_sym_goto] = ACTIONS(3446), - [anon_sym_if] = ACTIONS(3446), - [anon_sym_else] = ACTIONS(3446), - [anon_sym_DOT_DOT] = ACTIONS(3448), - [anon_sym_from] = ACTIONS(3446), - [anon_sym_into] = ACTIONS(3446), - [anon_sym_join] = ACTIONS(3446), - [anon_sym_on] = ACTIONS(3446), - [anon_sym_equals] = ACTIONS(3446), - [anon_sym_let] = ACTIONS(3446), - [anon_sym_orderby] = ACTIONS(3446), - [anon_sym_ascending] = ACTIONS(3446), - [anon_sym_descending] = ACTIONS(3446), - [anon_sym_group] = ACTIONS(3446), - [anon_sym_by] = ACTIONS(3446), - [anon_sym_select] = ACTIONS(3446), - [anon_sym_stackalloc] = ACTIONS(3446), - [anon_sym_sizeof] = ACTIONS(3446), - [anon_sym_typeof] = ACTIONS(3446), - [anon_sym___makeref] = ACTIONS(3446), - [anon_sym___reftype] = ACTIONS(3446), - [anon_sym___refvalue] = ACTIONS(3446), - [sym_null_literal] = ACTIONS(3446), - [anon_sym_SQUOTE] = ACTIONS(3448), - [sym_integer_literal] = ACTIONS(3446), - [sym_real_literal] = ACTIONS(3448), - [anon_sym_DQUOTE] = ACTIONS(3448), - [sym_verbatim_string_literal] = ACTIONS(3448), - [sym_grit_metavariable] = ACTIONS(3448), - [aux_sym_preproc_if_token1] = ACTIONS(3448), - [aux_sym_preproc_if_token3] = ACTIONS(3448), - [aux_sym_preproc_else_token1] = ACTIONS(3448), - [aux_sym_preproc_elif_token1] = ACTIONS(3448), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3448), - [sym_interpolation_verbatim_start] = ACTIONS(3448), - [sym_interpolation_raw_start] = ACTIONS(3448), - [sym_raw_string_start] = ACTIONS(3448), + [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_if_token3] = ACTIONS(3446), + [aux_sym_preproc_else_token1] = ACTIONS(3446), + [aux_sym_preproc_elif_token1] = ACTIONS(3446), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [1963] = { [sym_preproc_region] = STATE(1963), @@ -381289,125 +381372,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1963), [sym_preproc_define] = STATE(1963), [sym_preproc_undef] = STATE(1963), - [sym__identifier_token] = ACTIONS(3450), - [anon_sym_extern] = ACTIONS(3450), - [anon_sym_alias] = ACTIONS(3450), - [anon_sym_SEMI] = ACTIONS(3452), - [anon_sym_global] = ACTIONS(3450), - [anon_sym_using] = ACTIONS(3450), - [anon_sym_unsafe] = ACTIONS(3450), - [anon_sym_static] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3452), - [anon_sym_return] = ACTIONS(3450), - [anon_sym_namespace] = ACTIONS(3450), - [anon_sym_class] = ACTIONS(3450), - [anon_sym_ref] = ACTIONS(3450), - [anon_sym_struct] = ACTIONS(3450), - [anon_sym_enum] = ACTIONS(3450), - [anon_sym_LBRACE] = ACTIONS(3452), - [anon_sym_interface] = ACTIONS(3450), - [anon_sym_delegate] = ACTIONS(3450), - [anon_sym_record] = ACTIONS(3450), - [anon_sym_public] = ACTIONS(3450), - [anon_sym_private] = ACTIONS(3450), - [anon_sym_readonly] = ACTIONS(3450), - [anon_sym_abstract] = ACTIONS(3450), - [anon_sym_async] = ACTIONS(3450), - [anon_sym_const] = ACTIONS(3450), - [anon_sym_file] = ACTIONS(3450), - [anon_sym_fixed] = ACTIONS(3450), - [anon_sym_internal] = ACTIONS(3450), - [anon_sym_new] = ACTIONS(3450), - [anon_sym_override] = ACTIONS(3450), - [anon_sym_partial] = ACTIONS(3450), - [anon_sym_protected] = ACTIONS(3450), - [anon_sym_required] = ACTIONS(3450), - [anon_sym_sealed] = ACTIONS(3450), - [anon_sym_virtual] = ACTIONS(3450), - [anon_sym_volatile] = ACTIONS(3450), - [anon_sym_where] = ACTIONS(3450), - [anon_sym_notnull] = ACTIONS(3450), - [anon_sym_unmanaged] = ACTIONS(3450), - [anon_sym_checked] = ACTIONS(3450), - [anon_sym_BANG] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3452), - [anon_sym_PLUS_PLUS] = ACTIONS(3452), - [anon_sym_DASH_DASH] = ACTIONS(3452), - [anon_sym_true] = ACTIONS(3450), - [anon_sym_false] = ACTIONS(3450), - [anon_sym_PLUS] = ACTIONS(3450), - [anon_sym_DASH] = ACTIONS(3450), - [anon_sym_STAR] = ACTIONS(3452), - [anon_sym_CARET] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3452), - [anon_sym_this] = ACTIONS(3450), - [anon_sym_scoped] = ACTIONS(3450), - [anon_sym_base] = ACTIONS(3450), - [anon_sym_var] = ACTIONS(3450), - [sym_predefined_type] = ACTIONS(3450), - [anon_sym_break] = ACTIONS(3450), - [anon_sym_unchecked] = ACTIONS(3450), - [anon_sym_continue] = ACTIONS(3450), - [anon_sym_do] = ACTIONS(3450), - [anon_sym_while] = ACTIONS(3450), - [anon_sym_for] = ACTIONS(3450), - [anon_sym_lock] = ACTIONS(3450), - [anon_sym_yield] = ACTIONS(3450), - [anon_sym_switch] = ACTIONS(3450), - [anon_sym_default] = ACTIONS(3450), - [anon_sym_throw] = ACTIONS(3450), - [anon_sym_try] = ACTIONS(3450), - [anon_sym_when] = ACTIONS(3450), - [anon_sym_await] = ACTIONS(3450), - [anon_sym_foreach] = ACTIONS(3450), - [anon_sym_goto] = ACTIONS(3450), - [anon_sym_if] = ACTIONS(3450), - [anon_sym_else] = ACTIONS(3450), - [anon_sym_DOT_DOT] = ACTIONS(3452), - [anon_sym_from] = ACTIONS(3450), - [anon_sym_into] = ACTIONS(3450), - [anon_sym_join] = ACTIONS(3450), - [anon_sym_on] = ACTIONS(3450), - [anon_sym_equals] = ACTIONS(3450), - [anon_sym_let] = ACTIONS(3450), - [anon_sym_orderby] = ACTIONS(3450), - [anon_sym_ascending] = ACTIONS(3450), - [anon_sym_descending] = ACTIONS(3450), - [anon_sym_group] = ACTIONS(3450), - [anon_sym_by] = ACTIONS(3450), - [anon_sym_select] = ACTIONS(3450), - [anon_sym_stackalloc] = ACTIONS(3450), - [anon_sym_sizeof] = ACTIONS(3450), - [anon_sym_typeof] = ACTIONS(3450), - [anon_sym___makeref] = ACTIONS(3450), - [anon_sym___reftype] = ACTIONS(3450), - [anon_sym___refvalue] = ACTIONS(3450), - [sym_null_literal] = ACTIONS(3450), - [anon_sym_SQUOTE] = ACTIONS(3452), - [sym_integer_literal] = ACTIONS(3450), - [sym_real_literal] = ACTIONS(3452), - [anon_sym_DQUOTE] = ACTIONS(3452), - [sym_verbatim_string_literal] = ACTIONS(3452), - [sym_grit_metavariable] = ACTIONS(3452), - [aux_sym_preproc_if_token1] = ACTIONS(3452), - [aux_sym_preproc_if_token3] = ACTIONS(3452), - [aux_sym_preproc_else_token1] = ACTIONS(3452), - [aux_sym_preproc_elif_token1] = ACTIONS(3452), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3452), - [sym_interpolation_verbatim_start] = ACTIONS(3452), - [sym_interpolation_raw_start] = ACTIONS(3452), - [sym_raw_string_start] = ACTIONS(3452), + [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_if_token3] = ACTIONS(3450), + [aux_sym_preproc_else_token1] = ACTIONS(3450), + [aux_sym_preproc_elif_token1] = ACTIONS(3450), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [1964] = { [sym_preproc_region] = STATE(1964), @@ -381419,125 +381502,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1964), [sym_preproc_define] = STATE(1964), [sym_preproc_undef] = STATE(1964), - [sym__identifier_token] = ACTIONS(3454), - [anon_sym_extern] = ACTIONS(3454), - [anon_sym_alias] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3456), - [anon_sym_global] = ACTIONS(3454), - [anon_sym_using] = ACTIONS(3454), - [anon_sym_unsafe] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(3456), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_namespace] = ACTIONS(3454), - [anon_sym_class] = ACTIONS(3454), - [anon_sym_ref] = ACTIONS(3454), - [anon_sym_struct] = ACTIONS(3454), - [anon_sym_enum] = ACTIONS(3454), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_interface] = ACTIONS(3454), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_record] = ACTIONS(3454), - [anon_sym_public] = ACTIONS(3454), - [anon_sym_private] = ACTIONS(3454), - [anon_sym_readonly] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(3454), - [anon_sym_async] = ACTIONS(3454), - [anon_sym_const] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(3454), - [anon_sym_fixed] = ACTIONS(3454), - [anon_sym_internal] = ACTIONS(3454), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_override] = ACTIONS(3454), - [anon_sym_partial] = ACTIONS(3454), - [anon_sym_protected] = ACTIONS(3454), - [anon_sym_required] = ACTIONS(3454), - [anon_sym_sealed] = ACTIONS(3454), - [anon_sym_virtual] = ACTIONS(3454), - [anon_sym_volatile] = ACTIONS(3454), - [anon_sym_where] = ACTIONS(3454), - [anon_sym_notnull] = ACTIONS(3454), - [anon_sym_unmanaged] = ACTIONS(3454), - [anon_sym_checked] = ACTIONS(3454), - [anon_sym_BANG] = ACTIONS(3456), - [anon_sym_TILDE] = ACTIONS(3456), - [anon_sym_PLUS_PLUS] = ACTIONS(3456), - [anon_sym_DASH_DASH] = ACTIONS(3456), - [anon_sym_true] = ACTIONS(3454), - [anon_sym_false] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3456), - [anon_sym_CARET] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3456), - [anon_sym_this] = ACTIONS(3454), - [anon_sym_scoped] = ACTIONS(3454), - [anon_sym_base] = ACTIONS(3454), - [anon_sym_var] = ACTIONS(3454), - [sym_predefined_type] = ACTIONS(3454), - [anon_sym_break] = ACTIONS(3454), - [anon_sym_unchecked] = ACTIONS(3454), - [anon_sym_continue] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_lock] = ACTIONS(3454), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_switch] = ACTIONS(3454), - [anon_sym_default] = ACTIONS(3454), - [anon_sym_throw] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_when] = ACTIONS(3454), - [anon_sym_await] = ACTIONS(3454), - [anon_sym_foreach] = ACTIONS(3454), - [anon_sym_goto] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_else] = ACTIONS(3454), - [anon_sym_DOT_DOT] = ACTIONS(3456), - [anon_sym_from] = ACTIONS(3454), - [anon_sym_into] = ACTIONS(3454), - [anon_sym_join] = ACTIONS(3454), - [anon_sym_on] = ACTIONS(3454), - [anon_sym_equals] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_orderby] = ACTIONS(3454), - [anon_sym_ascending] = ACTIONS(3454), - [anon_sym_descending] = ACTIONS(3454), - [anon_sym_group] = ACTIONS(3454), - [anon_sym_by] = ACTIONS(3454), - [anon_sym_select] = ACTIONS(3454), - [anon_sym_stackalloc] = ACTIONS(3454), - [anon_sym_sizeof] = ACTIONS(3454), - [anon_sym_typeof] = ACTIONS(3454), - [anon_sym___makeref] = ACTIONS(3454), - [anon_sym___reftype] = ACTIONS(3454), - [anon_sym___refvalue] = ACTIONS(3454), - [sym_null_literal] = ACTIONS(3454), - [anon_sym_SQUOTE] = ACTIONS(3456), - [sym_integer_literal] = ACTIONS(3454), - [sym_real_literal] = ACTIONS(3456), - [anon_sym_DQUOTE] = ACTIONS(3456), - [sym_verbatim_string_literal] = ACTIONS(3456), - [sym_grit_metavariable] = ACTIONS(3456), - [aux_sym_preproc_if_token1] = ACTIONS(3456), - [aux_sym_preproc_if_token3] = ACTIONS(3456), - [aux_sym_preproc_else_token1] = ACTIONS(3456), - [aux_sym_preproc_elif_token1] = ACTIONS(3456), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3456), - [sym_interpolation_verbatim_start] = ACTIONS(3456), - [sym_interpolation_raw_start] = ACTIONS(3456), - [sym_raw_string_start] = ACTIONS(3456), + [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_if_token3] = ACTIONS(3454), + [aux_sym_preproc_else_token1] = ACTIONS(3454), + [aux_sym_preproc_elif_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), }, [1965] = { [sym_preproc_region] = STATE(1965), @@ -381549,125 +381632,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1965), [sym_preproc_define] = STATE(1965), [sym_preproc_undef] = STATE(1965), - [sym__identifier_token] = ACTIONS(3458), - [anon_sym_extern] = ACTIONS(3458), - [anon_sym_alias] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3460), - [anon_sym_global] = ACTIONS(3458), - [anon_sym_using] = ACTIONS(3458), - [anon_sym_unsafe] = ACTIONS(3458), - [anon_sym_static] = ACTIONS(3458), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3460), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_namespace] = ACTIONS(3458), - [anon_sym_class] = ACTIONS(3458), - [anon_sym_ref] = ACTIONS(3458), - [anon_sym_struct] = ACTIONS(3458), - [anon_sym_enum] = ACTIONS(3458), - [anon_sym_LBRACE] = ACTIONS(3460), - [anon_sym_interface] = ACTIONS(3458), - [anon_sym_delegate] = ACTIONS(3458), - [anon_sym_record] = ACTIONS(3458), - [anon_sym_public] = ACTIONS(3458), - [anon_sym_private] = ACTIONS(3458), - [anon_sym_readonly] = ACTIONS(3458), - [anon_sym_abstract] = ACTIONS(3458), - [anon_sym_async] = ACTIONS(3458), - [anon_sym_const] = ACTIONS(3458), - [anon_sym_file] = ACTIONS(3458), - [anon_sym_fixed] = ACTIONS(3458), - [anon_sym_internal] = ACTIONS(3458), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_override] = ACTIONS(3458), - [anon_sym_partial] = ACTIONS(3458), - [anon_sym_protected] = ACTIONS(3458), - [anon_sym_required] = ACTIONS(3458), - [anon_sym_sealed] = ACTIONS(3458), - [anon_sym_virtual] = ACTIONS(3458), - [anon_sym_volatile] = ACTIONS(3458), - [anon_sym_where] = ACTIONS(3458), - [anon_sym_notnull] = ACTIONS(3458), - [anon_sym_unmanaged] = ACTIONS(3458), - [anon_sym_checked] = ACTIONS(3458), - [anon_sym_BANG] = ACTIONS(3460), - [anon_sym_TILDE] = ACTIONS(3460), - [anon_sym_PLUS_PLUS] = ACTIONS(3460), - [anon_sym_DASH_DASH] = ACTIONS(3460), - [anon_sym_true] = ACTIONS(3458), - [anon_sym_false] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_STAR] = ACTIONS(3460), - [anon_sym_CARET] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3460), - [anon_sym_this] = ACTIONS(3458), - [anon_sym_scoped] = ACTIONS(3458), - [anon_sym_base] = ACTIONS(3458), - [anon_sym_var] = ACTIONS(3458), - [sym_predefined_type] = ACTIONS(3458), - [anon_sym_break] = ACTIONS(3458), - [anon_sym_unchecked] = ACTIONS(3458), - [anon_sym_continue] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_lock] = ACTIONS(3458), - [anon_sym_yield] = ACTIONS(3458), - [anon_sym_switch] = ACTIONS(3458), - [anon_sym_default] = ACTIONS(3458), - [anon_sym_throw] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_when] = ACTIONS(3458), - [anon_sym_await] = ACTIONS(3458), - [anon_sym_foreach] = ACTIONS(3458), - [anon_sym_goto] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_else] = ACTIONS(3458), - [anon_sym_DOT_DOT] = ACTIONS(3460), - [anon_sym_from] = ACTIONS(3458), - [anon_sym_into] = ACTIONS(3458), - [anon_sym_join] = ACTIONS(3458), - [anon_sym_on] = ACTIONS(3458), - [anon_sym_equals] = ACTIONS(3458), - [anon_sym_let] = ACTIONS(3458), - [anon_sym_orderby] = ACTIONS(3458), - [anon_sym_ascending] = ACTIONS(3458), - [anon_sym_descending] = ACTIONS(3458), - [anon_sym_group] = ACTIONS(3458), - [anon_sym_by] = ACTIONS(3458), - [anon_sym_select] = ACTIONS(3458), - [anon_sym_stackalloc] = ACTIONS(3458), - [anon_sym_sizeof] = ACTIONS(3458), - [anon_sym_typeof] = ACTIONS(3458), - [anon_sym___makeref] = ACTIONS(3458), - [anon_sym___reftype] = ACTIONS(3458), - [anon_sym___refvalue] = ACTIONS(3458), - [sym_null_literal] = ACTIONS(3458), - [anon_sym_SQUOTE] = ACTIONS(3460), - [sym_integer_literal] = ACTIONS(3458), - [sym_real_literal] = ACTIONS(3460), - [anon_sym_DQUOTE] = ACTIONS(3460), - [sym_verbatim_string_literal] = ACTIONS(3460), - [sym_grit_metavariable] = ACTIONS(3460), - [aux_sym_preproc_if_token1] = ACTIONS(3460), - [aux_sym_preproc_if_token3] = ACTIONS(3460), - [aux_sym_preproc_else_token1] = ACTIONS(3460), - [aux_sym_preproc_elif_token1] = ACTIONS(3460), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3460), - [sym_interpolation_verbatim_start] = ACTIONS(3460), - [sym_interpolation_raw_start] = ACTIONS(3460), - [sym_raw_string_start] = ACTIONS(3460), + [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_if_token3] = ACTIONS(3458), + [aux_sym_preproc_else_token1] = ACTIONS(3458), + [aux_sym_preproc_elif_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), }, [1966] = { [sym_preproc_region] = STATE(1966), @@ -381679,125 +381762,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1966), [sym_preproc_define] = STATE(1966), [sym_preproc_undef] = STATE(1966), - [sym__identifier_token] = ACTIONS(3462), - [anon_sym_extern] = ACTIONS(3462), - [anon_sym_alias] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3464), - [anon_sym_global] = ACTIONS(3462), - [anon_sym_using] = ACTIONS(3462), - [anon_sym_unsafe] = ACTIONS(3462), - [anon_sym_static] = ACTIONS(3462), - [anon_sym_LBRACK] = ACTIONS(3464), - [anon_sym_LPAREN] = ACTIONS(3464), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_namespace] = ACTIONS(3462), - [anon_sym_class] = ACTIONS(3462), - [anon_sym_ref] = ACTIONS(3462), - [anon_sym_struct] = ACTIONS(3462), - [anon_sym_enum] = ACTIONS(3462), - [anon_sym_LBRACE] = ACTIONS(3464), - [anon_sym_interface] = ACTIONS(3462), - [anon_sym_delegate] = ACTIONS(3462), - [anon_sym_record] = ACTIONS(3462), - [anon_sym_public] = ACTIONS(3462), - [anon_sym_private] = ACTIONS(3462), - [anon_sym_readonly] = ACTIONS(3462), - [anon_sym_abstract] = ACTIONS(3462), - [anon_sym_async] = ACTIONS(3462), - [anon_sym_const] = ACTIONS(3462), - [anon_sym_file] = ACTIONS(3462), - [anon_sym_fixed] = ACTIONS(3462), - [anon_sym_internal] = ACTIONS(3462), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_override] = ACTIONS(3462), - [anon_sym_partial] = ACTIONS(3462), - [anon_sym_protected] = ACTIONS(3462), - [anon_sym_required] = ACTIONS(3462), - [anon_sym_sealed] = ACTIONS(3462), - [anon_sym_virtual] = ACTIONS(3462), - [anon_sym_volatile] = ACTIONS(3462), - [anon_sym_where] = ACTIONS(3462), - [anon_sym_notnull] = ACTIONS(3462), - [anon_sym_unmanaged] = ACTIONS(3462), - [anon_sym_checked] = ACTIONS(3462), - [anon_sym_BANG] = ACTIONS(3464), - [anon_sym_TILDE] = ACTIONS(3464), - [anon_sym_PLUS_PLUS] = ACTIONS(3464), - [anon_sym_DASH_DASH] = ACTIONS(3464), - [anon_sym_true] = ACTIONS(3462), - [anon_sym_false] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_AMP] = ACTIONS(3464), - [anon_sym_this] = ACTIONS(3462), - [anon_sym_scoped] = ACTIONS(3462), - [anon_sym_base] = ACTIONS(3462), - [anon_sym_var] = ACTIONS(3462), - [sym_predefined_type] = ACTIONS(3462), - [anon_sym_break] = ACTIONS(3462), - [anon_sym_unchecked] = ACTIONS(3462), - [anon_sym_continue] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_lock] = ACTIONS(3462), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_switch] = ACTIONS(3462), - [anon_sym_default] = ACTIONS(3462), - [anon_sym_throw] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_when] = ACTIONS(3462), - [anon_sym_await] = ACTIONS(3462), - [anon_sym_foreach] = ACTIONS(3462), - [anon_sym_goto] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_else] = ACTIONS(3462), - [anon_sym_DOT_DOT] = ACTIONS(3464), - [anon_sym_from] = ACTIONS(3462), - [anon_sym_into] = ACTIONS(3462), - [anon_sym_join] = ACTIONS(3462), - [anon_sym_on] = ACTIONS(3462), - [anon_sym_equals] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_orderby] = ACTIONS(3462), - [anon_sym_ascending] = ACTIONS(3462), - [anon_sym_descending] = ACTIONS(3462), - [anon_sym_group] = ACTIONS(3462), - [anon_sym_by] = ACTIONS(3462), - [anon_sym_select] = ACTIONS(3462), - [anon_sym_stackalloc] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(3462), - [anon_sym_typeof] = ACTIONS(3462), - [anon_sym___makeref] = ACTIONS(3462), - [anon_sym___reftype] = ACTIONS(3462), - [anon_sym___refvalue] = ACTIONS(3462), - [sym_null_literal] = ACTIONS(3462), - [anon_sym_SQUOTE] = ACTIONS(3464), - [sym_integer_literal] = ACTIONS(3462), - [sym_real_literal] = ACTIONS(3464), - [anon_sym_DQUOTE] = ACTIONS(3464), - [sym_verbatim_string_literal] = ACTIONS(3464), - [sym_grit_metavariable] = ACTIONS(3464), - [aux_sym_preproc_if_token1] = ACTIONS(3464), - [aux_sym_preproc_if_token3] = ACTIONS(3464), - [aux_sym_preproc_else_token1] = ACTIONS(3464), - [aux_sym_preproc_elif_token1] = ACTIONS(3464), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3464), - [sym_interpolation_verbatim_start] = ACTIONS(3464), - [sym_interpolation_raw_start] = ACTIONS(3464), - [sym_raw_string_start] = ACTIONS(3464), + [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_namespace] = ACTIONS(3460), + [anon_sym_class] = ACTIONS(3460), + [anon_sym_ref] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(3460), + [anon_sym_enum] = ACTIONS(3460), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3460), + [anon_sym_delegate] = ACTIONS(3460), + [anon_sym_record] = 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_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_if_token3] = ACTIONS(3462), + [aux_sym_preproc_else_token1] = ACTIONS(3462), + [aux_sym_preproc_elif_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), }, [1967] = { [sym_preproc_region] = STATE(1967), @@ -381809,125 +381892,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1967), [sym_preproc_define] = STATE(1967), [sym_preproc_undef] = STATE(1967), - [sym__identifier_token] = ACTIONS(3466), - [anon_sym_extern] = ACTIONS(3466), - [anon_sym_alias] = ACTIONS(3466), - [anon_sym_SEMI] = ACTIONS(3468), - [anon_sym_global] = ACTIONS(3466), - [anon_sym_using] = ACTIONS(3466), - [anon_sym_unsafe] = ACTIONS(3466), - [anon_sym_static] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(3468), - [anon_sym_LPAREN] = ACTIONS(3468), - [anon_sym_return] = ACTIONS(3466), - [anon_sym_namespace] = ACTIONS(3466), - [anon_sym_class] = ACTIONS(3466), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_struct] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3466), - [anon_sym_LBRACE] = ACTIONS(3468), - [anon_sym_interface] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3466), - [anon_sym_record] = ACTIONS(3466), - [anon_sym_public] = ACTIONS(3466), - [anon_sym_private] = ACTIONS(3466), - [anon_sym_readonly] = ACTIONS(3466), - [anon_sym_abstract] = ACTIONS(3466), - [anon_sym_async] = ACTIONS(3466), - [anon_sym_const] = ACTIONS(3466), - [anon_sym_file] = ACTIONS(3466), - [anon_sym_fixed] = ACTIONS(3466), - [anon_sym_internal] = ACTIONS(3466), - [anon_sym_new] = ACTIONS(3466), - [anon_sym_override] = ACTIONS(3466), - [anon_sym_partial] = ACTIONS(3466), - [anon_sym_protected] = ACTIONS(3466), - [anon_sym_required] = ACTIONS(3466), - [anon_sym_sealed] = ACTIONS(3466), - [anon_sym_virtual] = ACTIONS(3466), - [anon_sym_volatile] = ACTIONS(3466), - [anon_sym_where] = ACTIONS(3466), - [anon_sym_notnull] = ACTIONS(3466), - [anon_sym_unmanaged] = ACTIONS(3466), - [anon_sym_checked] = ACTIONS(3466), - [anon_sym_BANG] = ACTIONS(3468), - [anon_sym_TILDE] = ACTIONS(3468), - [anon_sym_PLUS_PLUS] = ACTIONS(3468), - [anon_sym_DASH_DASH] = ACTIONS(3468), - [anon_sym_true] = ACTIONS(3466), - [anon_sym_false] = ACTIONS(3466), - [anon_sym_PLUS] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3466), - [anon_sym_STAR] = ACTIONS(3468), - [anon_sym_CARET] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(3468), - [anon_sym_this] = ACTIONS(3466), - [anon_sym_scoped] = ACTIONS(3466), - [anon_sym_base] = ACTIONS(3466), - [anon_sym_var] = ACTIONS(3466), - [sym_predefined_type] = ACTIONS(3466), - [anon_sym_break] = ACTIONS(3466), - [anon_sym_unchecked] = ACTIONS(3466), - [anon_sym_continue] = ACTIONS(3466), - [anon_sym_do] = ACTIONS(3466), - [anon_sym_while] = ACTIONS(3466), - [anon_sym_for] = ACTIONS(3466), - [anon_sym_lock] = ACTIONS(3466), - [anon_sym_yield] = ACTIONS(3466), - [anon_sym_switch] = ACTIONS(3466), - [anon_sym_default] = ACTIONS(3466), - [anon_sym_throw] = ACTIONS(3466), - [anon_sym_try] = ACTIONS(3466), - [anon_sym_when] = ACTIONS(3466), - [anon_sym_await] = ACTIONS(3466), - [anon_sym_foreach] = ACTIONS(3466), - [anon_sym_goto] = ACTIONS(3466), - [anon_sym_if] = ACTIONS(3466), - [anon_sym_else] = ACTIONS(3466), - [anon_sym_DOT_DOT] = ACTIONS(3468), - [anon_sym_from] = ACTIONS(3466), - [anon_sym_into] = ACTIONS(3466), - [anon_sym_join] = ACTIONS(3466), - [anon_sym_on] = ACTIONS(3466), - [anon_sym_equals] = ACTIONS(3466), - [anon_sym_let] = ACTIONS(3466), - [anon_sym_orderby] = ACTIONS(3466), - [anon_sym_ascending] = ACTIONS(3466), - [anon_sym_descending] = ACTIONS(3466), - [anon_sym_group] = ACTIONS(3466), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_select] = ACTIONS(3466), - [anon_sym_stackalloc] = ACTIONS(3466), - [anon_sym_sizeof] = ACTIONS(3466), - [anon_sym_typeof] = ACTIONS(3466), - [anon_sym___makeref] = ACTIONS(3466), - [anon_sym___reftype] = ACTIONS(3466), - [anon_sym___refvalue] = ACTIONS(3466), - [sym_null_literal] = ACTIONS(3466), - [anon_sym_SQUOTE] = ACTIONS(3468), - [sym_integer_literal] = ACTIONS(3466), - [sym_real_literal] = ACTIONS(3468), - [anon_sym_DQUOTE] = ACTIONS(3468), - [sym_verbatim_string_literal] = ACTIONS(3468), - [sym_grit_metavariable] = ACTIONS(3468), - [aux_sym_preproc_if_token1] = ACTIONS(3468), - [aux_sym_preproc_if_token3] = ACTIONS(3468), - [aux_sym_preproc_else_token1] = ACTIONS(3468), - [aux_sym_preproc_elif_token1] = ACTIONS(3468), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3468), - [sym_interpolation_verbatim_start] = ACTIONS(3468), - [sym_interpolation_raw_start] = ACTIONS(3468), - [sym_raw_string_start] = ACTIONS(3468), + [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_if_token3] = ACTIONS(3466), + [aux_sym_preproc_else_token1] = ACTIONS(3466), + [aux_sym_preproc_elif_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), }, [1968] = { [sym_preproc_region] = STATE(1968), @@ -381939,125 +382022,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1968), [sym_preproc_define] = STATE(1968), [sym_preproc_undef] = STATE(1968), - [ts_builtin_sym_end] = ACTIONS(3377), - [sym__identifier_token] = ACTIONS(3375), - [anon_sym_extern] = ACTIONS(3375), - [anon_sym_alias] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_global] = ACTIONS(3375), - [anon_sym_using] = ACTIONS(3375), - [anon_sym_unsafe] = ACTIONS(3375), - [anon_sym_static] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_namespace] = ACTIONS(3375), - [anon_sym_class] = ACTIONS(3375), - [anon_sym_ref] = ACTIONS(3375), - [anon_sym_struct] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_delegate] = ACTIONS(3375), - [anon_sym_record] = ACTIONS(3375), - [anon_sym_public] = ACTIONS(3375), - [anon_sym_private] = ACTIONS(3375), - [anon_sym_readonly] = ACTIONS(3375), - [anon_sym_abstract] = ACTIONS(3375), - [anon_sym_async] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_file] = ACTIONS(3375), - [anon_sym_fixed] = ACTIONS(3375), - [anon_sym_internal] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3375), - [anon_sym_partial] = ACTIONS(3375), - [anon_sym_protected] = ACTIONS(3375), - [anon_sym_required] = ACTIONS(3375), - [anon_sym_sealed] = ACTIONS(3375), - [anon_sym_virtual] = ACTIONS(3375), - [anon_sym_volatile] = ACTIONS(3375), - [anon_sym_where] = ACTIONS(3375), - [anon_sym_notnull] = ACTIONS(3375), - [anon_sym_unmanaged] = ACTIONS(3375), - [anon_sym_checked] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(3377), - [anon_sym_CARET] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3377), - [anon_sym_this] = ACTIONS(3375), - [anon_sym_scoped] = ACTIONS(3375), - [anon_sym_base] = ACTIONS(3375), - [anon_sym_var] = ACTIONS(3375), - [sym_predefined_type] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_unchecked] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_lock] = ACTIONS(3375), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_switch] = ACTIONS(3375), - [anon_sym_default] = ACTIONS(3375), - [anon_sym_throw] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_catch] = ACTIONS(3375), - [anon_sym_when] = ACTIONS(3375), - [anon_sym_finally] = ACTIONS(3375), - [anon_sym_await] = ACTIONS(3375), - [anon_sym_foreach] = ACTIONS(3375), - [anon_sym_goto] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_else] = ACTIONS(3375), - [anon_sym_DOT_DOT] = ACTIONS(3377), - [anon_sym_from] = ACTIONS(3375), - [anon_sym_into] = ACTIONS(3375), - [anon_sym_join] = ACTIONS(3375), - [anon_sym_on] = ACTIONS(3375), - [anon_sym_equals] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_orderby] = ACTIONS(3375), - [anon_sym_ascending] = ACTIONS(3375), - [anon_sym_descending] = ACTIONS(3375), - [anon_sym_group] = ACTIONS(3375), - [anon_sym_by] = ACTIONS(3375), - [anon_sym_select] = ACTIONS(3375), - [anon_sym_stackalloc] = ACTIONS(3375), - [anon_sym_sizeof] = ACTIONS(3375), - [anon_sym_typeof] = ACTIONS(3375), - [anon_sym___makeref] = ACTIONS(3375), - [anon_sym___reftype] = ACTIONS(3375), - [anon_sym___refvalue] = ACTIONS(3375), - [sym_null_literal] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3377), - [sym_integer_literal] = ACTIONS(3375), - [sym_real_literal] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [sym_verbatim_string_literal] = ACTIONS(3377), - [sym_grit_metavariable] = ACTIONS(3377), - [aux_sym_preproc_if_token1] = ACTIONS(3377), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3377), - [sym_interpolation_verbatim_start] = ACTIONS(3377), - [sym_interpolation_raw_start] = ACTIONS(3377), - [sym_raw_string_start] = ACTIONS(3377), + [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_if_token3] = ACTIONS(3470), + [aux_sym_preproc_else_token1] = ACTIONS(3470), + [aux_sym_preproc_elif_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), }, [1969] = { [sym_preproc_region] = STATE(1969), @@ -382069,125 +382152,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1969), [sym_preproc_define] = STATE(1969), [sym_preproc_undef] = STATE(1969), - [sym__identifier_token] = ACTIONS(3470), - [anon_sym_extern] = ACTIONS(3470), - [anon_sym_alias] = ACTIONS(3470), - [anon_sym_SEMI] = ACTIONS(3472), - [anon_sym_global] = ACTIONS(3470), - [anon_sym_using] = ACTIONS(3470), - [anon_sym_unsafe] = ACTIONS(3470), - [anon_sym_static] = ACTIONS(3470), - [anon_sym_LBRACK] = ACTIONS(3472), - [anon_sym_LPAREN] = ACTIONS(3472), - [anon_sym_return] = ACTIONS(3470), - [anon_sym_namespace] = ACTIONS(3470), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_ref] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3470), - [anon_sym_enum] = ACTIONS(3470), - [anon_sym_LBRACE] = ACTIONS(3472), - [anon_sym_interface] = ACTIONS(3470), - [anon_sym_delegate] = ACTIONS(3470), - [anon_sym_record] = ACTIONS(3470), - [anon_sym_public] = ACTIONS(3470), - [anon_sym_private] = ACTIONS(3470), - [anon_sym_readonly] = ACTIONS(3470), - [anon_sym_abstract] = ACTIONS(3470), - [anon_sym_async] = ACTIONS(3470), - [anon_sym_const] = ACTIONS(3470), - [anon_sym_file] = ACTIONS(3470), - [anon_sym_fixed] = ACTIONS(3470), - [anon_sym_internal] = ACTIONS(3470), - [anon_sym_new] = ACTIONS(3470), - [anon_sym_override] = ACTIONS(3470), - [anon_sym_partial] = ACTIONS(3470), - [anon_sym_protected] = ACTIONS(3470), - [anon_sym_required] = ACTIONS(3470), - [anon_sym_sealed] = ACTIONS(3470), - [anon_sym_virtual] = ACTIONS(3470), - [anon_sym_volatile] = ACTIONS(3470), - [anon_sym_where] = ACTIONS(3470), - [anon_sym_notnull] = ACTIONS(3470), - [anon_sym_unmanaged] = ACTIONS(3470), - [anon_sym_checked] = ACTIONS(3470), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3472), - [anon_sym_PLUS_PLUS] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(3472), - [anon_sym_true] = ACTIONS(3470), - [anon_sym_false] = ACTIONS(3470), - [anon_sym_PLUS] = ACTIONS(3470), - [anon_sym_DASH] = ACTIONS(3470), - [anon_sym_STAR] = ACTIONS(3472), - [anon_sym_CARET] = ACTIONS(3472), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_this] = ACTIONS(3470), - [anon_sym_scoped] = ACTIONS(3470), - [anon_sym_base] = ACTIONS(3470), - [anon_sym_var] = ACTIONS(3470), - [sym_predefined_type] = ACTIONS(3470), - [anon_sym_break] = ACTIONS(3470), - [anon_sym_unchecked] = ACTIONS(3470), - [anon_sym_continue] = ACTIONS(3470), - [anon_sym_do] = ACTIONS(3470), - [anon_sym_while] = ACTIONS(3470), - [anon_sym_for] = ACTIONS(3470), - [anon_sym_lock] = ACTIONS(3470), - [anon_sym_yield] = ACTIONS(3470), - [anon_sym_switch] = ACTIONS(3470), - [anon_sym_default] = ACTIONS(3470), - [anon_sym_throw] = ACTIONS(3470), - [anon_sym_try] = ACTIONS(3470), - [anon_sym_when] = ACTIONS(3470), - [anon_sym_await] = ACTIONS(3470), - [anon_sym_foreach] = ACTIONS(3470), - [anon_sym_goto] = ACTIONS(3470), - [anon_sym_if] = ACTIONS(3470), - [anon_sym_else] = ACTIONS(3470), - [anon_sym_DOT_DOT] = ACTIONS(3472), - [anon_sym_from] = ACTIONS(3470), - [anon_sym_into] = ACTIONS(3470), - [anon_sym_join] = ACTIONS(3470), - [anon_sym_on] = ACTIONS(3470), - [anon_sym_equals] = ACTIONS(3470), - [anon_sym_let] = ACTIONS(3470), - [anon_sym_orderby] = ACTIONS(3470), - [anon_sym_ascending] = ACTIONS(3470), - [anon_sym_descending] = ACTIONS(3470), - [anon_sym_group] = ACTIONS(3470), - [anon_sym_by] = ACTIONS(3470), - [anon_sym_select] = ACTIONS(3470), - [anon_sym_stackalloc] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(3470), - [anon_sym_typeof] = ACTIONS(3470), - [anon_sym___makeref] = ACTIONS(3470), - [anon_sym___reftype] = ACTIONS(3470), - [anon_sym___refvalue] = ACTIONS(3470), - [sym_null_literal] = ACTIONS(3470), - [anon_sym_SQUOTE] = ACTIONS(3472), - [sym_integer_literal] = ACTIONS(3470), - [sym_real_literal] = ACTIONS(3472), - [anon_sym_DQUOTE] = ACTIONS(3472), - [sym_verbatim_string_literal] = ACTIONS(3472), - [sym_grit_metavariable] = ACTIONS(3472), - [aux_sym_preproc_if_token1] = ACTIONS(3472), - [aux_sym_preproc_if_token3] = ACTIONS(3472), - [aux_sym_preproc_else_token1] = ACTIONS(3472), - [aux_sym_preproc_elif_token1] = ACTIONS(3472), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3472), - [sym_interpolation_verbatim_start] = ACTIONS(3472), - [sym_interpolation_raw_start] = ACTIONS(3472), - [sym_raw_string_start] = ACTIONS(3472), + [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), @@ -382199,125 +382282,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1970), [sym_preproc_define] = STATE(1970), [sym_preproc_undef] = STATE(1970), - [sym__identifier_token] = ACTIONS(3474), - [anon_sym_extern] = ACTIONS(3474), - [anon_sym_alias] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3476), - [anon_sym_global] = ACTIONS(3474), - [anon_sym_using] = ACTIONS(3474), - [anon_sym_unsafe] = ACTIONS(3474), - [anon_sym_static] = ACTIONS(3474), - [anon_sym_LBRACK] = ACTIONS(3476), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_namespace] = ACTIONS(3474), - [anon_sym_class] = ACTIONS(3474), - [anon_sym_ref] = ACTIONS(3474), - [anon_sym_struct] = ACTIONS(3474), - [anon_sym_enum] = ACTIONS(3474), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_interface] = ACTIONS(3474), - [anon_sym_delegate] = ACTIONS(3474), - [anon_sym_record] = ACTIONS(3474), - [anon_sym_public] = ACTIONS(3474), - [anon_sym_private] = ACTIONS(3474), - [anon_sym_readonly] = ACTIONS(3474), - [anon_sym_abstract] = ACTIONS(3474), - [anon_sym_async] = ACTIONS(3474), - [anon_sym_const] = ACTIONS(3474), - [anon_sym_file] = ACTIONS(3474), - [anon_sym_fixed] = ACTIONS(3474), - [anon_sym_internal] = ACTIONS(3474), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_override] = ACTIONS(3474), - [anon_sym_partial] = ACTIONS(3474), - [anon_sym_protected] = ACTIONS(3474), - [anon_sym_required] = ACTIONS(3474), - [anon_sym_sealed] = ACTIONS(3474), - [anon_sym_virtual] = ACTIONS(3474), - [anon_sym_volatile] = ACTIONS(3474), - [anon_sym_where] = ACTIONS(3474), - [anon_sym_notnull] = ACTIONS(3474), - [anon_sym_unmanaged] = ACTIONS(3474), - [anon_sym_checked] = ACTIONS(3474), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3476), - [anon_sym_PLUS_PLUS] = ACTIONS(3476), - [anon_sym_DASH_DASH] = ACTIONS(3476), - [anon_sym_true] = ACTIONS(3474), - [anon_sym_false] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_STAR] = ACTIONS(3476), - [anon_sym_CARET] = ACTIONS(3476), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(3474), - [anon_sym_scoped] = ACTIONS(3474), - [anon_sym_base] = ACTIONS(3474), - [anon_sym_var] = ACTIONS(3474), - [sym_predefined_type] = ACTIONS(3474), - [anon_sym_break] = ACTIONS(3474), - [anon_sym_unchecked] = ACTIONS(3474), - [anon_sym_continue] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_lock] = ACTIONS(3474), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_switch] = ACTIONS(3474), - [anon_sym_default] = ACTIONS(3474), - [anon_sym_throw] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_when] = ACTIONS(3474), - [anon_sym_await] = ACTIONS(3474), - [anon_sym_foreach] = ACTIONS(3474), - [anon_sym_goto] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_else] = ACTIONS(3474), - [anon_sym_DOT_DOT] = ACTIONS(3476), - [anon_sym_from] = ACTIONS(3474), - [anon_sym_into] = ACTIONS(3474), - [anon_sym_join] = ACTIONS(3474), - [anon_sym_on] = ACTIONS(3474), - [anon_sym_equals] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_orderby] = ACTIONS(3474), - [anon_sym_ascending] = ACTIONS(3474), - [anon_sym_descending] = ACTIONS(3474), - [anon_sym_group] = ACTIONS(3474), - [anon_sym_by] = ACTIONS(3474), - [anon_sym_select] = ACTIONS(3474), - [anon_sym_stackalloc] = ACTIONS(3474), - [anon_sym_sizeof] = ACTIONS(3474), - [anon_sym_typeof] = ACTIONS(3474), - [anon_sym___makeref] = ACTIONS(3474), - [anon_sym___reftype] = ACTIONS(3474), - [anon_sym___refvalue] = ACTIONS(3474), - [sym_null_literal] = ACTIONS(3474), - [anon_sym_SQUOTE] = ACTIONS(3476), - [sym_integer_literal] = ACTIONS(3474), - [sym_real_literal] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [sym_verbatim_string_literal] = ACTIONS(3476), - [sym_grit_metavariable] = ACTIONS(3476), - [aux_sym_preproc_if_token1] = ACTIONS(3476), - [aux_sym_preproc_if_token3] = ACTIONS(3476), - [aux_sym_preproc_else_token1] = ACTIONS(3476), - [aux_sym_preproc_elif_token1] = ACTIONS(3476), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3476), - [sym_interpolation_verbatim_start] = ACTIONS(3476), - [sym_interpolation_raw_start] = ACTIONS(3476), - [sym_raw_string_start] = ACTIONS(3476), + [sym__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_if_token3] = ACTIONS(3474), + [aux_sym_preproc_else_token1] = ACTIONS(3474), + [aux_sym_preproc_elif_token1] = ACTIONS(3474), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [1971] = { [sym_preproc_region] = STATE(1971), @@ -382329,125 +382412,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1971), [sym_preproc_define] = STATE(1971), [sym_preproc_undef] = STATE(1971), - [sym__identifier_token] = ACTIONS(3478), - [anon_sym_extern] = ACTIONS(3478), - [anon_sym_alias] = ACTIONS(3478), - [anon_sym_SEMI] = ACTIONS(3480), - [anon_sym_global] = ACTIONS(3478), - [anon_sym_using] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(3478), - [anon_sym_static] = ACTIONS(3478), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3478), - [anon_sym_namespace] = ACTIONS(3478), - [anon_sym_class] = ACTIONS(3478), - [anon_sym_ref] = ACTIONS(3478), - [anon_sym_struct] = ACTIONS(3478), - [anon_sym_enum] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_interface] = ACTIONS(3478), - [anon_sym_delegate] = ACTIONS(3478), - [anon_sym_record] = ACTIONS(3478), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_readonly] = ACTIONS(3478), - [anon_sym_abstract] = ACTIONS(3478), - [anon_sym_async] = ACTIONS(3478), - [anon_sym_const] = ACTIONS(3478), - [anon_sym_file] = ACTIONS(3478), - [anon_sym_fixed] = ACTIONS(3478), - [anon_sym_internal] = ACTIONS(3478), - [anon_sym_new] = ACTIONS(3478), - [anon_sym_override] = ACTIONS(3478), - [anon_sym_partial] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_required] = ACTIONS(3478), - [anon_sym_sealed] = ACTIONS(3478), - [anon_sym_virtual] = ACTIONS(3478), - [anon_sym_volatile] = ACTIONS(3478), - [anon_sym_where] = ACTIONS(3478), - [anon_sym_notnull] = ACTIONS(3478), - [anon_sym_unmanaged] = ACTIONS(3478), - [anon_sym_checked] = ACTIONS(3478), - [anon_sym_BANG] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3480), - [anon_sym_PLUS_PLUS] = ACTIONS(3480), - [anon_sym_DASH_DASH] = ACTIONS(3480), - [anon_sym_true] = ACTIONS(3478), - [anon_sym_false] = ACTIONS(3478), - [anon_sym_PLUS] = ACTIONS(3478), - [anon_sym_DASH] = ACTIONS(3478), - [anon_sym_STAR] = ACTIONS(3480), - [anon_sym_CARET] = ACTIONS(3480), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_this] = ACTIONS(3478), - [anon_sym_scoped] = ACTIONS(3478), - [anon_sym_base] = ACTIONS(3478), - [anon_sym_var] = ACTIONS(3478), - [sym_predefined_type] = ACTIONS(3478), - [anon_sym_break] = ACTIONS(3478), - [anon_sym_unchecked] = ACTIONS(3478), - [anon_sym_continue] = ACTIONS(3478), - [anon_sym_do] = ACTIONS(3478), - [anon_sym_while] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3478), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_yield] = ACTIONS(3478), - [anon_sym_switch] = ACTIONS(3478), - [anon_sym_default] = ACTIONS(3478), - [anon_sym_throw] = ACTIONS(3478), - [anon_sym_try] = ACTIONS(3478), - [anon_sym_when] = ACTIONS(3478), - [anon_sym_await] = ACTIONS(3478), - [anon_sym_foreach] = ACTIONS(3478), - [anon_sym_goto] = ACTIONS(3478), - [anon_sym_if] = ACTIONS(3478), - [anon_sym_else] = ACTIONS(3478), - [anon_sym_DOT_DOT] = ACTIONS(3480), - [anon_sym_from] = ACTIONS(3478), - [anon_sym_into] = ACTIONS(3478), - [anon_sym_join] = ACTIONS(3478), - [anon_sym_on] = ACTIONS(3478), - [anon_sym_equals] = ACTIONS(3478), - [anon_sym_let] = ACTIONS(3478), - [anon_sym_orderby] = ACTIONS(3478), - [anon_sym_ascending] = ACTIONS(3478), - [anon_sym_descending] = ACTIONS(3478), - [anon_sym_group] = ACTIONS(3478), - [anon_sym_by] = ACTIONS(3478), - [anon_sym_select] = ACTIONS(3478), - [anon_sym_stackalloc] = ACTIONS(3478), - [anon_sym_sizeof] = ACTIONS(3478), - [anon_sym_typeof] = ACTIONS(3478), - [anon_sym___makeref] = ACTIONS(3478), - [anon_sym___reftype] = ACTIONS(3478), - [anon_sym___refvalue] = ACTIONS(3478), - [sym_null_literal] = ACTIONS(3478), - [anon_sym_SQUOTE] = ACTIONS(3480), - [sym_integer_literal] = ACTIONS(3478), - [sym_real_literal] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [sym_verbatim_string_literal] = ACTIONS(3480), - [sym_grit_metavariable] = ACTIONS(3480), - [aux_sym_preproc_if_token1] = ACTIONS(3480), - [aux_sym_preproc_if_token3] = ACTIONS(3480), - [aux_sym_preproc_else_token1] = ACTIONS(3480), - [aux_sym_preproc_elif_token1] = ACTIONS(3480), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3480), - [sym_interpolation_verbatim_start] = ACTIONS(3480), - [sym_interpolation_raw_start] = ACTIONS(3480), - [sym_raw_string_start] = ACTIONS(3480), + [sym__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_namespace] = ACTIONS(3476), + [anon_sym_class] = ACTIONS(3476), + [anon_sym_ref] = ACTIONS(3476), + [anon_sym_struct] = ACTIONS(3476), + [anon_sym_enum] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3476), + [anon_sym_delegate] = ACTIONS(3476), + [anon_sym_record] = 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_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_if_token3] = ACTIONS(3478), + [aux_sym_preproc_else_token1] = ACTIONS(3478), + [aux_sym_preproc_elif_token1] = ACTIONS(3478), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [1972] = { [sym_preproc_region] = STATE(1972), @@ -382459,125 +382542,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1972), [sym_preproc_define] = STATE(1972), [sym_preproc_undef] = STATE(1972), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_using] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LBRACK] = ACTIONS(3484), - [anon_sym_LPAREN] = ACTIONS(3484), - [anon_sym_return] = ACTIONS(3482), - [anon_sym_namespace] = ACTIONS(3482), - [anon_sym_class] = ACTIONS(3482), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_enum] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3484), - [anon_sym_interface] = ACTIONS(3482), - [anon_sym_delegate] = ACTIONS(3482), - [anon_sym_record] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3482), - [anon_sym_private] = ACTIONS(3482), - [anon_sym_readonly] = ACTIONS(3482), - [anon_sym_abstract] = ACTIONS(3482), - [anon_sym_async] = ACTIONS(3482), - [anon_sym_const] = ACTIONS(3482), - [anon_sym_file] = ACTIONS(3482), - [anon_sym_fixed] = ACTIONS(3482), - [anon_sym_internal] = ACTIONS(3482), - [anon_sym_new] = ACTIONS(3482), - [anon_sym_override] = ACTIONS(3482), - [anon_sym_partial] = ACTIONS(3482), - [anon_sym_protected] = ACTIONS(3482), - [anon_sym_required] = ACTIONS(3482), - [anon_sym_sealed] = ACTIONS(3482), - [anon_sym_virtual] = ACTIONS(3482), - [anon_sym_volatile] = ACTIONS(3482), - [anon_sym_where] = ACTIONS(3482), - [anon_sym_notnull] = ACTIONS(3482), - [anon_sym_unmanaged] = ACTIONS(3482), - [anon_sym_checked] = ACTIONS(3482), - [anon_sym_BANG] = ACTIONS(3484), - [anon_sym_TILDE] = ACTIONS(3484), - [anon_sym_PLUS_PLUS] = ACTIONS(3484), - [anon_sym_DASH_DASH] = ACTIONS(3484), - [anon_sym_true] = ACTIONS(3482), - [anon_sym_false] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3482), - [anon_sym_DASH] = ACTIONS(3482), - [anon_sym_STAR] = ACTIONS(3484), - [anon_sym_CARET] = ACTIONS(3484), - [anon_sym_AMP] = ACTIONS(3484), - [anon_sym_this] = ACTIONS(3482), - [anon_sym_scoped] = ACTIONS(3482), - [anon_sym_base] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_break] = ACTIONS(3482), - [anon_sym_unchecked] = ACTIONS(3482), - [anon_sym_continue] = ACTIONS(3482), - [anon_sym_do] = ACTIONS(3482), - [anon_sym_while] = ACTIONS(3482), - [anon_sym_for] = ACTIONS(3482), - [anon_sym_lock] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_switch] = ACTIONS(3482), - [anon_sym_default] = ACTIONS(3482), - [anon_sym_throw] = ACTIONS(3482), - [anon_sym_try] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [anon_sym_await] = ACTIONS(3482), - [anon_sym_foreach] = ACTIONS(3482), - [anon_sym_goto] = ACTIONS(3482), - [anon_sym_if] = ACTIONS(3482), - [anon_sym_else] = ACTIONS(3482), - [anon_sym_DOT_DOT] = ACTIONS(3484), - [anon_sym_from] = ACTIONS(3482), - [anon_sym_into] = ACTIONS(3482), - [anon_sym_join] = ACTIONS(3482), - [anon_sym_on] = ACTIONS(3482), - [anon_sym_equals] = ACTIONS(3482), - [anon_sym_let] = ACTIONS(3482), - [anon_sym_orderby] = ACTIONS(3482), - [anon_sym_ascending] = ACTIONS(3482), - [anon_sym_descending] = ACTIONS(3482), - [anon_sym_group] = ACTIONS(3482), - [anon_sym_by] = ACTIONS(3482), - [anon_sym_select] = ACTIONS(3482), - [anon_sym_stackalloc] = ACTIONS(3482), - [anon_sym_sizeof] = ACTIONS(3482), - [anon_sym_typeof] = ACTIONS(3482), - [anon_sym___makeref] = ACTIONS(3482), - [anon_sym___reftype] = ACTIONS(3482), - [anon_sym___refvalue] = ACTIONS(3482), - [sym_null_literal] = ACTIONS(3482), - [anon_sym_SQUOTE] = ACTIONS(3484), - [sym_integer_literal] = ACTIONS(3482), - [sym_real_literal] = ACTIONS(3484), - [anon_sym_DQUOTE] = ACTIONS(3484), - [sym_verbatim_string_literal] = ACTIONS(3484), - [sym_grit_metavariable] = ACTIONS(3484), - [aux_sym_preproc_if_token1] = ACTIONS(3484), - [aux_sym_preproc_if_token3] = ACTIONS(3484), - [aux_sym_preproc_else_token1] = ACTIONS(3484), - [aux_sym_preproc_elif_token1] = ACTIONS(3484), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3484), - [sym_interpolation_verbatim_start] = ACTIONS(3484), - [sym_interpolation_raw_start] = ACTIONS(3484), - [sym_raw_string_start] = ACTIONS(3484), + [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_if_token3] = ACTIONS(3482), + [aux_sym_preproc_else_token1] = ACTIONS(3482), + [aux_sym_preproc_elif_token1] = ACTIONS(3482), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3482), + [sym_interpolation_verbatim_start] = ACTIONS(3482), + [sym_interpolation_raw_start] = ACTIONS(3482), + [sym_raw_string_start] = ACTIONS(3482), }, [1973] = { [sym_preproc_region] = STATE(1973), @@ -382589,125 +382672,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1973), [sym_preproc_define] = STATE(1973), [sym_preproc_undef] = STATE(1973), - [sym__identifier_token] = ACTIONS(3486), - [anon_sym_extern] = ACTIONS(3486), - [anon_sym_alias] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3488), - [anon_sym_global] = ACTIONS(3486), - [anon_sym_using] = ACTIONS(3486), - [anon_sym_unsafe] = ACTIONS(3486), - [anon_sym_static] = ACTIONS(3486), - [anon_sym_LBRACK] = ACTIONS(3488), - [anon_sym_LPAREN] = ACTIONS(3488), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_namespace] = ACTIONS(3486), - [anon_sym_class] = ACTIONS(3486), - [anon_sym_ref] = ACTIONS(3486), - [anon_sym_struct] = ACTIONS(3486), - [anon_sym_enum] = ACTIONS(3486), - [anon_sym_LBRACE] = ACTIONS(3488), - [anon_sym_interface] = ACTIONS(3486), - [anon_sym_delegate] = ACTIONS(3486), - [anon_sym_record] = ACTIONS(3486), - [anon_sym_public] = ACTIONS(3486), - [anon_sym_private] = ACTIONS(3486), - [anon_sym_readonly] = ACTIONS(3486), - [anon_sym_abstract] = ACTIONS(3486), - [anon_sym_async] = ACTIONS(3486), - [anon_sym_const] = ACTIONS(3486), - [anon_sym_file] = ACTIONS(3486), - [anon_sym_fixed] = ACTIONS(3486), - [anon_sym_internal] = ACTIONS(3486), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_override] = ACTIONS(3486), - [anon_sym_partial] = ACTIONS(3486), - [anon_sym_protected] = ACTIONS(3486), - [anon_sym_required] = ACTIONS(3486), - [anon_sym_sealed] = ACTIONS(3486), - [anon_sym_virtual] = ACTIONS(3486), - [anon_sym_volatile] = ACTIONS(3486), - [anon_sym_where] = ACTIONS(3486), - [anon_sym_notnull] = ACTIONS(3486), - [anon_sym_unmanaged] = ACTIONS(3486), - [anon_sym_checked] = ACTIONS(3486), - [anon_sym_BANG] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(3488), - [anon_sym_PLUS_PLUS] = ACTIONS(3488), - [anon_sym_DASH_DASH] = ACTIONS(3488), - [anon_sym_true] = ACTIONS(3486), - [anon_sym_false] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_CARET] = ACTIONS(3488), - [anon_sym_AMP] = ACTIONS(3488), - [anon_sym_this] = ACTIONS(3486), - [anon_sym_scoped] = ACTIONS(3486), - [anon_sym_base] = ACTIONS(3486), - [anon_sym_var] = ACTIONS(3486), - [sym_predefined_type] = ACTIONS(3486), - [anon_sym_break] = ACTIONS(3486), - [anon_sym_unchecked] = ACTIONS(3486), - [anon_sym_continue] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_lock] = ACTIONS(3486), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_switch] = ACTIONS(3486), - [anon_sym_default] = ACTIONS(3486), - [anon_sym_throw] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_when] = ACTIONS(3486), - [anon_sym_await] = ACTIONS(3486), - [anon_sym_foreach] = ACTIONS(3486), - [anon_sym_goto] = ACTIONS(3486), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_else] = ACTIONS(3486), - [anon_sym_DOT_DOT] = ACTIONS(3488), - [anon_sym_from] = ACTIONS(3486), - [anon_sym_into] = ACTIONS(3486), - [anon_sym_join] = ACTIONS(3486), - [anon_sym_on] = ACTIONS(3486), - [anon_sym_equals] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_orderby] = ACTIONS(3486), - [anon_sym_ascending] = ACTIONS(3486), - [anon_sym_descending] = ACTIONS(3486), - [anon_sym_group] = ACTIONS(3486), - [anon_sym_by] = ACTIONS(3486), - [anon_sym_select] = ACTIONS(3486), - [anon_sym_stackalloc] = ACTIONS(3486), - [anon_sym_sizeof] = ACTIONS(3486), - [anon_sym_typeof] = ACTIONS(3486), - [anon_sym___makeref] = ACTIONS(3486), - [anon_sym___reftype] = ACTIONS(3486), - [anon_sym___refvalue] = ACTIONS(3486), - [sym_null_literal] = ACTIONS(3486), - [anon_sym_SQUOTE] = ACTIONS(3488), - [sym_integer_literal] = ACTIONS(3486), - [sym_real_literal] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(3488), - [sym_verbatim_string_literal] = ACTIONS(3488), - [sym_grit_metavariable] = ACTIONS(3488), - [aux_sym_preproc_if_token1] = ACTIONS(3488), - [aux_sym_preproc_if_token3] = ACTIONS(3488), - [aux_sym_preproc_else_token1] = ACTIONS(3488), - [aux_sym_preproc_elif_token1] = ACTIONS(3488), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3488), - [sym_interpolation_verbatim_start] = ACTIONS(3488), - [sym_interpolation_raw_start] = ACTIONS(3488), - [sym_raw_string_start] = ACTIONS(3488), + [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_if_token3] = ACTIONS(3486), + [aux_sym_preproc_else_token1] = ACTIONS(3486), + [aux_sym_preproc_elif_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), }, [1974] = { [sym_preproc_region] = STATE(1974), @@ -382719,125 +382802,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1974), [sym_preproc_define] = STATE(1974), [sym_preproc_undef] = STATE(1974), - [sym__identifier_token] = ACTIONS(3490), - [anon_sym_extern] = ACTIONS(3490), - [anon_sym_alias] = ACTIONS(3490), - [anon_sym_SEMI] = ACTIONS(3492), - [anon_sym_global] = ACTIONS(3490), - [anon_sym_using] = ACTIONS(3490), - [anon_sym_unsafe] = ACTIONS(3490), - [anon_sym_static] = ACTIONS(3490), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_return] = ACTIONS(3490), - [anon_sym_namespace] = ACTIONS(3490), - [anon_sym_class] = ACTIONS(3490), - [anon_sym_ref] = ACTIONS(3490), - [anon_sym_struct] = ACTIONS(3490), - [anon_sym_enum] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(3492), - [anon_sym_interface] = ACTIONS(3490), - [anon_sym_delegate] = ACTIONS(3490), - [anon_sym_record] = ACTIONS(3490), - [anon_sym_public] = ACTIONS(3490), - [anon_sym_private] = ACTIONS(3490), - [anon_sym_readonly] = ACTIONS(3490), - [anon_sym_abstract] = ACTIONS(3490), - [anon_sym_async] = ACTIONS(3490), - [anon_sym_const] = ACTIONS(3490), - [anon_sym_file] = ACTIONS(3490), - [anon_sym_fixed] = ACTIONS(3490), - [anon_sym_internal] = ACTIONS(3490), - [anon_sym_new] = ACTIONS(3490), - [anon_sym_override] = ACTIONS(3490), - [anon_sym_partial] = ACTIONS(3490), - [anon_sym_protected] = ACTIONS(3490), - [anon_sym_required] = ACTIONS(3490), - [anon_sym_sealed] = ACTIONS(3490), - [anon_sym_virtual] = ACTIONS(3490), - [anon_sym_volatile] = ACTIONS(3490), - [anon_sym_where] = ACTIONS(3490), - [anon_sym_notnull] = ACTIONS(3490), - [anon_sym_unmanaged] = ACTIONS(3490), - [anon_sym_checked] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(3492), - [anon_sym_TILDE] = ACTIONS(3492), - [anon_sym_PLUS_PLUS] = ACTIONS(3492), - [anon_sym_DASH_DASH] = ACTIONS(3492), - [anon_sym_true] = ACTIONS(3490), - [anon_sym_false] = ACTIONS(3490), - [anon_sym_PLUS] = ACTIONS(3490), - [anon_sym_DASH] = ACTIONS(3490), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_CARET] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_this] = ACTIONS(3490), - [anon_sym_scoped] = ACTIONS(3490), - [anon_sym_base] = ACTIONS(3490), - [anon_sym_var] = ACTIONS(3490), - [sym_predefined_type] = ACTIONS(3490), - [anon_sym_break] = ACTIONS(3490), - [anon_sym_unchecked] = ACTIONS(3490), - [anon_sym_continue] = ACTIONS(3490), - [anon_sym_do] = ACTIONS(3490), - [anon_sym_while] = ACTIONS(3490), - [anon_sym_for] = ACTIONS(3490), - [anon_sym_lock] = ACTIONS(3490), - [anon_sym_yield] = ACTIONS(3490), - [anon_sym_switch] = ACTIONS(3490), - [anon_sym_default] = ACTIONS(3490), - [anon_sym_throw] = ACTIONS(3490), - [anon_sym_try] = ACTIONS(3490), - [anon_sym_when] = ACTIONS(3490), - [anon_sym_await] = ACTIONS(3490), - [anon_sym_foreach] = ACTIONS(3490), - [anon_sym_goto] = ACTIONS(3490), - [anon_sym_if] = ACTIONS(3490), - [anon_sym_else] = ACTIONS(3490), - [anon_sym_DOT_DOT] = ACTIONS(3492), - [anon_sym_from] = ACTIONS(3490), - [anon_sym_into] = ACTIONS(3490), - [anon_sym_join] = ACTIONS(3490), - [anon_sym_on] = ACTIONS(3490), - [anon_sym_equals] = ACTIONS(3490), - [anon_sym_let] = ACTIONS(3490), - [anon_sym_orderby] = ACTIONS(3490), - [anon_sym_ascending] = ACTIONS(3490), - [anon_sym_descending] = ACTIONS(3490), - [anon_sym_group] = ACTIONS(3490), - [anon_sym_by] = ACTIONS(3490), - [anon_sym_select] = ACTIONS(3490), - [anon_sym_stackalloc] = ACTIONS(3490), - [anon_sym_sizeof] = ACTIONS(3490), - [anon_sym_typeof] = ACTIONS(3490), - [anon_sym___makeref] = ACTIONS(3490), - [anon_sym___reftype] = ACTIONS(3490), - [anon_sym___refvalue] = ACTIONS(3490), - [sym_null_literal] = ACTIONS(3490), - [anon_sym_SQUOTE] = ACTIONS(3492), - [sym_integer_literal] = ACTIONS(3490), - [sym_real_literal] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3492), - [sym_verbatim_string_literal] = ACTIONS(3492), - [sym_grit_metavariable] = ACTIONS(3492), - [aux_sym_preproc_if_token1] = ACTIONS(3492), - [aux_sym_preproc_if_token3] = ACTIONS(3492), - [aux_sym_preproc_else_token1] = ACTIONS(3492), - [aux_sym_preproc_elif_token1] = ACTIONS(3492), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3492), - [sym_interpolation_verbatim_start] = ACTIONS(3492), - [sym_interpolation_raw_start] = ACTIONS(3492), - [sym_raw_string_start] = ACTIONS(3492), + [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_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_LBRACE] = 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_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_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_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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1975] = { [sym_preproc_region] = STATE(1975), @@ -382849,125 +382932,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1975), [sym_preproc_define] = STATE(1975), [sym_preproc_undef] = STATE(1975), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_SEMI] = ACTIONS(3496), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_using] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(3496), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym_return] = ACTIONS(3494), - [anon_sym_namespace] = ACTIONS(3494), - [anon_sym_class] = ACTIONS(3494), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(3494), - [anon_sym_enum] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3496), - [anon_sym_interface] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_record] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_checked] = ACTIONS(3494), - [anon_sym_BANG] = ACTIONS(3496), - [anon_sym_TILDE] = ACTIONS(3496), - [anon_sym_PLUS_PLUS] = ACTIONS(3496), - [anon_sym_DASH_DASH] = ACTIONS(3496), - [anon_sym_true] = ACTIONS(3494), - [anon_sym_false] = ACTIONS(3494), - [anon_sym_PLUS] = ACTIONS(3494), - [anon_sym_DASH] = ACTIONS(3494), - [anon_sym_STAR] = ACTIONS(3496), - [anon_sym_CARET] = ACTIONS(3496), - [anon_sym_AMP] = ACTIONS(3496), - [anon_sym_this] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_base] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_break] = ACTIONS(3494), - [anon_sym_unchecked] = ACTIONS(3494), - [anon_sym_continue] = ACTIONS(3494), - [anon_sym_do] = ACTIONS(3494), - [anon_sym_while] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3494), - [anon_sym_lock] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_switch] = ACTIONS(3494), - [anon_sym_default] = ACTIONS(3494), - [anon_sym_throw] = ACTIONS(3494), - [anon_sym_try] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_await] = ACTIONS(3494), - [anon_sym_foreach] = ACTIONS(3494), - [anon_sym_goto] = ACTIONS(3494), - [anon_sym_if] = ACTIONS(3494), - [anon_sym_else] = ACTIONS(3494), - [anon_sym_DOT_DOT] = ACTIONS(3496), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), - [anon_sym_stackalloc] = ACTIONS(3494), - [anon_sym_sizeof] = ACTIONS(3494), - [anon_sym_typeof] = ACTIONS(3494), - [anon_sym___makeref] = ACTIONS(3494), - [anon_sym___reftype] = ACTIONS(3494), - [anon_sym___refvalue] = ACTIONS(3494), - [sym_null_literal] = ACTIONS(3494), - [anon_sym_SQUOTE] = ACTIONS(3496), - [sym_integer_literal] = ACTIONS(3494), - [sym_real_literal] = ACTIONS(3496), - [anon_sym_DQUOTE] = ACTIONS(3496), - [sym_verbatim_string_literal] = ACTIONS(3496), - [sym_grit_metavariable] = ACTIONS(3496), - [aux_sym_preproc_if_token1] = ACTIONS(3496), - [aux_sym_preproc_if_token3] = ACTIONS(3496), - [aux_sym_preproc_else_token1] = ACTIONS(3496), - [aux_sym_preproc_elif_token1] = ACTIONS(3496), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3496), - [sym_interpolation_verbatim_start] = ACTIONS(3496), - [sym_interpolation_raw_start] = ACTIONS(3496), - [sym_raw_string_start] = ACTIONS(3496), + [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_if_token3] = ACTIONS(3494), + [aux_sym_preproc_else_token1] = ACTIONS(3494), + [aux_sym_preproc_elif_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), }, [1976] = { [sym_preproc_region] = STATE(1976), @@ -382979,125 +383062,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1976), [sym_preproc_define] = STATE(1976), [sym_preproc_undef] = STATE(1976), - [sym__identifier_token] = ACTIONS(3498), - [anon_sym_extern] = ACTIONS(3498), - [anon_sym_alias] = ACTIONS(3498), - [anon_sym_SEMI] = ACTIONS(3500), - [anon_sym_global] = ACTIONS(3498), - [anon_sym_using] = ACTIONS(3498), - [anon_sym_unsafe] = ACTIONS(3498), - [anon_sym_static] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_LPAREN] = ACTIONS(3500), - [anon_sym_return] = ACTIONS(3498), - [anon_sym_namespace] = ACTIONS(3498), - [anon_sym_class] = ACTIONS(3498), - [anon_sym_ref] = ACTIONS(3498), - [anon_sym_struct] = ACTIONS(3498), - [anon_sym_enum] = ACTIONS(3498), - [anon_sym_LBRACE] = ACTIONS(3500), - [anon_sym_interface] = ACTIONS(3498), - [anon_sym_delegate] = ACTIONS(3498), - [anon_sym_record] = ACTIONS(3498), - [anon_sym_public] = ACTIONS(3498), - [anon_sym_private] = ACTIONS(3498), - [anon_sym_readonly] = ACTIONS(3498), - [anon_sym_abstract] = ACTIONS(3498), - [anon_sym_async] = ACTIONS(3498), - [anon_sym_const] = ACTIONS(3498), - [anon_sym_file] = ACTIONS(3498), - [anon_sym_fixed] = ACTIONS(3498), - [anon_sym_internal] = ACTIONS(3498), - [anon_sym_new] = ACTIONS(3498), - [anon_sym_override] = ACTIONS(3498), - [anon_sym_partial] = ACTIONS(3498), - [anon_sym_protected] = ACTIONS(3498), - [anon_sym_required] = ACTIONS(3498), - [anon_sym_sealed] = ACTIONS(3498), - [anon_sym_virtual] = ACTIONS(3498), - [anon_sym_volatile] = ACTIONS(3498), - [anon_sym_where] = ACTIONS(3498), - [anon_sym_notnull] = ACTIONS(3498), - [anon_sym_unmanaged] = ACTIONS(3498), - [anon_sym_checked] = ACTIONS(3498), - [anon_sym_BANG] = ACTIONS(3500), - [anon_sym_TILDE] = ACTIONS(3500), - [anon_sym_PLUS_PLUS] = ACTIONS(3500), - [anon_sym_DASH_DASH] = ACTIONS(3500), - [anon_sym_true] = ACTIONS(3498), - [anon_sym_false] = ACTIONS(3498), - [anon_sym_PLUS] = ACTIONS(3498), - [anon_sym_DASH] = ACTIONS(3498), - [anon_sym_STAR] = ACTIONS(3500), - [anon_sym_CARET] = ACTIONS(3500), - [anon_sym_AMP] = ACTIONS(3500), - [anon_sym_this] = ACTIONS(3498), - [anon_sym_scoped] = ACTIONS(3498), - [anon_sym_base] = ACTIONS(3498), - [anon_sym_var] = ACTIONS(3498), - [sym_predefined_type] = ACTIONS(3498), - [anon_sym_break] = ACTIONS(3498), - [anon_sym_unchecked] = ACTIONS(3498), - [anon_sym_continue] = ACTIONS(3498), - [anon_sym_do] = ACTIONS(3498), - [anon_sym_while] = ACTIONS(3498), - [anon_sym_for] = ACTIONS(3498), - [anon_sym_lock] = ACTIONS(3498), - [anon_sym_yield] = ACTIONS(3498), - [anon_sym_switch] = ACTIONS(3498), - [anon_sym_default] = ACTIONS(3498), - [anon_sym_throw] = ACTIONS(3498), - [anon_sym_try] = ACTIONS(3498), - [anon_sym_when] = ACTIONS(3498), - [anon_sym_await] = ACTIONS(3498), - [anon_sym_foreach] = ACTIONS(3498), - [anon_sym_goto] = ACTIONS(3498), - [anon_sym_if] = ACTIONS(3498), - [anon_sym_else] = ACTIONS(3498), - [anon_sym_DOT_DOT] = ACTIONS(3500), - [anon_sym_from] = ACTIONS(3498), - [anon_sym_into] = ACTIONS(3498), - [anon_sym_join] = ACTIONS(3498), - [anon_sym_on] = ACTIONS(3498), - [anon_sym_equals] = ACTIONS(3498), - [anon_sym_let] = ACTIONS(3498), - [anon_sym_orderby] = ACTIONS(3498), - [anon_sym_ascending] = ACTIONS(3498), - [anon_sym_descending] = ACTIONS(3498), - [anon_sym_group] = ACTIONS(3498), - [anon_sym_by] = ACTIONS(3498), - [anon_sym_select] = ACTIONS(3498), - [anon_sym_stackalloc] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(3498), - [anon_sym_typeof] = ACTIONS(3498), - [anon_sym___makeref] = ACTIONS(3498), - [anon_sym___reftype] = ACTIONS(3498), - [anon_sym___refvalue] = ACTIONS(3498), - [sym_null_literal] = ACTIONS(3498), - [anon_sym_SQUOTE] = ACTIONS(3500), - [sym_integer_literal] = ACTIONS(3498), - [sym_real_literal] = ACTIONS(3500), - [anon_sym_DQUOTE] = ACTIONS(3500), - [sym_verbatim_string_literal] = ACTIONS(3500), - [sym_grit_metavariable] = ACTIONS(3500), - [aux_sym_preproc_if_token1] = ACTIONS(3500), - [aux_sym_preproc_if_token3] = ACTIONS(3500), - [aux_sym_preproc_else_token1] = ACTIONS(3500), - [aux_sym_preproc_elif_token1] = ACTIONS(3500), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3500), - [sym_interpolation_verbatim_start] = ACTIONS(3500), - [sym_interpolation_raw_start] = ACTIONS(3500), - [sym_raw_string_start] = ACTIONS(3500), + [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_namespace] = ACTIONS(3496), + [anon_sym_class] = ACTIONS(3496), + [anon_sym_ref] = ACTIONS(3496), + [anon_sym_struct] = ACTIONS(3496), + [anon_sym_enum] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3498), + [anon_sym_interface] = ACTIONS(3496), + [anon_sym_delegate] = ACTIONS(3496), + [anon_sym_record] = 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_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_if_token3] = ACTIONS(3498), + [aux_sym_preproc_else_token1] = ACTIONS(3498), + [aux_sym_preproc_elif_token1] = ACTIONS(3498), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [1977] = { [sym_preproc_region] = STATE(1977), @@ -383109,125 +383192,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1977), [sym_preproc_define] = STATE(1977), [sym_preproc_undef] = STATE(1977), - [sym__identifier_token] = ACTIONS(3502), - [anon_sym_extern] = ACTIONS(3502), - [anon_sym_alias] = ACTIONS(3502), - [anon_sym_SEMI] = ACTIONS(3504), - [anon_sym_global] = ACTIONS(3502), - [anon_sym_using] = ACTIONS(3502), - [anon_sym_unsafe] = ACTIONS(3502), - [anon_sym_static] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_LPAREN] = ACTIONS(3504), - [anon_sym_return] = ACTIONS(3502), - [anon_sym_namespace] = ACTIONS(3502), - [anon_sym_class] = ACTIONS(3502), - [anon_sym_ref] = ACTIONS(3502), - [anon_sym_struct] = ACTIONS(3502), - [anon_sym_enum] = ACTIONS(3502), - [anon_sym_LBRACE] = ACTIONS(3504), - [anon_sym_interface] = ACTIONS(3502), - [anon_sym_delegate] = ACTIONS(3502), - [anon_sym_record] = ACTIONS(3502), - [anon_sym_public] = ACTIONS(3502), - [anon_sym_private] = ACTIONS(3502), - [anon_sym_readonly] = ACTIONS(3502), - [anon_sym_abstract] = ACTIONS(3502), - [anon_sym_async] = ACTIONS(3502), - [anon_sym_const] = ACTIONS(3502), - [anon_sym_file] = ACTIONS(3502), - [anon_sym_fixed] = ACTIONS(3502), - [anon_sym_internal] = ACTIONS(3502), - [anon_sym_new] = ACTIONS(3502), - [anon_sym_override] = ACTIONS(3502), - [anon_sym_partial] = ACTIONS(3502), - [anon_sym_protected] = ACTIONS(3502), - [anon_sym_required] = ACTIONS(3502), - [anon_sym_sealed] = ACTIONS(3502), - [anon_sym_virtual] = ACTIONS(3502), - [anon_sym_volatile] = ACTIONS(3502), - [anon_sym_where] = ACTIONS(3502), - [anon_sym_notnull] = ACTIONS(3502), - [anon_sym_unmanaged] = ACTIONS(3502), - [anon_sym_checked] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(3504), - [anon_sym_PLUS_PLUS] = ACTIONS(3504), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [anon_sym_true] = ACTIONS(3502), - [anon_sym_false] = ACTIONS(3502), - [anon_sym_PLUS] = ACTIONS(3502), - [anon_sym_DASH] = ACTIONS(3502), - [anon_sym_STAR] = ACTIONS(3504), - [anon_sym_CARET] = ACTIONS(3504), - [anon_sym_AMP] = ACTIONS(3504), - [anon_sym_this] = ACTIONS(3502), - [anon_sym_scoped] = ACTIONS(3502), - [anon_sym_base] = ACTIONS(3502), - [anon_sym_var] = ACTIONS(3502), - [sym_predefined_type] = ACTIONS(3502), - [anon_sym_break] = ACTIONS(3502), - [anon_sym_unchecked] = ACTIONS(3502), - [anon_sym_continue] = ACTIONS(3502), - [anon_sym_do] = ACTIONS(3502), - [anon_sym_while] = ACTIONS(3502), - [anon_sym_for] = ACTIONS(3502), - [anon_sym_lock] = ACTIONS(3502), - [anon_sym_yield] = ACTIONS(3502), - [anon_sym_switch] = ACTIONS(3502), - [anon_sym_default] = ACTIONS(3502), - [anon_sym_throw] = ACTIONS(3502), - [anon_sym_try] = ACTIONS(3502), - [anon_sym_when] = ACTIONS(3502), - [anon_sym_await] = ACTIONS(3502), - [anon_sym_foreach] = ACTIONS(3502), - [anon_sym_goto] = ACTIONS(3502), - [anon_sym_if] = ACTIONS(3502), - [anon_sym_else] = ACTIONS(3506), - [anon_sym_DOT_DOT] = ACTIONS(3504), - [anon_sym_from] = ACTIONS(3502), - [anon_sym_into] = ACTIONS(3502), - [anon_sym_join] = ACTIONS(3502), - [anon_sym_on] = ACTIONS(3502), - [anon_sym_equals] = ACTIONS(3502), - [anon_sym_let] = ACTIONS(3502), - [anon_sym_orderby] = ACTIONS(3502), - [anon_sym_ascending] = ACTIONS(3502), - [anon_sym_descending] = ACTIONS(3502), - [anon_sym_group] = ACTIONS(3502), - [anon_sym_by] = ACTIONS(3502), - [anon_sym_select] = ACTIONS(3502), - [anon_sym_stackalloc] = ACTIONS(3502), - [anon_sym_sizeof] = ACTIONS(3502), - [anon_sym_typeof] = ACTIONS(3502), - [anon_sym___makeref] = ACTIONS(3502), - [anon_sym___reftype] = ACTIONS(3502), - [anon_sym___refvalue] = ACTIONS(3502), - [sym_null_literal] = ACTIONS(3502), - [anon_sym_SQUOTE] = ACTIONS(3504), - [sym_integer_literal] = ACTIONS(3502), - [sym_real_literal] = ACTIONS(3504), - [anon_sym_DQUOTE] = ACTIONS(3504), - [sym_verbatim_string_literal] = ACTIONS(3504), - [sym_grit_metavariable] = ACTIONS(3504), - [aux_sym_preproc_if_token1] = ACTIONS(3504), - [aux_sym_preproc_if_token3] = ACTIONS(3504), - [aux_sym_preproc_else_token1] = ACTIONS(3504), - [aux_sym_preproc_elif_token1] = ACTIONS(3504), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3504), - [sym_interpolation_verbatim_start] = ACTIONS(3504), - [sym_interpolation_raw_start] = ACTIONS(3504), - [sym_raw_string_start] = ACTIONS(3504), + [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_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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [1978] = { [sym_preproc_region] = STATE(1978), @@ -383239,6 +383322,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(1978), [sym_preproc_define] = STATE(1978), [sym_preproc_undef] = STATE(1978), + [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_if_token3] = ACTIONS(3506), + [aux_sym_preproc_else_token1] = ACTIONS(3506), + [aux_sym_preproc_elif_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), + }, + [1979] = { + [sym_preproc_region] = STATE(1979), + [sym_preproc_endregion] = STATE(1979), + [sym_preproc_line] = STATE(1979), + [sym_preproc_pragma] = STATE(1979), + [sym_preproc_nullable] = STATE(1979), + [sym_preproc_error] = STATE(1979), + [sym_preproc_warning] = STATE(1979), + [sym_preproc_define] = STATE(1979), + [sym_preproc_undef] = STATE(1979), [sym__identifier_token] = ACTIONS(3508), [anon_sym_extern] = ACTIONS(3508), [anon_sym_alias] = ACTIONS(3508), @@ -383280,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), @@ -383315,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), @@ -383359,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), }, - [1979] = { - [sym_preproc_region] = STATE(1979), - [sym_preproc_endregion] = STATE(1979), - [sym_preproc_line] = STATE(1979), - [sym_preproc_pragma] = STATE(1979), - [sym_preproc_nullable] = STATE(1979), - [sym_preproc_error] = STATE(1979), - [sym_preproc_warning] = STATE(1979), - [sym_preproc_define] = STATE(1979), - [sym_preproc_undef] = STATE(1979), + [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), @@ -383410,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), @@ -383445,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), @@ -383489,16 +383702,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3514), [sym_raw_string_start] = ACTIONS(3514), }, - [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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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), @@ -383540,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), @@ -383575,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), @@ -383619,146 +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), }, - [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), - [ts_builtin_sym_end] = ACTIONS(3381), - [sym__identifier_token] = ACTIONS(3379), - [anon_sym_extern] = ACTIONS(3379), - [anon_sym_alias] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_global] = ACTIONS(3379), - [anon_sym_using] = ACTIONS(3379), - [anon_sym_unsafe] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_namespace] = ACTIONS(3379), - [anon_sym_class] = ACTIONS(3379), - [anon_sym_ref] = ACTIONS(3379), - [anon_sym_struct] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_delegate] = ACTIONS(3379), - [anon_sym_record] = ACTIONS(3379), - [anon_sym_public] = ACTIONS(3379), - [anon_sym_private] = ACTIONS(3379), - [anon_sym_readonly] = ACTIONS(3379), - [anon_sym_abstract] = ACTIONS(3379), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_file] = ACTIONS(3379), - [anon_sym_fixed] = ACTIONS(3379), - [anon_sym_internal] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3379), - [anon_sym_partial] = ACTIONS(3379), - [anon_sym_protected] = ACTIONS(3379), - [anon_sym_required] = ACTIONS(3379), - [anon_sym_sealed] = ACTIONS(3379), - [anon_sym_virtual] = ACTIONS(3379), - [anon_sym_volatile] = ACTIONS(3379), - [anon_sym_where] = ACTIONS(3379), - [anon_sym_notnull] = ACTIONS(3379), - [anon_sym_unmanaged] = ACTIONS(3379), - [anon_sym_checked] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3381), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_CARET] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3381), - [anon_sym_this] = ACTIONS(3379), - [anon_sym_scoped] = ACTIONS(3379), - [anon_sym_base] = ACTIONS(3379), - [anon_sym_var] = ACTIONS(3379), - [sym_predefined_type] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_unchecked] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_lock] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_switch] = ACTIONS(3379), - [anon_sym_default] = ACTIONS(3379), - [anon_sym_throw] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_catch] = ACTIONS(3379), - [anon_sym_when] = ACTIONS(3379), - [anon_sym_finally] = ACTIONS(3379), - [anon_sym_await] = ACTIONS(3379), - [anon_sym_foreach] = ACTIONS(3379), - [anon_sym_goto] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_else] = ACTIONS(3379), - [anon_sym_DOT_DOT] = ACTIONS(3381), - [anon_sym_from] = ACTIONS(3379), - [anon_sym_into] = ACTIONS(3379), - [anon_sym_join] = ACTIONS(3379), - [anon_sym_on] = ACTIONS(3379), - [anon_sym_equals] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_orderby] = ACTIONS(3379), - [anon_sym_ascending] = ACTIONS(3379), - [anon_sym_descending] = ACTIONS(3379), - [anon_sym_group] = ACTIONS(3379), - [anon_sym_by] = ACTIONS(3379), - [anon_sym_select] = ACTIONS(3379), - [anon_sym_stackalloc] = ACTIONS(3379), - [anon_sym_sizeof] = ACTIONS(3379), - [anon_sym_typeof] = ACTIONS(3379), - [anon_sym___makeref] = ACTIONS(3379), - [anon_sym___reftype] = ACTIONS(3379), - [anon_sym___refvalue] = ACTIONS(3379), - [sym_null_literal] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3381), - [sym_integer_literal] = ACTIONS(3379), - [sym_real_literal] = ACTIONS(3381), - [anon_sym_DQUOTE] = ACTIONS(3381), - [sym_verbatim_string_literal] = ACTIONS(3381), - [sym_grit_metavariable] = ACTIONS(3381), - [aux_sym_preproc_if_token1] = ACTIONS(3381), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3381), - [sym_interpolation_verbatim_start] = ACTIONS(3381), - [sym_interpolation_raw_start] = ACTIONS(3381), - [sym_raw_string_start] = ACTIONS(3381), - }, - [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), + [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), @@ -383800,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), @@ -383835,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), @@ -383879,16 +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), }, - [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), + [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), @@ -383930,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), @@ -383965,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), @@ -384009,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), }, - [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), + [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), @@ -384060,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), @@ -384095,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), @@ -384139,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), }, - [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), + [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), @@ -384190,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), @@ -384225,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), @@ -384269,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), }, - [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), + [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), @@ -384320,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), @@ -384355,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), @@ -384399,16 +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), }, - [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), + [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), @@ -384450,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), @@ -384485,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), @@ -384529,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), }, - [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), + [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), @@ -384580,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), @@ -384615,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), @@ -384659,16 +385002,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3546), [sym_raw_string_start] = ACTIONS(3546), }, - [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), + [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), @@ -384710,21 +385183,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), @@ -384745,6 +385209,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), @@ -384789,16 +385262,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3550), [sym_raw_string_start] = ACTIONS(3550), }, - [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), + [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), @@ -384840,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), @@ -384875,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), @@ -384919,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), }, - [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), + [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), @@ -384970,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), @@ -385005,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), @@ -385049,146 +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), }, - [1992] = { - [sym_preproc_region] = STATE(1992), - [sym_preproc_endregion] = STATE(1992), - [sym_preproc_line] = STATE(1992), - [sym_preproc_pragma] = STATE(1992), - [sym_preproc_nullable] = STATE(1992), - [sym_preproc_error] = STATE(1992), - [sym_preproc_warning] = STATE(1992), - [sym_preproc_define] = STATE(1992), - [sym_preproc_undef] = STATE(1992), - [ts_builtin_sym_end] = ACTIONS(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), - }, - [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), + [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), @@ -385230,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), @@ -385265,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), @@ -385309,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), }, - [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), + [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), @@ -385360,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), @@ -385395,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), @@ -385439,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), }, - [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), + [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), @@ -385490,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), @@ -385525,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), @@ -385569,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), }, - [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), + [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), @@ -385620,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), @@ -385655,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), @@ -385699,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), }, - [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), + [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), @@ -385750,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), @@ -385785,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), @@ -385829,266 +386172,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3578), [sym_raw_string_start] = ACTIONS(3578), }, - [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(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), - }, - [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), - [ts_builtin_sym_end] = ACTIONS(3385), - [sym__identifier_token] = ACTIONS(3383), - [anon_sym_extern] = ACTIONS(3383), - [anon_sym_alias] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_global] = ACTIONS(3383), - [anon_sym_using] = ACTIONS(3383), - [anon_sym_unsafe] = ACTIONS(3383), - [anon_sym_static] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_namespace] = ACTIONS(3383), - [anon_sym_class] = ACTIONS(3383), - [anon_sym_ref] = ACTIONS(3383), - [anon_sym_struct] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_interface] = ACTIONS(3383), - [anon_sym_delegate] = ACTIONS(3383), - [anon_sym_record] = ACTIONS(3383), - [anon_sym_public] = ACTIONS(3383), - [anon_sym_private] = ACTIONS(3383), - [anon_sym_readonly] = ACTIONS(3383), - [anon_sym_abstract] = ACTIONS(3383), - [anon_sym_async] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_file] = ACTIONS(3383), - [anon_sym_fixed] = ACTIONS(3383), - [anon_sym_internal] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_override] = ACTIONS(3383), - [anon_sym_partial] = ACTIONS(3383), - [anon_sym_protected] = ACTIONS(3383), - [anon_sym_required] = ACTIONS(3383), - [anon_sym_sealed] = ACTIONS(3383), - [anon_sym_virtual] = ACTIONS(3383), - [anon_sym_volatile] = ACTIONS(3383), - [anon_sym_where] = ACTIONS(3383), - [anon_sym_notnull] = ACTIONS(3383), - [anon_sym_unmanaged] = ACTIONS(3383), - [anon_sym_checked] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_PLUS_PLUS] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_STAR] = ACTIONS(3385), - [anon_sym_CARET] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3385), - [anon_sym_this] = ACTIONS(3383), - [anon_sym_scoped] = ACTIONS(3383), - [anon_sym_base] = ACTIONS(3383), - [anon_sym_var] = ACTIONS(3383), - [sym_predefined_type] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_unchecked] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_lock] = ACTIONS(3383), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_switch] = ACTIONS(3383), - [anon_sym_default] = ACTIONS(3383), - [anon_sym_throw] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_catch] = ACTIONS(3383), - [anon_sym_when] = ACTIONS(3383), - [anon_sym_finally] = ACTIONS(3383), - [anon_sym_await] = ACTIONS(3383), - [anon_sym_foreach] = ACTIONS(3383), - [anon_sym_goto] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_else] = ACTIONS(3383), - [anon_sym_DOT_DOT] = ACTIONS(3385), - [anon_sym_from] = ACTIONS(3383), - [anon_sym_into] = ACTIONS(3383), - [anon_sym_join] = ACTIONS(3383), - [anon_sym_on] = ACTIONS(3383), - [anon_sym_equals] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_orderby] = ACTIONS(3383), - [anon_sym_ascending] = ACTIONS(3383), - [anon_sym_descending] = ACTIONS(3383), - [anon_sym_group] = ACTIONS(3383), - [anon_sym_by] = ACTIONS(3383), - [anon_sym_select] = ACTIONS(3383), - [anon_sym_stackalloc] = ACTIONS(3383), - [anon_sym_sizeof] = ACTIONS(3383), - [anon_sym_typeof] = ACTIONS(3383), - [anon_sym___makeref] = ACTIONS(3383), - [anon_sym___reftype] = ACTIONS(3383), - [anon_sym___refvalue] = ACTIONS(3383), - [sym_null_literal] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3385), - [sym_integer_literal] = ACTIONS(3383), - [sym_real_literal] = ACTIONS(3385), - [anon_sym_DQUOTE] = ACTIONS(3385), - [sym_verbatim_string_literal] = ACTIONS(3385), - [sym_grit_metavariable] = ACTIONS(3385), - [aux_sym_preproc_if_token1] = ACTIONS(3385), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3385), - [sym_interpolation_verbatim_start] = ACTIONS(3385), - [sym_interpolation_raw_start] = ACTIONS(3385), - [sym_raw_string_start] = ACTIONS(3385), - }, [2000] = { [sym_preproc_region] = STATE(2000), [sym_preproc_endregion] = STATE(2000), @@ -386099,111 +386182,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2000), [sym_preproc_define] = STATE(2000), [sym_preproc_undef] = STATE(2000), - [ts_builtin_sym_end] = ACTIONS(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), + [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), @@ -386214,10 +386297,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(3201), - [sym_interpolation_verbatim_start] = ACTIONS(3201), - [sym_interpolation_raw_start] = ACTIONS(3201), - [sym_raw_string_start] = ACTIONS(3201), + [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), @@ -386270,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), @@ -386304,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), @@ -386399,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), @@ -386433,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), @@ -386528,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), @@ -386562,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), @@ -386657,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), @@ -386691,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), @@ -386786,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), @@ -386820,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), @@ -386874,135 +386957,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2006), [sym_preproc_define] = STATE(2006), [sym_preproc_undef] = STATE(2006), - [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), - }, - [2007] = { - [sym_preproc_region] = STATE(2007), - [sym_preproc_endregion] = STATE(2007), - [sym_preproc_line] = STATE(2007), - [sym_preproc_pragma] = STATE(2007), - [sym_preproc_nullable] = STATE(2007), - [sym_preproc_error] = STATE(2007), - [sym_preproc_warning] = STATE(2007), - [sym_preproc_define] = STATE(2007), - [sym_preproc_undef] = STATE(2007), [sym__identifier_token] = ACTIONS(3600), [anon_sym_extern] = ACTIONS(3600), [anon_sym_alias] = ACTIONS(3600), @@ -387044,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), @@ -387078,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), @@ -387122,16 +387076,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3602), [sym_raw_string_start] = ACTIONS(3602), }, - [2008] = { - [sym_preproc_region] = STATE(2008), - [sym_preproc_endregion] = STATE(2008), - [sym_preproc_line] = STATE(2008), - [sym_preproc_pragma] = STATE(2008), - [sym_preproc_nullable] = STATE(2008), - [sym_preproc_error] = STATE(2008), - [sym_preproc_warning] = STATE(2008), - [sym_preproc_define] = STATE(2008), - [sym_preproc_undef] = STATE(2008), + [2007] = { + [sym_preproc_region] = STATE(2007), + [sym_preproc_endregion] = STATE(2007), + [sym_preproc_line] = STATE(2007), + [sym_preproc_pragma] = STATE(2007), + [sym_preproc_nullable] = STATE(2007), + [sym_preproc_error] = STATE(2007), + [sym_preproc_warning] = STATE(2007), + [sym_preproc_define] = STATE(2007), + [sym_preproc_undef] = STATE(2007), [sym__identifier_token] = ACTIONS(3604), [anon_sym_extern] = ACTIONS(3604), [anon_sym_alias] = ACTIONS(3604), @@ -387173,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), @@ -387207,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), @@ -387251,16 +387205,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3606), [sym_raw_string_start] = ACTIONS(3606), }, - [2009] = { - [sym_preproc_region] = STATE(2009), - [sym_preproc_endregion] = STATE(2009), - [sym_preproc_line] = STATE(2009), - [sym_preproc_pragma] = STATE(2009), - [sym_preproc_nullable] = STATE(2009), - [sym_preproc_error] = STATE(2009), - [sym_preproc_warning] = STATE(2009), - [sym_preproc_define] = STATE(2009), - [sym_preproc_undef] = STATE(2009), + [2008] = { + [sym_preproc_region] = STATE(2008), + [sym_preproc_endregion] = STATE(2008), + [sym_preproc_line] = STATE(2008), + [sym_preproc_pragma] = STATE(2008), + [sym_preproc_nullable] = STATE(2008), + [sym_preproc_error] = STATE(2008), + [sym_preproc_warning] = STATE(2008), + [sym_preproc_define] = STATE(2008), + [sym_preproc_undef] = STATE(2008), [sym__identifier_token] = ACTIONS(3608), [anon_sym_extern] = ACTIONS(3608), [anon_sym_alias] = ACTIONS(3608), @@ -387302,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), @@ -387336,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), @@ -387380,16 +387334,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3610), [sym_raw_string_start] = ACTIONS(3610), }, - [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), + [2009] = { + [sym_preproc_region] = STATE(2009), + [sym_preproc_endregion] = STATE(2009), + [sym_preproc_line] = STATE(2009), + [sym_preproc_pragma] = STATE(2009), + [sym_preproc_nullable] = STATE(2009), + [sym_preproc_error] = STATE(2009), + [sym_preproc_warning] = STATE(2009), + [sym_preproc_define] = STATE(2009), + [sym_preproc_undef] = STATE(2009), [sym__identifier_token] = ACTIONS(3612), [anon_sym_extern] = ACTIONS(3612), [anon_sym_alias] = ACTIONS(3612), @@ -387431,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), @@ -387465,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), @@ -387509,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), @@ -387560,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), @@ -387594,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), @@ -387638,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), @@ -387689,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), @@ -387723,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), @@ -387767,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), @@ -387818,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), @@ -387852,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), @@ -387896,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), @@ -387947,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), @@ -387981,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), @@ -388025,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), @@ -388076,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), @@ -388110,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), @@ -388154,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), @@ -388205,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), @@ -388239,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), @@ -388283,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), @@ -388334,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), @@ -388368,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), @@ -388412,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), @@ -388463,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), @@ -388497,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), @@ -388541,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), @@ -388592,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), @@ -388626,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), @@ -388670,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), @@ -388721,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), @@ -388755,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), @@ -388799,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), @@ -388850,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), @@ -388884,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), @@ -388928,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), @@ -388979,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), @@ -389013,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), @@ -389057,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), @@ -389108,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), @@ -389142,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), @@ -389186,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), @@ -389237,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), @@ -389271,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), @@ -389315,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), @@ -389366,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), @@ -389400,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), @@ -389444,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), @@ -389495,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), @@ -389529,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), @@ -389573,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), @@ -389624,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), @@ -389658,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), @@ -389702,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), @@ -389753,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), @@ -389787,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), @@ -389831,119 +389785,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3686), [sym_raw_string_start] = ACTIONS(3686), }, - [2029] = { - [sym_preproc_region] = STATE(2029), - [sym_preproc_endregion] = STATE(2029), - [sym_preproc_line] = STATE(2029), - [sym_preproc_pragma] = STATE(2029), - [sym_preproc_nullable] = STATE(2029), - [sym_preproc_error] = STATE(2029), - [sym_preproc_warning] = STATE(2029), - [sym_preproc_define] = STATE(2029), - [sym_preproc_undef] = STATE(2029), - [ts_builtin_sym_end] = ACTIONS(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), + [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), @@ -389954,10 +389909,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(3546), - [sym_interpolation_verbatim_start] = ACTIONS(3546), - [sym_interpolation_raw_start] = ACTIONS(3546), - [sym_raw_string_start] = ACTIONS(3546), + [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), + [sym_preproc_line] = STATE(2029), + [sym_preproc_pragma] = STATE(2029), + [sym_preproc_nullable] = STATE(2029), + [sym_preproc_error] = STATE(2029), + [sym_preproc_warning] = STATE(2029), + [sym_preproc_define] = STATE(2029), + [sym_preproc_undef] = STATE(2029), + [ts_builtin_sym_end] = ACTIONS(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), @@ -389969,123 +390052,123 @@ 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(3424), - [sym__identifier_token] = ACTIONS(3422), - [anon_sym_extern] = ACTIONS(3422), - [anon_sym_alias] = ACTIONS(3422), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_global] = ACTIONS(3422), - [anon_sym_using] = ACTIONS(3422), - [anon_sym_unsafe] = ACTIONS(3422), - [anon_sym_static] = ACTIONS(3422), - [anon_sym_LBRACK] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(3424), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_namespace] = ACTIONS(3422), - [anon_sym_class] = ACTIONS(3422), - [anon_sym_ref] = ACTIONS(3422), - [anon_sym_struct] = ACTIONS(3422), - [anon_sym_enum] = ACTIONS(3422), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_interface] = ACTIONS(3422), - [anon_sym_delegate] = ACTIONS(3422), - [anon_sym_record] = ACTIONS(3422), - [anon_sym_public] = ACTIONS(3422), - [anon_sym_private] = ACTIONS(3422), - [anon_sym_readonly] = ACTIONS(3422), - [anon_sym_abstract] = ACTIONS(3422), - [anon_sym_async] = ACTIONS(3422), - [anon_sym_const] = ACTIONS(3422), - [anon_sym_file] = ACTIONS(3422), - [anon_sym_fixed] = ACTIONS(3422), - [anon_sym_internal] = ACTIONS(3422), - [anon_sym_new] = ACTIONS(3422), - [anon_sym_override] = ACTIONS(3422), - [anon_sym_partial] = ACTIONS(3422), - [anon_sym_protected] = ACTIONS(3422), - [anon_sym_required] = ACTIONS(3422), - [anon_sym_sealed] = ACTIONS(3422), - [anon_sym_virtual] = ACTIONS(3422), - [anon_sym_volatile] = ACTIONS(3422), - [anon_sym_where] = ACTIONS(3422), - [anon_sym_notnull] = ACTIONS(3422), - [anon_sym_unmanaged] = ACTIONS(3422), - [anon_sym_checked] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3424), - [anon_sym_DASH_DASH] = ACTIONS(3424), - [anon_sym_true] = ACTIONS(3422), - [anon_sym_false] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_STAR] = ACTIONS(3424), - [anon_sym_CARET] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - [anon_sym_this] = ACTIONS(3422), - [anon_sym_scoped] = ACTIONS(3422), - [anon_sym_base] = ACTIONS(3422), - [anon_sym_var] = ACTIONS(3422), - [sym_predefined_type] = ACTIONS(3422), - [anon_sym_break] = ACTIONS(3422), - [anon_sym_unchecked] = ACTIONS(3422), - [anon_sym_continue] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_lock] = ACTIONS(3422), - [anon_sym_yield] = ACTIONS(3422), - [anon_sym_switch] = ACTIONS(3422), - [anon_sym_default] = ACTIONS(3422), - [anon_sym_throw] = ACTIONS(3422), - [anon_sym_try] = ACTIONS(3422), - [anon_sym_when] = ACTIONS(3422), - [anon_sym_await] = ACTIONS(3422), - [anon_sym_foreach] = ACTIONS(3422), - [anon_sym_goto] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3422), - [anon_sym_DOT_DOT] = ACTIONS(3424), - [anon_sym_from] = ACTIONS(3422), - [anon_sym_into] = ACTIONS(3422), - [anon_sym_join] = ACTIONS(3422), - [anon_sym_on] = ACTIONS(3422), - [anon_sym_equals] = ACTIONS(3422), - [anon_sym_let] = ACTIONS(3422), - [anon_sym_orderby] = ACTIONS(3422), - [anon_sym_ascending] = ACTIONS(3422), - [anon_sym_descending] = ACTIONS(3422), - [anon_sym_group] = ACTIONS(3422), - [anon_sym_by] = ACTIONS(3422), - [anon_sym_select] = ACTIONS(3422), - [anon_sym_stackalloc] = ACTIONS(3422), - [anon_sym_sizeof] = ACTIONS(3422), - [anon_sym_typeof] = ACTIONS(3422), - [anon_sym___makeref] = ACTIONS(3422), - [anon_sym___reftype] = ACTIONS(3422), - [anon_sym___refvalue] = ACTIONS(3422), - [sym_null_literal] = ACTIONS(3422), - [anon_sym_SQUOTE] = ACTIONS(3424), - [sym_integer_literal] = ACTIONS(3422), - [sym_real_literal] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [sym_verbatim_string_literal] = ACTIONS(3424), - [sym_grit_metavariable] = ACTIONS(3424), - [aux_sym_preproc_if_token1] = ACTIONS(3424), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3424), - [sym_interpolation_verbatim_start] = ACTIONS(3424), - [sym_interpolation_raw_start] = ACTIONS(3424), - [sym_raw_string_start] = ACTIONS(3424), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [2031] = { [sym_preproc_region] = STATE(2031), @@ -390097,774 +390180,6 @@ 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(3392), - [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_namespace] = ACTIONS(3390), - [anon_sym_class] = ACTIONS(3390), - [anon_sym_ref] = ACTIONS(3390), - [anon_sym_struct] = ACTIONS(3390), - [anon_sym_enum] = ACTIONS(3390), - [anon_sym_LBRACE] = ACTIONS(3392), - [anon_sym_interface] = ACTIONS(3390), - [anon_sym_delegate] = ACTIONS(3390), - [anon_sym_record] = 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_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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), - }, - [2032] = { - [sym_preproc_region] = STATE(2032), - [sym_preproc_endregion] = STATE(2032), - [sym_preproc_line] = STATE(2032), - [sym_preproc_pragma] = STATE(2032), - [sym_preproc_nullable] = STATE(2032), - [sym_preproc_error] = STATE(2032), - [sym_preproc_warning] = STATE(2032), - [sym_preproc_define] = STATE(2032), - [sym_preproc_undef] = STATE(2032), - [ts_builtin_sym_end] = ACTIONS(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), - }, - [2033] = { - [sym_preproc_region] = STATE(2033), - [sym_preproc_endregion] = STATE(2033), - [sym_preproc_line] = STATE(2033), - [sym_preproc_pragma] = STATE(2033), - [sym_preproc_nullable] = STATE(2033), - [sym_preproc_error] = STATE(2033), - [sym_preproc_warning] = STATE(2033), - [sym_preproc_define] = STATE(2033), - [sym_preproc_undef] = STATE(2033), - [ts_builtin_sym_end] = ACTIONS(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), - }, - [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(3440), - [sym__identifier_token] = ACTIONS(3438), - [anon_sym_extern] = ACTIONS(3438), - [anon_sym_alias] = ACTIONS(3438), - [anon_sym_SEMI] = ACTIONS(3440), - [anon_sym_global] = ACTIONS(3438), - [anon_sym_using] = ACTIONS(3438), - [anon_sym_unsafe] = ACTIONS(3438), - [anon_sym_static] = ACTIONS(3438), - [anon_sym_LBRACK] = ACTIONS(3440), - [anon_sym_LPAREN] = ACTIONS(3440), - [anon_sym_return] = ACTIONS(3438), - [anon_sym_namespace] = ACTIONS(3438), - [anon_sym_class] = ACTIONS(3438), - [anon_sym_ref] = ACTIONS(3438), - [anon_sym_struct] = ACTIONS(3438), - [anon_sym_enum] = ACTIONS(3438), - [anon_sym_LBRACE] = ACTIONS(3440), - [anon_sym_interface] = ACTIONS(3438), - [anon_sym_delegate] = ACTIONS(3438), - [anon_sym_record] = ACTIONS(3438), - [anon_sym_public] = ACTIONS(3438), - [anon_sym_private] = ACTIONS(3438), - [anon_sym_readonly] = ACTIONS(3438), - [anon_sym_abstract] = ACTIONS(3438), - [anon_sym_async] = ACTIONS(3438), - [anon_sym_const] = ACTIONS(3438), - [anon_sym_file] = ACTIONS(3438), - [anon_sym_fixed] = ACTIONS(3438), - [anon_sym_internal] = ACTIONS(3438), - [anon_sym_new] = ACTIONS(3438), - [anon_sym_override] = ACTIONS(3438), - [anon_sym_partial] = ACTIONS(3438), - [anon_sym_protected] = ACTIONS(3438), - [anon_sym_required] = ACTIONS(3438), - [anon_sym_sealed] = ACTIONS(3438), - [anon_sym_virtual] = ACTIONS(3438), - [anon_sym_volatile] = ACTIONS(3438), - [anon_sym_where] = ACTIONS(3438), - [anon_sym_notnull] = ACTIONS(3438), - [anon_sym_unmanaged] = ACTIONS(3438), - [anon_sym_checked] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3440), - [anon_sym_TILDE] = ACTIONS(3440), - [anon_sym_PLUS_PLUS] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3440), - [anon_sym_true] = ACTIONS(3438), - [anon_sym_false] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3438), - [anon_sym_DASH] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(3440), - [anon_sym_CARET] = ACTIONS(3440), - [anon_sym_AMP] = ACTIONS(3440), - [anon_sym_this] = ACTIONS(3438), - [anon_sym_scoped] = ACTIONS(3438), - [anon_sym_base] = ACTIONS(3438), - [anon_sym_var] = ACTIONS(3438), - [sym_predefined_type] = ACTIONS(3438), - [anon_sym_break] = ACTIONS(3438), - [anon_sym_unchecked] = ACTIONS(3438), - [anon_sym_continue] = ACTIONS(3438), - [anon_sym_do] = ACTIONS(3438), - [anon_sym_while] = ACTIONS(3438), - [anon_sym_for] = ACTIONS(3438), - [anon_sym_lock] = ACTIONS(3438), - [anon_sym_yield] = ACTIONS(3438), - [anon_sym_switch] = ACTIONS(3438), - [anon_sym_default] = ACTIONS(3438), - [anon_sym_throw] = ACTIONS(3438), - [anon_sym_try] = ACTIONS(3438), - [anon_sym_when] = ACTIONS(3438), - [anon_sym_await] = ACTIONS(3438), - [anon_sym_foreach] = ACTIONS(3438), - [anon_sym_goto] = ACTIONS(3438), - [anon_sym_if] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3438), - [anon_sym_DOT_DOT] = ACTIONS(3440), - [anon_sym_from] = ACTIONS(3438), - [anon_sym_into] = ACTIONS(3438), - [anon_sym_join] = ACTIONS(3438), - [anon_sym_on] = ACTIONS(3438), - [anon_sym_equals] = ACTIONS(3438), - [anon_sym_let] = ACTIONS(3438), - [anon_sym_orderby] = ACTIONS(3438), - [anon_sym_ascending] = ACTIONS(3438), - [anon_sym_descending] = ACTIONS(3438), - [anon_sym_group] = ACTIONS(3438), - [anon_sym_by] = ACTIONS(3438), - [anon_sym_select] = ACTIONS(3438), - [anon_sym_stackalloc] = ACTIONS(3438), - [anon_sym_sizeof] = ACTIONS(3438), - [anon_sym_typeof] = ACTIONS(3438), - [anon_sym___makeref] = ACTIONS(3438), - [anon_sym___reftype] = ACTIONS(3438), - [anon_sym___refvalue] = ACTIONS(3438), - [sym_null_literal] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(3440), - [sym_integer_literal] = ACTIONS(3438), - [sym_real_literal] = ACTIONS(3440), - [anon_sym_DQUOTE] = ACTIONS(3440), - [sym_verbatim_string_literal] = ACTIONS(3440), - [sym_grit_metavariable] = ACTIONS(3440), - [aux_sym_preproc_if_token1] = ACTIONS(3440), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3440), - [sym_interpolation_verbatim_start] = ACTIONS(3440), - [sym_interpolation_raw_start] = ACTIONS(3440), - [sym_raw_string_start] = ACTIONS(3440), - }, - [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(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), - }, - [2036] = { - [sym_preproc_region] = STATE(2036), - [sym_preproc_endregion] = STATE(2036), - [sym_preproc_line] = STATE(2036), - [sym_preproc_pragma] = STATE(2036), - [sym_preproc_nullable] = STATE(2036), - [sym_preproc_error] = STATE(2036), - [sym_preproc_warning] = STATE(2036), - [sym_preproc_define] = STATE(2036), - [sym_preproc_undef] = STATE(2036), - [ts_builtin_sym_end] = ACTIONS(3444), - [sym__identifier_token] = ACTIONS(3442), - [anon_sym_extern] = ACTIONS(3442), - [anon_sym_alias] = ACTIONS(3442), - [anon_sym_SEMI] = ACTIONS(3444), - [anon_sym_global] = ACTIONS(3442), - [anon_sym_using] = ACTIONS(3442), - [anon_sym_unsafe] = ACTIONS(3442), - [anon_sym_static] = ACTIONS(3442), - [anon_sym_LBRACK] = ACTIONS(3444), - [anon_sym_LPAREN] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3442), - [anon_sym_namespace] = ACTIONS(3442), - [anon_sym_class] = ACTIONS(3442), - [anon_sym_ref] = ACTIONS(3442), - [anon_sym_struct] = ACTIONS(3442), - [anon_sym_enum] = ACTIONS(3442), - [anon_sym_LBRACE] = ACTIONS(3444), - [anon_sym_interface] = ACTIONS(3442), - [anon_sym_delegate] = ACTIONS(3442), - [anon_sym_record] = ACTIONS(3442), - [anon_sym_public] = ACTIONS(3442), - [anon_sym_private] = ACTIONS(3442), - [anon_sym_readonly] = ACTIONS(3442), - [anon_sym_abstract] = ACTIONS(3442), - [anon_sym_async] = ACTIONS(3442), - [anon_sym_const] = ACTIONS(3442), - [anon_sym_file] = ACTIONS(3442), - [anon_sym_fixed] = ACTIONS(3442), - [anon_sym_internal] = ACTIONS(3442), - [anon_sym_new] = ACTIONS(3442), - [anon_sym_override] = ACTIONS(3442), - [anon_sym_partial] = ACTIONS(3442), - [anon_sym_protected] = ACTIONS(3442), - [anon_sym_required] = ACTIONS(3442), - [anon_sym_sealed] = ACTIONS(3442), - [anon_sym_virtual] = ACTIONS(3442), - [anon_sym_volatile] = ACTIONS(3442), - [anon_sym_where] = ACTIONS(3442), - [anon_sym_notnull] = ACTIONS(3442), - [anon_sym_unmanaged] = ACTIONS(3442), - [anon_sym_checked] = ACTIONS(3442), - [anon_sym_BANG] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3444), - [anon_sym_true] = ACTIONS(3442), - [anon_sym_false] = ACTIONS(3442), - [anon_sym_PLUS] = ACTIONS(3442), - [anon_sym_DASH] = ACTIONS(3442), - [anon_sym_STAR] = ACTIONS(3444), - [anon_sym_CARET] = ACTIONS(3444), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym_this] = ACTIONS(3442), - [anon_sym_scoped] = ACTIONS(3442), - [anon_sym_base] = ACTIONS(3442), - [anon_sym_var] = ACTIONS(3442), - [sym_predefined_type] = ACTIONS(3442), - [anon_sym_break] = ACTIONS(3442), - [anon_sym_unchecked] = ACTIONS(3442), - [anon_sym_continue] = ACTIONS(3442), - [anon_sym_do] = ACTIONS(3442), - [anon_sym_while] = ACTIONS(3442), - [anon_sym_for] = ACTIONS(3442), - [anon_sym_lock] = ACTIONS(3442), - [anon_sym_yield] = ACTIONS(3442), - [anon_sym_switch] = ACTIONS(3442), - [anon_sym_default] = ACTIONS(3442), - [anon_sym_throw] = ACTIONS(3442), - [anon_sym_try] = ACTIONS(3442), - [anon_sym_when] = ACTIONS(3442), - [anon_sym_await] = ACTIONS(3442), - [anon_sym_foreach] = ACTIONS(3442), - [anon_sym_goto] = ACTIONS(3442), - [anon_sym_if] = ACTIONS(3442), - [anon_sym_else] = ACTIONS(3442), - [anon_sym_DOT_DOT] = ACTIONS(3444), - [anon_sym_from] = ACTIONS(3442), - [anon_sym_into] = ACTIONS(3442), - [anon_sym_join] = ACTIONS(3442), - [anon_sym_on] = ACTIONS(3442), - [anon_sym_equals] = ACTIONS(3442), - [anon_sym_let] = ACTIONS(3442), - [anon_sym_orderby] = ACTIONS(3442), - [anon_sym_ascending] = ACTIONS(3442), - [anon_sym_descending] = ACTIONS(3442), - [anon_sym_group] = ACTIONS(3442), - [anon_sym_by] = ACTIONS(3442), - [anon_sym_select] = ACTIONS(3442), - [anon_sym_stackalloc] = ACTIONS(3442), - [anon_sym_sizeof] = ACTIONS(3442), - [anon_sym_typeof] = ACTIONS(3442), - [anon_sym___makeref] = ACTIONS(3442), - [anon_sym___reftype] = ACTIONS(3442), - [anon_sym___refvalue] = ACTIONS(3442), - [sym_null_literal] = ACTIONS(3442), - [anon_sym_SQUOTE] = ACTIONS(3444), - [sym_integer_literal] = ACTIONS(3442), - [sym_real_literal] = ACTIONS(3444), - [anon_sym_DQUOTE] = ACTIONS(3444), - [sym_verbatim_string_literal] = ACTIONS(3444), - [sym_grit_metavariable] = ACTIONS(3444), - [aux_sym_preproc_if_token1] = ACTIONS(3444), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3444), - [sym_interpolation_verbatim_start] = ACTIONS(3444), - [sym_interpolation_raw_start] = ACTIONS(3444), - [sym_raw_string_start] = ACTIONS(3444), - }, - [2037] = { - [sym_preproc_region] = STATE(2037), - [sym_preproc_endregion] = STATE(2037), - [sym_preproc_line] = STATE(2037), - [sym_preproc_pragma] = STATE(2037), - [sym_preproc_nullable] = STATE(2037), - [sym_preproc_error] = STATE(2037), - [sym_preproc_warning] = STATE(2037), - [sym_preproc_define] = STATE(2037), - [sym_preproc_undef] = STATE(2037), [ts_builtin_sym_end] = ACTIONS(3526), [sym__identifier_token] = ACTIONS(3524), [anon_sym_extern] = ACTIONS(3524), @@ -390907,21 +390222,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), @@ -390942,6 +390248,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), @@ -390983,119 +390298,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3526), [sym_raw_string_start] = ACTIONS(3526), }, - [2038] = { - [sym_preproc_region] = STATE(2038), - [sym_preproc_endregion] = STATE(2038), - [sym_preproc_line] = STATE(2038), - [sym_preproc_pragma] = STATE(2038), - [sym_preproc_nullable] = STATE(2038), - [sym_preproc_error] = STATE(2038), - [sym_preproc_warning] = STATE(2038), - [sym_preproc_define] = STATE(2038), - [sym_preproc_undef] = STATE(2038), - [ts_builtin_sym_end] = ACTIONS(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), + [2032] = { + [sym_preproc_region] = STATE(2032), + [sym_preproc_endregion] = STATE(2032), + [sym_preproc_line] = STATE(2032), + [sym_preproc_pragma] = STATE(2032), + [sym_preproc_nullable] = STATE(2032), + [sym_preproc_error] = STATE(2032), + [sym_preproc_warning] = STATE(2032), + [sym_preproc_define] = STATE(2032), + [sym_preproc_undef] = STATE(2032), + [ts_builtin_sym_end] = ACTIONS(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), @@ -391106,78 +390421,581 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3562), + [sym_interpolation_verbatim_start] = ACTIONS(3562), + [sym_interpolation_raw_start] = ACTIONS(3562), + [sym_raw_string_start] = ACTIONS(3562), }, - [2039] = { - [sym_preproc_region] = STATE(2039), - [sym_preproc_endregion] = STATE(2039), - [sym_preproc_line] = STATE(2039), - [sym_preproc_pragma] = STATE(2039), - [sym_preproc_nullable] = STATE(2039), - [sym_preproc_error] = STATE(2039), - [sym_preproc_warning] = STATE(2039), - [sym_preproc_define] = STATE(2039), - [sym_preproc_undef] = STATE(2039), - [ts_builtin_sym_end] = ACTIONS(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), + [2033] = { + [sym_preproc_region] = STATE(2033), + [sym_preproc_endregion] = STATE(2033), + [sym_preproc_line] = STATE(2033), + [sym_preproc_pragma] = STATE(2033), + [sym_preproc_nullable] = STATE(2033), + [sym_preproc_error] = STATE(2033), + [sym_preproc_warning] = STATE(2033), + [sym_preproc_define] = STATE(2033), + [sym_preproc_undef] = STATE(2033), + [ts_builtin_sym_end] = ACTIONS(3462), + [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_namespace] = ACTIONS(3460), + [anon_sym_class] = ACTIONS(3460), + [anon_sym_ref] = ACTIONS(3460), + [anon_sym_struct] = ACTIONS(3460), + [anon_sym_enum] = ACTIONS(3460), + [anon_sym_LBRACE] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3460), + [anon_sym_delegate] = ACTIONS(3460), + [anon_sym_record] = 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_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), + }, + [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), + [sym_preproc_pragma] = STATE(2036), + [sym_preproc_nullable] = STATE(2036), + [sym_preproc_error] = STATE(2036), + [sym_preproc_warning] = STATE(2036), + [sym_preproc_define] = STATE(2036), + [sym_preproc_undef] = STATE(2036), + [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_preproc_region] = STATE(2037), + [sym_preproc_endregion] = STATE(2037), + [sym_preproc_line] = STATE(2037), + [sym_preproc_pragma] = STATE(2037), + [sym_preproc_nullable] = STATE(2037), + [sym_preproc_error] = STATE(2037), + [sym_preproc_warning] = STATE(2037), + [sym_preproc_define] = STATE(2037), + [sym_preproc_undef] = STATE(2037), + [ts_builtin_sym_end] = ACTIONS(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), @@ -391196,8 +391014,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(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), @@ -391239,528 +391066,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3400), [sym_raw_string_start] = ACTIONS(3400), }, - [2040] = { - [sym_preproc_region] = STATE(2040), - [sym_preproc_endregion] = STATE(2040), - [sym_preproc_line] = STATE(2040), - [sym_preproc_pragma] = STATE(2040), - [sym_preproc_nullable] = STATE(2040), - [sym_preproc_error] = STATE(2040), - [sym_preproc_warning] = STATE(2040), - [sym_preproc_define] = STATE(2040), - [sym_preproc_undef] = STATE(2040), - [ts_builtin_sym_end] = ACTIONS(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), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [2041] = { - [sym_preproc_region] = STATE(2041), - [sym_preproc_endregion] = STATE(2041), - [sym_preproc_line] = STATE(2041), - [sym_preproc_pragma] = STATE(2041), - [sym_preproc_nullable] = STATE(2041), - [sym_preproc_error] = STATE(2041), - [sym_preproc_warning] = STATE(2041), - [sym_preproc_define] = STATE(2041), - [sym_preproc_undef] = STATE(2041), - [ts_builtin_sym_end] = ACTIONS(3432), - [sym__identifier_token] = ACTIONS(3430), - [anon_sym_extern] = ACTIONS(3430), - [anon_sym_alias] = ACTIONS(3430), - [anon_sym_SEMI] = ACTIONS(3432), - [anon_sym_global] = ACTIONS(3430), - [anon_sym_using] = ACTIONS(3430), - [anon_sym_unsafe] = ACTIONS(3430), - [anon_sym_static] = ACTIONS(3430), - [anon_sym_LBRACK] = ACTIONS(3432), - [anon_sym_LPAREN] = ACTIONS(3432), - [anon_sym_return] = ACTIONS(3430), - [anon_sym_namespace] = ACTIONS(3430), - [anon_sym_class] = ACTIONS(3430), - [anon_sym_ref] = ACTIONS(3430), - [anon_sym_struct] = ACTIONS(3430), - [anon_sym_enum] = ACTIONS(3430), - [anon_sym_LBRACE] = ACTIONS(3432), - [anon_sym_interface] = ACTIONS(3430), - [anon_sym_delegate] = ACTIONS(3430), - [anon_sym_record] = ACTIONS(3430), - [anon_sym_public] = ACTIONS(3430), - [anon_sym_private] = ACTIONS(3430), - [anon_sym_readonly] = ACTIONS(3430), - [anon_sym_abstract] = ACTIONS(3430), - [anon_sym_async] = ACTIONS(3430), - [anon_sym_const] = ACTIONS(3430), - [anon_sym_file] = ACTIONS(3430), - [anon_sym_fixed] = ACTIONS(3430), - [anon_sym_internal] = ACTIONS(3430), - [anon_sym_new] = ACTIONS(3430), - [anon_sym_override] = ACTIONS(3430), - [anon_sym_partial] = ACTIONS(3430), - [anon_sym_protected] = ACTIONS(3430), - [anon_sym_required] = ACTIONS(3430), - [anon_sym_sealed] = ACTIONS(3430), - [anon_sym_virtual] = ACTIONS(3430), - [anon_sym_volatile] = ACTIONS(3430), - [anon_sym_where] = ACTIONS(3430), - [anon_sym_notnull] = ACTIONS(3430), - [anon_sym_unmanaged] = ACTIONS(3430), - [anon_sym_checked] = ACTIONS(3430), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3432), - [anon_sym_PLUS_PLUS] = ACTIONS(3432), - [anon_sym_DASH_DASH] = ACTIONS(3432), - [anon_sym_true] = ACTIONS(3430), - [anon_sym_false] = ACTIONS(3430), - [anon_sym_PLUS] = ACTIONS(3430), - [anon_sym_DASH] = ACTIONS(3430), - [anon_sym_STAR] = ACTIONS(3432), - [anon_sym_CARET] = ACTIONS(3432), - [anon_sym_AMP] = ACTIONS(3432), - [anon_sym_this] = ACTIONS(3430), - [anon_sym_scoped] = ACTIONS(3430), - [anon_sym_base] = ACTIONS(3430), - [anon_sym_var] = ACTIONS(3430), - [sym_predefined_type] = ACTIONS(3430), - [anon_sym_break] = ACTIONS(3430), - [anon_sym_unchecked] = ACTIONS(3430), - [anon_sym_continue] = ACTIONS(3430), - [anon_sym_do] = ACTIONS(3430), - [anon_sym_while] = ACTIONS(3430), - [anon_sym_for] = ACTIONS(3430), - [anon_sym_lock] = ACTIONS(3430), - [anon_sym_yield] = ACTIONS(3430), - [anon_sym_switch] = ACTIONS(3430), - [anon_sym_default] = ACTIONS(3430), - [anon_sym_throw] = ACTIONS(3430), - [anon_sym_try] = ACTIONS(3430), - [anon_sym_when] = ACTIONS(3430), - [anon_sym_await] = ACTIONS(3430), - [anon_sym_foreach] = ACTIONS(3430), - [anon_sym_goto] = ACTIONS(3430), - [anon_sym_if] = ACTIONS(3430), - [anon_sym_else] = ACTIONS(3430), - [anon_sym_DOT_DOT] = ACTIONS(3432), - [anon_sym_from] = ACTIONS(3430), - [anon_sym_into] = ACTIONS(3430), - [anon_sym_join] = ACTIONS(3430), - [anon_sym_on] = ACTIONS(3430), - [anon_sym_equals] = ACTIONS(3430), - [anon_sym_let] = ACTIONS(3430), - [anon_sym_orderby] = ACTIONS(3430), - [anon_sym_ascending] = ACTIONS(3430), - [anon_sym_descending] = ACTIONS(3430), - [anon_sym_group] = ACTIONS(3430), - [anon_sym_by] = ACTIONS(3430), - [anon_sym_select] = ACTIONS(3430), - [anon_sym_stackalloc] = ACTIONS(3430), - [anon_sym_sizeof] = ACTIONS(3430), - [anon_sym_typeof] = ACTIONS(3430), - [anon_sym___makeref] = ACTIONS(3430), - [anon_sym___reftype] = ACTIONS(3430), - [anon_sym___refvalue] = ACTIONS(3430), - [sym_null_literal] = ACTIONS(3430), - [anon_sym_SQUOTE] = ACTIONS(3432), - [sym_integer_literal] = ACTIONS(3430), - [sym_real_literal] = ACTIONS(3432), - [anon_sym_DQUOTE] = ACTIONS(3432), - [sym_verbatim_string_literal] = ACTIONS(3432), - [sym_grit_metavariable] = ACTIONS(3432), - [aux_sym_preproc_if_token1] = ACTIONS(3432), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3432), - [sym_interpolation_verbatim_start] = ACTIONS(3432), - [sym_interpolation_raw_start] = ACTIONS(3432), - [sym_raw_string_start] = ACTIONS(3432), - }, - [2042] = { - [sym_preproc_region] = STATE(2042), - [sym_preproc_endregion] = STATE(2042), - [sym_preproc_line] = STATE(2042), - [sym_preproc_pragma] = STATE(2042), - [sym_preproc_nullable] = STATE(2042), - [sym_preproc_error] = STATE(2042), - [sym_preproc_warning] = STATE(2042), - [sym_preproc_define] = STATE(2042), - [sym_preproc_undef] = STATE(2042), - [ts_builtin_sym_end] = ACTIONS(3448), - [sym__identifier_token] = ACTIONS(3446), - [anon_sym_extern] = ACTIONS(3446), - [anon_sym_alias] = ACTIONS(3446), - [anon_sym_SEMI] = ACTIONS(3448), - [anon_sym_global] = ACTIONS(3446), - [anon_sym_using] = ACTIONS(3446), - [anon_sym_unsafe] = ACTIONS(3446), - [anon_sym_static] = ACTIONS(3446), - [anon_sym_LBRACK] = ACTIONS(3448), - [anon_sym_LPAREN] = ACTIONS(3448), - [anon_sym_return] = ACTIONS(3446), - [anon_sym_namespace] = ACTIONS(3446), - [anon_sym_class] = ACTIONS(3446), - [anon_sym_ref] = ACTIONS(3446), - [anon_sym_struct] = ACTIONS(3446), - [anon_sym_enum] = ACTIONS(3446), - [anon_sym_LBRACE] = ACTIONS(3448), - [anon_sym_interface] = ACTIONS(3446), - [anon_sym_delegate] = ACTIONS(3446), - [anon_sym_record] = ACTIONS(3446), - [anon_sym_public] = ACTIONS(3446), - [anon_sym_private] = ACTIONS(3446), - [anon_sym_readonly] = ACTIONS(3446), - [anon_sym_abstract] = ACTIONS(3446), - [anon_sym_async] = ACTIONS(3446), - [anon_sym_const] = ACTIONS(3446), - [anon_sym_file] = ACTIONS(3446), - [anon_sym_fixed] = ACTIONS(3446), - [anon_sym_internal] = ACTIONS(3446), - [anon_sym_new] = ACTIONS(3446), - [anon_sym_override] = ACTIONS(3446), - [anon_sym_partial] = ACTIONS(3446), - [anon_sym_protected] = ACTIONS(3446), - [anon_sym_required] = ACTIONS(3446), - [anon_sym_sealed] = ACTIONS(3446), - [anon_sym_virtual] = ACTIONS(3446), - [anon_sym_volatile] = ACTIONS(3446), - [anon_sym_where] = ACTIONS(3446), - [anon_sym_notnull] = ACTIONS(3446), - [anon_sym_unmanaged] = ACTIONS(3446), - [anon_sym_checked] = ACTIONS(3446), - [anon_sym_BANG] = ACTIONS(3448), - [anon_sym_TILDE] = ACTIONS(3448), - [anon_sym_PLUS_PLUS] = ACTIONS(3448), - [anon_sym_DASH_DASH] = ACTIONS(3448), - [anon_sym_true] = ACTIONS(3446), - [anon_sym_false] = ACTIONS(3446), - [anon_sym_PLUS] = ACTIONS(3446), - [anon_sym_DASH] = ACTIONS(3446), - [anon_sym_STAR] = ACTIONS(3448), - [anon_sym_CARET] = ACTIONS(3448), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_this] = ACTIONS(3446), - [anon_sym_scoped] = ACTIONS(3446), - [anon_sym_base] = ACTIONS(3446), - [anon_sym_var] = ACTIONS(3446), - [sym_predefined_type] = ACTIONS(3446), - [anon_sym_break] = ACTIONS(3446), - [anon_sym_unchecked] = ACTIONS(3446), - [anon_sym_continue] = ACTIONS(3446), - [anon_sym_do] = ACTIONS(3446), - [anon_sym_while] = ACTIONS(3446), - [anon_sym_for] = ACTIONS(3446), - [anon_sym_lock] = ACTIONS(3446), - [anon_sym_yield] = ACTIONS(3446), - [anon_sym_switch] = ACTIONS(3446), - [anon_sym_default] = ACTIONS(3446), - [anon_sym_throw] = ACTIONS(3446), - [anon_sym_try] = ACTIONS(3446), - [anon_sym_when] = ACTIONS(3446), - [anon_sym_await] = ACTIONS(3446), - [anon_sym_foreach] = ACTIONS(3446), - [anon_sym_goto] = ACTIONS(3446), - [anon_sym_if] = ACTIONS(3446), - [anon_sym_else] = ACTIONS(3446), - [anon_sym_DOT_DOT] = ACTIONS(3448), - [anon_sym_from] = ACTIONS(3446), - [anon_sym_into] = ACTIONS(3446), - [anon_sym_join] = ACTIONS(3446), - [anon_sym_on] = ACTIONS(3446), - [anon_sym_equals] = ACTIONS(3446), - [anon_sym_let] = ACTIONS(3446), - [anon_sym_orderby] = ACTIONS(3446), - [anon_sym_ascending] = ACTIONS(3446), - [anon_sym_descending] = ACTIONS(3446), - [anon_sym_group] = ACTIONS(3446), - [anon_sym_by] = ACTIONS(3446), - [anon_sym_select] = ACTIONS(3446), - [anon_sym_stackalloc] = ACTIONS(3446), - [anon_sym_sizeof] = ACTIONS(3446), - [anon_sym_typeof] = ACTIONS(3446), - [anon_sym___makeref] = ACTIONS(3446), - [anon_sym___reftype] = ACTIONS(3446), - [anon_sym___refvalue] = ACTIONS(3446), - [sym_null_literal] = ACTIONS(3446), - [anon_sym_SQUOTE] = ACTIONS(3448), - [sym_integer_literal] = ACTIONS(3446), - [sym_real_literal] = ACTIONS(3448), - [anon_sym_DQUOTE] = ACTIONS(3448), - [sym_verbatim_string_literal] = ACTIONS(3448), - [sym_grit_metavariable] = ACTIONS(3448), - [aux_sym_preproc_if_token1] = ACTIONS(3448), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3448), - [sym_interpolation_verbatim_start] = ACTIONS(3448), - [sym_interpolation_raw_start] = ACTIONS(3448), - [sym_raw_string_start] = ACTIONS(3448), - }, - [2043] = { - [sym_preproc_region] = STATE(2043), - [sym_preproc_endregion] = STATE(2043), - [sym_preproc_line] = STATE(2043), - [sym_preproc_pragma] = STATE(2043), - [sym_preproc_nullable] = STATE(2043), - [sym_preproc_error] = STATE(2043), - [sym_preproc_warning] = STATE(2043), - [sym_preproc_define] = STATE(2043), - [sym_preproc_undef] = STATE(2043), - [ts_builtin_sym_end] = ACTIONS(3452), - [sym__identifier_token] = ACTIONS(3450), - [anon_sym_extern] = ACTIONS(3450), - [anon_sym_alias] = ACTIONS(3450), - [anon_sym_SEMI] = ACTIONS(3452), - [anon_sym_global] = ACTIONS(3450), - [anon_sym_using] = ACTIONS(3450), - [anon_sym_unsafe] = ACTIONS(3450), - [anon_sym_static] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3452), - [anon_sym_return] = ACTIONS(3450), - [anon_sym_namespace] = ACTIONS(3450), - [anon_sym_class] = ACTIONS(3450), - [anon_sym_ref] = ACTIONS(3450), - [anon_sym_struct] = ACTIONS(3450), - [anon_sym_enum] = ACTIONS(3450), - [anon_sym_LBRACE] = ACTIONS(3452), - [anon_sym_interface] = ACTIONS(3450), - [anon_sym_delegate] = ACTIONS(3450), - [anon_sym_record] = ACTIONS(3450), - [anon_sym_public] = ACTIONS(3450), - [anon_sym_private] = ACTIONS(3450), - [anon_sym_readonly] = ACTIONS(3450), - [anon_sym_abstract] = ACTIONS(3450), - [anon_sym_async] = ACTIONS(3450), - [anon_sym_const] = ACTIONS(3450), - [anon_sym_file] = ACTIONS(3450), - [anon_sym_fixed] = ACTIONS(3450), - [anon_sym_internal] = ACTIONS(3450), - [anon_sym_new] = ACTIONS(3450), - [anon_sym_override] = ACTIONS(3450), - [anon_sym_partial] = ACTIONS(3450), - [anon_sym_protected] = ACTIONS(3450), - [anon_sym_required] = ACTIONS(3450), - [anon_sym_sealed] = ACTIONS(3450), - [anon_sym_virtual] = ACTIONS(3450), - [anon_sym_volatile] = ACTIONS(3450), - [anon_sym_where] = ACTIONS(3450), - [anon_sym_notnull] = ACTIONS(3450), - [anon_sym_unmanaged] = ACTIONS(3450), - [anon_sym_checked] = ACTIONS(3450), - [anon_sym_BANG] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3452), - [anon_sym_PLUS_PLUS] = ACTIONS(3452), - [anon_sym_DASH_DASH] = ACTIONS(3452), - [anon_sym_true] = ACTIONS(3450), - [anon_sym_false] = ACTIONS(3450), - [anon_sym_PLUS] = ACTIONS(3450), - [anon_sym_DASH] = ACTIONS(3450), - [anon_sym_STAR] = ACTIONS(3452), - [anon_sym_CARET] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3452), - [anon_sym_this] = ACTIONS(3450), - [anon_sym_scoped] = ACTIONS(3450), - [anon_sym_base] = ACTIONS(3450), - [anon_sym_var] = ACTIONS(3450), - [sym_predefined_type] = ACTIONS(3450), - [anon_sym_break] = ACTIONS(3450), - [anon_sym_unchecked] = ACTIONS(3450), - [anon_sym_continue] = ACTIONS(3450), - [anon_sym_do] = ACTIONS(3450), - [anon_sym_while] = ACTIONS(3450), - [anon_sym_for] = ACTIONS(3450), - [anon_sym_lock] = ACTIONS(3450), - [anon_sym_yield] = ACTIONS(3450), - [anon_sym_switch] = ACTIONS(3450), - [anon_sym_default] = ACTIONS(3450), - [anon_sym_throw] = ACTIONS(3450), - [anon_sym_try] = ACTIONS(3450), - [anon_sym_when] = ACTIONS(3450), - [anon_sym_await] = ACTIONS(3450), - [anon_sym_foreach] = ACTIONS(3450), - [anon_sym_goto] = ACTIONS(3450), - [anon_sym_if] = ACTIONS(3450), - [anon_sym_else] = ACTIONS(3450), - [anon_sym_DOT_DOT] = ACTIONS(3452), - [anon_sym_from] = ACTIONS(3450), - [anon_sym_into] = ACTIONS(3450), - [anon_sym_join] = ACTIONS(3450), - [anon_sym_on] = ACTIONS(3450), - [anon_sym_equals] = ACTIONS(3450), - [anon_sym_let] = ACTIONS(3450), - [anon_sym_orderby] = ACTIONS(3450), - [anon_sym_ascending] = ACTIONS(3450), - [anon_sym_descending] = ACTIONS(3450), - [anon_sym_group] = ACTIONS(3450), - [anon_sym_by] = ACTIONS(3450), - [anon_sym_select] = ACTIONS(3450), - [anon_sym_stackalloc] = ACTIONS(3450), - [anon_sym_sizeof] = ACTIONS(3450), - [anon_sym_typeof] = ACTIONS(3450), - [anon_sym___makeref] = ACTIONS(3450), - [anon_sym___reftype] = ACTIONS(3450), - [anon_sym___refvalue] = ACTIONS(3450), - [sym_null_literal] = ACTIONS(3450), - [anon_sym_SQUOTE] = ACTIONS(3452), - [sym_integer_literal] = ACTIONS(3450), - [sym_real_literal] = ACTIONS(3452), - [anon_sym_DQUOTE] = ACTIONS(3452), - [sym_verbatim_string_literal] = ACTIONS(3452), - [sym_grit_metavariable] = ACTIONS(3452), - [aux_sym_preproc_if_token1] = ACTIONS(3452), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3452), - [sym_interpolation_verbatim_start] = ACTIONS(3452), - [sym_interpolation_raw_start] = ACTIONS(3452), - [sym_raw_string_start] = ACTIONS(3452), - }, - [2044] = { - [sym_preproc_region] = STATE(2044), - [sym_preproc_endregion] = STATE(2044), - [sym_preproc_line] = STATE(2044), - [sym_preproc_pragma] = STATE(2044), - [sym_preproc_nullable] = STATE(2044), - [sym_preproc_error] = STATE(2044), - [sym_preproc_warning] = STATE(2044), - [sym_preproc_define] = STATE(2044), - [sym_preproc_undef] = STATE(2044), + [2038] = { + [sym_preproc_region] = STATE(2038), + [sym_preproc_endregion] = STATE(2038), + [sym_preproc_line] = STATE(2038), + [sym_preproc_pragma] = STATE(2038), + [sym_preproc_nullable] = STATE(2038), + [sym_preproc_error] = STATE(2038), + [sym_preproc_warning] = STATE(2038), + [sym_preproc_define] = STATE(2038), + [sym_preproc_undef] = STATE(2038), [ts_builtin_sym_end] = ACTIONS(3554), [sym__identifier_token] = ACTIONS(3552), [anon_sym_extern] = ACTIONS(3552), @@ -391803,21 +391118,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), @@ -391838,6 +391144,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), @@ -391879,400 +391194,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3554), [sym_raw_string_start] = ACTIONS(3554), }, - [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(3460), - [sym__identifier_token] = ACTIONS(3458), - [anon_sym_extern] = ACTIONS(3458), - [anon_sym_alias] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3460), - [anon_sym_global] = ACTIONS(3458), - [anon_sym_using] = ACTIONS(3458), - [anon_sym_unsafe] = ACTIONS(3458), - [anon_sym_static] = ACTIONS(3458), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3460), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_namespace] = ACTIONS(3458), - [anon_sym_class] = ACTIONS(3458), - [anon_sym_ref] = ACTIONS(3458), - [anon_sym_struct] = ACTIONS(3458), - [anon_sym_enum] = ACTIONS(3458), - [anon_sym_LBRACE] = ACTIONS(3460), - [anon_sym_interface] = ACTIONS(3458), - [anon_sym_delegate] = ACTIONS(3458), - [anon_sym_record] = ACTIONS(3458), - [anon_sym_public] = ACTIONS(3458), - [anon_sym_private] = ACTIONS(3458), - [anon_sym_readonly] = ACTIONS(3458), - [anon_sym_abstract] = ACTIONS(3458), - [anon_sym_async] = ACTIONS(3458), - [anon_sym_const] = ACTIONS(3458), - [anon_sym_file] = ACTIONS(3458), - [anon_sym_fixed] = ACTIONS(3458), - [anon_sym_internal] = ACTIONS(3458), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_override] = ACTIONS(3458), - [anon_sym_partial] = ACTIONS(3458), - [anon_sym_protected] = ACTIONS(3458), - [anon_sym_required] = ACTIONS(3458), - [anon_sym_sealed] = ACTIONS(3458), - [anon_sym_virtual] = ACTIONS(3458), - [anon_sym_volatile] = ACTIONS(3458), - [anon_sym_where] = ACTIONS(3458), - [anon_sym_notnull] = ACTIONS(3458), - [anon_sym_unmanaged] = ACTIONS(3458), - [anon_sym_checked] = ACTIONS(3458), - [anon_sym_BANG] = ACTIONS(3460), - [anon_sym_TILDE] = ACTIONS(3460), - [anon_sym_PLUS_PLUS] = ACTIONS(3460), - [anon_sym_DASH_DASH] = ACTIONS(3460), - [anon_sym_true] = ACTIONS(3458), - [anon_sym_false] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_STAR] = ACTIONS(3460), - [anon_sym_CARET] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3460), - [anon_sym_this] = ACTIONS(3458), - [anon_sym_scoped] = ACTIONS(3458), - [anon_sym_base] = ACTIONS(3458), - [anon_sym_var] = ACTIONS(3458), - [sym_predefined_type] = ACTIONS(3458), - [anon_sym_break] = ACTIONS(3458), - [anon_sym_unchecked] = ACTIONS(3458), - [anon_sym_continue] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_lock] = ACTIONS(3458), - [anon_sym_yield] = ACTIONS(3458), - [anon_sym_switch] = ACTIONS(3458), - [anon_sym_default] = ACTIONS(3458), - [anon_sym_throw] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_when] = ACTIONS(3458), - [anon_sym_await] = ACTIONS(3458), - [anon_sym_foreach] = ACTIONS(3458), - [anon_sym_goto] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_else] = ACTIONS(3458), - [anon_sym_DOT_DOT] = ACTIONS(3460), - [anon_sym_from] = ACTIONS(3458), - [anon_sym_into] = ACTIONS(3458), - [anon_sym_join] = ACTIONS(3458), - [anon_sym_on] = ACTIONS(3458), - [anon_sym_equals] = ACTIONS(3458), - [anon_sym_let] = ACTIONS(3458), - [anon_sym_orderby] = ACTIONS(3458), - [anon_sym_ascending] = ACTIONS(3458), - [anon_sym_descending] = ACTIONS(3458), - [anon_sym_group] = ACTIONS(3458), - [anon_sym_by] = ACTIONS(3458), - [anon_sym_select] = ACTIONS(3458), - [anon_sym_stackalloc] = ACTIONS(3458), - [anon_sym_sizeof] = ACTIONS(3458), - [anon_sym_typeof] = ACTIONS(3458), - [anon_sym___makeref] = ACTIONS(3458), - [anon_sym___reftype] = ACTIONS(3458), - [anon_sym___refvalue] = ACTIONS(3458), - [sym_null_literal] = ACTIONS(3458), - [anon_sym_SQUOTE] = ACTIONS(3460), - [sym_integer_literal] = ACTIONS(3458), - [sym_real_literal] = ACTIONS(3460), - [anon_sym_DQUOTE] = ACTIONS(3460), - [sym_verbatim_string_literal] = ACTIONS(3460), - [sym_grit_metavariable] = ACTIONS(3460), - [aux_sym_preproc_if_token1] = ACTIONS(3460), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3460), - [sym_interpolation_verbatim_start] = ACTIONS(3460), - [sym_interpolation_raw_start] = ACTIONS(3460), - [sym_raw_string_start] = ACTIONS(3460), - }, - [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(3480), - [sym__identifier_token] = ACTIONS(3478), - [anon_sym_extern] = ACTIONS(3478), - [anon_sym_alias] = ACTIONS(3478), - [anon_sym_SEMI] = ACTIONS(3480), - [anon_sym_global] = ACTIONS(3478), - [anon_sym_using] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(3478), - [anon_sym_static] = ACTIONS(3478), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3478), - [anon_sym_namespace] = ACTIONS(3478), - [anon_sym_class] = ACTIONS(3478), - [anon_sym_ref] = ACTIONS(3478), - [anon_sym_struct] = ACTIONS(3478), - [anon_sym_enum] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_interface] = ACTIONS(3478), - [anon_sym_delegate] = ACTIONS(3478), - [anon_sym_record] = ACTIONS(3478), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_readonly] = ACTIONS(3478), - [anon_sym_abstract] = ACTIONS(3478), - [anon_sym_async] = ACTIONS(3478), - [anon_sym_const] = ACTIONS(3478), - [anon_sym_file] = ACTIONS(3478), - [anon_sym_fixed] = ACTIONS(3478), - [anon_sym_internal] = ACTIONS(3478), - [anon_sym_new] = ACTIONS(3478), - [anon_sym_override] = ACTIONS(3478), - [anon_sym_partial] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_required] = ACTIONS(3478), - [anon_sym_sealed] = ACTIONS(3478), - [anon_sym_virtual] = ACTIONS(3478), - [anon_sym_volatile] = ACTIONS(3478), - [anon_sym_where] = ACTIONS(3478), - [anon_sym_notnull] = ACTIONS(3478), - [anon_sym_unmanaged] = ACTIONS(3478), - [anon_sym_checked] = ACTIONS(3478), - [anon_sym_BANG] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3480), - [anon_sym_PLUS_PLUS] = ACTIONS(3480), - [anon_sym_DASH_DASH] = ACTIONS(3480), - [anon_sym_true] = ACTIONS(3478), - [anon_sym_false] = ACTIONS(3478), - [anon_sym_PLUS] = ACTIONS(3478), - [anon_sym_DASH] = ACTIONS(3478), - [anon_sym_STAR] = ACTIONS(3480), - [anon_sym_CARET] = ACTIONS(3480), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_this] = ACTIONS(3478), - [anon_sym_scoped] = ACTIONS(3478), - [anon_sym_base] = ACTIONS(3478), - [anon_sym_var] = ACTIONS(3478), - [sym_predefined_type] = ACTIONS(3478), - [anon_sym_break] = ACTIONS(3478), - [anon_sym_unchecked] = ACTIONS(3478), - [anon_sym_continue] = ACTIONS(3478), - [anon_sym_do] = ACTIONS(3478), - [anon_sym_while] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3478), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_yield] = ACTIONS(3478), - [anon_sym_switch] = ACTIONS(3478), - [anon_sym_default] = ACTIONS(3478), - [anon_sym_throw] = ACTIONS(3478), - [anon_sym_try] = ACTIONS(3478), - [anon_sym_when] = ACTIONS(3478), - [anon_sym_await] = ACTIONS(3478), - [anon_sym_foreach] = ACTIONS(3478), - [anon_sym_goto] = ACTIONS(3478), - [anon_sym_if] = ACTIONS(3478), - [anon_sym_else] = ACTIONS(3478), - [anon_sym_DOT_DOT] = ACTIONS(3480), - [anon_sym_from] = ACTIONS(3478), - [anon_sym_into] = ACTIONS(3478), - [anon_sym_join] = ACTIONS(3478), - [anon_sym_on] = ACTIONS(3478), - [anon_sym_equals] = ACTIONS(3478), - [anon_sym_let] = ACTIONS(3478), - [anon_sym_orderby] = ACTIONS(3478), - [anon_sym_ascending] = ACTIONS(3478), - [anon_sym_descending] = ACTIONS(3478), - [anon_sym_group] = ACTIONS(3478), - [anon_sym_by] = ACTIONS(3478), - [anon_sym_select] = ACTIONS(3478), - [anon_sym_stackalloc] = ACTIONS(3478), - [anon_sym_sizeof] = ACTIONS(3478), - [anon_sym_typeof] = ACTIONS(3478), - [anon_sym___makeref] = ACTIONS(3478), - [anon_sym___reftype] = ACTIONS(3478), - [anon_sym___refvalue] = ACTIONS(3478), - [sym_null_literal] = ACTIONS(3478), - [anon_sym_SQUOTE] = ACTIONS(3480), - [sym_integer_literal] = ACTIONS(3478), - [sym_real_literal] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [sym_verbatim_string_literal] = ACTIONS(3480), - [sym_grit_metavariable] = ACTIONS(3480), - [aux_sym_preproc_if_token1] = ACTIONS(3480), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3480), - [sym_interpolation_verbatim_start] = ACTIONS(3480), - [sym_interpolation_raw_start] = ACTIONS(3480), - [sym_raw_string_start] = ACTIONS(3480), - }, - [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(3468), - [sym__identifier_token] = ACTIONS(3466), - [anon_sym_extern] = ACTIONS(3466), - [anon_sym_alias] = ACTIONS(3466), - [anon_sym_SEMI] = ACTIONS(3468), - [anon_sym_global] = ACTIONS(3466), - [anon_sym_using] = ACTIONS(3466), - [anon_sym_unsafe] = ACTIONS(3466), - [anon_sym_static] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(3468), - [anon_sym_LPAREN] = ACTIONS(3468), - [anon_sym_return] = ACTIONS(3466), - [anon_sym_namespace] = ACTIONS(3466), - [anon_sym_class] = ACTIONS(3466), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_struct] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3466), - [anon_sym_LBRACE] = ACTIONS(3468), - [anon_sym_interface] = ACTIONS(3466), - [anon_sym_delegate] = ACTIONS(3466), - [anon_sym_record] = ACTIONS(3466), - [anon_sym_public] = ACTIONS(3466), - [anon_sym_private] = ACTIONS(3466), - [anon_sym_readonly] = ACTIONS(3466), - [anon_sym_abstract] = ACTIONS(3466), - [anon_sym_async] = ACTIONS(3466), - [anon_sym_const] = ACTIONS(3466), - [anon_sym_file] = ACTIONS(3466), - [anon_sym_fixed] = ACTIONS(3466), - [anon_sym_internal] = ACTIONS(3466), - [anon_sym_new] = ACTIONS(3466), - [anon_sym_override] = ACTIONS(3466), - [anon_sym_partial] = ACTIONS(3466), - [anon_sym_protected] = ACTIONS(3466), - [anon_sym_required] = ACTIONS(3466), - [anon_sym_sealed] = ACTIONS(3466), - [anon_sym_virtual] = ACTIONS(3466), - [anon_sym_volatile] = ACTIONS(3466), - [anon_sym_where] = ACTIONS(3466), - [anon_sym_notnull] = ACTIONS(3466), - [anon_sym_unmanaged] = ACTIONS(3466), - [anon_sym_checked] = ACTIONS(3466), - [anon_sym_BANG] = ACTIONS(3468), - [anon_sym_TILDE] = ACTIONS(3468), - [anon_sym_PLUS_PLUS] = ACTIONS(3468), - [anon_sym_DASH_DASH] = ACTIONS(3468), - [anon_sym_true] = ACTIONS(3466), - [anon_sym_false] = ACTIONS(3466), - [anon_sym_PLUS] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3466), - [anon_sym_STAR] = ACTIONS(3468), - [anon_sym_CARET] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(3468), - [anon_sym_this] = ACTIONS(3466), - [anon_sym_scoped] = ACTIONS(3466), - [anon_sym_base] = ACTIONS(3466), - [anon_sym_var] = ACTIONS(3466), - [sym_predefined_type] = ACTIONS(3466), - [anon_sym_break] = ACTIONS(3466), - [anon_sym_unchecked] = ACTIONS(3466), - [anon_sym_continue] = ACTIONS(3466), - [anon_sym_do] = ACTIONS(3466), - [anon_sym_while] = ACTIONS(3466), - [anon_sym_for] = ACTIONS(3466), - [anon_sym_lock] = ACTIONS(3466), - [anon_sym_yield] = ACTIONS(3466), - [anon_sym_switch] = ACTIONS(3466), - [anon_sym_default] = ACTIONS(3466), - [anon_sym_throw] = ACTIONS(3466), - [anon_sym_try] = ACTIONS(3466), - [anon_sym_when] = ACTIONS(3466), - [anon_sym_await] = ACTIONS(3466), - [anon_sym_foreach] = ACTIONS(3466), - [anon_sym_goto] = ACTIONS(3466), - [anon_sym_if] = ACTIONS(3466), - [anon_sym_else] = ACTIONS(3466), - [anon_sym_DOT_DOT] = ACTIONS(3468), - [anon_sym_from] = ACTIONS(3466), - [anon_sym_into] = ACTIONS(3466), - [anon_sym_join] = ACTIONS(3466), - [anon_sym_on] = ACTIONS(3466), - [anon_sym_equals] = ACTIONS(3466), - [anon_sym_let] = ACTIONS(3466), - [anon_sym_orderby] = ACTIONS(3466), - [anon_sym_ascending] = ACTIONS(3466), - [anon_sym_descending] = ACTIONS(3466), - [anon_sym_group] = ACTIONS(3466), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_select] = ACTIONS(3466), - [anon_sym_stackalloc] = ACTIONS(3466), - [anon_sym_sizeof] = ACTIONS(3466), - [anon_sym_typeof] = ACTIONS(3466), - [anon_sym___makeref] = ACTIONS(3466), - [anon_sym___reftype] = ACTIONS(3466), - [anon_sym___refvalue] = ACTIONS(3466), - [sym_null_literal] = ACTIONS(3466), - [anon_sym_SQUOTE] = ACTIONS(3468), - [sym_integer_literal] = ACTIONS(3466), - [sym_real_literal] = ACTIONS(3468), - [anon_sym_DQUOTE] = ACTIONS(3468), - [sym_verbatim_string_literal] = ACTIONS(3468), - [sym_grit_metavariable] = ACTIONS(3468), - [aux_sym_preproc_if_token1] = ACTIONS(3468), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3468), - [sym_interpolation_verbatim_start] = ACTIONS(3468), - [sym_interpolation_raw_start] = ACTIONS(3468), - [sym_raw_string_start] = ACTIONS(3468), + [2039] = { + [sym_preproc_region] = STATE(2039), + [sym_preproc_endregion] = STATE(2039), + [sym_preproc_line] = STATE(2039), + [sym_preproc_pragma] = STATE(2039), + [sym_preproc_nullable] = STATE(2039), + [sym_preproc_error] = STATE(2039), + [sym_preproc_warning] = STATE(2039), + [sym_preproc_define] = STATE(2039), + [sym_preproc_undef] = STATE(2039), + [ts_builtin_sym_end] = ACTIONS(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), }, - [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), + [2040] = { + [sym_preproc_region] = STATE(2040), + [sym_preproc_endregion] = STATE(2040), + [sym_preproc_line] = STATE(2040), + [sym_preproc_pragma] = STATE(2040), + [sym_preproc_nullable] = STATE(2040), + [sym_preproc_error] = STATE(2040), + [sym_preproc_warning] = STATE(2040), + [sym_preproc_define] = STATE(2040), + [sym_preproc_undef] = STATE(2040), [ts_builtin_sym_end] = ACTIONS(3550), [sym__identifier_token] = ACTIONS(3548), [anon_sym_extern] = ACTIONS(3548), @@ -392315,21 +391374,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), @@ -392350,6 +391400,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), @@ -392391,6 +391450,1030 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3550), [sym_raw_string_start] = ACTIONS(3550), }, + [2041] = { + [sym_preproc_region] = STATE(2041), + [sym_preproc_endregion] = STATE(2041), + [sym_preproc_line] = STATE(2041), + [sym_preproc_pragma] = STATE(2041), + [sym_preproc_nullable] = STATE(2041), + [sym_preproc_error] = STATE(2041), + [sym_preproc_warning] = STATE(2041), + [sym_preproc_define] = STATE(2041), + [sym_preproc_undef] = STATE(2041), + [ts_builtin_sym_end] = ACTIONS(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), + [sym_preproc_endregion] = STATE(2042), + [sym_preproc_line] = STATE(2042), + [sym_preproc_pragma] = STATE(2042), + [sym_preproc_nullable] = STATE(2042), + [sym_preproc_error] = STATE(2042), + [sym_preproc_warning] = STATE(2042), + [sym_preproc_define] = STATE(2042), + [sym_preproc_undef] = STATE(2042), + [ts_builtin_sym_end] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [2043] = { + [sym_preproc_region] = STATE(2043), + [sym_preproc_endregion] = STATE(2043), + [sym_preproc_line] = STATE(2043), + [sym_preproc_pragma] = STATE(2043), + [sym_preproc_nullable] = STATE(2043), + [sym_preproc_error] = STATE(2043), + [sym_preproc_warning] = STATE(2043), + [sym_preproc_define] = STATE(2043), + [sym_preproc_undef] = STATE(2043), + [ts_builtin_sym_end] = ACTIONS(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), + [sym_preproc_pragma] = STATE(2044), + [sym_preproc_nullable] = STATE(2044), + [sym_preproc_error] = STATE(2044), + [sym_preproc_warning] = STATE(2044), + [sym_preproc_define] = STATE(2044), + [sym_preproc_undef] = STATE(2044), + [aux_sym_try_statement_repeat1] = STATE(2059), + [sym__identifier_token] = ACTIONS(3340), + [anon_sym_extern] = ACTIONS(3340), + [anon_sym_alias] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_global] = ACTIONS(3340), + [anon_sym_using] = ACTIONS(3340), + [anon_sym_unsafe] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_ref] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_delegate] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3340), + [anon_sym_private] = ACTIONS(3340), + [anon_sym_readonly] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_async] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_file] = ACTIONS(3340), + [anon_sym_fixed] = ACTIONS(3340), + [anon_sym_internal] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_partial] = ACTIONS(3340), + [anon_sym_protected] = ACTIONS(3340), + [anon_sym_required] = ACTIONS(3340), + [anon_sym_sealed] = ACTIONS(3340), + [anon_sym_virtual] = ACTIONS(3340), + [anon_sym_volatile] = ACTIONS(3340), + [anon_sym_where] = ACTIONS(3340), + [anon_sym_notnull] = ACTIONS(3340), + [anon_sym_unmanaged] = ACTIONS(3340), + [anon_sym_checked] = ACTIONS(3340), + [anon_sym_TILDE] = 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), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_lock] = ACTIONS(3340), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_switch] = ACTIONS(3340), + [anon_sym_case] = ACTIONS(3340), + [anon_sym_default] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_catch] = ACTIONS(3716), + [anon_sym_when] = ACTIONS(3340), + [anon_sym_finally] = ACTIONS(3718), + [anon_sym_await] = ACTIONS(3340), + [anon_sym_foreach] = ACTIONS(3340), + [anon_sym_goto] = ACTIONS(3340), + [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), + [anon_sym_on] = ACTIONS(3340), + [anon_sym_equals] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_orderby] = ACTIONS(3340), + [anon_sym_ascending] = ACTIONS(3340), + [anon_sym_descending] = ACTIONS(3340), + [anon_sym_group] = ACTIONS(3340), + [anon_sym_by] = ACTIONS(3340), + [anon_sym_select] = ACTIONS(3340), + [anon_sym_stackalloc] = ACTIONS(3340), + [anon_sym_sizeof] = ACTIONS(3340), + [anon_sym_typeof] = ACTIONS(3340), + [anon_sym___makeref] = ACTIONS(3340), + [anon_sym___reftype] = ACTIONS(3340), + [anon_sym___refvalue] = ACTIONS(3340), + [sym_null_literal] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3342), + [sym_integer_literal] = ACTIONS(3340), + [sym_real_literal] = ACTIONS(3342), + [anon_sym_DQUOTE] = ACTIONS(3342), + [sym_verbatim_string_literal] = ACTIONS(3342), + [sym_grit_metavariable] = ACTIONS(3342), + [aux_sym_preproc_if_token1] = ACTIONS(3342), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3342), + [sym_interpolation_verbatim_start] = ACTIONS(3342), + [sym_interpolation_raw_start] = ACTIONS(3342), + [sym_raw_string_start] = ACTIONS(3342), + }, + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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), [sym_preproc_endregion] = STATE(2049), @@ -392401,123 +392484,123 @@ 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(3484), - [sym__identifier_token] = ACTIONS(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_using] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LBRACK] = ACTIONS(3484), - [anon_sym_LPAREN] = ACTIONS(3484), - [anon_sym_return] = ACTIONS(3482), - [anon_sym_namespace] = ACTIONS(3482), - [anon_sym_class] = ACTIONS(3482), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_struct] = ACTIONS(3482), - [anon_sym_enum] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3484), - [anon_sym_interface] = ACTIONS(3482), - [anon_sym_delegate] = ACTIONS(3482), - [anon_sym_record] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3482), - [anon_sym_private] = ACTIONS(3482), - [anon_sym_readonly] = ACTIONS(3482), - [anon_sym_abstract] = ACTIONS(3482), - [anon_sym_async] = ACTIONS(3482), - [anon_sym_const] = ACTIONS(3482), - [anon_sym_file] = ACTIONS(3482), - [anon_sym_fixed] = ACTIONS(3482), - [anon_sym_internal] = ACTIONS(3482), - [anon_sym_new] = ACTIONS(3482), - [anon_sym_override] = ACTIONS(3482), - [anon_sym_partial] = ACTIONS(3482), - [anon_sym_protected] = ACTIONS(3482), - [anon_sym_required] = ACTIONS(3482), - [anon_sym_sealed] = ACTIONS(3482), - [anon_sym_virtual] = ACTIONS(3482), - [anon_sym_volatile] = ACTIONS(3482), - [anon_sym_where] = ACTIONS(3482), - [anon_sym_notnull] = ACTIONS(3482), - [anon_sym_unmanaged] = ACTIONS(3482), - [anon_sym_checked] = ACTIONS(3482), - [anon_sym_BANG] = ACTIONS(3484), - [anon_sym_TILDE] = ACTIONS(3484), - [anon_sym_PLUS_PLUS] = ACTIONS(3484), - [anon_sym_DASH_DASH] = ACTIONS(3484), - [anon_sym_true] = ACTIONS(3482), - [anon_sym_false] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3482), - [anon_sym_DASH] = ACTIONS(3482), - [anon_sym_STAR] = ACTIONS(3484), - [anon_sym_CARET] = ACTIONS(3484), - [anon_sym_AMP] = ACTIONS(3484), - [anon_sym_this] = ACTIONS(3482), - [anon_sym_scoped] = ACTIONS(3482), - [anon_sym_base] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_break] = ACTIONS(3482), - [anon_sym_unchecked] = ACTIONS(3482), - [anon_sym_continue] = ACTIONS(3482), - [anon_sym_do] = ACTIONS(3482), - [anon_sym_while] = ACTIONS(3482), - [anon_sym_for] = ACTIONS(3482), - [anon_sym_lock] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_switch] = ACTIONS(3482), - [anon_sym_default] = ACTIONS(3482), - [anon_sym_throw] = ACTIONS(3482), - [anon_sym_try] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [anon_sym_await] = ACTIONS(3482), - [anon_sym_foreach] = ACTIONS(3482), - [anon_sym_goto] = ACTIONS(3482), - [anon_sym_if] = ACTIONS(3482), - [anon_sym_else] = ACTIONS(3482), - [anon_sym_DOT_DOT] = ACTIONS(3484), - [anon_sym_from] = ACTIONS(3482), - [anon_sym_into] = ACTIONS(3482), - [anon_sym_join] = ACTIONS(3482), - [anon_sym_on] = ACTIONS(3482), - [anon_sym_equals] = ACTIONS(3482), - [anon_sym_let] = ACTIONS(3482), - [anon_sym_orderby] = ACTIONS(3482), - [anon_sym_ascending] = ACTIONS(3482), - [anon_sym_descending] = ACTIONS(3482), - [anon_sym_group] = ACTIONS(3482), - [anon_sym_by] = ACTIONS(3482), - [anon_sym_select] = ACTIONS(3482), - [anon_sym_stackalloc] = ACTIONS(3482), - [anon_sym_sizeof] = ACTIONS(3482), - [anon_sym_typeof] = ACTIONS(3482), - [anon_sym___makeref] = ACTIONS(3482), - [anon_sym___reftype] = ACTIONS(3482), - [anon_sym___refvalue] = ACTIONS(3482), - [sym_null_literal] = ACTIONS(3482), - [anon_sym_SQUOTE] = ACTIONS(3484), - [sym_integer_literal] = ACTIONS(3482), - [sym_real_literal] = ACTIONS(3484), - [anon_sym_DQUOTE] = ACTIONS(3484), - [sym_verbatim_string_literal] = ACTIONS(3484), - [sym_grit_metavariable] = ACTIONS(3484), - [aux_sym_preproc_if_token1] = ACTIONS(3484), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3484), - [sym_interpolation_verbatim_start] = ACTIONS(3484), - [sym_interpolation_raw_start] = ACTIONS(3484), - [sym_raw_string_start] = ACTIONS(3484), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2050] = { [sym_preproc_region] = STATE(2050), @@ -392529,123 +392612,123 @@ 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(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2051] = { [sym_preproc_region] = STATE(2051), @@ -392657,493 +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(3488), - [sym__identifier_token] = ACTIONS(3486), - [anon_sym_extern] = ACTIONS(3486), - [anon_sym_alias] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3488), - [anon_sym_global] = ACTIONS(3486), - [anon_sym_using] = ACTIONS(3486), - [anon_sym_unsafe] = ACTIONS(3486), - [anon_sym_static] = ACTIONS(3486), - [anon_sym_LBRACK] = ACTIONS(3488), - [anon_sym_LPAREN] = ACTIONS(3488), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_namespace] = ACTIONS(3486), - [anon_sym_class] = ACTIONS(3486), - [anon_sym_ref] = ACTIONS(3486), - [anon_sym_struct] = ACTIONS(3486), - [anon_sym_enum] = ACTIONS(3486), - [anon_sym_LBRACE] = ACTIONS(3488), - [anon_sym_interface] = ACTIONS(3486), - [anon_sym_delegate] = ACTIONS(3486), - [anon_sym_record] = ACTIONS(3486), - [anon_sym_public] = ACTIONS(3486), - [anon_sym_private] = ACTIONS(3486), - [anon_sym_readonly] = ACTIONS(3486), - [anon_sym_abstract] = ACTIONS(3486), - [anon_sym_async] = ACTIONS(3486), - [anon_sym_const] = ACTIONS(3486), - [anon_sym_file] = ACTIONS(3486), - [anon_sym_fixed] = ACTIONS(3486), - [anon_sym_internal] = ACTIONS(3486), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_override] = ACTIONS(3486), - [anon_sym_partial] = ACTIONS(3486), - [anon_sym_protected] = ACTIONS(3486), - [anon_sym_required] = ACTIONS(3486), - [anon_sym_sealed] = ACTIONS(3486), - [anon_sym_virtual] = ACTIONS(3486), - [anon_sym_volatile] = ACTIONS(3486), - [anon_sym_where] = ACTIONS(3486), - [anon_sym_notnull] = ACTIONS(3486), - [anon_sym_unmanaged] = ACTIONS(3486), - [anon_sym_checked] = ACTIONS(3486), - [anon_sym_BANG] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(3488), - [anon_sym_PLUS_PLUS] = ACTIONS(3488), - [anon_sym_DASH_DASH] = ACTIONS(3488), - [anon_sym_true] = ACTIONS(3486), - [anon_sym_false] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_CARET] = ACTIONS(3488), - [anon_sym_AMP] = ACTIONS(3488), - [anon_sym_this] = ACTIONS(3486), - [anon_sym_scoped] = ACTIONS(3486), - [anon_sym_base] = ACTIONS(3486), - [anon_sym_var] = ACTIONS(3486), - [sym_predefined_type] = ACTIONS(3486), - [anon_sym_break] = ACTIONS(3486), - [anon_sym_unchecked] = ACTIONS(3486), - [anon_sym_continue] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_lock] = ACTIONS(3486), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_switch] = ACTIONS(3486), - [anon_sym_default] = ACTIONS(3486), - [anon_sym_throw] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_when] = ACTIONS(3486), - [anon_sym_await] = ACTIONS(3486), - [anon_sym_foreach] = ACTIONS(3486), - [anon_sym_goto] = ACTIONS(3486), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_else] = ACTIONS(3486), - [anon_sym_DOT_DOT] = ACTIONS(3488), - [anon_sym_from] = ACTIONS(3486), - [anon_sym_into] = ACTIONS(3486), - [anon_sym_join] = ACTIONS(3486), - [anon_sym_on] = ACTIONS(3486), - [anon_sym_equals] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_orderby] = ACTIONS(3486), - [anon_sym_ascending] = ACTIONS(3486), - [anon_sym_descending] = ACTIONS(3486), - [anon_sym_group] = ACTIONS(3486), - [anon_sym_by] = ACTIONS(3486), - [anon_sym_select] = ACTIONS(3486), - [anon_sym_stackalloc] = ACTIONS(3486), - [anon_sym_sizeof] = ACTIONS(3486), - [anon_sym_typeof] = ACTIONS(3486), - [anon_sym___makeref] = ACTIONS(3486), - [anon_sym___reftype] = ACTIONS(3486), - [anon_sym___refvalue] = ACTIONS(3486), - [sym_null_literal] = ACTIONS(3486), - [anon_sym_SQUOTE] = ACTIONS(3488), - [sym_integer_literal] = ACTIONS(3486), - [sym_real_literal] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(3488), - [sym_verbatim_string_literal] = ACTIONS(3488), - [sym_grit_metavariable] = ACTIONS(3488), - [aux_sym_preproc_if_token1] = ACTIONS(3488), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3488), - [sym_interpolation_verbatim_start] = ACTIONS(3488), - [sym_interpolation_raw_start] = ACTIONS(3488), - [sym_raw_string_start] = ACTIONS(3488), - }, - [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(3496), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_SEMI] = ACTIONS(3496), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_using] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(3496), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym_return] = ACTIONS(3494), - [anon_sym_namespace] = ACTIONS(3494), - [anon_sym_class] = ACTIONS(3494), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_struct] = ACTIONS(3494), - [anon_sym_enum] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3496), - [anon_sym_interface] = ACTIONS(3494), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_record] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_checked] = ACTIONS(3494), - [anon_sym_BANG] = ACTIONS(3496), - [anon_sym_TILDE] = ACTIONS(3496), - [anon_sym_PLUS_PLUS] = ACTIONS(3496), - [anon_sym_DASH_DASH] = ACTIONS(3496), - [anon_sym_true] = ACTIONS(3494), - [anon_sym_false] = ACTIONS(3494), - [anon_sym_PLUS] = ACTIONS(3494), - [anon_sym_DASH] = ACTIONS(3494), - [anon_sym_STAR] = ACTIONS(3496), - [anon_sym_CARET] = ACTIONS(3496), - [anon_sym_AMP] = ACTIONS(3496), - [anon_sym_this] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_base] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_break] = ACTIONS(3494), - [anon_sym_unchecked] = ACTIONS(3494), - [anon_sym_continue] = ACTIONS(3494), - [anon_sym_do] = ACTIONS(3494), - [anon_sym_while] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3494), - [anon_sym_lock] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_switch] = ACTIONS(3494), - [anon_sym_default] = ACTIONS(3494), - [anon_sym_throw] = ACTIONS(3494), - [anon_sym_try] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_await] = ACTIONS(3494), - [anon_sym_foreach] = ACTIONS(3494), - [anon_sym_goto] = ACTIONS(3494), - [anon_sym_if] = ACTIONS(3494), - [anon_sym_else] = ACTIONS(3494), - [anon_sym_DOT_DOT] = ACTIONS(3496), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), - [anon_sym_stackalloc] = ACTIONS(3494), - [anon_sym_sizeof] = ACTIONS(3494), - [anon_sym_typeof] = ACTIONS(3494), - [anon_sym___makeref] = ACTIONS(3494), - [anon_sym___reftype] = ACTIONS(3494), - [anon_sym___refvalue] = ACTIONS(3494), - [sym_null_literal] = ACTIONS(3494), - [anon_sym_SQUOTE] = ACTIONS(3496), - [sym_integer_literal] = ACTIONS(3494), - [sym_real_literal] = ACTIONS(3496), - [anon_sym_DQUOTE] = ACTIONS(3496), - [sym_verbatim_string_literal] = ACTIONS(3496), - [sym_grit_metavariable] = ACTIONS(3496), - [aux_sym_preproc_if_token1] = ACTIONS(3496), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3496), - [sym_interpolation_verbatim_start] = ACTIONS(3496), - [sym_interpolation_raw_start] = ACTIONS(3496), - [sym_raw_string_start] = ACTIONS(3496), - }, - [2053] = { - [sym_preproc_region] = STATE(2053), - [sym_preproc_endregion] = STATE(2053), - [sym_preproc_line] = STATE(2053), - [sym_preproc_pragma] = STATE(2053), - [sym_preproc_nullable] = STATE(2053), - [sym_preproc_error] = STATE(2053), - [sym_preproc_warning] = STATE(2053), - [sym_preproc_define] = STATE(2053), - [sym_preproc_undef] = STATE(2053), - [ts_builtin_sym_end] = ACTIONS(3464), - [sym__identifier_token] = ACTIONS(3462), - [anon_sym_extern] = ACTIONS(3462), - [anon_sym_alias] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3464), - [anon_sym_global] = ACTIONS(3462), - [anon_sym_using] = ACTIONS(3462), - [anon_sym_unsafe] = ACTIONS(3462), - [anon_sym_static] = ACTIONS(3462), - [anon_sym_LBRACK] = ACTIONS(3464), - [anon_sym_LPAREN] = ACTIONS(3464), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_namespace] = ACTIONS(3462), - [anon_sym_class] = ACTIONS(3462), - [anon_sym_ref] = ACTIONS(3462), - [anon_sym_struct] = ACTIONS(3462), - [anon_sym_enum] = ACTIONS(3462), - [anon_sym_LBRACE] = ACTIONS(3464), - [anon_sym_interface] = ACTIONS(3462), - [anon_sym_delegate] = ACTIONS(3462), - [anon_sym_record] = ACTIONS(3462), - [anon_sym_public] = ACTIONS(3462), - [anon_sym_private] = ACTIONS(3462), - [anon_sym_readonly] = ACTIONS(3462), - [anon_sym_abstract] = ACTIONS(3462), - [anon_sym_async] = ACTIONS(3462), - [anon_sym_const] = ACTIONS(3462), - [anon_sym_file] = ACTIONS(3462), - [anon_sym_fixed] = ACTIONS(3462), - [anon_sym_internal] = ACTIONS(3462), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_override] = ACTIONS(3462), - [anon_sym_partial] = ACTIONS(3462), - [anon_sym_protected] = ACTIONS(3462), - [anon_sym_required] = ACTIONS(3462), - [anon_sym_sealed] = ACTIONS(3462), - [anon_sym_virtual] = ACTIONS(3462), - [anon_sym_volatile] = ACTIONS(3462), - [anon_sym_where] = ACTIONS(3462), - [anon_sym_notnull] = ACTIONS(3462), - [anon_sym_unmanaged] = ACTIONS(3462), - [anon_sym_checked] = ACTIONS(3462), - [anon_sym_BANG] = ACTIONS(3464), - [anon_sym_TILDE] = ACTIONS(3464), - [anon_sym_PLUS_PLUS] = ACTIONS(3464), - [anon_sym_DASH_DASH] = ACTIONS(3464), - [anon_sym_true] = ACTIONS(3462), - [anon_sym_false] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_AMP] = ACTIONS(3464), - [anon_sym_this] = ACTIONS(3462), - [anon_sym_scoped] = ACTIONS(3462), - [anon_sym_base] = ACTIONS(3462), - [anon_sym_var] = ACTIONS(3462), - [sym_predefined_type] = ACTIONS(3462), - [anon_sym_break] = ACTIONS(3462), - [anon_sym_unchecked] = ACTIONS(3462), - [anon_sym_continue] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_lock] = ACTIONS(3462), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_switch] = ACTIONS(3462), - [anon_sym_default] = ACTIONS(3462), - [anon_sym_throw] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_when] = ACTIONS(3462), - [anon_sym_await] = ACTIONS(3462), - [anon_sym_foreach] = ACTIONS(3462), - [anon_sym_goto] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_else] = ACTIONS(3462), - [anon_sym_DOT_DOT] = ACTIONS(3464), - [anon_sym_from] = ACTIONS(3462), - [anon_sym_into] = ACTIONS(3462), - [anon_sym_join] = ACTIONS(3462), - [anon_sym_on] = ACTIONS(3462), - [anon_sym_equals] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_orderby] = ACTIONS(3462), - [anon_sym_ascending] = ACTIONS(3462), - [anon_sym_descending] = ACTIONS(3462), - [anon_sym_group] = ACTIONS(3462), - [anon_sym_by] = ACTIONS(3462), - [anon_sym_select] = ACTIONS(3462), - [anon_sym_stackalloc] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(3462), - [anon_sym_typeof] = ACTIONS(3462), - [anon_sym___makeref] = ACTIONS(3462), - [anon_sym___reftype] = ACTIONS(3462), - [anon_sym___refvalue] = ACTIONS(3462), - [sym_null_literal] = ACTIONS(3462), - [anon_sym_SQUOTE] = ACTIONS(3464), - [sym_integer_literal] = ACTIONS(3462), - [sym_real_literal] = ACTIONS(3464), - [anon_sym_DQUOTE] = ACTIONS(3464), - [sym_verbatim_string_literal] = ACTIONS(3464), - [sym_grit_metavariable] = ACTIONS(3464), - [aux_sym_preproc_if_token1] = ACTIONS(3464), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3464), - [sym_interpolation_verbatim_start] = ACTIONS(3464), - [sym_interpolation_raw_start] = ACTIONS(3464), - [sym_raw_string_start] = ACTIONS(3464), - }, - [2054] = { - [sym_preproc_region] = STATE(2054), - [sym_preproc_endregion] = STATE(2054), - [sym_preproc_line] = STATE(2054), - [sym_preproc_pragma] = STATE(2054), - [sym_preproc_nullable] = STATE(2054), - [sym_preproc_error] = STATE(2054), - [sym_preproc_warning] = STATE(2054), - [sym_preproc_define] = STATE(2054), - [sym_preproc_undef] = STATE(2054), - [ts_builtin_sym_end] = ACTIONS(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), + [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), @@ -393154,124 +392853,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3566), - [sym_interpolation_verbatim_start] = ACTIONS(3566), - [sym_interpolation_raw_start] = ACTIONS(3566), - [sym_raw_string_start] = ACTIONS(3566), + [sym_interpolation_regular_start] = ACTIONS(3185), + [sym_interpolation_verbatim_start] = ACTIONS(3185), + [sym_interpolation_raw_start] = ACTIONS(3185), + [sym_raw_string_start] = ACTIONS(3185), }, - [2055] = { - [sym_preproc_region] = STATE(2055), - [sym_preproc_endregion] = STATE(2055), - [sym_preproc_line] = STATE(2055), - [sym_preproc_pragma] = STATE(2055), - [sym_preproc_nullable] = STATE(2055), - [sym_preproc_error] = STATE(2055), - [sym_preproc_warning] = STATE(2055), - [sym_preproc_define] = STATE(2055), - [sym_preproc_undef] = STATE(2055), - [ts_builtin_sym_end] = ACTIONS(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), + [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), + [sym_preproc_endregion] = STATE(2053), + [sym_preproc_line] = STATE(2053), + [sym_preproc_pragma] = STATE(2053), + [sym_preproc_nullable] = STATE(2053), + [sym_preproc_error] = STATE(2053), + [sym_preproc_warning] = STATE(2053), + [sym_preproc_define] = STATE(2053), + [sym_preproc_undef] = STATE(2053), + [ts_builtin_sym_end] = ACTIONS(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), @@ -393282,10 +393109,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(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), + [sym_preproc_endregion] = STATE(2054), + [sym_preproc_line] = STATE(2054), + [sym_preproc_pragma] = STATE(2054), + [sym_preproc_nullable] = STATE(2054), + [sym_preproc_error] = STATE(2054), + [sym_preproc_warning] = STATE(2054), + [sym_preproc_define] = STATE(2054), + [sym_preproc_undef] = STATE(2054), + [ts_builtin_sym_end] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [2055] = { + [sym_preproc_region] = STATE(2055), + [sym_preproc_endregion] = STATE(2055), + [sym_preproc_line] = STATE(2055), + [sym_preproc_pragma] = STATE(2055), + [sym_preproc_nullable] = STATE(2055), + [sym_preproc_error] = STATE(2055), + [sym_preproc_warning] = STATE(2055), + [sym_preproc_define] = STATE(2055), + [sym_preproc_undef] = STATE(2055), + [ts_builtin_sym_end] = ACTIONS(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), @@ -393297,123 +393380,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2056), [sym_preproc_define] = STATE(2056), [sym_preproc_undef] = STATE(2056), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), + [ts_builtin_sym_end] = ACTIONS(3490), + [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_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_LBRACE] = 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_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_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), }, [2057] = { [sym_preproc_region] = STATE(2057), @@ -393425,123 +393508,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2057), [sym_preproc_define] = STATE(2057), [sym_preproc_undef] = STATE(2057), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [2058] = { [sym_preproc_region] = STATE(2058), @@ -393553,646 +393636,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2058), [sym_preproc_define] = STATE(2058), [sym_preproc_undef] = STATE(2058), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [2059] = { - [sym_catch_clause] = STATE(2112), - [sym_finally_clause] = STATE(2119), - [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(2072), - [sym__identifier_token] = ACTIONS(3340), - [anon_sym_extern] = ACTIONS(3340), - [anon_sym_alias] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_global] = ACTIONS(3340), - [anon_sym_using] = ACTIONS(3340), - [anon_sym_unsafe] = ACTIONS(3340), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_ref] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_delegate] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_readonly] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_async] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_file] = ACTIONS(3340), - [anon_sym_fixed] = ACTIONS(3340), - [anon_sym_internal] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_partial] = ACTIONS(3340), - [anon_sym_protected] = ACTIONS(3340), - [anon_sym_required] = ACTIONS(3340), - [anon_sym_sealed] = ACTIONS(3340), - [anon_sym_virtual] = ACTIONS(3340), - [anon_sym_volatile] = ACTIONS(3340), - [anon_sym_where] = ACTIONS(3340), - [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), - [sym_predefined_type] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_unchecked] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_do] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_lock] = ACTIONS(3340), - [anon_sym_yield] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3340), - [anon_sym_case] = ACTIONS(3340), - [anon_sym_default] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_catch] = ACTIONS(3688), - [anon_sym_when] = ACTIONS(3340), - [anon_sym_finally] = ACTIONS(3690), - [anon_sym_await] = ACTIONS(3340), - [anon_sym_foreach] = ACTIONS(3340), - [anon_sym_goto] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_DOT_DOT] = ACTIONS(3342), - [anon_sym_from] = ACTIONS(3340), - [anon_sym_into] = ACTIONS(3340), - [anon_sym_join] = ACTIONS(3340), - [anon_sym_on] = ACTIONS(3340), - [anon_sym_equals] = ACTIONS(3340), - [anon_sym_let] = ACTIONS(3340), - [anon_sym_orderby] = ACTIONS(3340), - [anon_sym_ascending] = ACTIONS(3340), - [anon_sym_descending] = ACTIONS(3340), - [anon_sym_group] = ACTIONS(3340), - [anon_sym_by] = ACTIONS(3340), - [anon_sym_select] = ACTIONS(3340), - [anon_sym_stackalloc] = ACTIONS(3340), - [anon_sym_sizeof] = ACTIONS(3340), - [anon_sym_typeof] = ACTIONS(3340), - [anon_sym___makeref] = ACTIONS(3340), - [anon_sym___reftype] = ACTIONS(3340), - [anon_sym___refvalue] = ACTIONS(3340), - [sym_null_literal] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3342), - [sym_integer_literal] = ACTIONS(3340), - [sym_real_literal] = ACTIONS(3342), - [anon_sym_DQUOTE] = ACTIONS(3342), - [sym_verbatim_string_literal] = ACTIONS(3342), - [sym_grit_metavariable] = ACTIONS(3342), - [aux_sym_preproc_if_token1] = ACTIONS(3342), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3342), - [sym_interpolation_verbatim_start] = ACTIONS(3342), - [sym_interpolation_raw_start] = ACTIONS(3342), - [sym_raw_string_start] = ACTIONS(3342), - }, - [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(3492), - [sym__identifier_token] = ACTIONS(3490), - [anon_sym_extern] = ACTIONS(3490), - [anon_sym_alias] = ACTIONS(3490), - [anon_sym_SEMI] = ACTIONS(3492), - [anon_sym_global] = ACTIONS(3490), - [anon_sym_using] = ACTIONS(3490), - [anon_sym_unsafe] = ACTIONS(3490), - [anon_sym_static] = ACTIONS(3490), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_return] = ACTIONS(3490), - [anon_sym_namespace] = ACTIONS(3490), - [anon_sym_class] = ACTIONS(3490), - [anon_sym_ref] = ACTIONS(3490), - [anon_sym_struct] = ACTIONS(3490), - [anon_sym_enum] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(3492), - [anon_sym_interface] = ACTIONS(3490), - [anon_sym_delegate] = ACTIONS(3490), - [anon_sym_record] = ACTIONS(3490), - [anon_sym_public] = ACTIONS(3490), - [anon_sym_private] = ACTIONS(3490), - [anon_sym_readonly] = ACTIONS(3490), - [anon_sym_abstract] = ACTIONS(3490), - [anon_sym_async] = ACTIONS(3490), - [anon_sym_const] = ACTIONS(3490), - [anon_sym_file] = ACTIONS(3490), - [anon_sym_fixed] = ACTIONS(3490), - [anon_sym_internal] = ACTIONS(3490), - [anon_sym_new] = ACTIONS(3490), - [anon_sym_override] = ACTIONS(3490), - [anon_sym_partial] = ACTIONS(3490), - [anon_sym_protected] = ACTIONS(3490), - [anon_sym_required] = ACTIONS(3490), - [anon_sym_sealed] = ACTIONS(3490), - [anon_sym_virtual] = ACTIONS(3490), - [anon_sym_volatile] = ACTIONS(3490), - [anon_sym_where] = ACTIONS(3490), - [anon_sym_notnull] = ACTIONS(3490), - [anon_sym_unmanaged] = ACTIONS(3490), - [anon_sym_checked] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(3492), - [anon_sym_TILDE] = ACTIONS(3492), - [anon_sym_PLUS_PLUS] = ACTIONS(3492), - [anon_sym_DASH_DASH] = ACTIONS(3492), - [anon_sym_true] = ACTIONS(3490), - [anon_sym_false] = ACTIONS(3490), - [anon_sym_PLUS] = ACTIONS(3490), - [anon_sym_DASH] = ACTIONS(3490), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_CARET] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_this] = ACTIONS(3490), - [anon_sym_scoped] = ACTIONS(3490), - [anon_sym_base] = ACTIONS(3490), - [anon_sym_var] = ACTIONS(3490), - [sym_predefined_type] = ACTIONS(3490), - [anon_sym_break] = ACTIONS(3490), - [anon_sym_unchecked] = ACTIONS(3490), - [anon_sym_continue] = ACTIONS(3490), - [anon_sym_do] = ACTIONS(3490), - [anon_sym_while] = ACTIONS(3490), - [anon_sym_for] = ACTIONS(3490), - [anon_sym_lock] = ACTIONS(3490), - [anon_sym_yield] = ACTIONS(3490), - [anon_sym_switch] = ACTIONS(3490), - [anon_sym_default] = ACTIONS(3490), - [anon_sym_throw] = ACTIONS(3490), - [anon_sym_try] = ACTIONS(3490), - [anon_sym_when] = ACTIONS(3490), - [anon_sym_await] = ACTIONS(3490), - [anon_sym_foreach] = ACTIONS(3490), - [anon_sym_goto] = ACTIONS(3490), - [anon_sym_if] = ACTIONS(3490), - [anon_sym_else] = ACTIONS(3490), - [anon_sym_DOT_DOT] = ACTIONS(3492), - [anon_sym_from] = ACTIONS(3490), - [anon_sym_into] = ACTIONS(3490), - [anon_sym_join] = ACTIONS(3490), - [anon_sym_on] = ACTIONS(3490), - [anon_sym_equals] = ACTIONS(3490), - [anon_sym_let] = ACTIONS(3490), - [anon_sym_orderby] = ACTIONS(3490), - [anon_sym_ascending] = ACTIONS(3490), - [anon_sym_descending] = ACTIONS(3490), - [anon_sym_group] = ACTIONS(3490), - [anon_sym_by] = ACTIONS(3490), - [anon_sym_select] = ACTIONS(3490), - [anon_sym_stackalloc] = ACTIONS(3490), - [anon_sym_sizeof] = ACTIONS(3490), - [anon_sym_typeof] = ACTIONS(3490), - [anon_sym___makeref] = ACTIONS(3490), - [anon_sym___reftype] = ACTIONS(3490), - [anon_sym___refvalue] = ACTIONS(3490), - [sym_null_literal] = ACTIONS(3490), - [anon_sym_SQUOTE] = ACTIONS(3492), - [sym_integer_literal] = ACTIONS(3490), - [sym_real_literal] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3492), - [sym_verbatim_string_literal] = ACTIONS(3492), - [sym_grit_metavariable] = ACTIONS(3492), - [aux_sym_preproc_if_token1] = ACTIONS(3492), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3492), - [sym_interpolation_verbatim_start] = ACTIONS(3492), - [sym_interpolation_raw_start] = ACTIONS(3492), - [sym_raw_string_start] = ACTIONS(3492), - }, - [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(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), - }, - [2062] = { - [sym_preproc_region] = STATE(2062), - [sym_preproc_endregion] = STATE(2062), - [sym_preproc_line] = STATE(2062), - [sym_preproc_pragma] = STATE(2062), - [sym_preproc_nullable] = STATE(2062), - [sym_preproc_error] = STATE(2062), - [sym_preproc_warning] = STATE(2062), - [sym_preproc_define] = STATE(2062), - [sym_preproc_undef] = STATE(2062), - [ts_builtin_sym_end] = ACTIONS(3500), - [sym__identifier_token] = ACTIONS(3498), - [anon_sym_extern] = ACTIONS(3498), - [anon_sym_alias] = ACTIONS(3498), - [anon_sym_SEMI] = ACTIONS(3500), - [anon_sym_global] = ACTIONS(3498), - [anon_sym_using] = ACTIONS(3498), - [anon_sym_unsafe] = ACTIONS(3498), - [anon_sym_static] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_LPAREN] = ACTIONS(3500), - [anon_sym_return] = ACTIONS(3498), - [anon_sym_namespace] = ACTIONS(3498), - [anon_sym_class] = ACTIONS(3498), - [anon_sym_ref] = ACTIONS(3498), - [anon_sym_struct] = ACTIONS(3498), - [anon_sym_enum] = ACTIONS(3498), - [anon_sym_LBRACE] = ACTIONS(3500), - [anon_sym_interface] = ACTIONS(3498), - [anon_sym_delegate] = ACTIONS(3498), - [anon_sym_record] = ACTIONS(3498), - [anon_sym_public] = ACTIONS(3498), - [anon_sym_private] = ACTIONS(3498), - [anon_sym_readonly] = ACTIONS(3498), - [anon_sym_abstract] = ACTIONS(3498), - [anon_sym_async] = ACTIONS(3498), - [anon_sym_const] = ACTIONS(3498), - [anon_sym_file] = ACTIONS(3498), - [anon_sym_fixed] = ACTIONS(3498), - [anon_sym_internal] = ACTIONS(3498), - [anon_sym_new] = ACTIONS(3498), - [anon_sym_override] = ACTIONS(3498), - [anon_sym_partial] = ACTIONS(3498), - [anon_sym_protected] = ACTIONS(3498), - [anon_sym_required] = ACTIONS(3498), - [anon_sym_sealed] = ACTIONS(3498), - [anon_sym_virtual] = ACTIONS(3498), - [anon_sym_volatile] = ACTIONS(3498), - [anon_sym_where] = ACTIONS(3498), - [anon_sym_notnull] = ACTIONS(3498), - [anon_sym_unmanaged] = ACTIONS(3498), - [anon_sym_checked] = ACTIONS(3498), - [anon_sym_BANG] = ACTIONS(3500), - [anon_sym_TILDE] = ACTIONS(3500), - [anon_sym_PLUS_PLUS] = ACTIONS(3500), - [anon_sym_DASH_DASH] = ACTIONS(3500), - [anon_sym_true] = ACTIONS(3498), - [anon_sym_false] = ACTIONS(3498), - [anon_sym_PLUS] = ACTIONS(3498), - [anon_sym_DASH] = ACTIONS(3498), - [anon_sym_STAR] = ACTIONS(3500), - [anon_sym_CARET] = ACTIONS(3500), - [anon_sym_AMP] = ACTIONS(3500), - [anon_sym_this] = ACTIONS(3498), - [anon_sym_scoped] = ACTIONS(3498), - [anon_sym_base] = ACTIONS(3498), - [anon_sym_var] = ACTIONS(3498), - [sym_predefined_type] = ACTIONS(3498), - [anon_sym_break] = ACTIONS(3498), - [anon_sym_unchecked] = ACTIONS(3498), - [anon_sym_continue] = ACTIONS(3498), - [anon_sym_do] = ACTIONS(3498), - [anon_sym_while] = ACTIONS(3498), - [anon_sym_for] = ACTIONS(3498), - [anon_sym_lock] = ACTIONS(3498), - [anon_sym_yield] = ACTIONS(3498), - [anon_sym_switch] = ACTIONS(3498), - [anon_sym_default] = ACTIONS(3498), - [anon_sym_throw] = ACTIONS(3498), - [anon_sym_try] = ACTIONS(3498), - [anon_sym_when] = ACTIONS(3498), - [anon_sym_await] = ACTIONS(3498), - [anon_sym_foreach] = ACTIONS(3498), - [anon_sym_goto] = ACTIONS(3498), - [anon_sym_if] = ACTIONS(3498), - [anon_sym_else] = ACTIONS(3498), - [anon_sym_DOT_DOT] = ACTIONS(3500), - [anon_sym_from] = ACTIONS(3498), - [anon_sym_into] = ACTIONS(3498), - [anon_sym_join] = ACTIONS(3498), - [anon_sym_on] = ACTIONS(3498), - [anon_sym_equals] = ACTIONS(3498), - [anon_sym_let] = ACTIONS(3498), - [anon_sym_orderby] = ACTIONS(3498), - [anon_sym_ascending] = ACTIONS(3498), - [anon_sym_descending] = ACTIONS(3498), - [anon_sym_group] = ACTIONS(3498), - [anon_sym_by] = ACTIONS(3498), - [anon_sym_select] = ACTIONS(3498), - [anon_sym_stackalloc] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(3498), - [anon_sym_typeof] = ACTIONS(3498), - [anon_sym___makeref] = ACTIONS(3498), - [anon_sym___reftype] = ACTIONS(3498), - [anon_sym___refvalue] = ACTIONS(3498), - [sym_null_literal] = ACTIONS(3498), - [anon_sym_SQUOTE] = ACTIONS(3500), - [sym_integer_literal] = ACTIONS(3498), - [sym_real_literal] = ACTIONS(3500), - [anon_sym_DQUOTE] = ACTIONS(3500), - [sym_verbatim_string_literal] = ACTIONS(3500), - [sym_grit_metavariable] = ACTIONS(3500), - [aux_sym_preproc_if_token1] = ACTIONS(3500), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3500), - [sym_interpolation_verbatim_start] = ACTIONS(3500), - [sym_interpolation_raw_start] = ACTIONS(3500), - [sym_raw_string_start] = ACTIONS(3500), - }, - [2063] = { - [sym_preproc_region] = STATE(2063), - [sym_preproc_endregion] = STATE(2063), - [sym_preproc_line] = STATE(2063), - [sym_preproc_pragma] = STATE(2063), - [sym_preproc_nullable] = STATE(2063), - [sym_preproc_error] = STATE(2063), - [sym_preproc_warning] = STATE(2063), - [sym_preproc_define] = STATE(2063), - [sym_preproc_undef] = STATE(2063), [ts_builtin_sym_end] = ACTIONS(3570), [sym__identifier_token] = ACTIONS(3568), [anon_sym_extern] = ACTIONS(3568), @@ -394235,21 +393678,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), @@ -394270,6 +393704,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), @@ -394311,1043 +393754,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3570), [sym_raw_string_start] = ACTIONS(3570), }, - [2064] = { - [sym_preproc_region] = STATE(2064), - [sym_preproc_endregion] = STATE(2064), - [sym_preproc_line] = STATE(2064), - [sym_preproc_pragma] = STATE(2064), - [sym_preproc_nullable] = STATE(2064), - [sym_preproc_error] = STATE(2064), - [sym_preproc_warning] = STATE(2064), - [sym_preproc_define] = STATE(2064), - [sym_preproc_undef] = STATE(2064), - [ts_builtin_sym_end] = ACTIONS(3428), - [sym__identifier_token] = ACTIONS(3426), - [anon_sym_extern] = ACTIONS(3426), - [anon_sym_alias] = ACTIONS(3426), - [anon_sym_SEMI] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3426), - [anon_sym_using] = ACTIONS(3426), - [anon_sym_unsafe] = ACTIONS(3426), - [anon_sym_static] = ACTIONS(3426), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3426), - [anon_sym_namespace] = ACTIONS(3426), - [anon_sym_class] = ACTIONS(3426), - [anon_sym_ref] = ACTIONS(3426), - [anon_sym_struct] = ACTIONS(3426), - [anon_sym_enum] = ACTIONS(3426), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3426), - [anon_sym_delegate] = ACTIONS(3426), - [anon_sym_record] = ACTIONS(3426), - [anon_sym_public] = ACTIONS(3426), - [anon_sym_private] = ACTIONS(3426), - [anon_sym_readonly] = ACTIONS(3426), - [anon_sym_abstract] = ACTIONS(3426), - [anon_sym_async] = ACTIONS(3426), - [anon_sym_const] = ACTIONS(3426), - [anon_sym_file] = ACTIONS(3426), - [anon_sym_fixed] = ACTIONS(3426), - [anon_sym_internal] = ACTIONS(3426), - [anon_sym_new] = ACTIONS(3426), - [anon_sym_override] = ACTIONS(3426), - [anon_sym_partial] = ACTIONS(3426), - [anon_sym_protected] = ACTIONS(3426), - [anon_sym_required] = ACTIONS(3426), - [anon_sym_sealed] = ACTIONS(3426), - [anon_sym_virtual] = ACTIONS(3426), - [anon_sym_volatile] = ACTIONS(3426), - [anon_sym_where] = ACTIONS(3426), - [anon_sym_notnull] = ACTIONS(3426), - [anon_sym_unmanaged] = ACTIONS(3426), - [anon_sym_checked] = ACTIONS(3426), - [anon_sym_BANG] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3428), - [anon_sym_PLUS_PLUS] = ACTIONS(3428), - [anon_sym_DASH_DASH] = ACTIONS(3428), - [anon_sym_true] = ACTIONS(3426), - [anon_sym_false] = ACTIONS(3426), - [anon_sym_PLUS] = ACTIONS(3426), - [anon_sym_DASH] = ACTIONS(3426), - [anon_sym_STAR] = ACTIONS(3428), - [anon_sym_CARET] = ACTIONS(3428), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_this] = ACTIONS(3426), - [anon_sym_scoped] = ACTIONS(3426), - [anon_sym_base] = ACTIONS(3426), - [anon_sym_var] = ACTIONS(3426), - [sym_predefined_type] = ACTIONS(3426), - [anon_sym_break] = ACTIONS(3426), - [anon_sym_unchecked] = ACTIONS(3426), - [anon_sym_continue] = ACTIONS(3426), - [anon_sym_do] = ACTIONS(3426), - [anon_sym_while] = ACTIONS(3426), - [anon_sym_for] = ACTIONS(3426), - [anon_sym_lock] = ACTIONS(3426), - [anon_sym_yield] = ACTIONS(3426), - [anon_sym_switch] = ACTIONS(3426), - [anon_sym_default] = ACTIONS(3426), - [anon_sym_throw] = ACTIONS(3426), - [anon_sym_try] = ACTIONS(3426), - [anon_sym_when] = ACTIONS(3426), - [anon_sym_await] = ACTIONS(3426), - [anon_sym_foreach] = ACTIONS(3426), - [anon_sym_goto] = ACTIONS(3426), - [anon_sym_if] = ACTIONS(3426), - [anon_sym_else] = ACTIONS(3426), - [anon_sym_DOT_DOT] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3426), - [anon_sym_into] = ACTIONS(3426), - [anon_sym_join] = ACTIONS(3426), - [anon_sym_on] = ACTIONS(3426), - [anon_sym_equals] = ACTIONS(3426), - [anon_sym_let] = ACTIONS(3426), - [anon_sym_orderby] = ACTIONS(3426), - [anon_sym_ascending] = ACTIONS(3426), - [anon_sym_descending] = ACTIONS(3426), - [anon_sym_group] = ACTIONS(3426), - [anon_sym_by] = ACTIONS(3426), - [anon_sym_select] = ACTIONS(3426), - [anon_sym_stackalloc] = ACTIONS(3426), - [anon_sym_sizeof] = ACTIONS(3426), - [anon_sym_typeof] = ACTIONS(3426), - [anon_sym___makeref] = ACTIONS(3426), - [anon_sym___reftype] = ACTIONS(3426), - [anon_sym___refvalue] = ACTIONS(3426), - [sym_null_literal] = ACTIONS(3426), - [anon_sym_SQUOTE] = ACTIONS(3428), - [sym_integer_literal] = ACTIONS(3426), - [sym_real_literal] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [sym_verbatim_string_literal] = ACTIONS(3428), - [sym_grit_metavariable] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3428), - [sym_interpolation_verbatim_start] = ACTIONS(3428), - [sym_interpolation_raw_start] = ACTIONS(3428), - [sym_raw_string_start] = ACTIONS(3428), - }, - [2065] = { - [sym_preproc_region] = STATE(2065), - [sym_preproc_endregion] = STATE(2065), - [sym_preproc_line] = STATE(2065), - [sym_preproc_pragma] = STATE(2065), - [sym_preproc_nullable] = STATE(2065), - [sym_preproc_error] = STATE(2065), - [sym_preproc_warning] = STATE(2065), - [sym_preproc_define] = STATE(2065), - [sym_preproc_undef] = STATE(2065), - [ts_builtin_sym_end] = ACTIONS(3436), - [sym__identifier_token] = ACTIONS(3434), - [anon_sym_extern] = ACTIONS(3434), - [anon_sym_alias] = ACTIONS(3434), - [anon_sym_SEMI] = ACTIONS(3436), - [anon_sym_global] = ACTIONS(3434), - [anon_sym_using] = ACTIONS(3434), - [anon_sym_unsafe] = ACTIONS(3434), - [anon_sym_static] = ACTIONS(3434), - [anon_sym_LBRACK] = ACTIONS(3436), - [anon_sym_LPAREN] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3434), - [anon_sym_namespace] = ACTIONS(3434), - [anon_sym_class] = ACTIONS(3434), - [anon_sym_ref] = ACTIONS(3434), - [anon_sym_struct] = ACTIONS(3434), - [anon_sym_enum] = ACTIONS(3434), - [anon_sym_LBRACE] = ACTIONS(3436), - [anon_sym_interface] = ACTIONS(3434), - [anon_sym_delegate] = ACTIONS(3434), - [anon_sym_record] = ACTIONS(3434), - [anon_sym_public] = ACTIONS(3434), - [anon_sym_private] = ACTIONS(3434), - [anon_sym_readonly] = ACTIONS(3434), - [anon_sym_abstract] = ACTIONS(3434), - [anon_sym_async] = ACTIONS(3434), - [anon_sym_const] = ACTIONS(3434), - [anon_sym_file] = ACTIONS(3434), - [anon_sym_fixed] = ACTIONS(3434), - [anon_sym_internal] = ACTIONS(3434), - [anon_sym_new] = ACTIONS(3434), - [anon_sym_override] = ACTIONS(3434), - [anon_sym_partial] = ACTIONS(3434), - [anon_sym_protected] = ACTIONS(3434), - [anon_sym_required] = ACTIONS(3434), - [anon_sym_sealed] = ACTIONS(3434), - [anon_sym_virtual] = ACTIONS(3434), - [anon_sym_volatile] = ACTIONS(3434), - [anon_sym_where] = ACTIONS(3434), - [anon_sym_notnull] = ACTIONS(3434), - [anon_sym_unmanaged] = ACTIONS(3434), - [anon_sym_checked] = ACTIONS(3434), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_TILDE] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3436), - [anon_sym_DASH_DASH] = ACTIONS(3436), - [anon_sym_true] = ACTIONS(3434), - [anon_sym_false] = ACTIONS(3434), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_STAR] = ACTIONS(3436), - [anon_sym_CARET] = ACTIONS(3436), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym_this] = ACTIONS(3434), - [anon_sym_scoped] = ACTIONS(3434), - [anon_sym_base] = ACTIONS(3434), - [anon_sym_var] = ACTIONS(3434), - [sym_predefined_type] = ACTIONS(3434), - [anon_sym_break] = ACTIONS(3434), - [anon_sym_unchecked] = ACTIONS(3434), - [anon_sym_continue] = ACTIONS(3434), - [anon_sym_do] = ACTIONS(3434), - [anon_sym_while] = ACTIONS(3434), - [anon_sym_for] = ACTIONS(3434), - [anon_sym_lock] = ACTIONS(3434), - [anon_sym_yield] = ACTIONS(3434), - [anon_sym_switch] = ACTIONS(3434), - [anon_sym_default] = ACTIONS(3434), - [anon_sym_throw] = ACTIONS(3434), - [anon_sym_try] = ACTIONS(3434), - [anon_sym_when] = ACTIONS(3434), - [anon_sym_await] = ACTIONS(3434), - [anon_sym_foreach] = ACTIONS(3434), - [anon_sym_goto] = ACTIONS(3434), - [anon_sym_if] = ACTIONS(3434), - [anon_sym_else] = ACTIONS(3434), - [anon_sym_DOT_DOT] = ACTIONS(3436), - [anon_sym_from] = ACTIONS(3434), - [anon_sym_into] = ACTIONS(3434), - [anon_sym_join] = ACTIONS(3434), - [anon_sym_on] = ACTIONS(3434), - [anon_sym_equals] = ACTIONS(3434), - [anon_sym_let] = ACTIONS(3434), - [anon_sym_orderby] = ACTIONS(3434), - [anon_sym_ascending] = ACTIONS(3434), - [anon_sym_descending] = ACTIONS(3434), - [anon_sym_group] = ACTIONS(3434), - [anon_sym_by] = ACTIONS(3434), - [anon_sym_select] = ACTIONS(3434), - [anon_sym_stackalloc] = ACTIONS(3434), - [anon_sym_sizeof] = ACTIONS(3434), - [anon_sym_typeof] = ACTIONS(3434), - [anon_sym___makeref] = ACTIONS(3434), - [anon_sym___reftype] = ACTIONS(3434), - [anon_sym___refvalue] = ACTIONS(3434), - [sym_null_literal] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3436), - [sym_integer_literal] = ACTIONS(3434), - [sym_real_literal] = ACTIONS(3436), - [anon_sym_DQUOTE] = ACTIONS(3436), - [sym_verbatim_string_literal] = ACTIONS(3436), - [sym_grit_metavariable] = ACTIONS(3436), - [aux_sym_preproc_if_token1] = ACTIONS(3436), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3436), - [sym_interpolation_verbatim_start] = ACTIONS(3436), - [sym_interpolation_raw_start] = ACTIONS(3436), - [sym_raw_string_start] = ACTIONS(3436), - }, - [2066] = { - [sym_preproc_region] = STATE(2066), - [sym_preproc_endregion] = STATE(2066), - [sym_preproc_line] = STATE(2066), - [sym_preproc_pragma] = STATE(2066), - [sym_preproc_nullable] = STATE(2066), - [sym_preproc_error] = STATE(2066), - [sym_preproc_warning] = STATE(2066), - [sym_preproc_define] = STATE(2066), - [sym_preproc_undef] = STATE(2066), - [ts_builtin_sym_end] = ACTIONS(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), - }, - [2067] = { - [sym_preproc_region] = STATE(2067), - [sym_preproc_endregion] = STATE(2067), - [sym_preproc_line] = STATE(2067), - [sym_preproc_pragma] = STATE(2067), - [sym_preproc_nullable] = STATE(2067), - [sym_preproc_error] = STATE(2067), - [sym_preproc_warning] = STATE(2067), - [sym_preproc_define] = STATE(2067), - [sym_preproc_undef] = STATE(2067), - [ts_builtin_sym_end] = ACTIONS(3504), - [sym__identifier_token] = ACTIONS(3502), - [anon_sym_extern] = ACTIONS(3502), - [anon_sym_alias] = ACTIONS(3502), - [anon_sym_SEMI] = ACTIONS(3504), - [anon_sym_global] = ACTIONS(3502), - [anon_sym_using] = ACTIONS(3502), - [anon_sym_unsafe] = ACTIONS(3502), - [anon_sym_static] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_LPAREN] = ACTIONS(3504), - [anon_sym_return] = ACTIONS(3502), - [anon_sym_namespace] = ACTIONS(3502), - [anon_sym_class] = ACTIONS(3502), - [anon_sym_ref] = ACTIONS(3502), - [anon_sym_struct] = ACTIONS(3502), - [anon_sym_enum] = ACTIONS(3502), - [anon_sym_LBRACE] = ACTIONS(3504), - [anon_sym_interface] = ACTIONS(3502), - [anon_sym_delegate] = ACTIONS(3502), - [anon_sym_record] = ACTIONS(3502), - [anon_sym_public] = ACTIONS(3502), - [anon_sym_private] = ACTIONS(3502), - [anon_sym_readonly] = ACTIONS(3502), - [anon_sym_abstract] = ACTIONS(3502), - [anon_sym_async] = ACTIONS(3502), - [anon_sym_const] = ACTIONS(3502), - [anon_sym_file] = ACTIONS(3502), - [anon_sym_fixed] = ACTIONS(3502), - [anon_sym_internal] = ACTIONS(3502), - [anon_sym_new] = ACTIONS(3502), - [anon_sym_override] = ACTIONS(3502), - [anon_sym_partial] = ACTIONS(3502), - [anon_sym_protected] = ACTIONS(3502), - [anon_sym_required] = ACTIONS(3502), - [anon_sym_sealed] = ACTIONS(3502), - [anon_sym_virtual] = ACTIONS(3502), - [anon_sym_volatile] = ACTIONS(3502), - [anon_sym_where] = ACTIONS(3502), - [anon_sym_notnull] = ACTIONS(3502), - [anon_sym_unmanaged] = ACTIONS(3502), - [anon_sym_checked] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(3504), - [anon_sym_PLUS_PLUS] = ACTIONS(3504), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [anon_sym_true] = ACTIONS(3502), - [anon_sym_false] = ACTIONS(3502), - [anon_sym_PLUS] = ACTIONS(3502), - [anon_sym_DASH] = ACTIONS(3502), - [anon_sym_STAR] = ACTIONS(3504), - [anon_sym_CARET] = ACTIONS(3504), - [anon_sym_AMP] = ACTIONS(3504), - [anon_sym_this] = ACTIONS(3502), - [anon_sym_scoped] = ACTIONS(3502), - [anon_sym_base] = ACTIONS(3502), - [anon_sym_var] = ACTIONS(3502), - [sym_predefined_type] = ACTIONS(3502), - [anon_sym_break] = ACTIONS(3502), - [anon_sym_unchecked] = ACTIONS(3502), - [anon_sym_continue] = ACTIONS(3502), - [anon_sym_do] = ACTIONS(3502), - [anon_sym_while] = ACTIONS(3502), - [anon_sym_for] = ACTIONS(3502), - [anon_sym_lock] = ACTIONS(3502), - [anon_sym_yield] = ACTIONS(3502), - [anon_sym_switch] = ACTIONS(3502), - [anon_sym_default] = ACTIONS(3502), - [anon_sym_throw] = ACTIONS(3502), - [anon_sym_try] = ACTIONS(3502), - [anon_sym_when] = ACTIONS(3502), - [anon_sym_await] = ACTIONS(3502), - [anon_sym_foreach] = ACTIONS(3502), - [anon_sym_goto] = ACTIONS(3502), - [anon_sym_if] = ACTIONS(3502), - [anon_sym_else] = ACTIONS(3692), - [anon_sym_DOT_DOT] = ACTIONS(3504), - [anon_sym_from] = ACTIONS(3502), - [anon_sym_into] = ACTIONS(3502), - [anon_sym_join] = ACTIONS(3502), - [anon_sym_on] = ACTIONS(3502), - [anon_sym_equals] = ACTIONS(3502), - [anon_sym_let] = ACTIONS(3502), - [anon_sym_orderby] = ACTIONS(3502), - [anon_sym_ascending] = ACTIONS(3502), - [anon_sym_descending] = ACTIONS(3502), - [anon_sym_group] = ACTIONS(3502), - [anon_sym_by] = ACTIONS(3502), - [anon_sym_select] = ACTIONS(3502), - [anon_sym_stackalloc] = ACTIONS(3502), - [anon_sym_sizeof] = ACTIONS(3502), - [anon_sym_typeof] = ACTIONS(3502), - [anon_sym___makeref] = ACTIONS(3502), - [anon_sym___reftype] = ACTIONS(3502), - [anon_sym___refvalue] = ACTIONS(3502), - [sym_null_literal] = ACTIONS(3502), - [anon_sym_SQUOTE] = ACTIONS(3504), - [sym_integer_literal] = ACTIONS(3502), - [sym_real_literal] = ACTIONS(3504), - [anon_sym_DQUOTE] = ACTIONS(3504), - [sym_verbatim_string_literal] = ACTIONS(3504), - [sym_grit_metavariable] = ACTIONS(3504), - [aux_sym_preproc_if_token1] = ACTIONS(3504), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3504), - [sym_interpolation_verbatim_start] = ACTIONS(3504), - [sym_interpolation_raw_start] = ACTIONS(3504), - [sym_raw_string_start] = ACTIONS(3504), - }, - [2068] = { - [sym_preproc_region] = STATE(2068), - [sym_preproc_endregion] = STATE(2068), - [sym_preproc_line] = STATE(2068), - [sym_preproc_pragma] = STATE(2068), - [sym_preproc_nullable] = STATE(2068), - [sym_preproc_error] = STATE(2068), - [sym_preproc_warning] = STATE(2068), - [sym_preproc_define] = STATE(2068), - [sym_preproc_undef] = STATE(2068), - [ts_builtin_sym_end] = ACTIONS(3472), - [sym__identifier_token] = ACTIONS(3470), - [anon_sym_extern] = ACTIONS(3470), - [anon_sym_alias] = ACTIONS(3470), - [anon_sym_SEMI] = ACTIONS(3472), - [anon_sym_global] = ACTIONS(3470), - [anon_sym_using] = ACTIONS(3470), - [anon_sym_unsafe] = ACTIONS(3470), - [anon_sym_static] = ACTIONS(3470), - [anon_sym_LBRACK] = ACTIONS(3472), - [anon_sym_LPAREN] = ACTIONS(3472), - [anon_sym_return] = ACTIONS(3470), - [anon_sym_namespace] = ACTIONS(3470), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_ref] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3470), - [anon_sym_enum] = ACTIONS(3470), - [anon_sym_LBRACE] = ACTIONS(3472), - [anon_sym_interface] = ACTIONS(3470), - [anon_sym_delegate] = ACTIONS(3470), - [anon_sym_record] = ACTIONS(3470), - [anon_sym_public] = ACTIONS(3470), - [anon_sym_private] = ACTIONS(3470), - [anon_sym_readonly] = ACTIONS(3470), - [anon_sym_abstract] = ACTIONS(3470), - [anon_sym_async] = ACTIONS(3470), - [anon_sym_const] = ACTIONS(3470), - [anon_sym_file] = ACTIONS(3470), - [anon_sym_fixed] = ACTIONS(3470), - [anon_sym_internal] = ACTIONS(3470), - [anon_sym_new] = ACTIONS(3470), - [anon_sym_override] = ACTIONS(3470), - [anon_sym_partial] = ACTIONS(3470), - [anon_sym_protected] = ACTIONS(3470), - [anon_sym_required] = ACTIONS(3470), - [anon_sym_sealed] = ACTIONS(3470), - [anon_sym_virtual] = ACTIONS(3470), - [anon_sym_volatile] = ACTIONS(3470), - [anon_sym_where] = ACTIONS(3470), - [anon_sym_notnull] = ACTIONS(3470), - [anon_sym_unmanaged] = ACTIONS(3470), - [anon_sym_checked] = ACTIONS(3470), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3472), - [anon_sym_PLUS_PLUS] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(3472), - [anon_sym_true] = ACTIONS(3470), - [anon_sym_false] = ACTIONS(3470), - [anon_sym_PLUS] = ACTIONS(3470), - [anon_sym_DASH] = ACTIONS(3470), - [anon_sym_STAR] = ACTIONS(3472), - [anon_sym_CARET] = ACTIONS(3472), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_this] = ACTIONS(3470), - [anon_sym_scoped] = ACTIONS(3470), - [anon_sym_base] = ACTIONS(3470), - [anon_sym_var] = ACTIONS(3470), - [sym_predefined_type] = ACTIONS(3470), - [anon_sym_break] = ACTIONS(3470), - [anon_sym_unchecked] = ACTIONS(3470), - [anon_sym_continue] = ACTIONS(3470), - [anon_sym_do] = ACTIONS(3470), - [anon_sym_while] = ACTIONS(3470), - [anon_sym_for] = ACTIONS(3470), - [anon_sym_lock] = ACTIONS(3470), - [anon_sym_yield] = ACTIONS(3470), - [anon_sym_switch] = ACTIONS(3470), - [anon_sym_default] = ACTIONS(3470), - [anon_sym_throw] = ACTIONS(3470), - [anon_sym_try] = ACTIONS(3470), - [anon_sym_when] = ACTIONS(3470), - [anon_sym_await] = ACTIONS(3470), - [anon_sym_foreach] = ACTIONS(3470), - [anon_sym_goto] = ACTIONS(3470), - [anon_sym_if] = ACTIONS(3470), - [anon_sym_else] = ACTIONS(3470), - [anon_sym_DOT_DOT] = ACTIONS(3472), - [anon_sym_from] = ACTIONS(3470), - [anon_sym_into] = ACTIONS(3470), - [anon_sym_join] = ACTIONS(3470), - [anon_sym_on] = ACTIONS(3470), - [anon_sym_equals] = ACTIONS(3470), - [anon_sym_let] = ACTIONS(3470), - [anon_sym_orderby] = ACTIONS(3470), - [anon_sym_ascending] = ACTIONS(3470), - [anon_sym_descending] = ACTIONS(3470), - [anon_sym_group] = ACTIONS(3470), - [anon_sym_by] = ACTIONS(3470), - [anon_sym_select] = ACTIONS(3470), - [anon_sym_stackalloc] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(3470), - [anon_sym_typeof] = ACTIONS(3470), - [anon_sym___makeref] = ACTIONS(3470), - [anon_sym___reftype] = ACTIONS(3470), - [anon_sym___refvalue] = ACTIONS(3470), - [sym_null_literal] = ACTIONS(3470), - [anon_sym_SQUOTE] = ACTIONS(3472), - [sym_integer_literal] = ACTIONS(3470), - [sym_real_literal] = ACTIONS(3472), - [anon_sym_DQUOTE] = ACTIONS(3472), - [sym_verbatim_string_literal] = ACTIONS(3472), - [sym_grit_metavariable] = ACTIONS(3472), - [aux_sym_preproc_if_token1] = ACTIONS(3472), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3472), - [sym_interpolation_verbatim_start] = ACTIONS(3472), - [sym_interpolation_raw_start] = ACTIONS(3472), - [sym_raw_string_start] = ACTIONS(3472), - }, - [2069] = { - [sym_preproc_region] = STATE(2069), - [sym_preproc_endregion] = STATE(2069), - [sym_preproc_line] = STATE(2069), - [sym_preproc_pragma] = STATE(2069), - [sym_preproc_nullable] = STATE(2069), - [sym_preproc_error] = STATE(2069), - [sym_preproc_warning] = STATE(2069), - [sym_preproc_define] = STATE(2069), - [sym_preproc_undef] = STATE(2069), - [ts_builtin_sym_end] = ACTIONS(3456), - [sym__identifier_token] = ACTIONS(3454), - [anon_sym_extern] = ACTIONS(3454), - [anon_sym_alias] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3456), - [anon_sym_global] = ACTIONS(3454), - [anon_sym_using] = ACTIONS(3454), - [anon_sym_unsafe] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(3456), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_namespace] = ACTIONS(3454), - [anon_sym_class] = ACTIONS(3454), - [anon_sym_ref] = ACTIONS(3454), - [anon_sym_struct] = ACTIONS(3454), - [anon_sym_enum] = ACTIONS(3454), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_interface] = ACTIONS(3454), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_record] = ACTIONS(3454), - [anon_sym_public] = ACTIONS(3454), - [anon_sym_private] = ACTIONS(3454), - [anon_sym_readonly] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(3454), - [anon_sym_async] = ACTIONS(3454), - [anon_sym_const] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(3454), - [anon_sym_fixed] = ACTIONS(3454), - [anon_sym_internal] = ACTIONS(3454), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_override] = ACTIONS(3454), - [anon_sym_partial] = ACTIONS(3454), - [anon_sym_protected] = ACTIONS(3454), - [anon_sym_required] = ACTIONS(3454), - [anon_sym_sealed] = ACTIONS(3454), - [anon_sym_virtual] = ACTIONS(3454), - [anon_sym_volatile] = ACTIONS(3454), - [anon_sym_where] = ACTIONS(3454), - [anon_sym_notnull] = ACTIONS(3454), - [anon_sym_unmanaged] = ACTIONS(3454), - [anon_sym_checked] = ACTIONS(3454), - [anon_sym_BANG] = ACTIONS(3456), - [anon_sym_TILDE] = ACTIONS(3456), - [anon_sym_PLUS_PLUS] = ACTIONS(3456), - [anon_sym_DASH_DASH] = ACTIONS(3456), - [anon_sym_true] = ACTIONS(3454), - [anon_sym_false] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3456), - [anon_sym_CARET] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3456), - [anon_sym_this] = ACTIONS(3454), - [anon_sym_scoped] = ACTIONS(3454), - [anon_sym_base] = ACTIONS(3454), - [anon_sym_var] = ACTIONS(3454), - [sym_predefined_type] = ACTIONS(3454), - [anon_sym_break] = ACTIONS(3454), - [anon_sym_unchecked] = ACTIONS(3454), - [anon_sym_continue] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_lock] = ACTIONS(3454), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_switch] = ACTIONS(3454), - [anon_sym_default] = ACTIONS(3454), - [anon_sym_throw] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_when] = ACTIONS(3454), - [anon_sym_await] = ACTIONS(3454), - [anon_sym_foreach] = ACTIONS(3454), - [anon_sym_goto] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_else] = ACTIONS(3454), - [anon_sym_DOT_DOT] = ACTIONS(3456), - [anon_sym_from] = ACTIONS(3454), - [anon_sym_into] = ACTIONS(3454), - [anon_sym_join] = ACTIONS(3454), - [anon_sym_on] = ACTIONS(3454), - [anon_sym_equals] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_orderby] = ACTIONS(3454), - [anon_sym_ascending] = ACTIONS(3454), - [anon_sym_descending] = ACTIONS(3454), - [anon_sym_group] = ACTIONS(3454), - [anon_sym_by] = ACTIONS(3454), - [anon_sym_select] = ACTIONS(3454), - [anon_sym_stackalloc] = ACTIONS(3454), - [anon_sym_sizeof] = ACTIONS(3454), - [anon_sym_typeof] = ACTIONS(3454), - [anon_sym___makeref] = ACTIONS(3454), - [anon_sym___reftype] = ACTIONS(3454), - [anon_sym___refvalue] = ACTIONS(3454), - [sym_null_literal] = ACTIONS(3454), - [anon_sym_SQUOTE] = ACTIONS(3456), - [sym_integer_literal] = ACTIONS(3454), - [sym_real_literal] = ACTIONS(3456), - [anon_sym_DQUOTE] = ACTIONS(3456), - [sym_verbatim_string_literal] = ACTIONS(3456), - [sym_grit_metavariable] = ACTIONS(3456), - [aux_sym_preproc_if_token1] = ACTIONS(3456), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3456), - [sym_interpolation_verbatim_start] = ACTIONS(3456), - [sym_interpolation_raw_start] = ACTIONS(3456), - [sym_raw_string_start] = ACTIONS(3456), - }, - [2070] = { - [sym_preproc_region] = STATE(2070), - [sym_preproc_endregion] = STATE(2070), - [sym_preproc_line] = STATE(2070), - [sym_preproc_pragma] = STATE(2070), - [sym_preproc_nullable] = STATE(2070), - [sym_preproc_error] = STATE(2070), - [sym_preproc_warning] = STATE(2070), - [sym_preproc_define] = STATE(2070), - [sym_preproc_undef] = STATE(2070), - [ts_builtin_sym_end] = ACTIONS(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), - }, - [2071] = { - [sym_preproc_region] = STATE(2071), - [sym_preproc_endregion] = STATE(2071), - [sym_preproc_line] = STATE(2071), - [sym_preproc_pragma] = STATE(2071), - [sym_preproc_nullable] = STATE(2071), - [sym_preproc_error] = STATE(2071), - [sym_preproc_warning] = STATE(2071), - [sym_preproc_define] = STATE(2071), - [sym_preproc_undef] = STATE(2071), - [ts_builtin_sym_end] = ACTIONS(3476), - [sym__identifier_token] = ACTIONS(3474), - [anon_sym_extern] = ACTIONS(3474), - [anon_sym_alias] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3476), - [anon_sym_global] = ACTIONS(3474), - [anon_sym_using] = ACTIONS(3474), - [anon_sym_unsafe] = ACTIONS(3474), - [anon_sym_static] = ACTIONS(3474), - [anon_sym_LBRACK] = ACTIONS(3476), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_namespace] = ACTIONS(3474), - [anon_sym_class] = ACTIONS(3474), - [anon_sym_ref] = ACTIONS(3474), - [anon_sym_struct] = ACTIONS(3474), - [anon_sym_enum] = ACTIONS(3474), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_interface] = ACTIONS(3474), - [anon_sym_delegate] = ACTIONS(3474), - [anon_sym_record] = ACTIONS(3474), - [anon_sym_public] = ACTIONS(3474), - [anon_sym_private] = ACTIONS(3474), - [anon_sym_readonly] = ACTIONS(3474), - [anon_sym_abstract] = ACTIONS(3474), - [anon_sym_async] = ACTIONS(3474), - [anon_sym_const] = ACTIONS(3474), - [anon_sym_file] = ACTIONS(3474), - [anon_sym_fixed] = ACTIONS(3474), - [anon_sym_internal] = ACTIONS(3474), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_override] = ACTIONS(3474), - [anon_sym_partial] = ACTIONS(3474), - [anon_sym_protected] = ACTIONS(3474), - [anon_sym_required] = ACTIONS(3474), - [anon_sym_sealed] = ACTIONS(3474), - [anon_sym_virtual] = ACTIONS(3474), - [anon_sym_volatile] = ACTIONS(3474), - [anon_sym_where] = ACTIONS(3474), - [anon_sym_notnull] = ACTIONS(3474), - [anon_sym_unmanaged] = ACTIONS(3474), - [anon_sym_checked] = ACTIONS(3474), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3476), - [anon_sym_PLUS_PLUS] = ACTIONS(3476), - [anon_sym_DASH_DASH] = ACTIONS(3476), - [anon_sym_true] = ACTIONS(3474), - [anon_sym_false] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_STAR] = ACTIONS(3476), - [anon_sym_CARET] = ACTIONS(3476), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(3474), - [anon_sym_scoped] = ACTIONS(3474), - [anon_sym_base] = ACTIONS(3474), - [anon_sym_var] = ACTIONS(3474), - [sym_predefined_type] = ACTIONS(3474), - [anon_sym_break] = ACTIONS(3474), - [anon_sym_unchecked] = ACTIONS(3474), - [anon_sym_continue] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_lock] = ACTIONS(3474), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_switch] = ACTIONS(3474), - [anon_sym_default] = ACTIONS(3474), - [anon_sym_throw] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_when] = ACTIONS(3474), - [anon_sym_await] = ACTIONS(3474), - [anon_sym_foreach] = ACTIONS(3474), - [anon_sym_goto] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_else] = ACTIONS(3474), - [anon_sym_DOT_DOT] = ACTIONS(3476), - [anon_sym_from] = ACTIONS(3474), - [anon_sym_into] = ACTIONS(3474), - [anon_sym_join] = ACTIONS(3474), - [anon_sym_on] = ACTIONS(3474), - [anon_sym_equals] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_orderby] = ACTIONS(3474), - [anon_sym_ascending] = ACTIONS(3474), - [anon_sym_descending] = ACTIONS(3474), - [anon_sym_group] = ACTIONS(3474), - [anon_sym_by] = ACTIONS(3474), - [anon_sym_select] = ACTIONS(3474), - [anon_sym_stackalloc] = ACTIONS(3474), - [anon_sym_sizeof] = ACTIONS(3474), - [anon_sym_typeof] = ACTIONS(3474), - [anon_sym___makeref] = ACTIONS(3474), - [anon_sym___reftype] = ACTIONS(3474), - [anon_sym___refvalue] = ACTIONS(3474), - [sym_null_literal] = ACTIONS(3474), - [anon_sym_SQUOTE] = ACTIONS(3476), - [sym_integer_literal] = ACTIONS(3474), - [sym_real_literal] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [sym_verbatim_string_literal] = ACTIONS(3476), - [sym_grit_metavariable] = ACTIONS(3476), - [aux_sym_preproc_if_token1] = ACTIONS(3476), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3476), - [sym_interpolation_verbatim_start] = ACTIONS(3476), - [sym_interpolation_raw_start] = ACTIONS(3476), - [sym_raw_string_start] = ACTIONS(3476), - }, - [2072] = { - [sym_catch_clause] = STATE(2112), - [sym_finally_clause] = STATE(2150), - [sym_preproc_region] = STATE(2072), - [sym_preproc_endregion] = STATE(2072), - [sym_preproc_line] = STATE(2072), - [sym_preproc_pragma] = STATE(2072), - [sym_preproc_nullable] = STATE(2072), - [sym_preproc_error] = STATE(2072), - [sym_preproc_warning] = STATE(2072), - [sym_preproc_define] = STATE(2072), - [sym_preproc_undef] = STATE(2072), - [aux_sym_try_statement_repeat1] = STATE(2084), + [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), @@ -395384,21 +393803,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), @@ -395413,15 +393823,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(3348), [anon_sym_throw] = ACTIONS(3348), [anon_sym_try] = ACTIONS(3348), - [anon_sym_catch] = ACTIONS(3688), + [anon_sym_catch] = ACTIONS(3716), [anon_sym_when] = ACTIONS(3348), - [anon_sym_finally] = ACTIONS(3690), + [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), @@ -395463,503 +393882,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3350), [sym_raw_string_start] = ACTIONS(3350), }, - [2073] = { - [sym_preproc_region] = STATE(2073), - [sym_preproc_endregion] = STATE(2073), - [sym_preproc_line] = STATE(2073), - [sym_preproc_pragma] = STATE(2073), - [sym_preproc_nullable] = STATE(2073), - [sym_preproc_error] = STATE(2073), - [sym_preproc_warning] = STATE(2073), - [sym_preproc_define] = STATE(2073), - [sym_preproc_undef] = STATE(2073), - [ts_builtin_sym_end] = ACTIONS(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [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(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), - }, - [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(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(3418), - [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), + [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), }, - [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(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), + [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), + [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_namespace] = ACTIONS(3390), + [anon_sym_class] = ACTIONS(3390), + [anon_sym_ref] = ACTIONS(3390), + [anon_sym_struct] = ACTIONS(3390), + [anon_sym_enum] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_interface] = ACTIONS(3390), + [anon_sym_delegate] = ACTIONS(3390), + [anon_sym_record] = 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_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), @@ -395970,124 +394133,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(3534), - [sym_interpolation_verbatim_start] = ACTIONS(3534), - [sym_interpolation_raw_start] = ACTIONS(3534), - [sym_raw_string_start] = ACTIONS(3534), + [sym_interpolation_regular_start] = ACTIONS(3392), + [sym_interpolation_verbatim_start] = ACTIONS(3392), + [sym_interpolation_raw_start] = ACTIONS(3392), + [sym_raw_string_start] = ACTIONS(3392), }, - [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(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), + [2062] = { + [sym_preproc_region] = STATE(2062), + [sym_preproc_endregion] = STATE(2062), + [sym_preproc_line] = STATE(2062), + [sym_preproc_pragma] = STATE(2062), + [sym_preproc_nullable] = STATE(2062), + [sym_preproc_error] = STATE(2062), + [sym_preproc_warning] = STATE(2062), + [sym_preproc_define] = STATE(2062), + [sym_preproc_undef] = STATE(2062), + [ts_builtin_sym_end] = ACTIONS(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), @@ -396098,21 +394261,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(3514), - [sym_interpolation_verbatim_start] = ACTIONS(3514), - [sym_interpolation_raw_start] = ACTIONS(3514), - [sym_raw_string_start] = ACTIONS(3514), + [sym_interpolation_regular_start] = ACTIONS(3566), + [sym_interpolation_verbatim_start] = ACTIONS(3566), + [sym_interpolation_raw_start] = ACTIONS(3566), + [sym_raw_string_start] = ACTIONS(3566), }, - [2078] = { - [sym_preproc_region] = STATE(2078), - [sym_preproc_endregion] = STATE(2078), - [sym_preproc_line] = STATE(2078), - [sym_preproc_pragma] = STATE(2078), - [sym_preproc_nullable] = STATE(2078), - [sym_preproc_error] = STATE(2078), - [sym_preproc_warning] = STATE(2078), - [sym_preproc_define] = STATE(2078), - [sym_preproc_undef] = STATE(2078), + [2063] = { + [sym_preproc_region] = STATE(2063), + [sym_preproc_endregion] = STATE(2063), + [sym_preproc_line] = STATE(2063), + [sym_preproc_pragma] = STATE(2063), + [sym_preproc_nullable] = STATE(2063), + [sym_preproc_error] = STATE(2063), + [sym_preproc_warning] = STATE(2063), + [sym_preproc_define] = STATE(2063), + [sym_preproc_undef] = STATE(2063), + [ts_builtin_sym_end] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [2064] = { + [sym_preproc_region] = STATE(2064), + [sym_preproc_endregion] = STATE(2064), + [sym_preproc_line] = STATE(2064), + [sym_preproc_pragma] = STATE(2064), + [sym_preproc_nullable] = STATE(2064), + [sym_preproc_error] = STATE(2064), + [sym_preproc_warning] = STATE(2064), + [sym_preproc_define] = STATE(2064), + [sym_preproc_undef] = STATE(2064), + [ts_builtin_sym_end] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [2065] = { + [sym_preproc_region] = STATE(2065), + [sym_preproc_endregion] = STATE(2065), + [sym_preproc_line] = STATE(2065), + [sym_preproc_pragma] = STATE(2065), + [sym_preproc_nullable] = STATE(2065), + [sym_preproc_error] = STATE(2065), + [sym_preproc_warning] = STATE(2065), + [sym_preproc_define] = STATE(2065), + [sym_preproc_undef] = STATE(2065), [ts_builtin_sym_end] = ACTIONS(3518), [sym__identifier_token] = ACTIONS(3516), [anon_sym_extern] = ACTIONS(3516), @@ -396155,21 +394574,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), @@ -396190,6 +394600,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), @@ -396231,246 +394650,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3518), [sym_raw_string_start] = ACTIONS(3518), }, - [2079] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6381), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6087), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(2079), - [sym_preproc_endregion] = STATE(2079), - [sym_preproc_line] = STATE(2079), - [sym_preproc_pragma] = STATE(2079), - [sym_preproc_nullable] = STATE(2079), - [sym_preproc_error] = STATE(2079), - [sym_preproc_warning] = STATE(2079), - [sym_preproc_define] = STATE(2079), - [sym_preproc_undef] = STATE(2079), - [sym__identifier_token] = ACTIONS(3694), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3711), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3714), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3717), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [2066] = { + [sym_preproc_region] = STATE(2066), + [sym_preproc_endregion] = STATE(2066), + [sym_preproc_line] = STATE(2066), + [sym_preproc_pragma] = STATE(2066), + [sym_preproc_nullable] = STATE(2066), + [sym_preproc_error] = STATE(2066), + [sym_preproc_warning] = STATE(2066), + [sym_preproc_define] = STATE(2066), + [sym_preproc_undef] = STATE(2066), + [ts_builtin_sym_end] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, - [2080] = { - [sym_preproc_region] = STATE(2080), - [sym_preproc_endregion] = STATE(2080), - [sym_preproc_line] = STATE(2080), - [sym_preproc_pragma] = STATE(2080), - [sym_preproc_nullable] = STATE(2080), - [sym_preproc_error] = STATE(2080), - [sym_preproc_warning] = STATE(2080), - [sym_preproc_define] = STATE(2080), - [sym_preproc_undef] = STATE(2080), - [ts_builtin_sym_end] = ACTIONS(3602), - [sym__identifier_token] = ACTIONS(3600), - [anon_sym_extern] = ACTIONS(3600), - [anon_sym_alias] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [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_return] = 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_LBRACE] = 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_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), - [sym_predefined_type] = ACTIONS(3600), - [anon_sym_break] = ACTIONS(3600), - [anon_sym_unchecked] = ACTIONS(3600), - [anon_sym_continue] = ACTIONS(3600), - [anon_sym_do] = ACTIONS(3600), - [anon_sym_while] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3600), - [anon_sym_lock] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_default] = ACTIONS(3600), - [anon_sym_throw] = ACTIONS(3600), - [anon_sym_try] = ACTIONS(3600), - [anon_sym_when] = ACTIONS(3600), - [anon_sym_await] = ACTIONS(3600), - [anon_sym_foreach] = ACTIONS(3600), - [anon_sym_goto] = ACTIONS(3600), - [anon_sym_if] = ACTIONS(3600), - [anon_sym_DOT_DOT] = ACTIONS(3602), - [anon_sym_from] = ACTIONS(3600), - [anon_sym_into] = ACTIONS(3600), - [anon_sym_join] = ACTIONS(3600), - [anon_sym_on] = ACTIONS(3600), - [anon_sym_equals] = ACTIONS(3600), - [anon_sym_let] = ACTIONS(3600), - [anon_sym_orderby] = ACTIONS(3600), - [anon_sym_ascending] = ACTIONS(3600), - [anon_sym_descending] = ACTIONS(3600), - [anon_sym_group] = ACTIONS(3600), - [anon_sym_by] = ACTIONS(3600), - [anon_sym_select] = ACTIONS(3600), - [anon_sym_stackalloc] = ACTIONS(3600), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym_typeof] = ACTIONS(3600), - [anon_sym___makeref] = ACTIONS(3600), - [anon_sym___reftype] = ACTIONS(3600), - [anon_sym___refvalue] = ACTIONS(3600), - [sym_null_literal] = ACTIONS(3600), - [anon_sym_SQUOTE] = ACTIONS(3602), - [sym_integer_literal] = ACTIONS(3600), - [sym_real_literal] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [sym_verbatim_string_literal] = ACTIONS(3602), - [sym_grit_metavariable] = ACTIONS(3602), - [aux_sym_preproc_if_token1] = ACTIONS(3602), + [2067] = { + [sym_preproc_region] = STATE(2067), + [sym_preproc_endregion] = STATE(2067), + [sym_preproc_line] = STATE(2067), + [sym_preproc_pragma] = STATE(2067), + [sym_preproc_nullable] = STATE(2067), + [sym_preproc_error] = STATE(2067), + [sym_preproc_warning] = STATE(2067), + [sym_preproc_define] = STATE(2067), + [sym_preproc_undef] = STATE(2067), + [ts_builtin_sym_end] = ACTIONS(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), @@ -396481,123 +394901,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(3602), - [sym_interpolation_verbatim_start] = ACTIONS(3602), - [sym_interpolation_raw_start] = ACTIONS(3602), - [sym_raw_string_start] = ACTIONS(3602), + [sym_interpolation_regular_start] = ACTIONS(3558), + [sym_interpolation_verbatim_start] = ACTIONS(3558), + [sym_interpolation_raw_start] = ACTIONS(3558), + [sym_raw_string_start] = ACTIONS(3558), }, - [2081] = { - [sym_preproc_region] = STATE(2081), - [sym_preproc_endregion] = STATE(2081), - [sym_preproc_line] = STATE(2081), - [sym_preproc_pragma] = STATE(2081), - [sym_preproc_nullable] = STATE(2081), - [sym_preproc_error] = STATE(2081), - [sym_preproc_warning] = STATE(2081), - [sym_preproc_define] = STATE(2081), - [sym_preproc_undef] = STATE(2081), - [ts_builtin_sym_end] = ACTIONS(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), + [2068] = { + [sym_preproc_region] = STATE(2068), + [sym_preproc_endregion] = STATE(2068), + [sym_preproc_line] = STATE(2068), + [sym_preproc_pragma] = STATE(2068), + [sym_preproc_nullable] = STATE(2068), + [sym_preproc_error] = STATE(2068), + [sym_preproc_warning] = STATE(2068), + [sym_preproc_define] = STATE(2068), + [sym_preproc_undef] = STATE(2068), + [ts_builtin_sym_end] = ACTIONS(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), @@ -396608,123 +395029,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(3622), - [sym_interpolation_verbatim_start] = ACTIONS(3622), - [sym_interpolation_raw_start] = ACTIONS(3622), - [sym_raw_string_start] = ACTIONS(3622), + [sym_interpolation_regular_start] = ACTIONS(3514), + [sym_interpolation_verbatim_start] = ACTIONS(3514), + [sym_interpolation_raw_start] = ACTIONS(3514), + [sym_raw_string_start] = ACTIONS(3514), }, - [2082] = { - [sym_preproc_region] = STATE(2082), - [sym_preproc_endregion] = STATE(2082), - [sym_preproc_line] = STATE(2082), - [sym_preproc_pragma] = STATE(2082), - [sym_preproc_nullable] = STATE(2082), - [sym_preproc_error] = STATE(2082), - [sym_preproc_warning] = STATE(2082), - [sym_preproc_define] = STATE(2082), - [sym_preproc_undef] = STATE(2082), - [ts_builtin_sym_end] = ACTIONS(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), + [2069] = { + [sym_preproc_region] = STATE(2069), + [sym_preproc_endregion] = STATE(2069), + [sym_preproc_line] = STATE(2069), + [sym_preproc_pragma] = STATE(2069), + [sym_preproc_nullable] = STATE(2069), + [sym_preproc_error] = STATE(2069), + [sym_preproc_warning] = STATE(2069), + [sym_preproc_define] = STATE(2069), + [sym_preproc_undef] = STATE(2069), + [ts_builtin_sym_end] = ACTIONS(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), @@ -396735,123 +395157,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(3658), - [sym_interpolation_verbatim_start] = ACTIONS(3658), - [sym_interpolation_raw_start] = ACTIONS(3658), - [sym_raw_string_start] = ACTIONS(3658), + [sym_interpolation_regular_start] = ACTIONS(3578), + [sym_interpolation_verbatim_start] = ACTIONS(3578), + [sym_interpolation_raw_start] = ACTIONS(3578), + [sym_raw_string_start] = ACTIONS(3578), }, - [2083] = { - [sym_preproc_region] = STATE(2083), - [sym_preproc_endregion] = STATE(2083), - [sym_preproc_line] = STATE(2083), - [sym_preproc_pragma] = STATE(2083), - [sym_preproc_nullable] = STATE(2083), - [sym_preproc_error] = STATE(2083), - [sym_preproc_warning] = STATE(2083), - [sym_preproc_define] = STATE(2083), - [sym_preproc_undef] = STATE(2083), - [ts_builtin_sym_end] = ACTIONS(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), + [2070] = { + [sym_preproc_region] = STATE(2070), + [sym_preproc_endregion] = STATE(2070), + [sym_preproc_line] = STATE(2070), + [sym_preproc_pragma] = STATE(2070), + [sym_preproc_nullable] = STATE(2070), + [sym_preproc_error] = STATE(2070), + [sym_preproc_warning] = STATE(2070), + [sym_preproc_define] = STATE(2070), + [sym_preproc_undef] = STATE(2070), + [ts_builtin_sym_end] = ACTIONS(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), @@ -396862,250 +395285,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3638), - [sym_interpolation_verbatim_start] = ACTIONS(3638), - [sym_interpolation_raw_start] = ACTIONS(3638), - [sym_raw_string_start] = ACTIONS(3638), + [sym_interpolation_regular_start] = ACTIONS(3530), + [sym_interpolation_verbatim_start] = ACTIONS(3530), + [sym_interpolation_raw_start] = ACTIONS(3530), + [sym_raw_string_start] = ACTIONS(3530), }, - [2084] = { - [sym_catch_clause] = STATE(2112), - [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), - [aux_sym_try_statement_repeat1] = STATE(2084), - [sym__identifier_token] = ACTIONS(3358), - [anon_sym_extern] = ACTIONS(3358), - [anon_sym_alias] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3360), - [anon_sym_global] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_unsafe] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_ref] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_RBRACE] = ACTIONS(3360), - [anon_sym_delegate] = ACTIONS(3358), - [anon_sym_public] = ACTIONS(3358), - [anon_sym_private] = ACTIONS(3358), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_abstract] = ACTIONS(3358), - [anon_sym_async] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_file] = ACTIONS(3358), - [anon_sym_fixed] = ACTIONS(3358), - [anon_sym_internal] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_override] = ACTIONS(3358), - [anon_sym_partial] = ACTIONS(3358), - [anon_sym_protected] = ACTIONS(3358), - [anon_sym_required] = ACTIONS(3358), - [anon_sym_sealed] = ACTIONS(3358), - [anon_sym_virtual] = ACTIONS(3358), - [anon_sym_volatile] = ACTIONS(3358), - [anon_sym_where] = ACTIONS(3358), - [anon_sym_notnull] = ACTIONS(3358), - [anon_sym_unmanaged] = ACTIONS(3358), - [anon_sym_checked] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3360), - [anon_sym_DASH_DASH] = ACTIONS(3360), - [anon_sym_true] = ACTIONS(3358), - [anon_sym_false] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_STAR] = ACTIONS(3360), - [anon_sym_CARET] = ACTIONS(3360), - [anon_sym_AMP] = ACTIONS(3360), - [anon_sym_this] = ACTIONS(3358), - [anon_sym_scoped] = ACTIONS(3358), - [anon_sym_base] = ACTIONS(3358), - [anon_sym_var] = ACTIONS(3358), - [sym_predefined_type] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_unchecked] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_lock] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_catch] = ACTIONS(3720), - [anon_sym_when] = ACTIONS(3358), - [anon_sym_finally] = ACTIONS(3358), - [anon_sym_await] = ACTIONS(3358), - [anon_sym_foreach] = ACTIONS(3358), - [anon_sym_goto] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_else] = ACTIONS(3358), - [anon_sym_DOT_DOT] = ACTIONS(3360), - [anon_sym_from] = ACTIONS(3358), - [anon_sym_into] = ACTIONS(3358), - [anon_sym_join] = ACTIONS(3358), - [anon_sym_on] = ACTIONS(3358), - [anon_sym_equals] = ACTIONS(3358), - [anon_sym_let] = ACTIONS(3358), - [anon_sym_orderby] = ACTIONS(3358), - [anon_sym_ascending] = ACTIONS(3358), - [anon_sym_descending] = ACTIONS(3358), - [anon_sym_group] = ACTIONS(3358), - [anon_sym_by] = ACTIONS(3358), - [anon_sym_select] = ACTIONS(3358), - [anon_sym_stackalloc] = ACTIONS(3358), - [anon_sym_sizeof] = ACTIONS(3358), - [anon_sym_typeof] = ACTIONS(3358), - [anon_sym___makeref] = ACTIONS(3358), - [anon_sym___reftype] = ACTIONS(3358), - [anon_sym___refvalue] = ACTIONS(3358), - [sym_null_literal] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(3360), - [sym_integer_literal] = ACTIONS(3358), - [sym_real_literal] = ACTIONS(3360), - [anon_sym_DQUOTE] = ACTIONS(3360), - [sym_verbatim_string_literal] = ACTIONS(3360), - [sym_grit_metavariable] = ACTIONS(3360), - [aux_sym_preproc_if_token1] = ACTIONS(3360), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3360), - [sym_interpolation_verbatim_start] = ACTIONS(3360), - [sym_interpolation_raw_start] = ACTIONS(3360), - [sym_raw_string_start] = ACTIONS(3360), + [2071] = { + [sym_preproc_region] = STATE(2071), + [sym_preproc_endregion] = STATE(2071), + [sym_preproc_line] = STATE(2071), + [sym_preproc_pragma] = STATE(2071), + [sym_preproc_nullable] = STATE(2071), + [sym_preproc_error] = STATE(2071), + [sym_preproc_warning] = STATE(2071), + [sym_preproc_define] = STATE(2071), + [sym_preproc_undef] = STATE(2071), + [ts_builtin_sym_end] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, - [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(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_BANG] = ACTIONS(3723), - [anon_sym_TILDE] = 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_PLUS] = ACTIONS(3725), - [anon_sym_DASH] = ACTIONS(3725), - [anon_sym_STAR] = ACTIONS(3723), - [anon_sym_CARET] = ACTIONS(3723), - [anon_sym_AMP] = ACTIONS(3723), - [anon_sym_this] = ACTIONS(3725), - [anon_sym_scoped] = ACTIONS(3725), - [anon_sym_base] = ACTIONS(3725), - [anon_sym_var] = ACTIONS(3725), - [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_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), + [2072] = { + [sym_preproc_region] = STATE(2072), + [sym_preproc_endregion] = STATE(2072), + [sym_preproc_line] = STATE(2072), + [sym_preproc_pragma] = STATE(2072), + [sym_preproc_nullable] = STATE(2072), + [sym_preproc_error] = STATE(2072), + [sym_preproc_warning] = STATE(2072), + [sym_preproc_define] = STATE(2072), + [sym_preproc_undef] = STATE(2072), + [ts_builtin_sym_end] = ACTIONS(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), @@ -397116,123 +395541,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3723), - [sym_interpolation_verbatim_start] = ACTIONS(3723), - [sym_interpolation_raw_start] = ACTIONS(3723), - [sym_raw_string_start] = ACTIONS(3723), + [sym_interpolation_regular_start] = ACTIONS(3542), + [sym_interpolation_verbatim_start] = ACTIONS(3542), + [sym_interpolation_raw_start] = ACTIONS(3542), + [sym_raw_string_start] = ACTIONS(3542), }, - [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(3626), - [sym__identifier_token] = ACTIONS(3624), - [anon_sym_extern] = ACTIONS(3624), - [anon_sym_alias] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3626), - [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_return] = 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_LBRACE] = 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_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), - [sym_predefined_type] = ACTIONS(3624), - [anon_sym_break] = ACTIONS(3624), - [anon_sym_unchecked] = ACTIONS(3624), - [anon_sym_continue] = ACTIONS(3624), - [anon_sym_do] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(3624), - [anon_sym_for] = ACTIONS(3624), - [anon_sym_lock] = ACTIONS(3624), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_switch] = ACTIONS(3624), - [anon_sym_default] = ACTIONS(3624), - [anon_sym_throw] = ACTIONS(3624), - [anon_sym_try] = ACTIONS(3624), - [anon_sym_when] = ACTIONS(3624), - [anon_sym_await] = ACTIONS(3624), - [anon_sym_foreach] = ACTIONS(3624), - [anon_sym_goto] = ACTIONS(3624), - [anon_sym_if] = ACTIONS(3624), - [anon_sym_DOT_DOT] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3624), - [anon_sym_into] = ACTIONS(3624), - [anon_sym_join] = ACTIONS(3624), - [anon_sym_on] = ACTIONS(3624), - [anon_sym_equals] = ACTIONS(3624), - [anon_sym_let] = ACTIONS(3624), - [anon_sym_orderby] = ACTIONS(3624), - [anon_sym_ascending] = ACTIONS(3624), - [anon_sym_descending] = ACTIONS(3624), - [anon_sym_group] = ACTIONS(3624), - [anon_sym_by] = ACTIONS(3624), - [anon_sym_select] = ACTIONS(3624), - [anon_sym_stackalloc] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3624), - [anon_sym_typeof] = ACTIONS(3624), - [anon_sym___makeref] = ACTIONS(3624), - [anon_sym___reftype] = ACTIONS(3624), - [anon_sym___refvalue] = ACTIONS(3624), - [sym_null_literal] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3626), - [sym_integer_literal] = ACTIONS(3624), - [sym_real_literal] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [sym_verbatim_string_literal] = ACTIONS(3626), - [sym_grit_metavariable] = ACTIONS(3626), - [aux_sym_preproc_if_token1] = ACTIONS(3626), + [2073] = { + [sym_preproc_region] = STATE(2073), + [sym_preproc_endregion] = STATE(2073), + [sym_preproc_line] = STATE(2073), + [sym_preproc_pragma] = STATE(2073), + [sym_preproc_nullable] = STATE(2073), + [sym_preproc_error] = STATE(2073), + [sym_preproc_warning] = STATE(2073), + [sym_preproc_define] = STATE(2073), + [sym_preproc_undef] = STATE(2073), + [ts_builtin_sym_end] = ACTIONS(3498), + [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_namespace] = ACTIONS(3496), + [anon_sym_class] = ACTIONS(3496), + [anon_sym_ref] = ACTIONS(3496), + [anon_sym_struct] = ACTIONS(3496), + [anon_sym_enum] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3498), + [anon_sym_interface] = ACTIONS(3496), + [anon_sym_delegate] = ACTIONS(3496), + [anon_sym_record] = 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_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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [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), @@ -397243,123 +395797,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3626), - [sym_interpolation_verbatim_start] = ACTIONS(3626), - [sym_interpolation_raw_start] = ACTIONS(3626), - [sym_raw_string_start] = ACTIONS(3626), + [sym_interpolation_regular_start] = ACTIONS(3574), + [sym_interpolation_verbatim_start] = ACTIONS(3574), + [sym_interpolation_raw_start] = ACTIONS(3574), + [sym_raw_string_start] = ACTIONS(3574), }, - [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(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), + [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), + [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_namespace] = ACTIONS(3476), + [anon_sym_class] = ACTIONS(3476), + [anon_sym_ref] = ACTIONS(3476), + [anon_sym_struct] = ACTIONS(3476), + [anon_sym_enum] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3476), + [anon_sym_delegate] = ACTIONS(3476), + [anon_sym_record] = 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_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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [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), @@ -397370,123 +396053,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(3630), - [sym_interpolation_verbatim_start] = ACTIONS(3630), - [sym_interpolation_raw_start] = ACTIONS(3630), - [sym_raw_string_start] = ACTIONS(3630), + [sym_interpolation_regular_start] = ACTIONS(3538), + [sym_interpolation_verbatim_start] = ACTIONS(3538), + [sym_interpolation_raw_start] = ACTIONS(3538), + [sym_raw_string_start] = ACTIONS(3538), }, - [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(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), + [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), @@ -397497,123 +396181,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(3586), - [sym_interpolation_verbatim_start] = ACTIONS(3586), - [sym_interpolation_raw_start] = ACTIONS(3586), - [sym_raw_string_start] = ACTIONS(3586), + [sym_interpolation_regular_start] = ACTIONS(3522), + [sym_interpolation_verbatim_start] = ACTIONS(3522), + [sym_interpolation_raw_start] = ACTIONS(3522), + [sym_raw_string_start] = ACTIONS(3522), }, - [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(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), + [2078] = { + [sym_preproc_region] = STATE(2078), + [sym_preproc_endregion] = STATE(2078), + [sym_preproc_line] = STATE(2078), + [sym_preproc_pragma] = STATE(2078), + [sym_preproc_nullable] = STATE(2078), + [sym_preproc_error] = STATE(2078), + [sym_preproc_warning] = STATE(2078), + [sym_preproc_define] = STATE(2078), + [sym_preproc_undef] = STATE(2078), + [ts_builtin_sym_end] = ACTIONS(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), @@ -397624,123 +396309,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_interpolation_regular_start] = ACTIONS(3534), + [sym_interpolation_verbatim_start] = ACTIONS(3534), + [sym_interpolation_raw_start] = ACTIONS(3534), + [sym_raw_string_start] = ACTIONS(3534), }, - [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(3670), - [sym__identifier_token] = ACTIONS(3668), - [anon_sym_extern] = ACTIONS(3668), - [anon_sym_alias] = ACTIONS(3668), - [anon_sym_SEMI] = ACTIONS(3670), - [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_return] = 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_LBRACE] = 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_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), - [sym_predefined_type] = ACTIONS(3668), - [anon_sym_break] = ACTIONS(3668), - [anon_sym_unchecked] = ACTIONS(3668), - [anon_sym_continue] = ACTIONS(3668), - [anon_sym_do] = ACTIONS(3668), - [anon_sym_while] = ACTIONS(3668), - [anon_sym_for] = ACTIONS(3668), - [anon_sym_lock] = ACTIONS(3668), - [anon_sym_yield] = ACTIONS(3668), - [anon_sym_switch] = ACTIONS(3668), - [anon_sym_default] = ACTIONS(3668), - [anon_sym_throw] = ACTIONS(3668), - [anon_sym_try] = ACTIONS(3668), - [anon_sym_when] = ACTIONS(3668), - [anon_sym_await] = ACTIONS(3668), - [anon_sym_foreach] = ACTIONS(3668), - [anon_sym_goto] = ACTIONS(3668), - [anon_sym_if] = ACTIONS(3668), - [anon_sym_DOT_DOT] = ACTIONS(3670), - [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), - [anon_sym_stackalloc] = ACTIONS(3668), - [anon_sym_sizeof] = ACTIONS(3668), - [anon_sym_typeof] = ACTIONS(3668), - [anon_sym___makeref] = ACTIONS(3668), - [anon_sym___reftype] = ACTIONS(3668), - [anon_sym___refvalue] = ACTIONS(3668), - [sym_null_literal] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3670), - [sym_integer_literal] = ACTIONS(3668), - [sym_real_literal] = ACTIONS(3670), - [anon_sym_DQUOTE] = ACTIONS(3670), - [sym_verbatim_string_literal] = ACTIONS(3670), - [sym_grit_metavariable] = ACTIONS(3670), - [aux_sym_preproc_if_token1] = ACTIONS(3670), + [2079] = { + [sym_preproc_region] = STATE(2079), + [sym_preproc_endregion] = STATE(2079), + [sym_preproc_line] = STATE(2079), + [sym_preproc_pragma] = STATE(2079), + [sym_preproc_nullable] = STATE(2079), + [sym_preproc_error] = STATE(2079), + [sym_preproc_warning] = STATE(2079), + [sym_preproc_define] = STATE(2079), + [sym_preproc_undef] = STATE(2079), + [ts_builtin_sym_end] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [2080] = { + [sym_preproc_region] = STATE(2080), + [sym_preproc_endregion] = STATE(2080), + [sym_preproc_line] = STATE(2080), + [sym_preproc_pragma] = STATE(2080), + [sym_preproc_nullable] = STATE(2080), + [sym_preproc_error] = STATE(2080), + [sym_preproc_warning] = STATE(2080), + [sym_preproc_define] = STATE(2080), + [sym_preproc_undef] = STATE(2080), + [ts_builtin_sym_end] = ACTIONS(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), @@ -397751,123 +396564,377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3670), - [sym_interpolation_verbatim_start] = ACTIONS(3670), - [sym_interpolation_raw_start] = ACTIONS(3670), - [sym_raw_string_start] = ACTIONS(3670), + [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(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), + [2081] = { + [sym_preproc_region] = STATE(2081), + [sym_preproc_endregion] = STATE(2081), + [sym_preproc_line] = STATE(2081), + [sym_preproc_pragma] = STATE(2081), + [sym_preproc_nullable] = STATE(2081), + [sym_preproc_error] = STATE(2081), + [sym_preproc_warning] = STATE(2081), + [sym_preproc_define] = STATE(2081), + [sym_preproc_undef] = STATE(2081), + [ts_builtin_sym_end] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [2082] = { + [sym_preproc_region] = STATE(2082), + [sym_preproc_endregion] = STATE(2082), + [sym_preproc_line] = STATE(2082), + [sym_preproc_pragma] = STATE(2082), + [sym_preproc_nullable] = STATE(2082), + [sym_preproc_error] = STATE(2082), + [sym_preproc_warning] = STATE(2082), + [sym_preproc_define] = STATE(2082), + [sym_preproc_undef] = STATE(2082), + [ts_builtin_sym_end] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [2083] = { + [sym_preproc_region] = STATE(2083), + [sym_preproc_endregion] = STATE(2083), + [sym_preproc_line] = STATE(2083), + [sym_preproc_pragma] = STATE(2083), + [sym_preproc_nullable] = STATE(2083), + [sym_preproc_error] = STATE(2083), + [sym_preproc_warning] = STATE(2083), + [sym_preproc_define] = STATE(2083), + [sym_preproc_undef] = STATE(2083), + [ts_builtin_sym_end] = ACTIONS(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), @@ -397878,21 +396945,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(3654), - [sym_interpolation_verbatim_start] = ACTIONS(3654), - [sym_interpolation_raw_start] = ACTIONS(3654), - [sym_raw_string_start] = ACTIONS(3654), + [sym_interpolation_regular_start] = ACTIONS(3582), + [sym_interpolation_verbatim_start] = ACTIONS(3582), + [sym_interpolation_raw_start] = ACTIONS(3582), + [sym_raw_string_start] = ACTIONS(3582), }, - [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), + [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), @@ -397935,21 +397002,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), @@ -397969,6 +397027,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), @@ -398010,16 +397077,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3674), [sym_raw_string_start] = ACTIONS(3674), }, - [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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [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), @@ -398062,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), @@ -398096,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), @@ -398132,10 +397326,899 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3646), - [sym_interpolation_verbatim_start] = ACTIONS(3646), - [sym_interpolation_raw_start] = ACTIONS(3646), - [sym_raw_string_start] = ACTIONS(3646), + [sym_interpolation_regular_start] = ACTIONS(3646), + [sym_interpolation_verbatim_start] = ACTIONS(3646), + [sym_interpolation_raw_start] = ACTIONS(3646), + [sym_raw_string_start] = ACTIONS(3646), + }, + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3666), + [sym_interpolation_verbatim_start] = ACTIONS(3666), + [sym_interpolation_raw_start] = ACTIONS(3666), + [sym_raw_string_start] = ACTIONS(3666), + }, + [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), + [anon_sym_alias] = ACTIONS(3676), + [anon_sym_SEMI] = ACTIONS(3678), + [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_return] = 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_LBRACE] = 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_checked] = ACTIONS(3676), + [anon_sym_TILDE] = 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), + [anon_sym_continue] = ACTIONS(3676), + [anon_sym_do] = ACTIONS(3676), + [anon_sym_while] = ACTIONS(3676), + [anon_sym_for] = ACTIONS(3676), + [anon_sym_lock] = ACTIONS(3676), + [anon_sym_yield] = ACTIONS(3676), + [anon_sym_switch] = ACTIONS(3676), + [anon_sym_default] = ACTIONS(3676), + [anon_sym_throw] = ACTIONS(3676), + [anon_sym_try] = ACTIONS(3676), + [anon_sym_when] = ACTIONS(3676), + [anon_sym_await] = ACTIONS(3676), + [anon_sym_foreach] = ACTIONS(3676), + [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), + [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), + [anon_sym_stackalloc] = ACTIONS(3676), + [anon_sym_sizeof] = ACTIONS(3676), + [anon_sym_typeof] = ACTIONS(3676), + [anon_sym___makeref] = ACTIONS(3676), + [anon_sym___reftype] = ACTIONS(3676), + [anon_sym___refvalue] = ACTIONS(3676), + [sym_null_literal] = ACTIONS(3676), + [anon_sym_SQUOTE] = ACTIONS(3678), + [sym_integer_literal] = ACTIONS(3676), + [sym_real_literal] = ACTIONS(3678), + [anon_sym_DQUOTE] = ACTIONS(3678), + [sym_verbatim_string_literal] = ACTIONS(3678), + [sym_grit_metavariable] = ACTIONS(3678), + [aux_sym_preproc_if_token1] = ACTIONS(3678), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_regular_start] = ACTIONS(3678), + [sym_interpolation_verbatim_start] = ACTIONS(3678), + [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_preproc_region] = STATE(2094), @@ -398147,108 +398230,108 @@ 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), - [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), + [ts_builtin_sym_end] = ACTIONS(3602), + [sym__identifier_token] = ACTIONS(3600), + [anon_sym_extern] = ACTIONS(3600), + [anon_sym_alias] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3602), + [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_return] = 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_LBRACE] = 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_checked] = ACTIONS(3600), + [anon_sym_TILDE] = 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), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_lock] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_default] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_when] = ACTIONS(3600), + [anon_sym_await] = ACTIONS(3600), + [anon_sym_foreach] = ACTIONS(3600), + [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), + [anon_sym_on] = ACTIONS(3600), + [anon_sym_equals] = ACTIONS(3600), + [anon_sym_let] = ACTIONS(3600), + [anon_sym_orderby] = ACTIONS(3600), + [anon_sym_ascending] = ACTIONS(3600), + [anon_sym_descending] = ACTIONS(3600), + [anon_sym_group] = ACTIONS(3600), + [anon_sym_by] = ACTIONS(3600), + [anon_sym_select] = ACTIONS(3600), + [anon_sym_stackalloc] = ACTIONS(3600), + [anon_sym_sizeof] = ACTIONS(3600), + [anon_sym_typeof] = ACTIONS(3600), + [anon_sym___makeref] = ACTIONS(3600), + [anon_sym___reftype] = ACTIONS(3600), + [anon_sym___refvalue] = ACTIONS(3600), + [sym_null_literal] = ACTIONS(3600), + [anon_sym_SQUOTE] = ACTIONS(3602), + [sym_integer_literal] = ACTIONS(3600), + [sym_real_literal] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [sym_verbatim_string_literal] = ACTIONS(3602), + [sym_grit_metavariable] = ACTIONS(3602), + [aux_sym_preproc_if_token1] = ACTIONS(3602), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398259,10 +398342,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(3610), - [sym_interpolation_verbatim_start] = ACTIONS(3610), - [sym_interpolation_raw_start] = ACTIONS(3610), - [sym_raw_string_start] = ACTIONS(3610), + [sym_interpolation_regular_start] = ACTIONS(3602), + [sym_interpolation_verbatim_start] = ACTIONS(3602), + [sym_interpolation_raw_start] = ACTIONS(3602), + [sym_raw_string_start] = ACTIONS(3602), }, [2095] = { [sym_preproc_region] = STATE(2095), @@ -398274,108 +398357,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2095), [sym_preproc_define] = STATE(2095), [sym_preproc_undef] = STATE(2095), - [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), + [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), @@ -398386,10 +398469,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(3682), - [sym_interpolation_verbatim_start] = ACTIONS(3682), - [sym_interpolation_raw_start] = ACTIONS(3682), - [sym_raw_string_start] = ACTIONS(3682), + [sym_interpolation_regular_start] = ACTIONS(3606), + [sym_interpolation_verbatim_start] = ACTIONS(3606), + [sym_interpolation_raw_start] = ACTIONS(3606), + [sym_raw_string_start] = ACTIONS(3606), }, [2096] = { [sym_preproc_region] = STATE(2096), @@ -398401,6 +398484,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2096), [sym_preproc_define] = STATE(2096), [sym_preproc_undef] = STATE(2096), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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), @@ -398443,21 +398653,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), @@ -398477,6 +398678,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), @@ -398518,133 +398728,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3594), [sym_raw_string_start] = ACTIONS(3594), }, - [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(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_BANG] = ACTIONS(3727), - [anon_sym_TILDE] = 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_PLUS] = ACTIONS(3729), - [anon_sym_DASH] = ACTIONS(3729), - [anon_sym_STAR] = ACTIONS(3727), - [anon_sym_CARET] = ACTIONS(3727), - [anon_sym_AMP] = ACTIONS(3727), - [anon_sym_this] = ACTIONS(3729), - [anon_sym_scoped] = ACTIONS(3729), - [anon_sym_base] = ACTIONS(3729), - [anon_sym_var] = ACTIONS(3729), - [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_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), - }, [2098] = { [sym_preproc_region] = STATE(2098), [sym_preproc_endregion] = STATE(2098), @@ -398655,108 +398738,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2098), [sym_preproc_define] = STATE(2098), [sym_preproc_undef] = STATE(2098), - [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), + [ts_builtin_sym_end] = ACTIONS(3626), + [sym__identifier_token] = ACTIONS(3624), + [anon_sym_extern] = ACTIONS(3624), + [anon_sym_alias] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3626), + [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_return] = 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_LBRACE] = 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_checked] = ACTIONS(3624), + [anon_sym_TILDE] = 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), + [anon_sym_continue] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_lock] = ACTIONS(3624), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_switch] = ACTIONS(3624), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_throw] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_when] = ACTIONS(3624), + [anon_sym_await] = ACTIONS(3624), + [anon_sym_foreach] = ACTIONS(3624), + [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), + [anon_sym_on] = ACTIONS(3624), + [anon_sym_equals] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_orderby] = ACTIONS(3624), + [anon_sym_ascending] = ACTIONS(3624), + [anon_sym_descending] = ACTIONS(3624), + [anon_sym_group] = ACTIONS(3624), + [anon_sym_by] = ACTIONS(3624), + [anon_sym_select] = ACTIONS(3624), + [anon_sym_stackalloc] = ACTIONS(3624), + [anon_sym_sizeof] = ACTIONS(3624), + [anon_sym_typeof] = ACTIONS(3624), + [anon_sym___makeref] = ACTIONS(3624), + [anon_sym___reftype] = ACTIONS(3624), + [anon_sym___refvalue] = ACTIONS(3624), + [sym_null_literal] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3626), + [sym_integer_literal] = ACTIONS(3624), + [sym_real_literal] = ACTIONS(3626), + [anon_sym_DQUOTE] = ACTIONS(3626), + [sym_verbatim_string_literal] = ACTIONS(3626), + [sym_grit_metavariable] = ACTIONS(3626), + [aux_sym_preproc_if_token1] = ACTIONS(3626), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -398767,10 +398850,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(3590), - [sym_interpolation_verbatim_start] = ACTIONS(3590), - [sym_interpolation_raw_start] = ACTIONS(3590), - [sym_raw_string_start] = ACTIONS(3590), + [sym_interpolation_regular_start] = ACTIONS(3626), + [sym_interpolation_verbatim_start] = ACTIONS(3626), + [sym_interpolation_raw_start] = ACTIONS(3626), + [sym_raw_string_start] = ACTIONS(3626), }, [2099] = { [sym_preproc_region] = STATE(2099), @@ -398782,108 +398865,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2099), [sym_preproc_define] = STATE(2099), [sym_preproc_undef] = STATE(2099), - [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(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), @@ -398894,10 +398977,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(3630), + [sym_interpolation_verbatim_start] = ACTIONS(3630), + [sym_interpolation_raw_start] = ACTIONS(3630), + [sym_raw_string_start] = ACTIONS(3630), }, [2100] = { [sym_preproc_region] = STATE(2100), @@ -398909,108 +398992,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2100), [sym_preproc_define] = STATE(2100), [sym_preproc_undef] = STATE(2100), - [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), + [ts_builtin_sym_end] = ACTIONS(3670), + [sym__identifier_token] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym_alias] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3670), + [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_return] = 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_LBRACE] = 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_checked] = ACTIONS(3668), + [anon_sym_TILDE] = 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), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_lock] = ACTIONS(3668), + [anon_sym_yield] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_when] = ACTIONS(3668), + [anon_sym_await] = ACTIONS(3668), + [anon_sym_foreach] = ACTIONS(3668), + [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), + [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), + [anon_sym_stackalloc] = ACTIONS(3668), + [anon_sym_sizeof] = ACTIONS(3668), + [anon_sym_typeof] = ACTIONS(3668), + [anon_sym___makeref] = ACTIONS(3668), + [anon_sym___reftype] = ACTIONS(3668), + [anon_sym___refvalue] = ACTIONS(3668), + [sym_null_literal] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3670), + [sym_integer_literal] = ACTIONS(3668), + [sym_real_literal] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [sym_verbatim_string_literal] = ACTIONS(3670), + [sym_grit_metavariable] = ACTIONS(3670), + [aux_sym_preproc_if_token1] = ACTIONS(3670), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -399021,12 +399104,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3618), - [sym_interpolation_verbatim_start] = ACTIONS(3618), - [sym_interpolation_raw_start] = ACTIONS(3618), - [sym_raw_string_start] = ACTIONS(3618), + [sym_interpolation_regular_start] = ACTIONS(3670), + [sym_interpolation_verbatim_start] = ACTIONS(3670), + [sym_interpolation_raw_start] = ACTIONS(3670), + [sym_raw_string_start] = ACTIONS(3670), }, [2101] = { + [sym_catch_clause] = STATE(2111), [sym_preproc_region] = STATE(2101), [sym_preproc_endregion] = STATE(2101), [sym_preproc_line] = STATE(2101), @@ -399036,122 +399120,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2101), [sym_preproc_define] = STATE(2101), [sym_preproc_undef] = STATE(2101), - [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), + [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), @@ -399163,108 +399246,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2102), [sym_preproc_define] = STATE(2102), [sym_preproc_undef] = STATE(2102), - [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), + [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), @@ -399275,10 +399358,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(3731), - [sym_interpolation_verbatim_start] = ACTIONS(3731), - [sym_interpolation_raw_start] = ACTIONS(3731), - [sym_raw_string_start] = ACTIONS(3731), + [sym_interpolation_regular_start] = ACTIONS(3654), + [sym_interpolation_verbatim_start] = ACTIONS(3654), + [sym_interpolation_raw_start] = ACTIONS(3654), + [sym_raw_string_start] = ACTIONS(3654), }, [2103] = { [sym_preproc_region] = STATE(2103), @@ -399290,235 +399373,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2103), [sym_preproc_define] = STATE(2103), [sym_preproc_undef] = STATE(2103), - [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_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), - [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_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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3666), - [sym_interpolation_verbatim_start] = ACTIONS(3666), - [sym_interpolation_raw_start] = ACTIONS(3666), - [sym_raw_string_start] = ACTIONS(3666), - }, - [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(3678), - [sym__identifier_token] = ACTIONS(3676), - [anon_sym_extern] = ACTIONS(3676), - [anon_sym_alias] = ACTIONS(3676), - [anon_sym_SEMI] = ACTIONS(3678), - [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_return] = 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_LBRACE] = 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_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), - [sym_predefined_type] = ACTIONS(3676), - [anon_sym_break] = ACTIONS(3676), - [anon_sym_unchecked] = ACTIONS(3676), - [anon_sym_continue] = ACTIONS(3676), - [anon_sym_do] = ACTIONS(3676), - [anon_sym_while] = ACTIONS(3676), - [anon_sym_for] = ACTIONS(3676), - [anon_sym_lock] = ACTIONS(3676), - [anon_sym_yield] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3676), - [anon_sym_default] = ACTIONS(3676), - [anon_sym_throw] = ACTIONS(3676), - [anon_sym_try] = ACTIONS(3676), - [anon_sym_when] = ACTIONS(3676), - [anon_sym_await] = ACTIONS(3676), - [anon_sym_foreach] = ACTIONS(3676), - [anon_sym_goto] = ACTIONS(3676), - [anon_sym_if] = ACTIONS(3676), - [anon_sym_DOT_DOT] = ACTIONS(3678), - [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), - [anon_sym_stackalloc] = ACTIONS(3676), - [anon_sym_sizeof] = ACTIONS(3676), - [anon_sym_typeof] = ACTIONS(3676), - [anon_sym___makeref] = ACTIONS(3676), - [anon_sym___reftype] = ACTIONS(3676), - [anon_sym___refvalue] = ACTIONS(3676), - [sym_null_literal] = ACTIONS(3676), - [anon_sym_SQUOTE] = ACTIONS(3678), - [sym_integer_literal] = ACTIONS(3676), - [sym_real_literal] = ACTIONS(3678), - [anon_sym_DQUOTE] = ACTIONS(3678), - [sym_verbatim_string_literal] = ACTIONS(3678), - [sym_grit_metavariable] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3678), + [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), @@ -399529,21 +399485,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(3678), - [sym_interpolation_verbatim_start] = ACTIONS(3678), - [sym_interpolation_raw_start] = ACTIONS(3678), - [sym_raw_string_start] = ACTIONS(3678), + [sym_interpolation_regular_start] = ACTIONS(3662), + [sym_interpolation_verbatim_start] = ACTIONS(3662), + [sym_interpolation_raw_start] = ACTIONS(3662), + [sym_raw_string_start] = ACTIONS(3662), }, - [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), + [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), @@ -399586,21 +399542,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), @@ -399620,6 +399567,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), @@ -399661,1379 +399617,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3642), [sym_raw_string_start] = ACTIONS(3642), }, - [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(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), - }, - [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(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), - }, - [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(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [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(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), - }, - [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(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), - }, - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [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(3375), - [anon_sym_extern] = ACTIONS(3375), - [anon_sym_alias] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_global] = ACTIONS(3375), - [anon_sym_using] = ACTIONS(3375), - [anon_sym_unsafe] = ACTIONS(3375), - [anon_sym_static] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_ref] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_delegate] = ACTIONS(3375), - [anon_sym_public] = ACTIONS(3375), - [anon_sym_private] = ACTIONS(3375), - [anon_sym_readonly] = ACTIONS(3375), - [anon_sym_abstract] = ACTIONS(3375), - [anon_sym_async] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_file] = ACTIONS(3375), - [anon_sym_fixed] = ACTIONS(3375), - [anon_sym_internal] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3375), - [anon_sym_partial] = ACTIONS(3375), - [anon_sym_protected] = ACTIONS(3375), - [anon_sym_required] = ACTIONS(3375), - [anon_sym_sealed] = ACTIONS(3375), - [anon_sym_virtual] = ACTIONS(3375), - [anon_sym_volatile] = ACTIONS(3375), - [anon_sym_where] = ACTIONS(3375), - [anon_sym_notnull] = ACTIONS(3375), - [anon_sym_unmanaged] = ACTIONS(3375), - [anon_sym_checked] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(3377), - [anon_sym_CARET] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3377), - [anon_sym_this] = ACTIONS(3375), - [anon_sym_scoped] = ACTIONS(3375), - [anon_sym_base] = ACTIONS(3375), - [anon_sym_var] = ACTIONS(3375), - [sym_predefined_type] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_unchecked] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_lock] = ACTIONS(3375), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_switch] = ACTIONS(3375), - [anon_sym_case] = ACTIONS(3375), - [anon_sym_default] = ACTIONS(3375), - [anon_sym_throw] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_catch] = ACTIONS(3375), - [anon_sym_when] = ACTIONS(3375), - [anon_sym_finally] = ACTIONS(3375), - [anon_sym_await] = ACTIONS(3375), - [anon_sym_foreach] = ACTIONS(3375), - [anon_sym_goto] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_else] = ACTIONS(3375), - [anon_sym_DOT_DOT] = ACTIONS(3377), - [anon_sym_from] = ACTIONS(3375), - [anon_sym_into] = ACTIONS(3375), - [anon_sym_join] = ACTIONS(3375), - [anon_sym_on] = ACTIONS(3375), - [anon_sym_equals] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_orderby] = ACTIONS(3375), - [anon_sym_ascending] = ACTIONS(3375), - [anon_sym_descending] = ACTIONS(3375), - [anon_sym_group] = ACTIONS(3375), - [anon_sym_by] = ACTIONS(3375), - [anon_sym_select] = ACTIONS(3375), - [anon_sym_stackalloc] = ACTIONS(3375), - [anon_sym_sizeof] = ACTIONS(3375), - [anon_sym_typeof] = ACTIONS(3375), - [anon_sym___makeref] = ACTIONS(3375), - [anon_sym___reftype] = ACTIONS(3375), - [anon_sym___refvalue] = ACTIONS(3375), - [sym_null_literal] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3377), - [sym_integer_literal] = ACTIONS(3375), - [sym_real_literal] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [sym_verbatim_string_literal] = ACTIONS(3377), - [sym_grit_metavariable] = ACTIONS(3377), - [aux_sym_preproc_if_token1] = ACTIONS(3377), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3377), - [sym_interpolation_verbatim_start] = ACTIONS(3377), - [sym_interpolation_raw_start] = ACTIONS(3377), - [sym_raw_string_start] = ACTIONS(3377), - }, - [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(3379), - [anon_sym_extern] = ACTIONS(3379), - [anon_sym_alias] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_global] = ACTIONS(3379), - [anon_sym_using] = ACTIONS(3379), - [anon_sym_unsafe] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_ref] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_delegate] = ACTIONS(3379), - [anon_sym_public] = ACTIONS(3379), - [anon_sym_private] = ACTIONS(3379), - [anon_sym_readonly] = ACTIONS(3379), - [anon_sym_abstract] = ACTIONS(3379), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_file] = ACTIONS(3379), - [anon_sym_fixed] = ACTIONS(3379), - [anon_sym_internal] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3379), - [anon_sym_partial] = ACTIONS(3379), - [anon_sym_protected] = ACTIONS(3379), - [anon_sym_required] = ACTIONS(3379), - [anon_sym_sealed] = ACTIONS(3379), - [anon_sym_virtual] = ACTIONS(3379), - [anon_sym_volatile] = ACTIONS(3379), - [anon_sym_where] = ACTIONS(3379), - [anon_sym_notnull] = ACTIONS(3379), - [anon_sym_unmanaged] = ACTIONS(3379), - [anon_sym_checked] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3381), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_CARET] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3381), - [anon_sym_this] = ACTIONS(3379), - [anon_sym_scoped] = ACTIONS(3379), - [anon_sym_base] = ACTIONS(3379), - [anon_sym_var] = ACTIONS(3379), - [sym_predefined_type] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_unchecked] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_lock] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_switch] = ACTIONS(3379), - [anon_sym_case] = ACTIONS(3379), - [anon_sym_default] = ACTIONS(3379), - [anon_sym_throw] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_catch] = ACTIONS(3379), - [anon_sym_when] = ACTIONS(3379), - [anon_sym_finally] = ACTIONS(3379), - [anon_sym_await] = ACTIONS(3379), - [anon_sym_foreach] = ACTIONS(3379), - [anon_sym_goto] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_else] = ACTIONS(3379), - [anon_sym_DOT_DOT] = ACTIONS(3381), - [anon_sym_from] = ACTIONS(3379), - [anon_sym_into] = ACTIONS(3379), - [anon_sym_join] = ACTIONS(3379), - [anon_sym_on] = ACTIONS(3379), - [anon_sym_equals] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_orderby] = ACTIONS(3379), - [anon_sym_ascending] = ACTIONS(3379), - [anon_sym_descending] = ACTIONS(3379), - [anon_sym_group] = ACTIONS(3379), - [anon_sym_by] = ACTIONS(3379), - [anon_sym_select] = ACTIONS(3379), - [anon_sym_stackalloc] = ACTIONS(3379), - [anon_sym_sizeof] = ACTIONS(3379), - [anon_sym_typeof] = ACTIONS(3379), - [anon_sym___makeref] = ACTIONS(3379), - [anon_sym___reftype] = ACTIONS(3379), - [anon_sym___refvalue] = ACTIONS(3379), - [sym_null_literal] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3381), - [sym_integer_literal] = ACTIONS(3379), - [sym_real_literal] = ACTIONS(3381), - [anon_sym_DQUOTE] = ACTIONS(3381), - [sym_verbatim_string_literal] = ACTIONS(3381), - [sym_grit_metavariable] = ACTIONS(3381), - [aux_sym_preproc_if_token1] = ACTIONS(3381), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3381), - [sym_interpolation_verbatim_start] = ACTIONS(3381), - [sym_interpolation_raw_start] = ACTIONS(3381), - [sym_raw_string_start] = ACTIONS(3381), - }, - [2114] = { - [sym_preproc_region] = STATE(2114), - [sym_preproc_endregion] = STATE(2114), - [sym_preproc_line] = STATE(2114), - [sym_preproc_pragma] = STATE(2114), - [sym_preproc_nullable] = STATE(2114), - [sym_preproc_error] = STATE(2114), - [sym_preproc_warning] = STATE(2114), - [sym_preproc_define] = STATE(2114), - [sym_preproc_undef] = STATE(2114), - [sym__identifier_token] = ACTIONS(3383), - [anon_sym_extern] = ACTIONS(3383), - [anon_sym_alias] = ACTIONS(3383), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_global] = ACTIONS(3383), - [anon_sym_using] = ACTIONS(3383), - [anon_sym_unsafe] = ACTIONS(3383), - [anon_sym_static] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_ref] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_RBRACE] = ACTIONS(3385), - [anon_sym_delegate] = ACTIONS(3383), - [anon_sym_public] = ACTIONS(3383), - [anon_sym_private] = ACTIONS(3383), - [anon_sym_readonly] = ACTIONS(3383), - [anon_sym_abstract] = ACTIONS(3383), - [anon_sym_async] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_file] = ACTIONS(3383), - [anon_sym_fixed] = ACTIONS(3383), - [anon_sym_internal] = ACTIONS(3383), - [anon_sym_new] = ACTIONS(3383), - [anon_sym_override] = ACTIONS(3383), - [anon_sym_partial] = ACTIONS(3383), - [anon_sym_protected] = ACTIONS(3383), - [anon_sym_required] = ACTIONS(3383), - [anon_sym_sealed] = ACTIONS(3383), - [anon_sym_virtual] = ACTIONS(3383), - [anon_sym_volatile] = ACTIONS(3383), - [anon_sym_where] = ACTIONS(3383), - [anon_sym_notnull] = ACTIONS(3383), - [anon_sym_unmanaged] = ACTIONS(3383), - [anon_sym_checked] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_PLUS_PLUS] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3383), - [anon_sym_false] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_STAR] = ACTIONS(3385), - [anon_sym_CARET] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3385), - [anon_sym_this] = ACTIONS(3383), - [anon_sym_scoped] = ACTIONS(3383), - [anon_sym_base] = ACTIONS(3383), - [anon_sym_var] = ACTIONS(3383), - [sym_predefined_type] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_unchecked] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_while] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_lock] = ACTIONS(3383), - [anon_sym_yield] = ACTIONS(3383), - [anon_sym_switch] = ACTIONS(3383), - [anon_sym_case] = ACTIONS(3383), - [anon_sym_default] = ACTIONS(3383), - [anon_sym_throw] = ACTIONS(3383), - [anon_sym_try] = ACTIONS(3383), - [anon_sym_catch] = ACTIONS(3383), - [anon_sym_when] = ACTIONS(3383), - [anon_sym_finally] = ACTIONS(3383), - [anon_sym_await] = ACTIONS(3383), - [anon_sym_foreach] = ACTIONS(3383), - [anon_sym_goto] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_else] = ACTIONS(3383), - [anon_sym_DOT_DOT] = ACTIONS(3385), - [anon_sym_from] = ACTIONS(3383), - [anon_sym_into] = ACTIONS(3383), - [anon_sym_join] = ACTIONS(3383), - [anon_sym_on] = ACTIONS(3383), - [anon_sym_equals] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3383), - [anon_sym_orderby] = ACTIONS(3383), - [anon_sym_ascending] = ACTIONS(3383), - [anon_sym_descending] = ACTIONS(3383), - [anon_sym_group] = ACTIONS(3383), - [anon_sym_by] = ACTIONS(3383), - [anon_sym_select] = ACTIONS(3383), - [anon_sym_stackalloc] = ACTIONS(3383), - [anon_sym_sizeof] = ACTIONS(3383), - [anon_sym_typeof] = ACTIONS(3383), - [anon_sym___makeref] = ACTIONS(3383), - [anon_sym___reftype] = ACTIONS(3383), - [anon_sym___refvalue] = ACTIONS(3383), - [sym_null_literal] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3385), - [sym_integer_literal] = ACTIONS(3383), - [sym_real_literal] = ACTIONS(3385), - [anon_sym_DQUOTE] = ACTIONS(3385), - [sym_verbatim_string_literal] = ACTIONS(3385), - [sym_grit_metavariable] = ACTIONS(3385), - [aux_sym_preproc_if_token1] = ACTIONS(3385), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3385), - [sym_interpolation_verbatim_start] = ACTIONS(3385), - [sym_interpolation_raw_start] = ACTIONS(3385), - [sym_raw_string_start] = ACTIONS(3385), - }, - [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), - [sym_preproc_line] = STATE(2116), - [sym_preproc_pragma] = STATE(2116), - [sym_preproc_nullable] = STATE(2116), - [sym_preproc_error] = STATE(2116), - [sym_preproc_warning] = STATE(2116), - [sym_preproc_define] = STATE(2116), - [sym_preproc_undef] = STATE(2116), - [sym__identifier_token] = ACTIONS(3735), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3735), - [anon_sym_global] = ACTIONS(3735), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3740), - [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(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3735), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3735), - [anon_sym_unmanaged] = ACTIONS(3735), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3735), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3735), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3735), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3735), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3740), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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), @@ -401044,115 +399739,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(3723), + [sym_interpolation_verbatim_start] = ACTIONS(3723), + [sym_interpolation_raw_start] = ACTIONS(3723), + [sym_raw_string_start] = ACTIONS(3723), }, - [2117] = { - [sym_preproc_region] = STATE(2117), - [sym_preproc_endregion] = STATE(2117), - [sym_preproc_line] = STATE(2117), - [sym_preproc_pragma] = STATE(2117), - [sym_preproc_nullable] = STATE(2117), - [sym_preproc_error] = STATE(2117), - [sym_preproc_warning] = STATE(2117), - [sym_preproc_define] = STATE(2117), - [sym_preproc_undef] = STATE(2117), - [sym__identifier_token] = ACTIONS(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), + [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), @@ -401163,488 +399866,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(3396), - [sym_interpolation_verbatim_start] = ACTIONS(3396), - [sym_interpolation_raw_start] = ACTIONS(3396), - [sym_raw_string_start] = ACTIONS(3396), - }, - [2118] = { - [sym_preproc_region] = STATE(2118), - [sym_preproc_endregion] = STATE(2118), - [sym_preproc_line] = STATE(2118), - [sym_preproc_pragma] = STATE(2118), - [sym_preproc_nullable] = STATE(2118), - [sym_preproc_error] = STATE(2118), - [sym_preproc_warning] = STATE(2118), - [sym_preproc_define] = STATE(2118), - [sym_preproc_undef] = STATE(2118), - [sym__identifier_token] = ACTIONS(3466), - [anon_sym_extern] = ACTIONS(3466), - [anon_sym_alias] = ACTIONS(3466), - [anon_sym_SEMI] = ACTIONS(3468), - [anon_sym_global] = ACTIONS(3466), - [anon_sym_using] = ACTIONS(3466), - [anon_sym_unsafe] = ACTIONS(3466), - [anon_sym_static] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(3468), - [anon_sym_LPAREN] = ACTIONS(3468), - [anon_sym_return] = ACTIONS(3466), - [anon_sym_ref] = ACTIONS(3466), - [anon_sym_LBRACE] = ACTIONS(3468), - [anon_sym_RBRACE] = ACTIONS(3468), - [anon_sym_delegate] = ACTIONS(3466), - [anon_sym_public] = ACTIONS(3466), - [anon_sym_private] = ACTIONS(3466), - [anon_sym_readonly] = ACTIONS(3466), - [anon_sym_abstract] = ACTIONS(3466), - [anon_sym_async] = ACTIONS(3466), - [anon_sym_const] = ACTIONS(3466), - [anon_sym_file] = ACTIONS(3466), - [anon_sym_fixed] = ACTIONS(3466), - [anon_sym_internal] = ACTIONS(3466), - [anon_sym_new] = ACTIONS(3466), - [anon_sym_override] = ACTIONS(3466), - [anon_sym_partial] = ACTIONS(3466), - [anon_sym_protected] = ACTIONS(3466), - [anon_sym_required] = ACTIONS(3466), - [anon_sym_sealed] = ACTIONS(3466), - [anon_sym_virtual] = ACTIONS(3466), - [anon_sym_volatile] = ACTIONS(3466), - [anon_sym_where] = ACTIONS(3466), - [anon_sym_notnull] = ACTIONS(3466), - [anon_sym_unmanaged] = ACTIONS(3466), - [anon_sym_checked] = ACTIONS(3466), - [anon_sym_BANG] = ACTIONS(3468), - [anon_sym_TILDE] = ACTIONS(3468), - [anon_sym_PLUS_PLUS] = ACTIONS(3468), - [anon_sym_DASH_DASH] = ACTIONS(3468), - [anon_sym_true] = ACTIONS(3466), - [anon_sym_false] = ACTIONS(3466), - [anon_sym_PLUS] = ACTIONS(3466), - [anon_sym_DASH] = ACTIONS(3466), - [anon_sym_STAR] = ACTIONS(3468), - [anon_sym_CARET] = ACTIONS(3468), - [anon_sym_AMP] = ACTIONS(3468), - [anon_sym_this] = ACTIONS(3466), - [anon_sym_scoped] = ACTIONS(3466), - [anon_sym_base] = ACTIONS(3466), - [anon_sym_var] = ACTIONS(3466), - [sym_predefined_type] = ACTIONS(3466), - [anon_sym_break] = ACTIONS(3466), - [anon_sym_unchecked] = ACTIONS(3466), - [anon_sym_continue] = ACTIONS(3466), - [anon_sym_do] = ACTIONS(3466), - [anon_sym_while] = ACTIONS(3466), - [anon_sym_for] = ACTIONS(3466), - [anon_sym_lock] = ACTIONS(3466), - [anon_sym_yield] = ACTIONS(3466), - [anon_sym_switch] = ACTIONS(3466), - [anon_sym_case] = ACTIONS(3466), - [anon_sym_default] = ACTIONS(3466), - [anon_sym_throw] = ACTIONS(3466), - [anon_sym_try] = ACTIONS(3466), - [anon_sym_when] = ACTIONS(3466), - [anon_sym_await] = ACTIONS(3466), - [anon_sym_foreach] = ACTIONS(3466), - [anon_sym_goto] = ACTIONS(3466), - [anon_sym_if] = ACTIONS(3466), - [anon_sym_else] = ACTIONS(3466), - [anon_sym_DOT_DOT] = ACTIONS(3468), - [anon_sym_from] = ACTIONS(3466), - [anon_sym_into] = ACTIONS(3466), - [anon_sym_join] = ACTIONS(3466), - [anon_sym_on] = ACTIONS(3466), - [anon_sym_equals] = ACTIONS(3466), - [anon_sym_let] = ACTIONS(3466), - [anon_sym_orderby] = ACTIONS(3466), - [anon_sym_ascending] = ACTIONS(3466), - [anon_sym_descending] = ACTIONS(3466), - [anon_sym_group] = ACTIONS(3466), - [anon_sym_by] = ACTIONS(3466), - [anon_sym_select] = ACTIONS(3466), - [anon_sym_stackalloc] = ACTIONS(3466), - [anon_sym_sizeof] = ACTIONS(3466), - [anon_sym_typeof] = ACTIONS(3466), - [anon_sym___makeref] = ACTIONS(3466), - [anon_sym___reftype] = ACTIONS(3466), - [anon_sym___refvalue] = ACTIONS(3466), - [sym_null_literal] = ACTIONS(3466), - [anon_sym_SQUOTE] = ACTIONS(3468), - [sym_integer_literal] = ACTIONS(3466), - [sym_real_literal] = ACTIONS(3468), - [anon_sym_DQUOTE] = ACTIONS(3468), - [sym_verbatim_string_literal] = ACTIONS(3468), - [sym_grit_metavariable] = ACTIONS(3468), - [aux_sym_preproc_if_token1] = ACTIONS(3468), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3468), - [sym_interpolation_verbatim_start] = ACTIONS(3468), - [sym_interpolation_raw_start] = ACTIONS(3468), - [sym_raw_string_start] = ACTIONS(3468), - }, - [2119] = { - [sym_preproc_region] = STATE(2119), - [sym_preproc_endregion] = STATE(2119), - [sym_preproc_line] = STATE(2119), - [sym_preproc_pragma] = STATE(2119), - [sym_preproc_nullable] = STATE(2119), - [sym_preproc_error] = STATE(2119), - [sym_preproc_warning] = STATE(2119), - [sym_preproc_define] = STATE(2119), - [sym_preproc_undef] = STATE(2119), - [sym__identifier_token] = ACTIONS(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), - }, - [2120] = { - [sym_preproc_region] = STATE(2120), - [sym_preproc_endregion] = STATE(2120), - [sym_preproc_line] = STATE(2120), - [sym_preproc_pragma] = STATE(2120), - [sym_preproc_nullable] = STATE(2120), - [sym_preproc_error] = STATE(2120), - [sym_preproc_warning] = STATE(2120), - [sym_preproc_define] = STATE(2120), - [sym_preproc_undef] = STATE(2120), - [sym__identifier_token] = ACTIONS(3478), - [anon_sym_extern] = ACTIONS(3478), - [anon_sym_alias] = ACTIONS(3478), - [anon_sym_SEMI] = ACTIONS(3480), - [anon_sym_global] = ACTIONS(3478), - [anon_sym_using] = ACTIONS(3478), - [anon_sym_unsafe] = ACTIONS(3478), - [anon_sym_static] = ACTIONS(3478), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3478), - [anon_sym_ref] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_RBRACE] = ACTIONS(3480), - [anon_sym_delegate] = ACTIONS(3478), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_readonly] = ACTIONS(3478), - [anon_sym_abstract] = ACTIONS(3478), - [anon_sym_async] = ACTIONS(3478), - [anon_sym_const] = ACTIONS(3478), - [anon_sym_file] = ACTIONS(3478), - [anon_sym_fixed] = ACTIONS(3478), - [anon_sym_internal] = ACTIONS(3478), - [anon_sym_new] = ACTIONS(3478), - [anon_sym_override] = ACTIONS(3478), - [anon_sym_partial] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_required] = ACTIONS(3478), - [anon_sym_sealed] = ACTIONS(3478), - [anon_sym_virtual] = ACTIONS(3478), - [anon_sym_volatile] = ACTIONS(3478), - [anon_sym_where] = ACTIONS(3478), - [anon_sym_notnull] = ACTIONS(3478), - [anon_sym_unmanaged] = ACTIONS(3478), - [anon_sym_checked] = ACTIONS(3478), - [anon_sym_BANG] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3480), - [anon_sym_PLUS_PLUS] = ACTIONS(3480), - [anon_sym_DASH_DASH] = ACTIONS(3480), - [anon_sym_true] = ACTIONS(3478), - [anon_sym_false] = ACTIONS(3478), - [anon_sym_PLUS] = ACTIONS(3478), - [anon_sym_DASH] = ACTIONS(3478), - [anon_sym_STAR] = ACTIONS(3480), - [anon_sym_CARET] = ACTIONS(3480), - [anon_sym_AMP] = ACTIONS(3480), - [anon_sym_this] = ACTIONS(3478), - [anon_sym_scoped] = ACTIONS(3478), - [anon_sym_base] = ACTIONS(3478), - [anon_sym_var] = ACTIONS(3478), - [sym_predefined_type] = ACTIONS(3478), - [anon_sym_break] = ACTIONS(3478), - [anon_sym_unchecked] = ACTIONS(3478), - [anon_sym_continue] = ACTIONS(3478), - [anon_sym_do] = ACTIONS(3478), - [anon_sym_while] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3478), - [anon_sym_lock] = ACTIONS(3478), - [anon_sym_yield] = ACTIONS(3478), - [anon_sym_switch] = ACTIONS(3478), - [anon_sym_case] = ACTIONS(3478), - [anon_sym_default] = ACTIONS(3478), - [anon_sym_throw] = ACTIONS(3478), - [anon_sym_try] = ACTIONS(3478), - [anon_sym_when] = ACTIONS(3478), - [anon_sym_await] = ACTIONS(3478), - [anon_sym_foreach] = ACTIONS(3478), - [anon_sym_goto] = ACTIONS(3478), - [anon_sym_if] = ACTIONS(3478), - [anon_sym_else] = ACTIONS(3478), - [anon_sym_DOT_DOT] = ACTIONS(3480), - [anon_sym_from] = ACTIONS(3478), - [anon_sym_into] = ACTIONS(3478), - [anon_sym_join] = ACTIONS(3478), - [anon_sym_on] = ACTIONS(3478), - [anon_sym_equals] = ACTIONS(3478), - [anon_sym_let] = ACTIONS(3478), - [anon_sym_orderby] = ACTIONS(3478), - [anon_sym_ascending] = ACTIONS(3478), - [anon_sym_descending] = ACTIONS(3478), - [anon_sym_group] = ACTIONS(3478), - [anon_sym_by] = ACTIONS(3478), - [anon_sym_select] = ACTIONS(3478), - [anon_sym_stackalloc] = ACTIONS(3478), - [anon_sym_sizeof] = ACTIONS(3478), - [anon_sym_typeof] = ACTIONS(3478), - [anon_sym___makeref] = ACTIONS(3478), - [anon_sym___reftype] = ACTIONS(3478), - [anon_sym___refvalue] = ACTIONS(3478), - [sym_null_literal] = ACTIONS(3478), - [anon_sym_SQUOTE] = ACTIONS(3480), - [sym_integer_literal] = ACTIONS(3478), - [sym_real_literal] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [sym_verbatim_string_literal] = ACTIONS(3480), - [sym_grit_metavariable] = ACTIONS(3480), - [aux_sym_preproc_if_token1] = ACTIONS(3480), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3480), - [sym_interpolation_verbatim_start] = ACTIONS(3480), - [sym_interpolation_raw_start] = ACTIONS(3480), - [sym_raw_string_start] = ACTIONS(3480), + [sym_interpolation_regular_start] = ACTIONS(3610), + [sym_interpolation_verbatim_start] = ACTIONS(3610), + [sym_interpolation_raw_start] = ACTIONS(3610), + [sym_raw_string_start] = ACTIONS(3610), }, - [2121] = { - [sym_preproc_region] = STATE(2121), - [sym_preproc_endregion] = STATE(2121), - [sym_preproc_line] = STATE(2121), - [sym_preproc_pragma] = STATE(2121), - [sym_preproc_nullable] = STATE(2121), - [sym_preproc_error] = STATE(2121), - [sym_preproc_warning] = STATE(2121), - [sym_preproc_define] = STATE(2121), - [sym_preproc_undef] = STATE(2121), - [sym__identifier_token] = ACTIONS(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), + [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), @@ -401655,365 +399993,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(3400), - [sym_interpolation_verbatim_start] = ACTIONS(3400), - [sym_interpolation_raw_start] = ACTIONS(3400), - [sym_raw_string_start] = ACTIONS(3400), - }, - [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(3474), - [anon_sym_extern] = ACTIONS(3474), - [anon_sym_alias] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3476), - [anon_sym_global] = ACTIONS(3474), - [anon_sym_using] = ACTIONS(3474), - [anon_sym_unsafe] = ACTIONS(3474), - [anon_sym_static] = ACTIONS(3474), - [anon_sym_LBRACK] = ACTIONS(3476), - [anon_sym_LPAREN] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_ref] = ACTIONS(3474), - [anon_sym_LBRACE] = ACTIONS(3476), - [anon_sym_RBRACE] = ACTIONS(3476), - [anon_sym_delegate] = ACTIONS(3474), - [anon_sym_public] = ACTIONS(3474), - [anon_sym_private] = ACTIONS(3474), - [anon_sym_readonly] = ACTIONS(3474), - [anon_sym_abstract] = ACTIONS(3474), - [anon_sym_async] = ACTIONS(3474), - [anon_sym_const] = ACTIONS(3474), - [anon_sym_file] = ACTIONS(3474), - [anon_sym_fixed] = ACTIONS(3474), - [anon_sym_internal] = ACTIONS(3474), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_override] = ACTIONS(3474), - [anon_sym_partial] = ACTIONS(3474), - [anon_sym_protected] = ACTIONS(3474), - [anon_sym_required] = ACTIONS(3474), - [anon_sym_sealed] = ACTIONS(3474), - [anon_sym_virtual] = ACTIONS(3474), - [anon_sym_volatile] = ACTIONS(3474), - [anon_sym_where] = ACTIONS(3474), - [anon_sym_notnull] = ACTIONS(3474), - [anon_sym_unmanaged] = ACTIONS(3474), - [anon_sym_checked] = ACTIONS(3474), - [anon_sym_BANG] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3476), - [anon_sym_PLUS_PLUS] = ACTIONS(3476), - [anon_sym_DASH_DASH] = ACTIONS(3476), - [anon_sym_true] = ACTIONS(3474), - [anon_sym_false] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_STAR] = ACTIONS(3476), - [anon_sym_CARET] = ACTIONS(3476), - [anon_sym_AMP] = ACTIONS(3476), - [anon_sym_this] = ACTIONS(3474), - [anon_sym_scoped] = ACTIONS(3474), - [anon_sym_base] = ACTIONS(3474), - [anon_sym_var] = ACTIONS(3474), - [sym_predefined_type] = ACTIONS(3474), - [anon_sym_break] = ACTIONS(3474), - [anon_sym_unchecked] = ACTIONS(3474), - [anon_sym_continue] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_lock] = ACTIONS(3474), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_switch] = ACTIONS(3474), - [anon_sym_case] = ACTIONS(3474), - [anon_sym_default] = ACTIONS(3474), - [anon_sym_throw] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_when] = ACTIONS(3474), - [anon_sym_await] = ACTIONS(3474), - [anon_sym_foreach] = ACTIONS(3474), - [anon_sym_goto] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_else] = ACTIONS(3474), - [anon_sym_DOT_DOT] = ACTIONS(3476), - [anon_sym_from] = ACTIONS(3474), - [anon_sym_into] = ACTIONS(3474), - [anon_sym_join] = ACTIONS(3474), - [anon_sym_on] = ACTIONS(3474), - [anon_sym_equals] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_orderby] = ACTIONS(3474), - [anon_sym_ascending] = ACTIONS(3474), - [anon_sym_descending] = ACTIONS(3474), - [anon_sym_group] = ACTIONS(3474), - [anon_sym_by] = ACTIONS(3474), - [anon_sym_select] = ACTIONS(3474), - [anon_sym_stackalloc] = ACTIONS(3474), - [anon_sym_sizeof] = ACTIONS(3474), - [anon_sym_typeof] = ACTIONS(3474), - [anon_sym___makeref] = ACTIONS(3474), - [anon_sym___reftype] = ACTIONS(3474), - [anon_sym___refvalue] = ACTIONS(3474), - [sym_null_literal] = ACTIONS(3474), - [anon_sym_SQUOTE] = ACTIONS(3476), - [sym_integer_literal] = ACTIONS(3474), - [sym_real_literal] = ACTIONS(3476), - [anon_sym_DQUOTE] = ACTIONS(3476), - [sym_verbatim_string_literal] = ACTIONS(3476), - [sym_grit_metavariable] = ACTIONS(3476), - [aux_sym_preproc_if_token1] = ACTIONS(3476), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3476), - [sym_interpolation_verbatim_start] = ACTIONS(3476), - [sym_interpolation_raw_start] = ACTIONS(3476), - [sym_raw_string_start] = ACTIONS(3476), - }, - [2123] = { - [sym_preproc_region] = STATE(2123), - [sym_preproc_endregion] = STATE(2123), - [sym_preproc_line] = STATE(2123), - [sym_preproc_pragma] = STATE(2123), - [sym_preproc_nullable] = STATE(2123), - [sym_preproc_error] = STATE(2123), - [sym_preproc_warning] = STATE(2123), - [sym_preproc_define] = STATE(2123), - [sym_preproc_undef] = STATE(2123), - [sym__identifier_token] = ACTIONS(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(3418), - [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), + [sym_interpolation_regular_start] = ACTIONS(3727), + [sym_interpolation_verbatim_start] = ACTIONS(3727), + [sym_interpolation_raw_start] = ACTIONS(3727), + [sym_raw_string_start] = ACTIONS(3727), }, - [2124] = { - [sym_preproc_region] = STATE(2124), - [sym_preproc_endregion] = STATE(2124), - [sym_preproc_line] = STATE(2124), - [sym_preproc_pragma] = STATE(2124), - [sym_preproc_nullable] = STATE(2124), - [sym_preproc_error] = STATE(2124), - [sym_preproc_warning] = STATE(2124), - [sym_preproc_define] = STATE(2124), - [sym_preproc_undef] = STATE(2124), - [sym__identifier_token] = ACTIONS(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), + [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), @@ -402024,1349 +400120,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(3404), - [sym_interpolation_verbatim_start] = ACTIONS(3404), - [sym_interpolation_raw_start] = ACTIONS(3404), - [sym_raw_string_start] = ACTIONS(3404), - }, - [2125] = { - [sym_preproc_region] = STATE(2125), - [sym_preproc_endregion] = STATE(2125), - [sym_preproc_line] = STATE(2125), - [sym_preproc_pragma] = STATE(2125), - [sym_preproc_nullable] = STATE(2125), - [sym_preproc_error] = STATE(2125), - [sym_preproc_warning] = STATE(2125), - [sym_preproc_define] = STATE(2125), - [sym_preproc_undef] = STATE(2125), - [sym__identifier_token] = ACTIONS(3498), - [anon_sym_extern] = ACTIONS(3498), - [anon_sym_alias] = ACTIONS(3498), - [anon_sym_SEMI] = ACTIONS(3500), - [anon_sym_global] = ACTIONS(3498), - [anon_sym_using] = ACTIONS(3498), - [anon_sym_unsafe] = ACTIONS(3498), - [anon_sym_static] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_LPAREN] = ACTIONS(3500), - [anon_sym_return] = ACTIONS(3498), - [anon_sym_ref] = ACTIONS(3498), - [anon_sym_LBRACE] = ACTIONS(3500), - [anon_sym_RBRACE] = ACTIONS(3500), - [anon_sym_delegate] = ACTIONS(3498), - [anon_sym_public] = ACTIONS(3498), - [anon_sym_private] = ACTIONS(3498), - [anon_sym_readonly] = ACTIONS(3498), - [anon_sym_abstract] = ACTIONS(3498), - [anon_sym_async] = ACTIONS(3498), - [anon_sym_const] = ACTIONS(3498), - [anon_sym_file] = ACTIONS(3498), - [anon_sym_fixed] = ACTIONS(3498), - [anon_sym_internal] = ACTIONS(3498), - [anon_sym_new] = ACTIONS(3498), - [anon_sym_override] = ACTIONS(3498), - [anon_sym_partial] = ACTIONS(3498), - [anon_sym_protected] = ACTIONS(3498), - [anon_sym_required] = ACTIONS(3498), - [anon_sym_sealed] = ACTIONS(3498), - [anon_sym_virtual] = ACTIONS(3498), - [anon_sym_volatile] = ACTIONS(3498), - [anon_sym_where] = ACTIONS(3498), - [anon_sym_notnull] = ACTIONS(3498), - [anon_sym_unmanaged] = ACTIONS(3498), - [anon_sym_checked] = ACTIONS(3498), - [anon_sym_BANG] = ACTIONS(3500), - [anon_sym_TILDE] = ACTIONS(3500), - [anon_sym_PLUS_PLUS] = ACTIONS(3500), - [anon_sym_DASH_DASH] = ACTIONS(3500), - [anon_sym_true] = ACTIONS(3498), - [anon_sym_false] = ACTIONS(3498), - [anon_sym_PLUS] = ACTIONS(3498), - [anon_sym_DASH] = ACTIONS(3498), - [anon_sym_STAR] = ACTIONS(3500), - [anon_sym_CARET] = ACTIONS(3500), - [anon_sym_AMP] = ACTIONS(3500), - [anon_sym_this] = ACTIONS(3498), - [anon_sym_scoped] = ACTIONS(3498), - [anon_sym_base] = ACTIONS(3498), - [anon_sym_var] = ACTIONS(3498), - [sym_predefined_type] = ACTIONS(3498), - [anon_sym_break] = ACTIONS(3498), - [anon_sym_unchecked] = ACTIONS(3498), - [anon_sym_continue] = ACTIONS(3498), - [anon_sym_do] = ACTIONS(3498), - [anon_sym_while] = ACTIONS(3498), - [anon_sym_for] = ACTIONS(3498), - [anon_sym_lock] = ACTIONS(3498), - [anon_sym_yield] = ACTIONS(3498), - [anon_sym_switch] = ACTIONS(3498), - [anon_sym_case] = ACTIONS(3498), - [anon_sym_default] = ACTIONS(3498), - [anon_sym_throw] = ACTIONS(3498), - [anon_sym_try] = ACTIONS(3498), - [anon_sym_when] = ACTIONS(3498), - [anon_sym_await] = ACTIONS(3498), - [anon_sym_foreach] = ACTIONS(3498), - [anon_sym_goto] = ACTIONS(3498), - [anon_sym_if] = ACTIONS(3498), - [anon_sym_else] = ACTIONS(3498), - [anon_sym_DOT_DOT] = ACTIONS(3500), - [anon_sym_from] = ACTIONS(3498), - [anon_sym_into] = ACTIONS(3498), - [anon_sym_join] = ACTIONS(3498), - [anon_sym_on] = ACTIONS(3498), - [anon_sym_equals] = ACTIONS(3498), - [anon_sym_let] = ACTIONS(3498), - [anon_sym_orderby] = ACTIONS(3498), - [anon_sym_ascending] = ACTIONS(3498), - [anon_sym_descending] = ACTIONS(3498), - [anon_sym_group] = ACTIONS(3498), - [anon_sym_by] = ACTIONS(3498), - [anon_sym_select] = ACTIONS(3498), - [anon_sym_stackalloc] = ACTIONS(3498), - [anon_sym_sizeof] = ACTIONS(3498), - [anon_sym_typeof] = ACTIONS(3498), - [anon_sym___makeref] = ACTIONS(3498), - [anon_sym___reftype] = ACTIONS(3498), - [anon_sym___refvalue] = ACTIONS(3498), - [sym_null_literal] = ACTIONS(3498), - [anon_sym_SQUOTE] = ACTIONS(3500), - [sym_integer_literal] = ACTIONS(3498), - [sym_real_literal] = ACTIONS(3500), - [anon_sym_DQUOTE] = ACTIONS(3500), - [sym_verbatim_string_literal] = ACTIONS(3500), - [sym_grit_metavariable] = ACTIONS(3500), - [aux_sym_preproc_if_token1] = ACTIONS(3500), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3500), - [sym_interpolation_verbatim_start] = ACTIONS(3500), - [sym_interpolation_raw_start] = ACTIONS(3500), - [sym_raw_string_start] = ACTIONS(3500), - }, - [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(3446), - [anon_sym_extern] = ACTIONS(3446), - [anon_sym_alias] = ACTIONS(3446), - [anon_sym_SEMI] = ACTIONS(3448), - [anon_sym_global] = ACTIONS(3446), - [anon_sym_using] = ACTIONS(3446), - [anon_sym_unsafe] = ACTIONS(3446), - [anon_sym_static] = ACTIONS(3446), - [anon_sym_LBRACK] = ACTIONS(3448), - [anon_sym_LPAREN] = ACTIONS(3448), - [anon_sym_return] = ACTIONS(3446), - [anon_sym_ref] = ACTIONS(3446), - [anon_sym_LBRACE] = ACTIONS(3448), - [anon_sym_RBRACE] = ACTIONS(3448), - [anon_sym_delegate] = ACTIONS(3446), - [anon_sym_public] = ACTIONS(3446), - [anon_sym_private] = ACTIONS(3446), - [anon_sym_readonly] = ACTIONS(3446), - [anon_sym_abstract] = ACTIONS(3446), - [anon_sym_async] = ACTIONS(3446), - [anon_sym_const] = ACTIONS(3446), - [anon_sym_file] = ACTIONS(3446), - [anon_sym_fixed] = ACTIONS(3446), - [anon_sym_internal] = ACTIONS(3446), - [anon_sym_new] = ACTIONS(3446), - [anon_sym_override] = ACTIONS(3446), - [anon_sym_partial] = ACTIONS(3446), - [anon_sym_protected] = ACTIONS(3446), - [anon_sym_required] = ACTIONS(3446), - [anon_sym_sealed] = ACTIONS(3446), - [anon_sym_virtual] = ACTIONS(3446), - [anon_sym_volatile] = ACTIONS(3446), - [anon_sym_where] = ACTIONS(3446), - [anon_sym_notnull] = ACTIONS(3446), - [anon_sym_unmanaged] = ACTIONS(3446), - [anon_sym_checked] = ACTIONS(3446), - [anon_sym_BANG] = ACTIONS(3448), - [anon_sym_TILDE] = ACTIONS(3448), - [anon_sym_PLUS_PLUS] = ACTIONS(3448), - [anon_sym_DASH_DASH] = ACTIONS(3448), - [anon_sym_true] = ACTIONS(3446), - [anon_sym_false] = ACTIONS(3446), - [anon_sym_PLUS] = ACTIONS(3446), - [anon_sym_DASH] = ACTIONS(3446), - [anon_sym_STAR] = ACTIONS(3448), - [anon_sym_CARET] = ACTIONS(3448), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_this] = ACTIONS(3446), - [anon_sym_scoped] = ACTIONS(3446), - [anon_sym_base] = ACTIONS(3446), - [anon_sym_var] = ACTIONS(3446), - [sym_predefined_type] = ACTIONS(3446), - [anon_sym_break] = ACTIONS(3446), - [anon_sym_unchecked] = ACTIONS(3446), - [anon_sym_continue] = ACTIONS(3446), - [anon_sym_do] = ACTIONS(3446), - [anon_sym_while] = ACTIONS(3446), - [anon_sym_for] = ACTIONS(3446), - [anon_sym_lock] = ACTIONS(3446), - [anon_sym_yield] = ACTIONS(3446), - [anon_sym_switch] = ACTIONS(3446), - [anon_sym_case] = ACTIONS(3446), - [anon_sym_default] = ACTIONS(3446), - [anon_sym_throw] = ACTIONS(3446), - [anon_sym_try] = ACTIONS(3446), - [anon_sym_when] = ACTIONS(3446), - [anon_sym_await] = ACTIONS(3446), - [anon_sym_foreach] = ACTIONS(3446), - [anon_sym_goto] = ACTIONS(3446), - [anon_sym_if] = ACTIONS(3446), - [anon_sym_else] = ACTIONS(3446), - [anon_sym_DOT_DOT] = ACTIONS(3448), - [anon_sym_from] = ACTIONS(3446), - [anon_sym_into] = ACTIONS(3446), - [anon_sym_join] = ACTIONS(3446), - [anon_sym_on] = ACTIONS(3446), - [anon_sym_equals] = ACTIONS(3446), - [anon_sym_let] = ACTIONS(3446), - [anon_sym_orderby] = ACTIONS(3446), - [anon_sym_ascending] = ACTIONS(3446), - [anon_sym_descending] = ACTIONS(3446), - [anon_sym_group] = ACTIONS(3446), - [anon_sym_by] = ACTIONS(3446), - [anon_sym_select] = ACTIONS(3446), - [anon_sym_stackalloc] = ACTIONS(3446), - [anon_sym_sizeof] = ACTIONS(3446), - [anon_sym_typeof] = ACTIONS(3446), - [anon_sym___makeref] = ACTIONS(3446), - [anon_sym___reftype] = ACTIONS(3446), - [anon_sym___refvalue] = ACTIONS(3446), - [sym_null_literal] = ACTIONS(3446), - [anon_sym_SQUOTE] = ACTIONS(3448), - [sym_integer_literal] = ACTIONS(3446), - [sym_real_literal] = ACTIONS(3448), - [anon_sym_DQUOTE] = ACTIONS(3448), - [sym_verbatim_string_literal] = ACTIONS(3448), - [sym_grit_metavariable] = ACTIONS(3448), - [aux_sym_preproc_if_token1] = ACTIONS(3448), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3448), - [sym_interpolation_verbatim_start] = ACTIONS(3448), - [sym_interpolation_raw_start] = ACTIONS(3448), - [sym_raw_string_start] = ACTIONS(3448), - }, - [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(3422), - [anon_sym_extern] = ACTIONS(3422), - [anon_sym_alias] = ACTIONS(3422), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_global] = ACTIONS(3422), - [anon_sym_using] = ACTIONS(3422), - [anon_sym_unsafe] = ACTIONS(3422), - [anon_sym_static] = ACTIONS(3422), - [anon_sym_LBRACK] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(3424), - [anon_sym_return] = ACTIONS(3422), - [anon_sym_ref] = ACTIONS(3422), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_RBRACE] = ACTIONS(3424), - [anon_sym_delegate] = ACTIONS(3422), - [anon_sym_public] = ACTIONS(3422), - [anon_sym_private] = ACTIONS(3422), - [anon_sym_readonly] = ACTIONS(3422), - [anon_sym_abstract] = ACTIONS(3422), - [anon_sym_async] = ACTIONS(3422), - [anon_sym_const] = ACTIONS(3422), - [anon_sym_file] = ACTIONS(3422), - [anon_sym_fixed] = ACTIONS(3422), - [anon_sym_internal] = ACTIONS(3422), - [anon_sym_new] = ACTIONS(3422), - [anon_sym_override] = ACTIONS(3422), - [anon_sym_partial] = ACTIONS(3422), - [anon_sym_protected] = ACTIONS(3422), - [anon_sym_required] = ACTIONS(3422), - [anon_sym_sealed] = ACTIONS(3422), - [anon_sym_virtual] = ACTIONS(3422), - [anon_sym_volatile] = ACTIONS(3422), - [anon_sym_where] = ACTIONS(3422), - [anon_sym_notnull] = ACTIONS(3422), - [anon_sym_unmanaged] = ACTIONS(3422), - [anon_sym_checked] = ACTIONS(3422), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3424), - [anon_sym_DASH_DASH] = ACTIONS(3424), - [anon_sym_true] = ACTIONS(3422), - [anon_sym_false] = ACTIONS(3422), - [anon_sym_PLUS] = ACTIONS(3422), - [anon_sym_DASH] = ACTIONS(3422), - [anon_sym_STAR] = ACTIONS(3424), - [anon_sym_CARET] = ACTIONS(3424), - [anon_sym_AMP] = ACTIONS(3424), - [anon_sym_this] = ACTIONS(3422), - [anon_sym_scoped] = ACTIONS(3422), - [anon_sym_base] = ACTIONS(3422), - [anon_sym_var] = ACTIONS(3422), - [sym_predefined_type] = ACTIONS(3422), - [anon_sym_break] = ACTIONS(3422), - [anon_sym_unchecked] = ACTIONS(3422), - [anon_sym_continue] = ACTIONS(3422), - [anon_sym_do] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_for] = ACTIONS(3422), - [anon_sym_lock] = ACTIONS(3422), - [anon_sym_yield] = ACTIONS(3422), - [anon_sym_switch] = ACTIONS(3422), - [anon_sym_case] = ACTIONS(3422), - [anon_sym_default] = ACTIONS(3422), - [anon_sym_throw] = ACTIONS(3422), - [anon_sym_try] = ACTIONS(3422), - [anon_sym_when] = ACTIONS(3422), - [anon_sym_await] = ACTIONS(3422), - [anon_sym_foreach] = ACTIONS(3422), - [anon_sym_goto] = ACTIONS(3422), - [anon_sym_if] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3422), - [anon_sym_DOT_DOT] = ACTIONS(3424), - [anon_sym_from] = ACTIONS(3422), - [anon_sym_into] = ACTIONS(3422), - [anon_sym_join] = ACTIONS(3422), - [anon_sym_on] = ACTIONS(3422), - [anon_sym_equals] = ACTIONS(3422), - [anon_sym_let] = ACTIONS(3422), - [anon_sym_orderby] = ACTIONS(3422), - [anon_sym_ascending] = ACTIONS(3422), - [anon_sym_descending] = ACTIONS(3422), - [anon_sym_group] = ACTIONS(3422), - [anon_sym_by] = ACTIONS(3422), - [anon_sym_select] = ACTIONS(3422), - [anon_sym_stackalloc] = ACTIONS(3422), - [anon_sym_sizeof] = ACTIONS(3422), - [anon_sym_typeof] = ACTIONS(3422), - [anon_sym___makeref] = ACTIONS(3422), - [anon_sym___reftype] = ACTIONS(3422), - [anon_sym___refvalue] = ACTIONS(3422), - [sym_null_literal] = ACTIONS(3422), - [anon_sym_SQUOTE] = ACTIONS(3424), - [sym_integer_literal] = ACTIONS(3422), - [sym_real_literal] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [sym_verbatim_string_literal] = ACTIONS(3424), - [sym_grit_metavariable] = ACTIONS(3424), - [aux_sym_preproc_if_token1] = ACTIONS(3424), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3424), - [sym_interpolation_verbatim_start] = ACTIONS(3424), - [sym_interpolation_raw_start] = ACTIONS(3424), - [sym_raw_string_start] = ACTIONS(3424), - }, - [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(3426), - [anon_sym_extern] = ACTIONS(3426), - [anon_sym_alias] = ACTIONS(3426), - [anon_sym_SEMI] = ACTIONS(3428), - [anon_sym_global] = ACTIONS(3426), - [anon_sym_using] = ACTIONS(3426), - [anon_sym_unsafe] = ACTIONS(3426), - [anon_sym_static] = ACTIONS(3426), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3426), - [anon_sym_ref] = ACTIONS(3426), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_RBRACE] = ACTIONS(3428), - [anon_sym_delegate] = ACTIONS(3426), - [anon_sym_public] = ACTIONS(3426), - [anon_sym_private] = ACTIONS(3426), - [anon_sym_readonly] = ACTIONS(3426), - [anon_sym_abstract] = ACTIONS(3426), - [anon_sym_async] = ACTIONS(3426), - [anon_sym_const] = ACTIONS(3426), - [anon_sym_file] = ACTIONS(3426), - [anon_sym_fixed] = ACTIONS(3426), - [anon_sym_internal] = ACTIONS(3426), - [anon_sym_new] = ACTIONS(3426), - [anon_sym_override] = ACTIONS(3426), - [anon_sym_partial] = ACTIONS(3426), - [anon_sym_protected] = ACTIONS(3426), - [anon_sym_required] = ACTIONS(3426), - [anon_sym_sealed] = ACTIONS(3426), - [anon_sym_virtual] = ACTIONS(3426), - [anon_sym_volatile] = ACTIONS(3426), - [anon_sym_where] = ACTIONS(3426), - [anon_sym_notnull] = ACTIONS(3426), - [anon_sym_unmanaged] = ACTIONS(3426), - [anon_sym_checked] = ACTIONS(3426), - [anon_sym_BANG] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3428), - [anon_sym_PLUS_PLUS] = ACTIONS(3428), - [anon_sym_DASH_DASH] = ACTIONS(3428), - [anon_sym_true] = ACTIONS(3426), - [anon_sym_false] = ACTIONS(3426), - [anon_sym_PLUS] = ACTIONS(3426), - [anon_sym_DASH] = ACTIONS(3426), - [anon_sym_STAR] = ACTIONS(3428), - [anon_sym_CARET] = ACTIONS(3428), - [anon_sym_AMP] = ACTIONS(3428), - [anon_sym_this] = ACTIONS(3426), - [anon_sym_scoped] = ACTIONS(3426), - [anon_sym_base] = ACTIONS(3426), - [anon_sym_var] = ACTIONS(3426), - [sym_predefined_type] = ACTIONS(3426), - [anon_sym_break] = ACTIONS(3426), - [anon_sym_unchecked] = ACTIONS(3426), - [anon_sym_continue] = ACTIONS(3426), - [anon_sym_do] = ACTIONS(3426), - [anon_sym_while] = ACTIONS(3426), - [anon_sym_for] = ACTIONS(3426), - [anon_sym_lock] = ACTIONS(3426), - [anon_sym_yield] = ACTIONS(3426), - [anon_sym_switch] = ACTIONS(3426), - [anon_sym_case] = ACTIONS(3426), - [anon_sym_default] = ACTIONS(3426), - [anon_sym_throw] = ACTIONS(3426), - [anon_sym_try] = ACTIONS(3426), - [anon_sym_when] = ACTIONS(3426), - [anon_sym_await] = ACTIONS(3426), - [anon_sym_foreach] = ACTIONS(3426), - [anon_sym_goto] = ACTIONS(3426), - [anon_sym_if] = ACTIONS(3426), - [anon_sym_else] = ACTIONS(3426), - [anon_sym_DOT_DOT] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3426), - [anon_sym_into] = ACTIONS(3426), - [anon_sym_join] = ACTIONS(3426), - [anon_sym_on] = ACTIONS(3426), - [anon_sym_equals] = ACTIONS(3426), - [anon_sym_let] = ACTIONS(3426), - [anon_sym_orderby] = ACTIONS(3426), - [anon_sym_ascending] = ACTIONS(3426), - [anon_sym_descending] = ACTIONS(3426), - [anon_sym_group] = ACTIONS(3426), - [anon_sym_by] = ACTIONS(3426), - [anon_sym_select] = ACTIONS(3426), - [anon_sym_stackalloc] = ACTIONS(3426), - [anon_sym_sizeof] = ACTIONS(3426), - [anon_sym_typeof] = ACTIONS(3426), - [anon_sym___makeref] = ACTIONS(3426), - [anon_sym___reftype] = ACTIONS(3426), - [anon_sym___refvalue] = ACTIONS(3426), - [sym_null_literal] = ACTIONS(3426), - [anon_sym_SQUOTE] = ACTIONS(3428), - [sym_integer_literal] = ACTIONS(3426), - [sym_real_literal] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [sym_verbatim_string_literal] = ACTIONS(3428), - [sym_grit_metavariable] = ACTIONS(3428), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3428), - [sym_interpolation_verbatim_start] = ACTIONS(3428), - [sym_interpolation_raw_start] = ACTIONS(3428), - [sym_raw_string_start] = ACTIONS(3428), - }, - [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(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), - }, - [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(3490), - [anon_sym_extern] = ACTIONS(3490), - [anon_sym_alias] = ACTIONS(3490), - [anon_sym_SEMI] = ACTIONS(3492), - [anon_sym_global] = ACTIONS(3490), - [anon_sym_using] = ACTIONS(3490), - [anon_sym_unsafe] = ACTIONS(3490), - [anon_sym_static] = ACTIONS(3490), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_return] = ACTIONS(3490), - [anon_sym_ref] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(3492), - [anon_sym_RBRACE] = ACTIONS(3492), - [anon_sym_delegate] = ACTIONS(3490), - [anon_sym_public] = ACTIONS(3490), - [anon_sym_private] = ACTIONS(3490), - [anon_sym_readonly] = ACTIONS(3490), - [anon_sym_abstract] = ACTIONS(3490), - [anon_sym_async] = ACTIONS(3490), - [anon_sym_const] = ACTIONS(3490), - [anon_sym_file] = ACTIONS(3490), - [anon_sym_fixed] = ACTIONS(3490), - [anon_sym_internal] = ACTIONS(3490), - [anon_sym_new] = ACTIONS(3490), - [anon_sym_override] = ACTIONS(3490), - [anon_sym_partial] = ACTIONS(3490), - [anon_sym_protected] = ACTIONS(3490), - [anon_sym_required] = ACTIONS(3490), - [anon_sym_sealed] = ACTIONS(3490), - [anon_sym_virtual] = ACTIONS(3490), - [anon_sym_volatile] = ACTIONS(3490), - [anon_sym_where] = ACTIONS(3490), - [anon_sym_notnull] = ACTIONS(3490), - [anon_sym_unmanaged] = ACTIONS(3490), - [anon_sym_checked] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(3492), - [anon_sym_TILDE] = ACTIONS(3492), - [anon_sym_PLUS_PLUS] = ACTIONS(3492), - [anon_sym_DASH_DASH] = ACTIONS(3492), - [anon_sym_true] = ACTIONS(3490), - [anon_sym_false] = ACTIONS(3490), - [anon_sym_PLUS] = ACTIONS(3490), - [anon_sym_DASH] = ACTIONS(3490), - [anon_sym_STAR] = ACTIONS(3492), - [anon_sym_CARET] = ACTIONS(3492), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_this] = ACTIONS(3490), - [anon_sym_scoped] = ACTIONS(3490), - [anon_sym_base] = ACTIONS(3490), - [anon_sym_var] = ACTIONS(3490), - [sym_predefined_type] = ACTIONS(3490), - [anon_sym_break] = ACTIONS(3490), - [anon_sym_unchecked] = ACTIONS(3490), - [anon_sym_continue] = ACTIONS(3490), - [anon_sym_do] = ACTIONS(3490), - [anon_sym_while] = ACTIONS(3490), - [anon_sym_for] = ACTIONS(3490), - [anon_sym_lock] = ACTIONS(3490), - [anon_sym_yield] = ACTIONS(3490), - [anon_sym_switch] = ACTIONS(3490), - [anon_sym_case] = ACTIONS(3490), - [anon_sym_default] = ACTIONS(3490), - [anon_sym_throw] = ACTIONS(3490), - [anon_sym_try] = ACTIONS(3490), - [anon_sym_when] = ACTIONS(3490), - [anon_sym_await] = ACTIONS(3490), - [anon_sym_foreach] = ACTIONS(3490), - [anon_sym_goto] = ACTIONS(3490), - [anon_sym_if] = ACTIONS(3490), - [anon_sym_else] = ACTIONS(3490), - [anon_sym_DOT_DOT] = ACTIONS(3492), - [anon_sym_from] = ACTIONS(3490), - [anon_sym_into] = ACTIONS(3490), - [anon_sym_join] = ACTIONS(3490), - [anon_sym_on] = ACTIONS(3490), - [anon_sym_equals] = ACTIONS(3490), - [anon_sym_let] = ACTIONS(3490), - [anon_sym_orderby] = ACTIONS(3490), - [anon_sym_ascending] = ACTIONS(3490), - [anon_sym_descending] = ACTIONS(3490), - [anon_sym_group] = ACTIONS(3490), - [anon_sym_by] = ACTIONS(3490), - [anon_sym_select] = ACTIONS(3490), - [anon_sym_stackalloc] = ACTIONS(3490), - [anon_sym_sizeof] = ACTIONS(3490), - [anon_sym_typeof] = ACTIONS(3490), - [anon_sym___makeref] = ACTIONS(3490), - [anon_sym___reftype] = ACTIONS(3490), - [anon_sym___refvalue] = ACTIONS(3490), - [sym_null_literal] = ACTIONS(3490), - [anon_sym_SQUOTE] = ACTIONS(3492), - [sym_integer_literal] = ACTIONS(3490), - [sym_real_literal] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3492), - [sym_verbatim_string_literal] = ACTIONS(3492), - [sym_grit_metavariable] = ACTIONS(3492), - [aux_sym_preproc_if_token1] = ACTIONS(3492), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3492), - [sym_interpolation_verbatim_start] = ACTIONS(3492), - [sym_interpolation_raw_start] = ACTIONS(3492), - [sym_raw_string_start] = ACTIONS(3492), - }, - [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(3486), - [anon_sym_extern] = ACTIONS(3486), - [anon_sym_alias] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3488), - [anon_sym_global] = ACTIONS(3486), - [anon_sym_using] = ACTIONS(3486), - [anon_sym_unsafe] = ACTIONS(3486), - [anon_sym_static] = ACTIONS(3486), - [anon_sym_LBRACK] = ACTIONS(3488), - [anon_sym_LPAREN] = ACTIONS(3488), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_ref] = ACTIONS(3486), - [anon_sym_LBRACE] = ACTIONS(3488), - [anon_sym_RBRACE] = ACTIONS(3488), - [anon_sym_delegate] = ACTIONS(3486), - [anon_sym_public] = ACTIONS(3486), - [anon_sym_private] = ACTIONS(3486), - [anon_sym_readonly] = ACTIONS(3486), - [anon_sym_abstract] = ACTIONS(3486), - [anon_sym_async] = ACTIONS(3486), - [anon_sym_const] = ACTIONS(3486), - [anon_sym_file] = ACTIONS(3486), - [anon_sym_fixed] = ACTIONS(3486), - [anon_sym_internal] = ACTIONS(3486), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_override] = ACTIONS(3486), - [anon_sym_partial] = ACTIONS(3486), - [anon_sym_protected] = ACTIONS(3486), - [anon_sym_required] = ACTIONS(3486), - [anon_sym_sealed] = ACTIONS(3486), - [anon_sym_virtual] = ACTIONS(3486), - [anon_sym_volatile] = ACTIONS(3486), - [anon_sym_where] = ACTIONS(3486), - [anon_sym_notnull] = ACTIONS(3486), - [anon_sym_unmanaged] = ACTIONS(3486), - [anon_sym_checked] = ACTIONS(3486), - [anon_sym_BANG] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(3488), - [anon_sym_PLUS_PLUS] = ACTIONS(3488), - [anon_sym_DASH_DASH] = ACTIONS(3488), - [anon_sym_true] = ACTIONS(3486), - [anon_sym_false] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_STAR] = ACTIONS(3488), - [anon_sym_CARET] = ACTIONS(3488), - [anon_sym_AMP] = ACTIONS(3488), - [anon_sym_this] = ACTIONS(3486), - [anon_sym_scoped] = ACTIONS(3486), - [anon_sym_base] = ACTIONS(3486), - [anon_sym_var] = ACTIONS(3486), - [sym_predefined_type] = ACTIONS(3486), - [anon_sym_break] = ACTIONS(3486), - [anon_sym_unchecked] = ACTIONS(3486), - [anon_sym_continue] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_lock] = ACTIONS(3486), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_switch] = ACTIONS(3486), - [anon_sym_case] = ACTIONS(3486), - [anon_sym_default] = ACTIONS(3486), - [anon_sym_throw] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_when] = ACTIONS(3486), - [anon_sym_await] = ACTIONS(3486), - [anon_sym_foreach] = ACTIONS(3486), - [anon_sym_goto] = ACTIONS(3486), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_else] = ACTIONS(3486), - [anon_sym_DOT_DOT] = ACTIONS(3488), - [anon_sym_from] = ACTIONS(3486), - [anon_sym_into] = ACTIONS(3486), - [anon_sym_join] = ACTIONS(3486), - [anon_sym_on] = ACTIONS(3486), - [anon_sym_equals] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_orderby] = ACTIONS(3486), - [anon_sym_ascending] = ACTIONS(3486), - [anon_sym_descending] = ACTIONS(3486), - [anon_sym_group] = ACTIONS(3486), - [anon_sym_by] = ACTIONS(3486), - [anon_sym_select] = ACTIONS(3486), - [anon_sym_stackalloc] = ACTIONS(3486), - [anon_sym_sizeof] = ACTIONS(3486), - [anon_sym_typeof] = ACTIONS(3486), - [anon_sym___makeref] = ACTIONS(3486), - [anon_sym___reftype] = ACTIONS(3486), - [anon_sym___refvalue] = ACTIONS(3486), - [sym_null_literal] = ACTIONS(3486), - [anon_sym_SQUOTE] = ACTIONS(3488), - [sym_integer_literal] = ACTIONS(3486), - [sym_real_literal] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(3488), - [sym_verbatim_string_literal] = ACTIONS(3488), - [sym_grit_metavariable] = ACTIONS(3488), - [aux_sym_preproc_if_token1] = ACTIONS(3488), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3488), - [sym_interpolation_verbatim_start] = ACTIONS(3488), - [sym_interpolation_raw_start] = ACTIONS(3488), - [sym_raw_string_start] = ACTIONS(3488), - }, - [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(3482), - [anon_sym_extern] = ACTIONS(3482), - [anon_sym_alias] = ACTIONS(3482), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_global] = ACTIONS(3482), - [anon_sym_using] = ACTIONS(3482), - [anon_sym_unsafe] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_LBRACK] = ACTIONS(3484), - [anon_sym_LPAREN] = ACTIONS(3484), - [anon_sym_return] = ACTIONS(3482), - [anon_sym_ref] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3484), - [anon_sym_RBRACE] = ACTIONS(3484), - [anon_sym_delegate] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3482), - [anon_sym_private] = ACTIONS(3482), - [anon_sym_readonly] = ACTIONS(3482), - [anon_sym_abstract] = ACTIONS(3482), - [anon_sym_async] = ACTIONS(3482), - [anon_sym_const] = ACTIONS(3482), - [anon_sym_file] = ACTIONS(3482), - [anon_sym_fixed] = ACTIONS(3482), - [anon_sym_internal] = ACTIONS(3482), - [anon_sym_new] = ACTIONS(3482), - [anon_sym_override] = ACTIONS(3482), - [anon_sym_partial] = ACTIONS(3482), - [anon_sym_protected] = ACTIONS(3482), - [anon_sym_required] = ACTIONS(3482), - [anon_sym_sealed] = ACTIONS(3482), - [anon_sym_virtual] = ACTIONS(3482), - [anon_sym_volatile] = ACTIONS(3482), - [anon_sym_where] = ACTIONS(3482), - [anon_sym_notnull] = ACTIONS(3482), - [anon_sym_unmanaged] = ACTIONS(3482), - [anon_sym_checked] = ACTIONS(3482), - [anon_sym_BANG] = ACTIONS(3484), - [anon_sym_TILDE] = ACTIONS(3484), - [anon_sym_PLUS_PLUS] = ACTIONS(3484), - [anon_sym_DASH_DASH] = ACTIONS(3484), - [anon_sym_true] = ACTIONS(3482), - [anon_sym_false] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3482), - [anon_sym_DASH] = ACTIONS(3482), - [anon_sym_STAR] = ACTIONS(3484), - [anon_sym_CARET] = ACTIONS(3484), - [anon_sym_AMP] = ACTIONS(3484), - [anon_sym_this] = ACTIONS(3482), - [anon_sym_scoped] = ACTIONS(3482), - [anon_sym_base] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [sym_predefined_type] = ACTIONS(3482), - [anon_sym_break] = ACTIONS(3482), - [anon_sym_unchecked] = ACTIONS(3482), - [anon_sym_continue] = ACTIONS(3482), - [anon_sym_do] = ACTIONS(3482), - [anon_sym_while] = ACTIONS(3482), - [anon_sym_for] = ACTIONS(3482), - [anon_sym_lock] = ACTIONS(3482), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_switch] = ACTIONS(3482), - [anon_sym_case] = ACTIONS(3482), - [anon_sym_default] = ACTIONS(3482), - [anon_sym_throw] = ACTIONS(3482), - [anon_sym_try] = ACTIONS(3482), - [anon_sym_when] = ACTIONS(3482), - [anon_sym_await] = ACTIONS(3482), - [anon_sym_foreach] = ACTIONS(3482), - [anon_sym_goto] = ACTIONS(3482), - [anon_sym_if] = ACTIONS(3482), - [anon_sym_else] = ACTIONS(3482), - [anon_sym_DOT_DOT] = ACTIONS(3484), - [anon_sym_from] = ACTIONS(3482), - [anon_sym_into] = ACTIONS(3482), - [anon_sym_join] = ACTIONS(3482), - [anon_sym_on] = ACTIONS(3482), - [anon_sym_equals] = ACTIONS(3482), - [anon_sym_let] = ACTIONS(3482), - [anon_sym_orderby] = ACTIONS(3482), - [anon_sym_ascending] = ACTIONS(3482), - [anon_sym_descending] = ACTIONS(3482), - [anon_sym_group] = ACTIONS(3482), - [anon_sym_by] = ACTIONS(3482), - [anon_sym_select] = ACTIONS(3482), - [anon_sym_stackalloc] = ACTIONS(3482), - [anon_sym_sizeof] = ACTIONS(3482), - [anon_sym_typeof] = ACTIONS(3482), - [anon_sym___makeref] = ACTIONS(3482), - [anon_sym___reftype] = ACTIONS(3482), - [anon_sym___refvalue] = ACTIONS(3482), - [sym_null_literal] = ACTIONS(3482), - [anon_sym_SQUOTE] = ACTIONS(3484), - [sym_integer_literal] = ACTIONS(3482), - [sym_real_literal] = ACTIONS(3484), - [anon_sym_DQUOTE] = ACTIONS(3484), - [sym_verbatim_string_literal] = ACTIONS(3484), - [sym_grit_metavariable] = ACTIONS(3484), - [aux_sym_preproc_if_token1] = ACTIONS(3484), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3484), - [sym_interpolation_verbatim_start] = ACTIONS(3484), - [sym_interpolation_raw_start] = ACTIONS(3484), - [sym_raw_string_start] = ACTIONS(3484), - }, - [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(3470), - [anon_sym_extern] = ACTIONS(3470), - [anon_sym_alias] = ACTIONS(3470), - [anon_sym_SEMI] = ACTIONS(3472), - [anon_sym_global] = ACTIONS(3470), - [anon_sym_using] = ACTIONS(3470), - [anon_sym_unsafe] = ACTIONS(3470), - [anon_sym_static] = ACTIONS(3470), - [anon_sym_LBRACK] = ACTIONS(3472), - [anon_sym_LPAREN] = ACTIONS(3472), - [anon_sym_return] = ACTIONS(3470), - [anon_sym_ref] = ACTIONS(3470), - [anon_sym_LBRACE] = ACTIONS(3472), - [anon_sym_RBRACE] = ACTIONS(3472), - [anon_sym_delegate] = ACTIONS(3470), - [anon_sym_public] = ACTIONS(3470), - [anon_sym_private] = ACTIONS(3470), - [anon_sym_readonly] = ACTIONS(3470), - [anon_sym_abstract] = ACTIONS(3470), - [anon_sym_async] = ACTIONS(3470), - [anon_sym_const] = ACTIONS(3470), - [anon_sym_file] = ACTIONS(3470), - [anon_sym_fixed] = ACTIONS(3470), - [anon_sym_internal] = ACTIONS(3470), - [anon_sym_new] = ACTIONS(3470), - [anon_sym_override] = ACTIONS(3470), - [anon_sym_partial] = ACTIONS(3470), - [anon_sym_protected] = ACTIONS(3470), - [anon_sym_required] = ACTIONS(3470), - [anon_sym_sealed] = ACTIONS(3470), - [anon_sym_virtual] = ACTIONS(3470), - [anon_sym_volatile] = ACTIONS(3470), - [anon_sym_where] = ACTIONS(3470), - [anon_sym_notnull] = ACTIONS(3470), - [anon_sym_unmanaged] = ACTIONS(3470), - [anon_sym_checked] = ACTIONS(3470), - [anon_sym_BANG] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3472), - [anon_sym_PLUS_PLUS] = ACTIONS(3472), - [anon_sym_DASH_DASH] = ACTIONS(3472), - [anon_sym_true] = ACTIONS(3470), - [anon_sym_false] = ACTIONS(3470), - [anon_sym_PLUS] = ACTIONS(3470), - [anon_sym_DASH] = ACTIONS(3470), - [anon_sym_STAR] = ACTIONS(3472), - [anon_sym_CARET] = ACTIONS(3472), - [anon_sym_AMP] = ACTIONS(3472), - [anon_sym_this] = ACTIONS(3470), - [anon_sym_scoped] = ACTIONS(3470), - [anon_sym_base] = ACTIONS(3470), - [anon_sym_var] = ACTIONS(3470), - [sym_predefined_type] = ACTIONS(3470), - [anon_sym_break] = ACTIONS(3470), - [anon_sym_unchecked] = ACTIONS(3470), - [anon_sym_continue] = ACTIONS(3470), - [anon_sym_do] = ACTIONS(3470), - [anon_sym_while] = ACTIONS(3470), - [anon_sym_for] = ACTIONS(3470), - [anon_sym_lock] = ACTIONS(3470), - [anon_sym_yield] = ACTIONS(3470), - [anon_sym_switch] = ACTIONS(3470), - [anon_sym_case] = ACTIONS(3470), - [anon_sym_default] = ACTIONS(3470), - [anon_sym_throw] = ACTIONS(3470), - [anon_sym_try] = ACTIONS(3470), - [anon_sym_when] = ACTIONS(3470), - [anon_sym_await] = ACTIONS(3470), - [anon_sym_foreach] = ACTIONS(3470), - [anon_sym_goto] = ACTIONS(3470), - [anon_sym_if] = ACTIONS(3470), - [anon_sym_else] = ACTIONS(3470), - [anon_sym_DOT_DOT] = ACTIONS(3472), - [anon_sym_from] = ACTIONS(3470), - [anon_sym_into] = ACTIONS(3470), - [anon_sym_join] = ACTIONS(3470), - [anon_sym_on] = ACTIONS(3470), - [anon_sym_equals] = ACTIONS(3470), - [anon_sym_let] = ACTIONS(3470), - [anon_sym_orderby] = ACTIONS(3470), - [anon_sym_ascending] = ACTIONS(3470), - [anon_sym_descending] = ACTIONS(3470), - [anon_sym_group] = ACTIONS(3470), - [anon_sym_by] = ACTIONS(3470), - [anon_sym_select] = ACTIONS(3470), - [anon_sym_stackalloc] = ACTIONS(3470), - [anon_sym_sizeof] = ACTIONS(3470), - [anon_sym_typeof] = ACTIONS(3470), - [anon_sym___makeref] = ACTIONS(3470), - [anon_sym___reftype] = ACTIONS(3470), - [anon_sym___refvalue] = ACTIONS(3470), - [sym_null_literal] = ACTIONS(3470), - [anon_sym_SQUOTE] = ACTIONS(3472), - [sym_integer_literal] = ACTIONS(3470), - [sym_real_literal] = ACTIONS(3472), - [anon_sym_DQUOTE] = ACTIONS(3472), - [sym_verbatim_string_literal] = ACTIONS(3472), - [sym_grit_metavariable] = ACTIONS(3472), - [aux_sym_preproc_if_token1] = ACTIONS(3472), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3472), - [sym_interpolation_verbatim_start] = ACTIONS(3472), - [sym_interpolation_raw_start] = ACTIONS(3472), - [sym_raw_string_start] = ACTIONS(3472), - }, - [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(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), + [sym_interpolation_regular_start] = ACTIONS(3686), + [sym_interpolation_verbatim_start] = ACTIONS(3686), + [sym_interpolation_raw_start] = ACTIONS(3686), + [sym_raw_string_start] = ACTIONS(3686), }, - [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(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), + [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), @@ -403377,119 +400247,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(3185), - [sym_interpolation_verbatim_start] = ACTIONS(3185), - [sym_interpolation_raw_start] = ACTIONS(3185), - [sym_raw_string_start] = ACTIONS(3185), + [sym_interpolation_regular_start] = ACTIONS(3727), + [sym_interpolation_verbatim_start] = ACTIONS(3727), + [sym_interpolation_raw_start] = ACTIONS(3727), + [sym_raw_string_start] = ACTIONS(3727), }, - [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(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), + [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), @@ -403500,119 +400374,496 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3731), + [sym_interpolation_verbatim_start] = ACTIONS(3731), + [sym_interpolation_raw_start] = ACTIONS(3731), + [sym_raw_string_start] = ACTIONS(3731), }, - [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(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), + [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), + [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_ref] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_RBRACE] = ACTIONS(3380), + [anon_sym_delegate] = 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_case] = 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), + }, + [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), + [sym_preproc_line] = STATE(2114), + [sym_preproc_pragma] = STATE(2114), + [sym_preproc_nullable] = STATE(2114), + [sym_preproc_error] = STATE(2114), + [sym_preproc_warning] = STATE(2114), + [sym_preproc_define] = STATE(2114), + [sym_preproc_undef] = STATE(2114), + [sym__identifier_token] = ACTIONS(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), @@ -403623,119 +400874,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3193), + [sym_interpolation_verbatim_start] = ACTIONS(3193), + [sym_interpolation_raw_start] = ACTIONS(3193), + [sym_raw_string_start] = ACTIONS(3193), }, - [2138] = { - [sym_preproc_region] = STATE(2138), - [sym_preproc_endregion] = STATE(2138), - [sym_preproc_line] = STATE(2138), - [sym_preproc_pragma] = STATE(2138), - [sym_preproc_nullable] = STATE(2138), - [sym_preproc_error] = STATE(2138), - [sym_preproc_warning] = STATE(2138), - [sym_preproc_define] = STATE(2138), - [sym_preproc_undef] = STATE(2138), - [sym__identifier_token] = ACTIONS(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), + [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), + [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_ref] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_delegate] = 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_case] = 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), + }, + [2116] = { + [sym_preproc_region] = STATE(2116), + [sym_preproc_endregion] = STATE(2116), + [sym_preproc_line] = STATE(2116), + [sym_preproc_pragma] = STATE(2116), + [sym_preproc_nullable] = STATE(2116), + [sym_preproc_error] = STATE(2116), + [sym_preproc_warning] = STATE(2116), + [sym_preproc_define] = STATE(2116), + [sym_preproc_undef] = STATE(2116), + [sym__identifier_token] = ACTIONS(3735), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym_alias] = ACTIONS(3735), + [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_LPAREN] = ACTIONS(3740), + [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_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), @@ -403746,611 +401127,607 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, - [2139] = { - [sym_preproc_region] = STATE(2139), - [sym_preproc_endregion] = STATE(2139), - [sym_preproc_line] = STATE(2139), - [sym_preproc_pragma] = STATE(2139), - [sym_preproc_nullable] = STATE(2139), - [sym_preproc_error] = STATE(2139), - [sym_preproc_warning] = STATE(2139), - [sym_preproc_define] = STATE(2139), - [sym_preproc_undef] = STATE(2139), - [sym__identifier_token] = ACTIONS(3458), - [anon_sym_extern] = ACTIONS(3458), - [anon_sym_alias] = ACTIONS(3458), - [anon_sym_SEMI] = ACTIONS(3460), - [anon_sym_global] = ACTIONS(3458), - [anon_sym_using] = ACTIONS(3458), - [anon_sym_unsafe] = ACTIONS(3458), - [anon_sym_static] = ACTIONS(3458), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3460), - [anon_sym_return] = ACTIONS(3458), - [anon_sym_ref] = ACTIONS(3458), - [anon_sym_LBRACE] = ACTIONS(3460), - [anon_sym_RBRACE] = ACTIONS(3460), - [anon_sym_delegate] = ACTIONS(3458), - [anon_sym_public] = ACTIONS(3458), - [anon_sym_private] = ACTIONS(3458), - [anon_sym_readonly] = ACTIONS(3458), - [anon_sym_abstract] = ACTIONS(3458), - [anon_sym_async] = ACTIONS(3458), - [anon_sym_const] = ACTIONS(3458), - [anon_sym_file] = ACTIONS(3458), - [anon_sym_fixed] = ACTIONS(3458), - [anon_sym_internal] = ACTIONS(3458), - [anon_sym_new] = ACTIONS(3458), - [anon_sym_override] = ACTIONS(3458), - [anon_sym_partial] = ACTIONS(3458), - [anon_sym_protected] = ACTIONS(3458), - [anon_sym_required] = ACTIONS(3458), - [anon_sym_sealed] = ACTIONS(3458), - [anon_sym_virtual] = ACTIONS(3458), - [anon_sym_volatile] = ACTIONS(3458), - [anon_sym_where] = ACTIONS(3458), - [anon_sym_notnull] = ACTIONS(3458), - [anon_sym_unmanaged] = ACTIONS(3458), - [anon_sym_checked] = ACTIONS(3458), - [anon_sym_BANG] = ACTIONS(3460), - [anon_sym_TILDE] = ACTIONS(3460), - [anon_sym_PLUS_PLUS] = ACTIONS(3460), - [anon_sym_DASH_DASH] = ACTIONS(3460), - [anon_sym_true] = ACTIONS(3458), - [anon_sym_false] = ACTIONS(3458), - [anon_sym_PLUS] = ACTIONS(3458), - [anon_sym_DASH] = ACTIONS(3458), - [anon_sym_STAR] = ACTIONS(3460), - [anon_sym_CARET] = ACTIONS(3460), - [anon_sym_AMP] = ACTIONS(3460), - [anon_sym_this] = ACTIONS(3458), - [anon_sym_scoped] = ACTIONS(3458), - [anon_sym_base] = ACTIONS(3458), - [anon_sym_var] = ACTIONS(3458), - [sym_predefined_type] = ACTIONS(3458), - [anon_sym_break] = ACTIONS(3458), - [anon_sym_unchecked] = ACTIONS(3458), - [anon_sym_continue] = ACTIONS(3458), - [anon_sym_do] = ACTIONS(3458), - [anon_sym_while] = ACTIONS(3458), - [anon_sym_for] = ACTIONS(3458), - [anon_sym_lock] = ACTIONS(3458), - [anon_sym_yield] = ACTIONS(3458), - [anon_sym_switch] = ACTIONS(3458), - [anon_sym_case] = ACTIONS(3458), - [anon_sym_default] = ACTIONS(3458), - [anon_sym_throw] = ACTIONS(3458), - [anon_sym_try] = ACTIONS(3458), - [anon_sym_when] = ACTIONS(3458), - [anon_sym_await] = ACTIONS(3458), - [anon_sym_foreach] = ACTIONS(3458), - [anon_sym_goto] = ACTIONS(3458), - [anon_sym_if] = ACTIONS(3458), - [anon_sym_else] = ACTIONS(3458), - [anon_sym_DOT_DOT] = ACTIONS(3460), - [anon_sym_from] = ACTIONS(3458), - [anon_sym_into] = ACTIONS(3458), - [anon_sym_join] = ACTIONS(3458), - [anon_sym_on] = ACTIONS(3458), - [anon_sym_equals] = ACTIONS(3458), - [anon_sym_let] = ACTIONS(3458), - [anon_sym_orderby] = ACTIONS(3458), - [anon_sym_ascending] = ACTIONS(3458), - [anon_sym_descending] = ACTIONS(3458), - [anon_sym_group] = ACTIONS(3458), - [anon_sym_by] = ACTIONS(3458), - [anon_sym_select] = ACTIONS(3458), - [anon_sym_stackalloc] = ACTIONS(3458), - [anon_sym_sizeof] = ACTIONS(3458), - [anon_sym_typeof] = ACTIONS(3458), - [anon_sym___makeref] = ACTIONS(3458), - [anon_sym___reftype] = ACTIONS(3458), - [anon_sym___refvalue] = ACTIONS(3458), - [sym_null_literal] = ACTIONS(3458), - [anon_sym_SQUOTE] = ACTIONS(3460), - [sym_integer_literal] = ACTIONS(3458), - [sym_real_literal] = ACTIONS(3460), - [anon_sym_DQUOTE] = ACTIONS(3460), - [sym_verbatim_string_literal] = ACTIONS(3460), - [sym_grit_metavariable] = ACTIONS(3460), - [aux_sym_preproc_if_token1] = ACTIONS(3460), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3460), - [sym_interpolation_verbatim_start] = ACTIONS(3460), - [sym_interpolation_raw_start] = ACTIONS(3460), - [sym_raw_string_start] = ACTIONS(3460), + [2117] = { + [sym_preproc_region] = STATE(2117), + [sym_preproc_endregion] = STATE(2117), + [sym_preproc_line] = STATE(2117), + [sym_preproc_pragma] = STATE(2117), + [sym_preproc_nullable] = STATE(2117), + [sym_preproc_error] = STATE(2117), + [sym_preproc_warning] = STATE(2117), + [sym_preproc_define] = STATE(2117), + [sym_preproc_undef] = STATE(2117), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, - [2140] = { - [sym_preproc_region] = STATE(2140), - [sym_preproc_endregion] = STATE(2140), - [sym_preproc_line] = STATE(2140), - [sym_preproc_pragma] = STATE(2140), - [sym_preproc_nullable] = STATE(2140), - [sym_preproc_error] = STATE(2140), - [sym_preproc_warning] = STATE(2140), - [sym_preproc_define] = STATE(2140), - [sym_preproc_undef] = STATE(2140), - [sym__identifier_token] = ACTIONS(3462), - [anon_sym_extern] = ACTIONS(3462), - [anon_sym_alias] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3464), - [anon_sym_global] = ACTIONS(3462), - [anon_sym_using] = ACTIONS(3462), - [anon_sym_unsafe] = ACTIONS(3462), - [anon_sym_static] = ACTIONS(3462), - [anon_sym_LBRACK] = ACTIONS(3464), - [anon_sym_LPAREN] = ACTIONS(3464), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_ref] = ACTIONS(3462), - [anon_sym_LBRACE] = ACTIONS(3464), - [anon_sym_RBRACE] = ACTIONS(3464), - [anon_sym_delegate] = ACTIONS(3462), - [anon_sym_public] = ACTIONS(3462), - [anon_sym_private] = ACTIONS(3462), - [anon_sym_readonly] = ACTIONS(3462), - [anon_sym_abstract] = ACTIONS(3462), - [anon_sym_async] = ACTIONS(3462), - [anon_sym_const] = ACTIONS(3462), - [anon_sym_file] = ACTIONS(3462), - [anon_sym_fixed] = ACTIONS(3462), - [anon_sym_internal] = ACTIONS(3462), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_override] = ACTIONS(3462), - [anon_sym_partial] = ACTIONS(3462), - [anon_sym_protected] = ACTIONS(3462), - [anon_sym_required] = ACTIONS(3462), - [anon_sym_sealed] = ACTIONS(3462), - [anon_sym_virtual] = ACTIONS(3462), - [anon_sym_volatile] = ACTIONS(3462), - [anon_sym_where] = ACTIONS(3462), - [anon_sym_notnull] = ACTIONS(3462), - [anon_sym_unmanaged] = ACTIONS(3462), - [anon_sym_checked] = ACTIONS(3462), - [anon_sym_BANG] = ACTIONS(3464), - [anon_sym_TILDE] = ACTIONS(3464), - [anon_sym_PLUS_PLUS] = ACTIONS(3464), - [anon_sym_DASH_DASH] = ACTIONS(3464), - [anon_sym_true] = ACTIONS(3462), - [anon_sym_false] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_STAR] = ACTIONS(3464), - [anon_sym_CARET] = ACTIONS(3464), - [anon_sym_AMP] = ACTIONS(3464), - [anon_sym_this] = ACTIONS(3462), - [anon_sym_scoped] = ACTIONS(3462), - [anon_sym_base] = ACTIONS(3462), - [anon_sym_var] = ACTIONS(3462), - [sym_predefined_type] = ACTIONS(3462), - [anon_sym_break] = ACTIONS(3462), - [anon_sym_unchecked] = ACTIONS(3462), - [anon_sym_continue] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_lock] = ACTIONS(3462), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_switch] = ACTIONS(3462), - [anon_sym_case] = ACTIONS(3462), - [anon_sym_default] = ACTIONS(3462), - [anon_sym_throw] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_when] = ACTIONS(3462), - [anon_sym_await] = ACTIONS(3462), - [anon_sym_foreach] = ACTIONS(3462), - [anon_sym_goto] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_else] = ACTIONS(3462), - [anon_sym_DOT_DOT] = ACTIONS(3464), - [anon_sym_from] = ACTIONS(3462), - [anon_sym_into] = ACTIONS(3462), - [anon_sym_join] = ACTIONS(3462), - [anon_sym_on] = ACTIONS(3462), - [anon_sym_equals] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_orderby] = ACTIONS(3462), - [anon_sym_ascending] = ACTIONS(3462), - [anon_sym_descending] = ACTIONS(3462), - [anon_sym_group] = ACTIONS(3462), - [anon_sym_by] = ACTIONS(3462), - [anon_sym_select] = ACTIONS(3462), - [anon_sym_stackalloc] = ACTIONS(3462), - [anon_sym_sizeof] = ACTIONS(3462), - [anon_sym_typeof] = ACTIONS(3462), - [anon_sym___makeref] = ACTIONS(3462), - [anon_sym___reftype] = ACTIONS(3462), - [anon_sym___refvalue] = ACTIONS(3462), - [sym_null_literal] = ACTIONS(3462), - [anon_sym_SQUOTE] = ACTIONS(3464), - [sym_integer_literal] = ACTIONS(3462), - [sym_real_literal] = ACTIONS(3464), - [anon_sym_DQUOTE] = ACTIONS(3464), - [sym_verbatim_string_literal] = ACTIONS(3464), - [sym_grit_metavariable] = ACTIONS(3464), - [aux_sym_preproc_if_token1] = ACTIONS(3464), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3464), - [sym_interpolation_verbatim_start] = ACTIONS(3464), - [sym_interpolation_raw_start] = ACTIONS(3464), - [sym_raw_string_start] = ACTIONS(3464), + [2118] = { + [sym_preproc_region] = STATE(2118), + [sym_preproc_endregion] = STATE(2118), + [sym_preproc_line] = STATE(2118), + [sym_preproc_pragma] = STATE(2118), + [sym_preproc_nullable] = STATE(2118), + [sym_preproc_error] = STATE(2118), + [sym_preproc_warning] = STATE(2118), + [sym_preproc_define] = STATE(2118), + [sym_preproc_undef] = STATE(2118), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, - [2141] = { - [sym_preproc_region] = STATE(2141), - [sym_preproc_endregion] = STATE(2141), - [sym_preproc_line] = STATE(2141), - [sym_preproc_pragma] = STATE(2141), - [sym_preproc_nullable] = STATE(2141), - [sym_preproc_error] = STATE(2141), - [sym_preproc_warning] = STATE(2141), - [sym_preproc_define] = STATE(2141), - [sym_preproc_undef] = STATE(2141), - [sym__identifier_token] = ACTIONS(3494), - [anon_sym_extern] = ACTIONS(3494), - [anon_sym_alias] = ACTIONS(3494), - [anon_sym_SEMI] = ACTIONS(3496), - [anon_sym_global] = ACTIONS(3494), - [anon_sym_using] = ACTIONS(3494), - [anon_sym_unsafe] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(3496), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym_return] = ACTIONS(3494), - [anon_sym_ref] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3496), - [anon_sym_RBRACE] = ACTIONS(3496), - [anon_sym_delegate] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_file] = ACTIONS(3494), - [anon_sym_fixed] = ACTIONS(3494), - [anon_sym_internal] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_partial] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_sealed] = ACTIONS(3494), - [anon_sym_virtual] = ACTIONS(3494), - [anon_sym_volatile] = ACTIONS(3494), - [anon_sym_where] = ACTIONS(3494), - [anon_sym_notnull] = ACTIONS(3494), - [anon_sym_unmanaged] = ACTIONS(3494), - [anon_sym_checked] = ACTIONS(3494), - [anon_sym_BANG] = ACTIONS(3496), - [anon_sym_TILDE] = ACTIONS(3496), - [anon_sym_PLUS_PLUS] = ACTIONS(3496), - [anon_sym_DASH_DASH] = ACTIONS(3496), - [anon_sym_true] = ACTIONS(3494), - [anon_sym_false] = ACTIONS(3494), - [anon_sym_PLUS] = ACTIONS(3494), - [anon_sym_DASH] = ACTIONS(3494), - [anon_sym_STAR] = ACTIONS(3496), - [anon_sym_CARET] = ACTIONS(3496), - [anon_sym_AMP] = ACTIONS(3496), - [anon_sym_this] = ACTIONS(3494), - [anon_sym_scoped] = ACTIONS(3494), - [anon_sym_base] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [sym_predefined_type] = ACTIONS(3494), - [anon_sym_break] = ACTIONS(3494), - [anon_sym_unchecked] = ACTIONS(3494), - [anon_sym_continue] = ACTIONS(3494), - [anon_sym_do] = ACTIONS(3494), - [anon_sym_while] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3494), - [anon_sym_lock] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_switch] = ACTIONS(3494), - [anon_sym_case] = ACTIONS(3494), - [anon_sym_default] = ACTIONS(3494), - [anon_sym_throw] = ACTIONS(3494), - [anon_sym_try] = ACTIONS(3494), - [anon_sym_when] = ACTIONS(3494), - [anon_sym_await] = ACTIONS(3494), - [anon_sym_foreach] = ACTIONS(3494), - [anon_sym_goto] = ACTIONS(3494), - [anon_sym_if] = ACTIONS(3494), - [anon_sym_else] = ACTIONS(3494), - [anon_sym_DOT_DOT] = ACTIONS(3496), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_into] = ACTIONS(3494), - [anon_sym_join] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_equals] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_orderby] = ACTIONS(3494), - [anon_sym_ascending] = ACTIONS(3494), - [anon_sym_descending] = ACTIONS(3494), - [anon_sym_group] = ACTIONS(3494), - [anon_sym_by] = ACTIONS(3494), - [anon_sym_select] = ACTIONS(3494), - [anon_sym_stackalloc] = ACTIONS(3494), - [anon_sym_sizeof] = ACTIONS(3494), - [anon_sym_typeof] = ACTIONS(3494), - [anon_sym___makeref] = ACTIONS(3494), - [anon_sym___reftype] = ACTIONS(3494), - [anon_sym___refvalue] = ACTIONS(3494), - [sym_null_literal] = ACTIONS(3494), - [anon_sym_SQUOTE] = ACTIONS(3496), - [sym_integer_literal] = ACTIONS(3494), - [sym_real_literal] = ACTIONS(3496), - [anon_sym_DQUOTE] = ACTIONS(3496), - [sym_verbatim_string_literal] = ACTIONS(3496), - [sym_grit_metavariable] = ACTIONS(3496), - [aux_sym_preproc_if_token1] = ACTIONS(3496), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3496), - [sym_interpolation_verbatim_start] = ACTIONS(3496), - [sym_interpolation_raw_start] = ACTIONS(3496), - [sym_raw_string_start] = ACTIONS(3496), + [2119] = { + [sym_preproc_region] = STATE(2119), + [sym_preproc_endregion] = STATE(2119), + [sym_preproc_line] = STATE(2119), + [sym_preproc_pragma] = STATE(2119), + [sym_preproc_nullable] = STATE(2119), + [sym_preproc_error] = STATE(2119), + [sym_preproc_warning] = STATE(2119), + [sym_preproc_define] = STATE(2119), + [sym_preproc_undef] = STATE(2119), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, - [2142] = { - [sym_preproc_region] = STATE(2142), - [sym_preproc_endregion] = STATE(2142), - [sym_preproc_line] = STATE(2142), - [sym_preproc_pragma] = STATE(2142), - [sym_preproc_nullable] = STATE(2142), - [sym_preproc_error] = STATE(2142), - [sym_preproc_warning] = STATE(2142), - [sym_preproc_define] = STATE(2142), - [sym_preproc_undef] = STATE(2142), - [sym__identifier_token] = ACTIONS(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), + [2120] = { + [sym_preproc_region] = STATE(2120), + [sym_preproc_endregion] = STATE(2120), + [sym_preproc_line] = STATE(2120), + [sym_preproc_pragma] = STATE(2120), + [sym_preproc_nullable] = STATE(2120), + [sym_preproc_error] = STATE(2120), + [sym_preproc_warning] = STATE(2120), + [sym_preproc_define] = STATE(2120), + [sym_preproc_undef] = STATE(2120), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, - [2143] = { - [sym_preproc_region] = STATE(2143), - [sym_preproc_endregion] = STATE(2143), - [sym_preproc_line] = STATE(2143), - [sym_preproc_pragma] = STATE(2143), - [sym_preproc_nullable] = STATE(2143), - [sym_preproc_error] = STATE(2143), - [sym_preproc_warning] = STATE(2143), - [sym_preproc_define] = STATE(2143), - [sym_preproc_undef] = STATE(2143), - [sym__identifier_token] = ACTIONS(3502), - [anon_sym_extern] = ACTIONS(3502), - [anon_sym_alias] = ACTIONS(3502), - [anon_sym_SEMI] = ACTIONS(3504), - [anon_sym_global] = ACTIONS(3502), - [anon_sym_using] = ACTIONS(3502), - [anon_sym_unsafe] = ACTIONS(3502), - [anon_sym_static] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_LPAREN] = ACTIONS(3504), - [anon_sym_return] = ACTIONS(3502), - [anon_sym_ref] = ACTIONS(3502), - [anon_sym_LBRACE] = ACTIONS(3504), - [anon_sym_RBRACE] = ACTIONS(3504), - [anon_sym_delegate] = ACTIONS(3502), - [anon_sym_public] = ACTIONS(3502), - [anon_sym_private] = ACTIONS(3502), - [anon_sym_readonly] = ACTIONS(3502), - [anon_sym_abstract] = ACTIONS(3502), - [anon_sym_async] = ACTIONS(3502), - [anon_sym_const] = ACTIONS(3502), - [anon_sym_file] = ACTIONS(3502), - [anon_sym_fixed] = ACTIONS(3502), - [anon_sym_internal] = ACTIONS(3502), - [anon_sym_new] = ACTIONS(3502), - [anon_sym_override] = ACTIONS(3502), - [anon_sym_partial] = ACTIONS(3502), - [anon_sym_protected] = ACTIONS(3502), - [anon_sym_required] = ACTIONS(3502), - [anon_sym_sealed] = ACTIONS(3502), - [anon_sym_virtual] = ACTIONS(3502), - [anon_sym_volatile] = ACTIONS(3502), - [anon_sym_where] = ACTIONS(3502), - [anon_sym_notnull] = ACTIONS(3502), - [anon_sym_unmanaged] = ACTIONS(3502), - [anon_sym_checked] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(3504), - [anon_sym_PLUS_PLUS] = ACTIONS(3504), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [anon_sym_true] = ACTIONS(3502), - [anon_sym_false] = ACTIONS(3502), - [anon_sym_PLUS] = ACTIONS(3502), - [anon_sym_DASH] = ACTIONS(3502), - [anon_sym_STAR] = ACTIONS(3504), - [anon_sym_CARET] = ACTIONS(3504), - [anon_sym_AMP] = ACTIONS(3504), - [anon_sym_this] = ACTIONS(3502), - [anon_sym_scoped] = ACTIONS(3502), - [anon_sym_base] = ACTIONS(3502), - [anon_sym_var] = ACTIONS(3502), - [sym_predefined_type] = ACTIONS(3502), - [anon_sym_break] = ACTIONS(3502), - [anon_sym_unchecked] = ACTIONS(3502), - [anon_sym_continue] = ACTIONS(3502), - [anon_sym_do] = ACTIONS(3502), - [anon_sym_while] = ACTIONS(3502), - [anon_sym_for] = ACTIONS(3502), - [anon_sym_lock] = ACTIONS(3502), - [anon_sym_yield] = ACTIONS(3502), - [anon_sym_switch] = ACTIONS(3502), - [anon_sym_case] = ACTIONS(3502), - [anon_sym_default] = ACTIONS(3502), - [anon_sym_throw] = ACTIONS(3502), - [anon_sym_try] = ACTIONS(3502), - [anon_sym_when] = ACTIONS(3502), - [anon_sym_await] = ACTIONS(3502), - [anon_sym_foreach] = ACTIONS(3502), - [anon_sym_goto] = ACTIONS(3502), - [anon_sym_if] = ACTIONS(3502), - [anon_sym_else] = ACTIONS(3743), - [anon_sym_DOT_DOT] = ACTIONS(3504), - [anon_sym_from] = ACTIONS(3502), - [anon_sym_into] = ACTIONS(3502), - [anon_sym_join] = ACTIONS(3502), - [anon_sym_on] = ACTIONS(3502), - [anon_sym_equals] = ACTIONS(3502), - [anon_sym_let] = ACTIONS(3502), - [anon_sym_orderby] = ACTIONS(3502), - [anon_sym_ascending] = ACTIONS(3502), - [anon_sym_descending] = ACTIONS(3502), - [anon_sym_group] = ACTIONS(3502), - [anon_sym_by] = ACTIONS(3502), - [anon_sym_select] = ACTIONS(3502), - [anon_sym_stackalloc] = ACTIONS(3502), - [anon_sym_sizeof] = ACTIONS(3502), - [anon_sym_typeof] = ACTIONS(3502), - [anon_sym___makeref] = ACTIONS(3502), - [anon_sym___reftype] = ACTIONS(3502), - [anon_sym___refvalue] = ACTIONS(3502), - [sym_null_literal] = ACTIONS(3502), - [anon_sym_SQUOTE] = ACTIONS(3504), - [sym_integer_literal] = ACTIONS(3502), - [sym_real_literal] = ACTIONS(3504), - [anon_sym_DQUOTE] = ACTIONS(3504), - [sym_verbatim_string_literal] = ACTIONS(3504), - [sym_grit_metavariable] = ACTIONS(3504), - [aux_sym_preproc_if_token1] = ACTIONS(3504), + [2121] = { + [sym_preproc_region] = STATE(2121), + [sym_preproc_endregion] = STATE(2121), + [sym_preproc_line] = STATE(2121), + [sym_preproc_pragma] = STATE(2121), + [sym_preproc_nullable] = STATE(2121), + [sym_preproc_error] = STATE(2121), + [sym_preproc_warning] = STATE(2121), + [sym_preproc_define] = STATE(2121), + [sym_preproc_undef] = STATE(2121), + [sym__identifier_token] = ACTIONS(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), @@ -404361,119 +401738,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(3504), - [sym_interpolation_verbatim_start] = ACTIONS(3504), - [sym_interpolation_raw_start] = ACTIONS(3504), - [sym_raw_string_start] = ACTIONS(3504), + [sym_interpolation_regular_start] = ACTIONS(3530), + [sym_interpolation_verbatim_start] = ACTIONS(3530), + [sym_interpolation_raw_start] = ACTIONS(3530), + [sym_raw_string_start] = ACTIONS(3530), }, - [2144] = { - [sym_preproc_region] = STATE(2144), - [sym_preproc_endregion] = STATE(2144), - [sym_preproc_line] = STATE(2144), - [sym_preproc_pragma] = STATE(2144), - [sym_preproc_nullable] = STATE(2144), - [sym_preproc_error] = STATE(2144), - [sym_preproc_warning] = STATE(2144), - [sym_preproc_define] = STATE(2144), - [sym_preproc_undef] = STATE(2144), - [sym__identifier_token] = ACTIONS(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), + [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), @@ -404484,21 +401861,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(3522), - [sym_interpolation_verbatim_start] = ACTIONS(3522), - [sym_interpolation_raw_start] = ACTIONS(3522), - [sym_raw_string_start] = ACTIONS(3522), + [sym_interpolation_regular_start] = ACTIONS(3518), + [sym_interpolation_verbatim_start] = ACTIONS(3518), + [sym_interpolation_raw_start] = ACTIONS(3518), + [sym_raw_string_start] = ACTIONS(3518), }, - [2145] = { - [sym_preproc_region] = STATE(2145), - [sym_preproc_endregion] = STATE(2145), - [sym_preproc_line] = STATE(2145), - [sym_preproc_pragma] = STATE(2145), - [sym_preproc_nullable] = STATE(2145), - [sym_preproc_error] = STATE(2145), - [sym_preproc_warning] = STATE(2145), - [sym_preproc_define] = STATE(2145), - [sym_preproc_undef] = STATE(2145), + [2123] = { + [sym_preproc_region] = STATE(2123), + [sym_preproc_endregion] = STATE(2123), + [sym_preproc_line] = STATE(2123), + [sym_preproc_pragma] = STATE(2123), + [sym_preproc_nullable] = STATE(2123), + [sym_preproc_error] = STATE(2123), + [sym_preproc_warning] = STATE(2123), + [sym_preproc_define] = STATE(2123), + [sym_preproc_undef] = STATE(2123), [sym__identifier_token] = ACTIONS(3524), [anon_sym_extern] = ACTIONS(3524), [anon_sym_alias] = ACTIONS(3524), @@ -404535,21 +401912,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), @@ -404571,6 +401939,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), @@ -404612,139 +401989,754 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3526), [sym_raw_string_start] = ACTIONS(3526), }, - [2146] = { - [sym_preproc_region] = STATE(2146), - [sym_preproc_endregion] = STATE(2146), - [sym_preproc_line] = STATE(2146), - [sym_preproc_pragma] = STATE(2146), - [sym_preproc_nullable] = STATE(2146), - [sym_preproc_error] = STATE(2146), - [sym_preproc_warning] = STATE(2146), - [sym_preproc_define] = STATE(2146), - [sym_preproc_undef] = STATE(2146), - [sym__identifier_token] = ACTIONS(3430), - [anon_sym_extern] = ACTIONS(3430), - [anon_sym_alias] = ACTIONS(3430), - [anon_sym_SEMI] = ACTIONS(3432), - [anon_sym_global] = ACTIONS(3430), - [anon_sym_using] = ACTIONS(3430), - [anon_sym_unsafe] = ACTIONS(3430), - [anon_sym_static] = ACTIONS(3430), - [anon_sym_LBRACK] = ACTIONS(3432), - [anon_sym_LPAREN] = ACTIONS(3432), - [anon_sym_return] = ACTIONS(3430), - [anon_sym_ref] = ACTIONS(3430), - [anon_sym_LBRACE] = ACTIONS(3432), - [anon_sym_RBRACE] = ACTIONS(3432), - [anon_sym_delegate] = ACTIONS(3430), - [anon_sym_public] = ACTIONS(3430), - [anon_sym_private] = ACTIONS(3430), - [anon_sym_readonly] = ACTIONS(3430), - [anon_sym_abstract] = ACTIONS(3430), - [anon_sym_async] = ACTIONS(3430), - [anon_sym_const] = ACTIONS(3430), - [anon_sym_file] = ACTIONS(3430), - [anon_sym_fixed] = ACTIONS(3430), - [anon_sym_internal] = ACTIONS(3430), - [anon_sym_new] = ACTIONS(3430), - [anon_sym_override] = ACTIONS(3430), - [anon_sym_partial] = ACTIONS(3430), - [anon_sym_protected] = ACTIONS(3430), - [anon_sym_required] = ACTIONS(3430), - [anon_sym_sealed] = ACTIONS(3430), - [anon_sym_virtual] = ACTIONS(3430), - [anon_sym_volatile] = ACTIONS(3430), - [anon_sym_where] = ACTIONS(3430), - [anon_sym_notnull] = ACTIONS(3430), - [anon_sym_unmanaged] = ACTIONS(3430), - [anon_sym_checked] = ACTIONS(3430), - [anon_sym_BANG] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3432), - [anon_sym_PLUS_PLUS] = ACTIONS(3432), - [anon_sym_DASH_DASH] = ACTIONS(3432), - [anon_sym_true] = ACTIONS(3430), - [anon_sym_false] = ACTIONS(3430), - [anon_sym_PLUS] = ACTIONS(3430), - [anon_sym_DASH] = ACTIONS(3430), - [anon_sym_STAR] = ACTIONS(3432), - [anon_sym_CARET] = ACTIONS(3432), - [anon_sym_AMP] = ACTIONS(3432), - [anon_sym_this] = ACTIONS(3430), - [anon_sym_scoped] = ACTIONS(3430), - [anon_sym_base] = ACTIONS(3430), - [anon_sym_var] = ACTIONS(3430), - [sym_predefined_type] = ACTIONS(3430), - [anon_sym_break] = ACTIONS(3430), - [anon_sym_unchecked] = ACTIONS(3430), - [anon_sym_continue] = ACTIONS(3430), - [anon_sym_do] = ACTIONS(3430), - [anon_sym_while] = ACTIONS(3430), - [anon_sym_for] = ACTIONS(3430), - [anon_sym_lock] = ACTIONS(3430), - [anon_sym_yield] = ACTIONS(3430), - [anon_sym_switch] = ACTIONS(3430), - [anon_sym_case] = ACTIONS(3430), - [anon_sym_default] = ACTIONS(3430), - [anon_sym_throw] = ACTIONS(3430), - [anon_sym_try] = ACTIONS(3430), - [anon_sym_when] = ACTIONS(3430), - [anon_sym_await] = ACTIONS(3430), - [anon_sym_foreach] = ACTIONS(3430), - [anon_sym_goto] = ACTIONS(3430), - [anon_sym_if] = ACTIONS(3430), - [anon_sym_else] = ACTIONS(3430), - [anon_sym_DOT_DOT] = ACTIONS(3432), - [anon_sym_from] = ACTIONS(3430), - [anon_sym_into] = ACTIONS(3430), - [anon_sym_join] = ACTIONS(3430), - [anon_sym_on] = ACTIONS(3430), - [anon_sym_equals] = ACTIONS(3430), - [anon_sym_let] = ACTIONS(3430), - [anon_sym_orderby] = ACTIONS(3430), - [anon_sym_ascending] = ACTIONS(3430), - [anon_sym_descending] = ACTIONS(3430), - [anon_sym_group] = ACTIONS(3430), - [anon_sym_by] = ACTIONS(3430), - [anon_sym_select] = ACTIONS(3430), - [anon_sym_stackalloc] = ACTIONS(3430), - [anon_sym_sizeof] = ACTIONS(3430), - [anon_sym_typeof] = ACTIONS(3430), - [anon_sym___makeref] = ACTIONS(3430), - [anon_sym___reftype] = ACTIONS(3430), - [anon_sym___refvalue] = ACTIONS(3430), - [sym_null_literal] = ACTIONS(3430), - [anon_sym_SQUOTE] = ACTIONS(3432), - [sym_integer_literal] = ACTIONS(3430), - [sym_real_literal] = ACTIONS(3432), - [anon_sym_DQUOTE] = ACTIONS(3432), - [sym_verbatim_string_literal] = ACTIONS(3432), - [sym_grit_metavariable] = ACTIONS(3432), - [aux_sym_preproc_if_token1] = ACTIONS(3432), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3432), - [sym_interpolation_verbatim_start] = ACTIONS(3432), - [sym_interpolation_raw_start] = ACTIONS(3432), - [sym_raw_string_start] = ACTIONS(3432), + [2124] = { + [sym_preproc_region] = STATE(2124), + [sym_preproc_endregion] = STATE(2124), + [sym_preproc_line] = STATE(2124), + [sym_preproc_pragma] = STATE(2124), + [sym_preproc_nullable] = STATE(2124), + [sym_preproc_error] = STATE(2124), + [sym_preproc_warning] = STATE(2124), + [sym_preproc_define] = STATE(2124), + [sym_preproc_undef] = STATE(2124), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, - [2147] = { - [sym_preproc_region] = STATE(2147), - [sym_preproc_endregion] = STATE(2147), - [sym_preproc_line] = STATE(2147), - [sym_preproc_pragma] = STATE(2147), - [sym_preproc_nullable] = STATE(2147), - [sym_preproc_error] = STATE(2147), - [sym_preproc_warning] = STATE(2147), - [sym_preproc_define] = STATE(2147), - [sym_preproc_undef] = STATE(2147), + [2125] = { + [sym_preproc_region] = STATE(2125), + [sym_preproc_endregion] = STATE(2125), + [sym_preproc_line] = STATE(2125), + [sym_preproc_pragma] = STATE(2125), + [sym_preproc_nullable] = STATE(2125), + [sym_preproc_error] = STATE(2125), + [sym_preproc_warning] = STATE(2125), + [sym_preproc_define] = STATE(2125), + [sym_preproc_undef] = STATE(2125), + [sym__identifier_token] = ACTIONS(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_ref] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_RBRACE] = ACTIONS(3446), + [anon_sym_delegate] = 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_case] = 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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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), + [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_ref] = ACTIONS(3448), + [anon_sym_LBRACE] = ACTIONS(3450), + [anon_sym_RBRACE] = ACTIONS(3450), + [anon_sym_delegate] = 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_case] = 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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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), @@ -404781,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), @@ -404817,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), @@ -404858,114 +402850,975 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3566), [sym_raw_string_start] = ACTIONS(3566), }, - [2148] = { - [sym_preproc_region] = STATE(2148), - [sym_preproc_endregion] = STATE(2148), - [sym_preproc_line] = STATE(2148), - [sym_preproc_pragma] = STATE(2148), - [sym_preproc_nullable] = STATE(2148), - [sym_preproc_error] = STATE(2148), - [sym_preproc_warning] = STATE(2148), - [sym_preproc_define] = STATE(2148), - [sym_preproc_undef] = STATE(2148), - [sym__identifier_token] = ACTIONS(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_ref] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3578), - [anon_sym_RBRACE] = ACTIONS(3578), - [anon_sym_delegate] = 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_case] = 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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [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), + [sym_preproc_endregion] = STATE(2138), + [sym_preproc_line] = STATE(2138), + [sym_preproc_pragma] = STATE(2138), + [sym_preproc_nullable] = STATE(2138), + [sym_preproc_error] = STATE(2138), + [sym_preproc_warning] = STATE(2138), + [sym_preproc_define] = STATE(2138), + [sym_preproc_undef] = STATE(2138), + [sym__identifier_token] = ACTIONS(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), @@ -404976,267 +403829,513 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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(3522), + [sym_interpolation_verbatim_start] = ACTIONS(3522), + [sym_interpolation_raw_start] = ACTIONS(3522), + [sym_raw_string_start] = ACTIONS(3522), }, - [2149] = { - [sym_preproc_region] = STATE(2149), - [sym_preproc_endregion] = STATE(2149), - [sym_preproc_line] = STATE(2149), - [sym_preproc_pragma] = STATE(2149), - [sym_preproc_nullable] = STATE(2149), - [sym_preproc_error] = STATE(2149), - [sym_preproc_warning] = STATE(2149), - [sym_preproc_define] = STATE(2149), - [sym_preproc_undef] = STATE(2149), - [sym__identifier_token] = ACTIONS(3434), - [anon_sym_extern] = ACTIONS(3434), - [anon_sym_alias] = ACTIONS(3434), - [anon_sym_SEMI] = ACTIONS(3436), - [anon_sym_global] = ACTIONS(3434), - [anon_sym_using] = ACTIONS(3434), - [anon_sym_unsafe] = ACTIONS(3434), - [anon_sym_static] = ACTIONS(3434), - [anon_sym_LBRACK] = ACTIONS(3436), - [anon_sym_LPAREN] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3434), - [anon_sym_ref] = ACTIONS(3434), - [anon_sym_LBRACE] = ACTIONS(3436), - [anon_sym_RBRACE] = ACTIONS(3436), - [anon_sym_delegate] = ACTIONS(3434), - [anon_sym_public] = ACTIONS(3434), - [anon_sym_private] = ACTIONS(3434), - [anon_sym_readonly] = ACTIONS(3434), - [anon_sym_abstract] = ACTIONS(3434), - [anon_sym_async] = ACTIONS(3434), - [anon_sym_const] = ACTIONS(3434), - [anon_sym_file] = ACTIONS(3434), - [anon_sym_fixed] = ACTIONS(3434), - [anon_sym_internal] = ACTIONS(3434), - [anon_sym_new] = ACTIONS(3434), - [anon_sym_override] = ACTIONS(3434), - [anon_sym_partial] = ACTIONS(3434), - [anon_sym_protected] = ACTIONS(3434), - [anon_sym_required] = ACTIONS(3434), - [anon_sym_sealed] = ACTIONS(3434), - [anon_sym_virtual] = ACTIONS(3434), - [anon_sym_volatile] = ACTIONS(3434), - [anon_sym_where] = ACTIONS(3434), - [anon_sym_notnull] = ACTIONS(3434), - [anon_sym_unmanaged] = ACTIONS(3434), - [anon_sym_checked] = ACTIONS(3434), - [anon_sym_BANG] = ACTIONS(3436), - [anon_sym_TILDE] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3436), - [anon_sym_DASH_DASH] = ACTIONS(3436), - [anon_sym_true] = ACTIONS(3434), - [anon_sym_false] = ACTIONS(3434), - [anon_sym_PLUS] = ACTIONS(3434), - [anon_sym_DASH] = ACTIONS(3434), - [anon_sym_STAR] = ACTIONS(3436), - [anon_sym_CARET] = ACTIONS(3436), - [anon_sym_AMP] = ACTIONS(3436), - [anon_sym_this] = ACTIONS(3434), - [anon_sym_scoped] = ACTIONS(3434), - [anon_sym_base] = ACTIONS(3434), - [anon_sym_var] = ACTIONS(3434), - [sym_predefined_type] = ACTIONS(3434), - [anon_sym_break] = ACTIONS(3434), - [anon_sym_unchecked] = ACTIONS(3434), - [anon_sym_continue] = ACTIONS(3434), - [anon_sym_do] = ACTIONS(3434), - [anon_sym_while] = ACTIONS(3434), - [anon_sym_for] = ACTIONS(3434), - [anon_sym_lock] = ACTIONS(3434), - [anon_sym_yield] = ACTIONS(3434), - [anon_sym_switch] = ACTIONS(3434), - [anon_sym_case] = ACTIONS(3434), - [anon_sym_default] = ACTIONS(3434), - [anon_sym_throw] = ACTIONS(3434), - [anon_sym_try] = ACTIONS(3434), - [anon_sym_when] = ACTIONS(3434), - [anon_sym_await] = ACTIONS(3434), - [anon_sym_foreach] = ACTIONS(3434), - [anon_sym_goto] = ACTIONS(3434), - [anon_sym_if] = ACTIONS(3434), - [anon_sym_else] = ACTIONS(3434), - [anon_sym_DOT_DOT] = ACTIONS(3436), - [anon_sym_from] = ACTIONS(3434), - [anon_sym_into] = ACTIONS(3434), - [anon_sym_join] = ACTIONS(3434), - [anon_sym_on] = ACTIONS(3434), - [anon_sym_equals] = ACTIONS(3434), - [anon_sym_let] = ACTIONS(3434), - [anon_sym_orderby] = ACTIONS(3434), - [anon_sym_ascending] = ACTIONS(3434), - [anon_sym_descending] = ACTIONS(3434), - [anon_sym_group] = ACTIONS(3434), - [anon_sym_by] = ACTIONS(3434), - [anon_sym_select] = ACTIONS(3434), - [anon_sym_stackalloc] = ACTIONS(3434), - [anon_sym_sizeof] = ACTIONS(3434), - [anon_sym_typeof] = ACTIONS(3434), - [anon_sym___makeref] = ACTIONS(3434), - [anon_sym___reftype] = ACTIONS(3434), - [anon_sym___refvalue] = ACTIONS(3434), - [sym_null_literal] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3436), - [sym_integer_literal] = ACTIONS(3434), - [sym_real_literal] = ACTIONS(3436), - [anon_sym_DQUOTE] = ACTIONS(3436), - [sym_verbatim_string_literal] = ACTIONS(3436), - [sym_grit_metavariable] = ACTIONS(3436), - [aux_sym_preproc_if_token1] = ACTIONS(3436), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3436), - [sym_interpolation_verbatim_start] = ACTIONS(3436), - [sym_interpolation_raw_start] = ACTIONS(3436), - [sym_raw_string_start] = ACTIONS(3436), + [2139] = { + [sym_preproc_region] = STATE(2139), + [sym_preproc_endregion] = STATE(2139), + [sym_preproc_line] = STATE(2139), + [sym_preproc_pragma] = STATE(2139), + [sym_preproc_nullable] = STATE(2139), + [sym_preproc_error] = STATE(2139), + [sym_preproc_warning] = STATE(2139), + [sym_preproc_define] = STATE(2139), + [sym_preproc_undef] = STATE(2139), + [sym__identifier_token] = ACTIONS(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), }, - [2150] = { - [sym_preproc_region] = STATE(2150), - [sym_preproc_endregion] = STATE(2150), - [sym_preproc_line] = STATE(2150), - [sym_preproc_pragma] = STATE(2150), - [sym_preproc_nullable] = STATE(2150), - [sym_preproc_error] = STATE(2150), - [sym_preproc_warning] = STATE(2150), - [sym_preproc_define] = STATE(2150), - [sym_preproc_undef] = STATE(2150), - [sym__identifier_token] = ACTIONS(3450), - [anon_sym_extern] = ACTIONS(3450), - [anon_sym_alias] = ACTIONS(3450), - [anon_sym_SEMI] = ACTIONS(3452), - [anon_sym_global] = ACTIONS(3450), - [anon_sym_using] = ACTIONS(3450), - [anon_sym_unsafe] = ACTIONS(3450), - [anon_sym_static] = ACTIONS(3450), - [anon_sym_LBRACK] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3452), - [anon_sym_return] = ACTIONS(3450), - [anon_sym_ref] = ACTIONS(3450), - [anon_sym_LBRACE] = ACTIONS(3452), - [anon_sym_RBRACE] = ACTIONS(3452), - [anon_sym_delegate] = ACTIONS(3450), - [anon_sym_public] = ACTIONS(3450), - [anon_sym_private] = ACTIONS(3450), - [anon_sym_readonly] = ACTIONS(3450), - [anon_sym_abstract] = ACTIONS(3450), - [anon_sym_async] = ACTIONS(3450), - [anon_sym_const] = ACTIONS(3450), - [anon_sym_file] = ACTIONS(3450), - [anon_sym_fixed] = ACTIONS(3450), - [anon_sym_internal] = ACTIONS(3450), - [anon_sym_new] = ACTIONS(3450), - [anon_sym_override] = ACTIONS(3450), - [anon_sym_partial] = ACTIONS(3450), - [anon_sym_protected] = ACTIONS(3450), - [anon_sym_required] = ACTIONS(3450), - [anon_sym_sealed] = ACTIONS(3450), - [anon_sym_virtual] = ACTIONS(3450), - [anon_sym_volatile] = ACTIONS(3450), - [anon_sym_where] = ACTIONS(3450), - [anon_sym_notnull] = ACTIONS(3450), - [anon_sym_unmanaged] = ACTIONS(3450), - [anon_sym_checked] = ACTIONS(3450), - [anon_sym_BANG] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3452), - [anon_sym_PLUS_PLUS] = ACTIONS(3452), - [anon_sym_DASH_DASH] = ACTIONS(3452), - [anon_sym_true] = ACTIONS(3450), - [anon_sym_false] = ACTIONS(3450), - [anon_sym_PLUS] = ACTIONS(3450), - [anon_sym_DASH] = ACTIONS(3450), - [anon_sym_STAR] = ACTIONS(3452), - [anon_sym_CARET] = ACTIONS(3452), - [anon_sym_AMP] = ACTIONS(3452), - [anon_sym_this] = ACTIONS(3450), - [anon_sym_scoped] = ACTIONS(3450), - [anon_sym_base] = ACTIONS(3450), - [anon_sym_var] = ACTIONS(3450), - [sym_predefined_type] = ACTIONS(3450), - [anon_sym_break] = ACTIONS(3450), - [anon_sym_unchecked] = ACTIONS(3450), - [anon_sym_continue] = ACTIONS(3450), - [anon_sym_do] = ACTIONS(3450), - [anon_sym_while] = ACTIONS(3450), - [anon_sym_for] = ACTIONS(3450), - [anon_sym_lock] = ACTIONS(3450), - [anon_sym_yield] = ACTIONS(3450), - [anon_sym_switch] = ACTIONS(3450), - [anon_sym_case] = ACTIONS(3450), - [anon_sym_default] = ACTIONS(3450), - [anon_sym_throw] = ACTIONS(3450), - [anon_sym_try] = ACTIONS(3450), - [anon_sym_when] = ACTIONS(3450), - [anon_sym_await] = ACTIONS(3450), - [anon_sym_foreach] = ACTIONS(3450), - [anon_sym_goto] = ACTIONS(3450), - [anon_sym_if] = ACTIONS(3450), - [anon_sym_else] = ACTIONS(3450), - [anon_sym_DOT_DOT] = ACTIONS(3452), - [anon_sym_from] = ACTIONS(3450), - [anon_sym_into] = ACTIONS(3450), - [anon_sym_join] = ACTIONS(3450), - [anon_sym_on] = ACTIONS(3450), - [anon_sym_equals] = ACTIONS(3450), - [anon_sym_let] = ACTIONS(3450), - [anon_sym_orderby] = ACTIONS(3450), - [anon_sym_ascending] = ACTIONS(3450), - [anon_sym_descending] = ACTIONS(3450), - [anon_sym_group] = ACTIONS(3450), - [anon_sym_by] = ACTIONS(3450), - [anon_sym_select] = ACTIONS(3450), - [anon_sym_stackalloc] = ACTIONS(3450), - [anon_sym_sizeof] = ACTIONS(3450), - [anon_sym_typeof] = ACTIONS(3450), - [anon_sym___makeref] = ACTIONS(3450), - [anon_sym___reftype] = ACTIONS(3450), - [anon_sym___refvalue] = ACTIONS(3450), - [sym_null_literal] = ACTIONS(3450), - [anon_sym_SQUOTE] = ACTIONS(3452), - [sym_integer_literal] = ACTIONS(3450), - [sym_real_literal] = ACTIONS(3452), - [anon_sym_DQUOTE] = ACTIONS(3452), - [sym_verbatim_string_literal] = ACTIONS(3452), - [sym_grit_metavariable] = ACTIONS(3452), - [aux_sym_preproc_if_token1] = ACTIONS(3452), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3452), - [sym_interpolation_verbatim_start] = ACTIONS(3452), - [sym_interpolation_raw_start] = ACTIONS(3452), - [sym_raw_string_start] = ACTIONS(3452), + [2140] = { + [sym_preproc_region] = STATE(2140), + [sym_preproc_endregion] = STATE(2140), + [sym_preproc_line] = STATE(2140), + [sym_preproc_pragma] = STATE(2140), + [sym_preproc_nullable] = STATE(2140), + [sym_preproc_error] = STATE(2140), + [sym_preproc_warning] = STATE(2140), + [sym_preproc_define] = STATE(2140), + [sym_preproc_undef] = STATE(2140), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, - [2151] = { - [sym_preproc_region] = STATE(2151), - [sym_preproc_endregion] = STATE(2151), - [sym_preproc_line] = STATE(2151), - [sym_preproc_pragma] = STATE(2151), - [sym_preproc_nullable] = STATE(2151), - [sym_preproc_error] = STATE(2151), - [sym_preproc_warning] = STATE(2151), - [sym_preproc_define] = STATE(2151), - [sym_preproc_undef] = STATE(2151), + [2141] = { + [sym_preproc_region] = STATE(2141), + [sym_preproc_endregion] = STATE(2141), + [sym_preproc_line] = STATE(2141), + [sym_preproc_pragma] = STATE(2141), + [sym_preproc_nullable] = STATE(2141), + [sym_preproc_error] = STATE(2141), + [sym_preproc_warning] = STATE(2141), + [sym_preproc_define] = STATE(2141), + [sym_preproc_undef] = STATE(2141), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [2142] = { + [sym_preproc_region] = STATE(2142), + [sym_preproc_endregion] = STATE(2142), + [sym_preproc_line] = STATE(2142), + [sym_preproc_pragma] = STATE(2142), + [sym_preproc_nullable] = STATE(2142), + [sym_preproc_error] = STATE(2142), + [sym_preproc_warning] = STATE(2142), + [sym_preproc_define] = STATE(2142), + [sym_preproc_undef] = STATE(2142), + [sym__identifier_token] = ACTIONS(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), + [sym_preproc_endregion] = STATE(2143), + [sym_preproc_line] = STATE(2143), + [sym_preproc_pragma] = STATE(2143), + [sym_preproc_nullable] = STATE(2143), + [sym_preproc_error] = STATE(2143), + [sym_preproc_warning] = STATE(2143), + [sym_preproc_define] = STATE(2143), + [sym_preproc_undef] = STATE(2143), [sym__identifier_token] = ACTIONS(3572), [anon_sym_extern] = ACTIONS(3572), [anon_sym_alias] = ACTIONS(3572), @@ -405273,21 +404372,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), @@ -405309,6 +404399,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), @@ -405350,16 +404449,385 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3574), [sym_raw_string_start] = ACTIONS(3574), }, - [2152] = { - [sym_preproc_region] = STATE(2152), - [sym_preproc_endregion] = STATE(2152), - [sym_preproc_line] = STATE(2152), - [sym_preproc_pragma] = STATE(2152), - [sym_preproc_nullable] = STATE(2152), - [sym_preproc_error] = STATE(2152), - [sym_preproc_warning] = STATE(2152), - [sym_preproc_define] = STATE(2152), - [sym_preproc_undef] = STATE(2152), + [2144] = { + [sym_preproc_region] = STATE(2144), + [sym_preproc_endregion] = STATE(2144), + [sym_preproc_line] = STATE(2144), + [sym_preproc_pragma] = STATE(2144), + [sym_preproc_nullable] = STATE(2144), + [sym_preproc_error] = STATE(2144), + [sym_preproc_warning] = STATE(2144), + [sym_preproc_define] = STATE(2144), + [sym_preproc_undef] = STATE(2144), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [2145] = { + [sym_preproc_region] = STATE(2145), + [sym_preproc_endregion] = STATE(2145), + [sym_preproc_line] = STATE(2145), + [sym_preproc_pragma] = STATE(2145), + [sym_preproc_nullable] = STATE(2145), + [sym_preproc_error] = STATE(2145), + [sym_preproc_warning] = STATE(2145), + [sym_preproc_define] = STATE(2145), + [sym_preproc_undef] = STATE(2145), + [sym__identifier_token] = ACTIONS(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), + [sym_preproc_endregion] = STATE(2146), + [sym_preproc_line] = STATE(2146), + [sym_preproc_pragma] = STATE(2146), + [sym_preproc_nullable] = STATE(2146), + [sym_preproc_error] = STATE(2146), + [sym_preproc_warning] = STATE(2146), + [sym_preproc_define] = STATE(2146), + [sym_preproc_undef] = STATE(2146), + [sym__identifier_token] = ACTIONS(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), + [sym_preproc_endregion] = STATE(2147), + [sym_preproc_line] = STATE(2147), + [sym_preproc_pragma] = STATE(2147), + [sym_preproc_nullable] = STATE(2147), + [sym_preproc_error] = STATE(2147), + [sym_preproc_warning] = STATE(2147), + [sym_preproc_define] = STATE(2147), + [sym_preproc_undef] = STATE(2147), [sym__identifier_token] = ACTIONS(3552), [anon_sym_extern] = ACTIONS(3552), [anon_sym_alias] = ACTIONS(3552), @@ -405396,21 +404864,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), @@ -405432,6 +404891,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), @@ -405473,508 +404941,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3554), [sym_raw_string_start] = ACTIONS(3554), }, - [2153] = { - [sym_preproc_region] = STATE(2153), - [sym_preproc_endregion] = STATE(2153), - [sym_preproc_line] = STATE(2153), - [sym_preproc_pragma] = STATE(2153), - [sym_preproc_nullable] = STATE(2153), - [sym_preproc_error] = STATE(2153), - [sym_preproc_warning] = STATE(2153), - [sym_preproc_define] = STATE(2153), - [sym_preproc_undef] = STATE(2153), - [sym__identifier_token] = ACTIONS(3454), - [anon_sym_extern] = ACTIONS(3454), - [anon_sym_alias] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3456), - [anon_sym_global] = ACTIONS(3454), - [anon_sym_using] = ACTIONS(3454), - [anon_sym_unsafe] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(3456), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_ref] = ACTIONS(3454), - [anon_sym_LBRACE] = ACTIONS(3456), - [anon_sym_RBRACE] = ACTIONS(3456), - [anon_sym_delegate] = ACTIONS(3454), - [anon_sym_public] = ACTIONS(3454), - [anon_sym_private] = ACTIONS(3454), - [anon_sym_readonly] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(3454), - [anon_sym_async] = ACTIONS(3454), - [anon_sym_const] = ACTIONS(3454), - [anon_sym_file] = ACTIONS(3454), - [anon_sym_fixed] = ACTIONS(3454), - [anon_sym_internal] = ACTIONS(3454), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_override] = ACTIONS(3454), - [anon_sym_partial] = ACTIONS(3454), - [anon_sym_protected] = ACTIONS(3454), - [anon_sym_required] = ACTIONS(3454), - [anon_sym_sealed] = ACTIONS(3454), - [anon_sym_virtual] = ACTIONS(3454), - [anon_sym_volatile] = ACTIONS(3454), - [anon_sym_where] = ACTIONS(3454), - [anon_sym_notnull] = ACTIONS(3454), - [anon_sym_unmanaged] = ACTIONS(3454), - [anon_sym_checked] = ACTIONS(3454), - [anon_sym_BANG] = ACTIONS(3456), - [anon_sym_TILDE] = ACTIONS(3456), - [anon_sym_PLUS_PLUS] = ACTIONS(3456), - [anon_sym_DASH_DASH] = ACTIONS(3456), - [anon_sym_true] = ACTIONS(3454), - [anon_sym_false] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_STAR] = ACTIONS(3456), - [anon_sym_CARET] = ACTIONS(3456), - [anon_sym_AMP] = ACTIONS(3456), - [anon_sym_this] = ACTIONS(3454), - [anon_sym_scoped] = ACTIONS(3454), - [anon_sym_base] = ACTIONS(3454), - [anon_sym_var] = ACTIONS(3454), - [sym_predefined_type] = ACTIONS(3454), - [anon_sym_break] = ACTIONS(3454), - [anon_sym_unchecked] = ACTIONS(3454), - [anon_sym_continue] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_lock] = ACTIONS(3454), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_switch] = ACTIONS(3454), - [anon_sym_case] = ACTIONS(3454), - [anon_sym_default] = ACTIONS(3454), - [anon_sym_throw] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_when] = ACTIONS(3454), - [anon_sym_await] = ACTIONS(3454), - [anon_sym_foreach] = ACTIONS(3454), - [anon_sym_goto] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_else] = ACTIONS(3454), - [anon_sym_DOT_DOT] = ACTIONS(3456), - [anon_sym_from] = ACTIONS(3454), - [anon_sym_into] = ACTIONS(3454), - [anon_sym_join] = ACTIONS(3454), - [anon_sym_on] = ACTIONS(3454), - [anon_sym_equals] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_orderby] = ACTIONS(3454), - [anon_sym_ascending] = ACTIONS(3454), - [anon_sym_descending] = ACTIONS(3454), - [anon_sym_group] = ACTIONS(3454), - [anon_sym_by] = ACTIONS(3454), - [anon_sym_select] = ACTIONS(3454), - [anon_sym_stackalloc] = ACTIONS(3454), - [anon_sym_sizeof] = ACTIONS(3454), - [anon_sym_typeof] = ACTIONS(3454), - [anon_sym___makeref] = ACTIONS(3454), - [anon_sym___reftype] = ACTIONS(3454), - [anon_sym___refvalue] = ACTIONS(3454), - [sym_null_literal] = ACTIONS(3454), - [anon_sym_SQUOTE] = ACTIONS(3456), - [sym_integer_literal] = ACTIONS(3454), - [sym_real_literal] = ACTIONS(3456), - [anon_sym_DQUOTE] = ACTIONS(3456), - [sym_verbatim_string_literal] = ACTIONS(3456), - [sym_grit_metavariable] = ACTIONS(3456), - [aux_sym_preproc_if_token1] = ACTIONS(3456), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3456), - [sym_interpolation_verbatim_start] = ACTIONS(3456), - [sym_interpolation_raw_start] = ACTIONS(3456), - [sym_raw_string_start] = ACTIONS(3456), - }, - [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(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [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(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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), - }, - [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(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), + [2148] = { + [sym_preproc_region] = STATE(2148), + [sym_preproc_endregion] = STATE(2148), + [sym_preproc_line] = STATE(2148), + [sym_preproc_pragma] = STATE(2148), + [sym_preproc_nullable] = STATE(2148), + [sym_preproc_error] = STATE(2148), + [sym_preproc_warning] = STATE(2148), + [sym_preproc_define] = STATE(2148), + [sym_preproc_undef] = STATE(2148), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, - [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), + [2149] = { + [sym_preproc_region] = STATE(2149), + [sym_preproc_endregion] = STATE(2149), + [sym_preproc_line] = STATE(2149), + [sym_preproc_pragma] = STATE(2149), + [sym_preproc_nullable] = STATE(2149), + [sym_preproc_error] = STATE(2149), + [sym_preproc_warning] = STATE(2149), + [sym_preproc_define] = STATE(2149), + [sym_preproc_undef] = STATE(2149), [sym__identifier_token] = ACTIONS(3536), [anon_sym_extern] = ACTIONS(3536), [anon_sym_alias] = ACTIONS(3536), @@ -405995,330 +405094,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), - }, - [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(3438), - [anon_sym_extern] = ACTIONS(3438), - [anon_sym_alias] = ACTIONS(3438), - [anon_sym_SEMI] = ACTIONS(3440), - [anon_sym_global] = ACTIONS(3438), - [anon_sym_using] = ACTIONS(3438), - [anon_sym_unsafe] = ACTIONS(3438), - [anon_sym_static] = ACTIONS(3438), - [anon_sym_LBRACK] = ACTIONS(3440), - [anon_sym_LPAREN] = ACTIONS(3440), - [anon_sym_return] = ACTIONS(3438), - [anon_sym_ref] = ACTIONS(3438), - [anon_sym_LBRACE] = ACTIONS(3440), - [anon_sym_RBRACE] = ACTIONS(3440), - [anon_sym_delegate] = ACTIONS(3438), - [anon_sym_public] = ACTIONS(3438), - [anon_sym_private] = ACTIONS(3438), - [anon_sym_readonly] = ACTIONS(3438), - [anon_sym_abstract] = ACTIONS(3438), - [anon_sym_async] = ACTIONS(3438), - [anon_sym_const] = ACTIONS(3438), - [anon_sym_file] = ACTIONS(3438), - [anon_sym_fixed] = ACTIONS(3438), - [anon_sym_internal] = ACTIONS(3438), - [anon_sym_new] = ACTIONS(3438), - [anon_sym_override] = ACTIONS(3438), - [anon_sym_partial] = ACTIONS(3438), - [anon_sym_protected] = ACTIONS(3438), - [anon_sym_required] = ACTIONS(3438), - [anon_sym_sealed] = ACTIONS(3438), - [anon_sym_virtual] = ACTIONS(3438), - [anon_sym_volatile] = ACTIONS(3438), - [anon_sym_where] = ACTIONS(3438), - [anon_sym_notnull] = ACTIONS(3438), - [anon_sym_unmanaged] = ACTIONS(3438), - [anon_sym_checked] = ACTIONS(3438), - [anon_sym_BANG] = ACTIONS(3440), - [anon_sym_TILDE] = ACTIONS(3440), - [anon_sym_PLUS_PLUS] = ACTIONS(3440), - [anon_sym_DASH_DASH] = ACTIONS(3440), - [anon_sym_true] = ACTIONS(3438), - [anon_sym_false] = ACTIONS(3438), - [anon_sym_PLUS] = ACTIONS(3438), - [anon_sym_DASH] = ACTIONS(3438), - [anon_sym_STAR] = ACTIONS(3440), - [anon_sym_CARET] = ACTIONS(3440), - [anon_sym_AMP] = ACTIONS(3440), - [anon_sym_this] = ACTIONS(3438), - [anon_sym_scoped] = ACTIONS(3438), - [anon_sym_base] = ACTIONS(3438), - [anon_sym_var] = ACTIONS(3438), - [sym_predefined_type] = ACTIONS(3438), - [anon_sym_break] = ACTIONS(3438), - [anon_sym_unchecked] = ACTIONS(3438), - [anon_sym_continue] = ACTIONS(3438), - [anon_sym_do] = ACTIONS(3438), - [anon_sym_while] = ACTIONS(3438), - [anon_sym_for] = ACTIONS(3438), - [anon_sym_lock] = ACTIONS(3438), - [anon_sym_yield] = ACTIONS(3438), - [anon_sym_switch] = ACTIONS(3438), - [anon_sym_case] = ACTIONS(3438), - [anon_sym_default] = ACTIONS(3438), - [anon_sym_throw] = ACTIONS(3438), - [anon_sym_try] = ACTIONS(3438), - [anon_sym_when] = ACTIONS(3438), - [anon_sym_await] = ACTIONS(3438), - [anon_sym_foreach] = ACTIONS(3438), - [anon_sym_goto] = ACTIONS(3438), - [anon_sym_if] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3438), - [anon_sym_DOT_DOT] = ACTIONS(3440), - [anon_sym_from] = ACTIONS(3438), - [anon_sym_into] = ACTIONS(3438), - [anon_sym_join] = ACTIONS(3438), - [anon_sym_on] = ACTIONS(3438), - [anon_sym_equals] = ACTIONS(3438), - [anon_sym_let] = ACTIONS(3438), - [anon_sym_orderby] = ACTIONS(3438), - [anon_sym_ascending] = ACTIONS(3438), - [anon_sym_descending] = ACTIONS(3438), - [anon_sym_group] = ACTIONS(3438), - [anon_sym_by] = ACTIONS(3438), - [anon_sym_select] = ACTIONS(3438), - [anon_sym_stackalloc] = ACTIONS(3438), - [anon_sym_sizeof] = ACTIONS(3438), - [anon_sym_typeof] = ACTIONS(3438), - [anon_sym___makeref] = ACTIONS(3438), - [anon_sym___reftype] = ACTIONS(3438), - [anon_sym___refvalue] = ACTIONS(3438), - [sym_null_literal] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(3440), - [sym_integer_literal] = ACTIONS(3438), - [sym_real_literal] = ACTIONS(3440), - [anon_sym_DQUOTE] = ACTIONS(3440), - [sym_verbatim_string_literal] = ACTIONS(3440), - [sym_grit_metavariable] = ACTIONS(3440), - [aux_sym_preproc_if_token1] = ACTIONS(3440), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3440), - [sym_interpolation_verbatim_start] = ACTIONS(3440), - [sym_interpolation_raw_start] = ACTIONS(3440), - [sym_raw_string_start] = ACTIONS(3440), - }, - [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(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), + [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), @@ -406329,21 +405182,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(3542), - [sym_interpolation_verbatim_start] = ACTIONS(3542), - [sym_interpolation_raw_start] = ACTIONS(3542), - [sym_raw_string_start] = ACTIONS(3542), + [sym_interpolation_regular_start] = ACTIONS(3538), + [sym_interpolation_verbatim_start] = ACTIONS(3538), + [sym_interpolation_raw_start] = ACTIONS(3538), + [sym_raw_string_start] = ACTIONS(3538), }, - [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), + [2150] = { + [sym_preproc_region] = STATE(2150), + [sym_preproc_endregion] = STATE(2150), + [sym_preproc_line] = STATE(2150), + [sym_preproc_pragma] = STATE(2150), + [sym_preproc_nullable] = STATE(2150), + [sym_preproc_error] = STATE(2150), + [sym_preproc_warning] = STATE(2150), + [sym_preproc_define] = STATE(2150), + [sym_preproc_undef] = STATE(2150), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [2151] = { + [sym_preproc_region] = STATE(2151), + [sym_preproc_endregion] = STATE(2151), + [sym_preproc_line] = STATE(2151), + [sym_preproc_pragma] = STATE(2151), + [sym_preproc_nullable] = STATE(2151), + [sym_preproc_error] = STATE(2151), + [sym_preproc_warning] = STATE(2151), + [sym_preproc_define] = STATE(2151), + [sym_preproc_undef] = STATE(2151), [sym__identifier_token] = ACTIONS(3390), [anon_sym_extern] = ACTIONS(3390), [anon_sym_alias] = ACTIONS(3390), @@ -406380,21 +405356,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), @@ -406416,6 +405383,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), @@ -406457,139 +405433,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3392), [sym_raw_string_start] = ACTIONS(3392), }, - [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(3442), - [anon_sym_extern] = ACTIONS(3442), - [anon_sym_alias] = ACTIONS(3442), - [anon_sym_SEMI] = ACTIONS(3444), - [anon_sym_global] = ACTIONS(3442), - [anon_sym_using] = ACTIONS(3442), - [anon_sym_unsafe] = ACTIONS(3442), - [anon_sym_static] = ACTIONS(3442), - [anon_sym_LBRACK] = ACTIONS(3444), - [anon_sym_LPAREN] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3442), - [anon_sym_ref] = ACTIONS(3442), - [anon_sym_LBRACE] = ACTIONS(3444), - [anon_sym_RBRACE] = ACTIONS(3444), - [anon_sym_delegate] = ACTIONS(3442), - [anon_sym_public] = ACTIONS(3442), - [anon_sym_private] = ACTIONS(3442), - [anon_sym_readonly] = ACTIONS(3442), - [anon_sym_abstract] = ACTIONS(3442), - [anon_sym_async] = ACTIONS(3442), - [anon_sym_const] = ACTIONS(3442), - [anon_sym_file] = ACTIONS(3442), - [anon_sym_fixed] = ACTIONS(3442), - [anon_sym_internal] = ACTIONS(3442), - [anon_sym_new] = ACTIONS(3442), - [anon_sym_override] = ACTIONS(3442), - [anon_sym_partial] = ACTIONS(3442), - [anon_sym_protected] = ACTIONS(3442), - [anon_sym_required] = ACTIONS(3442), - [anon_sym_sealed] = ACTIONS(3442), - [anon_sym_virtual] = ACTIONS(3442), - [anon_sym_volatile] = ACTIONS(3442), - [anon_sym_where] = ACTIONS(3442), - [anon_sym_notnull] = ACTIONS(3442), - [anon_sym_unmanaged] = ACTIONS(3442), - [anon_sym_checked] = ACTIONS(3442), - [anon_sym_BANG] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3444), - [anon_sym_true] = ACTIONS(3442), - [anon_sym_false] = ACTIONS(3442), - [anon_sym_PLUS] = ACTIONS(3442), - [anon_sym_DASH] = ACTIONS(3442), - [anon_sym_STAR] = ACTIONS(3444), - [anon_sym_CARET] = ACTIONS(3444), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym_this] = ACTIONS(3442), - [anon_sym_scoped] = ACTIONS(3442), - [anon_sym_base] = ACTIONS(3442), - [anon_sym_var] = ACTIONS(3442), - [sym_predefined_type] = ACTIONS(3442), - [anon_sym_break] = ACTIONS(3442), - [anon_sym_unchecked] = ACTIONS(3442), - [anon_sym_continue] = ACTIONS(3442), - [anon_sym_do] = ACTIONS(3442), - [anon_sym_while] = ACTIONS(3442), - [anon_sym_for] = ACTIONS(3442), - [anon_sym_lock] = ACTIONS(3442), - [anon_sym_yield] = ACTIONS(3442), - [anon_sym_switch] = ACTIONS(3442), - [anon_sym_case] = ACTIONS(3442), - [anon_sym_default] = ACTIONS(3442), - [anon_sym_throw] = ACTIONS(3442), - [anon_sym_try] = ACTIONS(3442), - [anon_sym_when] = ACTIONS(3442), - [anon_sym_await] = ACTIONS(3442), - [anon_sym_foreach] = ACTIONS(3442), - [anon_sym_goto] = ACTIONS(3442), - [anon_sym_if] = ACTIONS(3442), - [anon_sym_else] = ACTIONS(3442), - [anon_sym_DOT_DOT] = ACTIONS(3444), - [anon_sym_from] = ACTIONS(3442), - [anon_sym_into] = ACTIONS(3442), - [anon_sym_join] = ACTIONS(3442), - [anon_sym_on] = ACTIONS(3442), - [anon_sym_equals] = ACTIONS(3442), - [anon_sym_let] = ACTIONS(3442), - [anon_sym_orderby] = ACTIONS(3442), - [anon_sym_ascending] = ACTIONS(3442), - [anon_sym_descending] = ACTIONS(3442), - [anon_sym_group] = ACTIONS(3442), - [anon_sym_by] = ACTIONS(3442), - [anon_sym_select] = ACTIONS(3442), - [anon_sym_stackalloc] = ACTIONS(3442), - [anon_sym_sizeof] = ACTIONS(3442), - [anon_sym_typeof] = ACTIONS(3442), - [anon_sym___makeref] = ACTIONS(3442), - [anon_sym___reftype] = ACTIONS(3442), - [anon_sym___refvalue] = ACTIONS(3442), - [sym_null_literal] = ACTIONS(3442), - [anon_sym_SQUOTE] = ACTIONS(3444), - [sym_integer_literal] = ACTIONS(3442), - [sym_real_literal] = ACTIONS(3444), - [anon_sym_DQUOTE] = ACTIONS(3444), - [sym_verbatim_string_literal] = ACTIONS(3444), - [sym_grit_metavariable] = ACTIONS(3444), - [aux_sym_preproc_if_token1] = ACTIONS(3444), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(3444), - [sym_interpolation_verbatim_start] = ACTIONS(3444), - [sym_interpolation_raw_start] = ACTIONS(3444), - [sym_raw_string_start] = ACTIONS(3444), - }, - [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), + [2152] = { + [sym_preproc_region] = STATE(2152), + [sym_preproc_endregion] = STATE(2152), + [sym_preproc_line] = STATE(2152), + [sym_preproc_pragma] = STATE(2152), + [sym_preproc_nullable] = STATE(2152), + [sym_preproc_error] = STATE(2152), + [sym_preproc_warning] = STATE(2152), + [sym_preproc_define] = STATE(2152), + [sym_preproc_undef] = STATE(2152), [sym__identifier_token] = ACTIONS(3544), [anon_sym_extern] = ACTIONS(3544), [anon_sym_alias] = ACTIONS(3544), @@ -406626,21 +405479,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), @@ -406662,6 +405506,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), @@ -406703,16 +405556,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(3546), [sym_raw_string_start] = ACTIONS(3546), }, - [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), + [2153] = { + [sym_preproc_region] = STATE(2153), + [sym_preproc_endregion] = STATE(2153), + [sym_preproc_line] = STATE(2153), + [sym_preproc_pragma] = STATE(2153), + [sym_preproc_nullable] = STATE(2153), + [sym_preproc_error] = STATE(2153), + [sym_preproc_warning] = STATE(2153), + [sym_preproc_define] = STATE(2153), + [sym_preproc_undef] = STATE(2153), + [sym__identifier_token] = ACTIONS(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_ref] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_RBRACE] = ACTIONS(3578), + [anon_sym_delegate] = 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_case] = 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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [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), @@ -406749,21 +405725,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), @@ -406785,6 +405752,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), @@ -406826,16 +405802,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), }, - [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), + [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), @@ -406872,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), @@ -406908,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), @@ -406949,117 +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), }, - [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(3700), - [anon_sym_global] = ACTIONS(3735), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3740), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_RBRACE] = ACTIONS(3700), - [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(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3735), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3735), - [anon_sym_unmanaged] = ACTIONS(3735), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3735), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3735), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3735), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3735), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3740), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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), @@ -407070,17 +406043,1005 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, - [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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + }, + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [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), @@ -407117,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), @@ -407152,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), @@ -407193,6 +407154,128 @@ 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_preproc_region] = STATE(2167), [sym_preproc_endregion] = STATE(2167), @@ -407239,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), @@ -407273,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), @@ -407316,23 +407399,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [2168] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6381), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6087), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -407342,98 +407425,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2168), [sym_preproc_define] = STATE(2168), [sym_preproc_undef] = STATE(2168), - [sym__identifier_token] = ACTIONS(3694), - [anon_sym_alias] = ACTIONS(3697), - [anon_sym_global] = ACTIONS(3697), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3704), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3697), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3697), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3697), - [anon_sym_unmanaged] = ACTIONS(3697), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3711), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3714), + [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(3697), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3697), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3697), - [anon_sym_into] = ACTIONS(3697), - [anon_sym_join] = ACTIONS(3697), - [anon_sym_on] = ACTIONS(3697), - [anon_sym_equals] = ACTIONS(3697), - [anon_sym_let] = ACTIONS(3697), - [anon_sym_orderby] = ACTIONS(3697), - [anon_sym_ascending] = ACTIONS(3697), - [anon_sym_descending] = ACTIONS(3697), - [anon_sym_group] = ACTIONS(3697), - [anon_sym_by] = ACTIONS(3697), - [anon_sym_select] = ACTIONS(3697), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3717), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3700), + [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), @@ -407480,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), @@ -407514,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), @@ -407600,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), @@ -407634,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), @@ -407720,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), @@ -407754,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), @@ -407840,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), @@ -407874,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), @@ -407960,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), @@ -407994,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), @@ -408080,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), @@ -408114,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), @@ -408200,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), @@ -408234,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), @@ -408320,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), @@ -408354,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), @@ -408440,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), @@ -408474,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), @@ -408560,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), @@ -408594,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), @@ -408680,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), @@ -408714,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), @@ -408800,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), @@ -408834,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), @@ -408920,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), @@ -408954,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), @@ -409040,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), @@ -409074,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), @@ -409160,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), @@ -409194,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), @@ -409280,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), @@ -409314,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), @@ -409400,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), @@ -409434,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), @@ -409520,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), @@ -409554,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), @@ -409640,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), @@ -409674,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), @@ -409760,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), @@ -409794,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), @@ -409880,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), @@ -409914,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), @@ -410000,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), @@ -410034,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), @@ -410120,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), @@ -410154,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), @@ -410240,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), @@ -410274,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), @@ -410360,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), @@ -410394,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), @@ -410480,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), @@ -410514,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), @@ -410600,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), @@ -410634,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), @@ -410720,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), @@ -410754,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), @@ -410796,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(5810), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_ref_type] = STATE(2386), - [sym__scoped_base_type] = STATE(2366), - [sym_identifier] = STATE(5575), - [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), @@ -410815,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(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3873), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_delegate] = ACTIONS(2919), - [anon_sym_readonly] = ACTIONS(2919), - [anon_sym_file] = ACTIONS(3869), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_out] = ACTIONS(2919), - [anon_sym_where] = ACTIONS(3869), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3869), - [anon_sym_unmanaged] = ACTIONS(3869), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_this] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3869), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3869), - [sym_predefined_type] = ACTIONS(2919), - [anon_sym_yield] = ACTIONS(3869), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3869), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [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), @@ -410912,15 +410995,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2198] = { - [sym__name] = STATE(2455), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2445), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2433), - [sym_ref_type] = STATE(2386), - [sym__scoped_base_type] = STATE(2366), - [sym_identifier] = STATE(2399), - [sym__reserved_identifier] = STATE(2400), + [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), @@ -410930,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(3700), - [anon_sym_global] = ACTIONS(3883), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3883), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3883), - [anon_sym_unmanaged] = ACTIONS(3883), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3883), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3883), - [anon_sym_yield] = ACTIONS(3883), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3883), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3888), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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), @@ -411028,15 +411111,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2199] = { - [sym__name] = STATE(5810), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_ref_type] = STATE(2386), - [sym__scoped_base_type] = STATE(2366), - [sym_identifier] = STATE(5575), - [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), @@ -411048,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(3700), + [anon_sym_SEMI] = ACTIONS(3694), [anon_sym_global] = ACTIONS(3894), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_RBRACE] = ACTIONS(3700), + [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(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), [anon_sym_where] = ACTIONS(3894), - [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3696), [anon_sym_notnull] = ACTIONS(3894), [anon_sym_unmanaged] = ACTIONS(3894), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3696), [anon_sym_scoped] = ACTIONS(3894), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), + [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(3702), + [anon_sym_switch] = ACTIONS(3696), [anon_sym_when] = ACTIONS(3894), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), + [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), @@ -411123,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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), + [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(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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), @@ -411143,15 +411226,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2200] = { - [sym__name] = STATE(5810), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_ref_type] = STATE(2386), - [sym__scoped_base_type] = STATE(2366), - [sym_identifier] = STATE(5575), - [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), @@ -411164,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(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), + [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(3700), - [anon_sym_RBRACE] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), [anon_sym_file] = ACTIONS(3894), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), [anon_sym_where] = ACTIONS(3894), - [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3696), [anon_sym_notnull] = ACTIONS(3894), [anon_sym_unmanaged] = ACTIONS(3894), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3696), [anon_sym_scoped] = ACTIONS(3894), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), + [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(3702), + [anon_sym_switch] = ACTIONS(3696), [anon_sym_when] = ACTIONS(3894), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), + [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), @@ -411238,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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), + [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), @@ -411255,10 +411338,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2201] = { - [sym__variable_designation] = STATE(4902), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -411272,7 +411355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3906), [anon_sym_SEMI] = ACTIONS(3910), [anon_sym_global] = ACTIONS(3906), - [anon_sym_EQ] = ACTIONS(3702), + [anon_sym_EQ] = ACTIONS(3696), [anon_sym_LBRACK] = ACTIONS(3910), [anon_sym_COLON] = ACTIONS(3913), [anon_sym_COMMA] = ACTIONS(3910), @@ -411289,51 +411372,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(3913), [anon_sym_notnull] = ACTIONS(3906), [anon_sym_unmanaged] = ACTIONS(3906), - [anon_sym_BANG] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_GT_EQ] = ACTIONS(3910), - [anon_sym_LT_EQ] = ACTIONS(3910), [anon_sym_DOT] = ACTIONS(3913), [anon_sym_scoped] = ACTIONS(3906), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), + [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(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), + [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), @@ -411366,15 +411449,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2202] = { - [sym__name] = STATE(2731), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2445), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2433), - [sym_ref_type] = STATE(2386), - [sym__scoped_base_type] = STATE(2366), - [sym_identifier] = STATE(2636), - [sym__reserved_identifier] = STATE(2400), + [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), @@ -411384,87 +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(3880), - [anon_sym_alias] = ACTIONS(3883), - [anon_sym_global] = ACTIONS(3883), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), + [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(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3883), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3883), - [anon_sym_unmanaged] = ACTIONS(3883), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3883), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3883), - [anon_sym_yield] = ACTIONS(3883), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3883), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3888), + [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), @@ -411477,10 +411560,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2203] = { - [sym__variable_designation] = STATE(5009), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -411490,16 +411578,231 @@ 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(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_RPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(3930), + [anon_sym_LBRACE] = ACTIONS(3694), + [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), + [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), + [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), + }, + [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__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), + [sym_preproc_pragma] = STATE(2205), + [sym_preproc_nullable] = STATE(2205), + [sym_preproc_error] = STATE(2205), + [sym_preproc_warning] = STATE(2205), + [sym_preproc_define] = STATE(2205), + [sym_preproc_undef] = STATE(2205), [sym__identifier_token] = ACTIONS(3902), [anon_sym_alias] = ACTIONS(3906), [anon_sym_SEMI] = ACTIONS(3910), [anon_sym_global] = ACTIONS(3906), - [anon_sym_EQ] = ACTIONS(3702), + [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(3930), + [anon_sym_LPAREN] = ACTIONS(3943), [anon_sym_RPAREN] = ACTIONS(3910), [anon_sym_LBRACE] = ACTIONS(3910), [anon_sym_RBRACE] = ACTIONS(3910), @@ -411510,51 +411813,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(3913), [anon_sym_notnull] = ACTIONS(3906), [anon_sym_unmanaged] = ACTIONS(3906), - [anon_sym_BANG] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_GT_EQ] = ACTIONS(3910), - [anon_sym_LT_EQ] = ACTIONS(3910), [anon_sym_DOT] = ACTIONS(3913), [anon_sym_scoped] = ACTIONS(3906), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), + [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(3934), + [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(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), + [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), @@ -411586,105 +411889,104 @@ 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(5810), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_ref_type] = STATE(2386), - [sym__scoped_base_type] = STATE(2366), - [sym_identifier] = STATE(5575), - [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(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(3938), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3894), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3894), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3894), - [anon_sym_unmanaged] = ACTIONS(3894), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3894), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3894), - [anon_sym_yield] = ACTIONS(3894), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3894), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3897), + [2206] = { + [sym_preproc_region] = STATE(2206), + [sym_preproc_endregion] = STATE(2206), + [sym_preproc_line] = STATE(2206), + [sym_preproc_pragma] = STATE(2206), + [sym_preproc_nullable] = STATE(2206), + [sym_preproc_error] = STATE(2206), + [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), @@ -411696,126 +411998,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2205] = { - [sym__name] = STATE(3012), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(3005), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(3044), - [sym_ref_type] = STATE(2999), - [sym__scoped_base_type] = STATE(2989), - [sym_identifier] = STATE(2652), - [sym__reserved_identifier] = STATE(2755), - [sym_preproc_region] = STATE(2205), - [sym_preproc_endregion] = STATE(2205), - [sym_preproc_line] = STATE(2205), - [sym_preproc_pragma] = STATE(2205), - [sym_preproc_nullable] = STATE(2205), - [sym_preproc_error] = STATE(2205), - [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(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(3946), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3943), - [anon_sym_unmanaged] = ACTIONS(3943), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3943), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3943), - [anon_sym_yield] = ACTIONS(3943), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3943), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [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(3700), - }, - [2206] = { - [sym_preproc_region] = STATE(2206), - [sym_preproc_endregion] = STATE(2206), - [sym_preproc_line] = STATE(2206), - [sym_preproc_pragma] = STATE(2206), - [sym_preproc_nullable] = STATE(2206), - [sym_preproc_error] = STATE(2206), - [sym_preproc_warning] = STATE(2206), - [sym_preproc_define] = STATE(2206), - [sym_preproc_undef] = STATE(2206), + [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), @@ -411838,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), @@ -411881,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), @@ -411915,117 +412107,7 @@ 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(3702), - [anon_sym_alias] = ACTIONS(3702), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_global] = ACTIONS(3702), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3702), - [anon_sym_unmanaged] = ACTIONS(3702), - [anon_sym_operator] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_this] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3702), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3702), - [anon_sym_join] = ACTIONS(3702), - [anon_sym_on] = ACTIONS(3702), - [anon_sym_equals] = ACTIONS(3702), - [anon_sym_let] = ACTIONS(3702), - [anon_sym_orderby] = ACTIONS(3702), - [anon_sym_ascending] = ACTIONS(3702), - [anon_sym_descending] = ACTIONS(3702), - [anon_sym_group] = ACTIONS(3702), - [anon_sym_by] = ACTIONS(3702), - [anon_sym_select] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3700), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_type_argument_list] = STATE(2216), [sym_preproc_region] = STATE(2208), [sym_preproc_endregion] = STATE(2208), [sym_preproc_line] = STATE(2208), @@ -412041,7 +412123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_global] = ACTIONS(3951), [anon_sym_EQ] = ACTIONS(3951), [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3951), + [anon_sym_COLON] = ACTIONS(3953), [anon_sym_COMMA] = ACTIONS(3953), [anon_sym_RBRACK] = ACTIONS(3953), [anon_sym_LPAREN] = ACTIONS(3953), @@ -412049,41 +412131,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(3953), [anon_sym_RBRACE] = ACTIONS(3953), [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3955), + [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(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_operator] = ACTIONS(3951), + [anon_sym_this] = ACTIONS(3951), [anon_sym_DOT] = ACTIONS(3951), [anon_sym_scoped] = ACTIONS(3951), - [anon_sym_EQ_GT] = ACTIONS(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), + [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), @@ -412098,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), @@ -412133,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), @@ -412142,184 +412234,66 @@ 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(3962), - [anon_sym_alias] = ACTIONS(3962), - [anon_sym_SEMI] = ACTIONS(3964), - [anon_sym_global] = ACTIONS(3962), - [anon_sym_EQ] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_COLON] = ACTIONS(3964), - [anon_sym_COMMA] = ACTIONS(3964), - [anon_sym_RBRACK] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_RBRACE] = ACTIONS(3964), - [anon_sym_file] = ACTIONS(3962), - [anon_sym_LT] = ACTIONS(3962), - [anon_sym_GT] = ACTIONS(3962), - [anon_sym_in] = ACTIONS(3962), - [anon_sym_where] = ACTIONS(3962), - [anon_sym_QMARK] = ACTIONS(3962), - [anon_sym_notnull] = ACTIONS(3962), - [anon_sym_unmanaged] = ACTIONS(3962), - [anon_sym_operator] = ACTIONS(3962), - [anon_sym_BANG] = ACTIONS(3962), - [anon_sym_PLUS_PLUS] = ACTIONS(3964), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_PLUS] = ACTIONS(3962), - [anon_sym_DASH] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3962), - [anon_sym_SLASH] = ACTIONS(3962), - [anon_sym_PERCENT] = ACTIONS(3962), - [anon_sym_CARET] = ACTIONS(3962), - [anon_sym_PIPE] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_LT_LT] = ACTIONS(3962), - [anon_sym_GT_GT] = ACTIONS(3962), - [anon_sym_GT_GT_GT] = ACTIONS(3962), - [anon_sym_EQ_EQ] = ACTIONS(3964), - [anon_sym_BANG_EQ] = ACTIONS(3964), - [anon_sym_GT_EQ] = ACTIONS(3964), - [anon_sym_LT_EQ] = ACTIONS(3964), - [anon_sym_this] = ACTIONS(3962), - [anon_sym_DOT] = ACTIONS(3962), - [anon_sym_scoped] = ACTIONS(3962), - [anon_sym_EQ_GT] = ACTIONS(3964), - [anon_sym_var] = ACTIONS(3962), - [anon_sym_yield] = ACTIONS(3962), - [anon_sym_switch] = ACTIONS(3962), - [anon_sym_when] = ACTIONS(3962), - [sym_discard] = ACTIONS(3962), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_and] = ACTIONS(3962), - [anon_sym_or] = ACTIONS(3962), - [anon_sym_PLUS_EQ] = ACTIONS(3964), - [anon_sym_DASH_EQ] = ACTIONS(3964), - [anon_sym_STAR_EQ] = ACTIONS(3964), - [anon_sym_SLASH_EQ] = ACTIONS(3964), - [anon_sym_PERCENT_EQ] = ACTIONS(3964), - [anon_sym_AMP_EQ] = ACTIONS(3964), - [anon_sym_CARET_EQ] = ACTIONS(3964), - [anon_sym_PIPE_EQ] = ACTIONS(3964), - [anon_sym_LT_LT_EQ] = ACTIONS(3964), - [anon_sym_GT_GT_EQ] = ACTIONS(3964), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3964), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3964), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [sym_op_coalescing] = ACTIONS(3962), - [anon_sym_from] = ACTIONS(3962), - [anon_sym_into] = ACTIONS(3962), - [anon_sym_join] = ACTIONS(3962), - [anon_sym_on] = ACTIONS(3962), - [anon_sym_equals] = ACTIONS(3962), - [anon_sym_let] = ACTIONS(3962), - [anon_sym_orderby] = ACTIONS(3962), - [anon_sym_ascending] = ACTIONS(3962), - [anon_sym_descending] = ACTIONS(3962), - [anon_sym_group] = ACTIONS(3962), - [anon_sym_by] = ACTIONS(3962), - [anon_sym_select] = ACTIONS(3962), - [anon_sym_as] = ACTIONS(3962), - [anon_sym_is] = ACTIONS(3962), - [anon_sym_DASH_GT] = ACTIONS(3964), - [anon_sym_with] = ACTIONS(3962), - [sym_grit_metavariable] = ACTIONS(3964), - [aux_sym_preproc_if_token3] = ACTIONS(3964), - [aux_sym_preproc_else_token1] = ACTIONS(3964), - [aux_sym_preproc_elif_token1] = ACTIONS(3964), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2210] = { - [sym__name] = STATE(6115), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_ref_type] = STATE(2386), - [sym__scoped_base_type] = STATE(2366), - [sym_identifier] = STATE(6042), - [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(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(3966), - [anon_sym_LBRACE] = ACTIONS(3700), + [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(3702), - [anon_sym_GT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), [anon_sym_where] = ACTIONS(3894), - [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3696), [anon_sym_notnull] = ACTIONS(3894), [anon_sym_unmanaged] = ACTIONS(3894), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3696), [anon_sym_scoped] = ACTIONS(3894), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), + [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(3702), + [anon_sym_switch] = ACTIONS(3696), [anon_sym_when] = ACTIONS(3894), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), + [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), @@ -412332,10 +412306,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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), + [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), @@ -412347,6 +412321,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_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), + [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(3955), + [anon_sym_GT] = ACTIONS(3955), + [anon_sym_in] = ACTIONS(3955), + [anon_sym_where] = ACTIONS(3955), + [anon_sym_QMARK] = ACTIONS(3955), + [anon_sym_notnull] = ACTIONS(3955), + [anon_sym_unmanaged] = ACTIONS(3955), + [anon_sym_operator] = ACTIONS(3955), + [anon_sym_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), + [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), }, [2211] = { [sym_preproc_region] = STATE(2211), @@ -412358,93 +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(3953), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_RBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3951), - [anon_sym_GT] = ACTIONS(3951), - [anon_sym_in] = ACTIONS(3951), - [anon_sym_where] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_notnull] = ACTIONS(3951), - [anon_sym_unmanaged] = ACTIONS(3951), - [anon_sym_operator] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_PLUS_PLUS] = ACTIONS(3953), - [anon_sym_DASH_DASH] = ACTIONS(3953), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(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_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(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(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), @@ -412457,15 +412540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2212] = { - [sym__name] = STATE(5810), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_ref_type] = STATE(2386), - [sym__scoped_base_type] = STATE(2366), - [sym_identifier] = STATE(5575), - [sym__reserved_identifier] = STATE(2206), + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2212), [sym_preproc_endregion] = STATE(2212), [sym_preproc_line] = STATE(2212), @@ -412475,83 +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(3891), - [anon_sym_alias] = ACTIONS(3894), - [anon_sym_global] = ACTIONS(3894), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_file] = ACTIONS(3894), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3894), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3894), - [anon_sym_unmanaged] = ACTIONS(3894), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3894), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3894), - [anon_sym_yield] = ACTIONS(3894), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3894), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3897), + [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), @@ -412562,7 +412646,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(3700), }, [2213] = { [sym_preproc_region] = STATE(2213), @@ -412574,93 +412657,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2213), [sym_preproc_define] = STATE(2213), [sym_preproc_undef] = STATE(2213), - [sym__identifier_token] = ACTIONS(3968), - [anon_sym_alias] = ACTIONS(3968), - [anon_sym_SEMI] = ACTIONS(3970), - [anon_sym_global] = ACTIONS(3968), - [anon_sym_EQ] = ACTIONS(3968), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_COLON] = ACTIONS(3970), - [anon_sym_COMMA] = ACTIONS(3970), - [anon_sym_RBRACK] = ACTIONS(3970), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_RPAREN] = ACTIONS(3970), - [anon_sym_LBRACE] = ACTIONS(3970), - [anon_sym_RBRACE] = ACTIONS(3970), - [anon_sym_file] = ACTIONS(3968), - [anon_sym_LT] = ACTIONS(3968), - [anon_sym_GT] = ACTIONS(3968), - [anon_sym_in] = ACTIONS(3968), - [anon_sym_where] = ACTIONS(3968), - [anon_sym_QMARK] = ACTIONS(3968), - [anon_sym_notnull] = ACTIONS(3968), - [anon_sym_unmanaged] = ACTIONS(3968), - [anon_sym_operator] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(3968), - [anon_sym_PLUS_PLUS] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(3970), - [anon_sym_PLUS] = ACTIONS(3968), - [anon_sym_DASH] = ACTIONS(3968), - [anon_sym_STAR] = ACTIONS(3968), - [anon_sym_SLASH] = ACTIONS(3968), - [anon_sym_PERCENT] = ACTIONS(3968), - [anon_sym_CARET] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(3968), - [anon_sym_AMP] = ACTIONS(3968), - [anon_sym_LT_LT] = ACTIONS(3968), - [anon_sym_GT_GT] = ACTIONS(3968), - [anon_sym_GT_GT_GT] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3970), - [anon_sym_BANG_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_this] = ACTIONS(3968), - [anon_sym_DOT] = ACTIONS(3968), - [anon_sym_scoped] = ACTIONS(3968), - [anon_sym_EQ_GT] = ACTIONS(3970), - [anon_sym_var] = ACTIONS(3968), - [anon_sym_yield] = ACTIONS(3968), - [anon_sym_switch] = ACTIONS(3968), - [anon_sym_when] = ACTIONS(3968), - [sym_discard] = ACTIONS(3968), - [anon_sym_DOT_DOT] = ACTIONS(3970), - [anon_sym_and] = ACTIONS(3968), - [anon_sym_or] = ACTIONS(3968), - [anon_sym_PLUS_EQ] = ACTIONS(3970), - [anon_sym_DASH_EQ] = ACTIONS(3970), - [anon_sym_STAR_EQ] = ACTIONS(3970), - [anon_sym_SLASH_EQ] = ACTIONS(3970), - [anon_sym_PERCENT_EQ] = ACTIONS(3970), - [anon_sym_AMP_EQ] = ACTIONS(3970), - [anon_sym_CARET_EQ] = ACTIONS(3970), - [anon_sym_PIPE_EQ] = ACTIONS(3970), - [anon_sym_LT_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_GT_EQ] = ACTIONS(3970), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3970), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3970), - [anon_sym_AMP_AMP] = ACTIONS(3970), - [anon_sym_PIPE_PIPE] = ACTIONS(3970), - [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_ascending] = ACTIONS(3968), - [anon_sym_descending] = 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(3970), - [anon_sym_with] = ACTIONS(3968), - [sym_grit_metavariable] = ACTIONS(3970), - [aux_sym_preproc_if_token3] = ACTIONS(3970), - [aux_sym_preproc_else_token1] = ACTIONS(3970), - [aux_sym_preproc_elif_token1] = ACTIONS(3970), + [sym__identifier_token] = ACTIONS(3970), + [anon_sym_alias] = ACTIONS(3970), + [anon_sym_SEMI] = ACTIONS(3972), + [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_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_operator] = ACTIONS(3970), + [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), + [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_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), @@ -412682,93 +412765,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2214), [sym_preproc_define] = STATE(2214), [sym_preproc_undef] = STATE(2214), - [sym__identifier_token] = ACTIONS(3972), - [anon_sym_alias] = ACTIONS(3972), - [anon_sym_SEMI] = ACTIONS(3974), - [anon_sym_global] = ACTIONS(3972), - [anon_sym_EQ] = ACTIONS(3972), - [anon_sym_LBRACK] = ACTIONS(3974), - [anon_sym_COLON] = ACTIONS(3974), - [anon_sym_COMMA] = ACTIONS(3974), - [anon_sym_RBRACK] = ACTIONS(3974), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_RPAREN] = ACTIONS(3974), - [anon_sym_LBRACE] = ACTIONS(3974), - [anon_sym_RBRACE] = ACTIONS(3974), - [anon_sym_file] = ACTIONS(3972), - [anon_sym_LT] = ACTIONS(3972), - [anon_sym_GT] = ACTIONS(3972), - [anon_sym_in] = ACTIONS(3972), - [anon_sym_where] = ACTIONS(3972), - [anon_sym_QMARK] = ACTIONS(3972), - [anon_sym_notnull] = ACTIONS(3972), - [anon_sym_unmanaged] = ACTIONS(3972), - [anon_sym_operator] = ACTIONS(3972), - [anon_sym_BANG] = ACTIONS(3972), - [anon_sym_PLUS_PLUS] = ACTIONS(3974), - [anon_sym_DASH_DASH] = ACTIONS(3974), - [anon_sym_PLUS] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3972), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_SLASH] = ACTIONS(3972), - [anon_sym_PERCENT] = ACTIONS(3972), - [anon_sym_CARET] = ACTIONS(3972), - [anon_sym_PIPE] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3972), - [anon_sym_LT_LT] = ACTIONS(3972), - [anon_sym_GT_GT] = ACTIONS(3972), - [anon_sym_GT_GT_GT] = ACTIONS(3972), - [anon_sym_EQ_EQ] = ACTIONS(3974), - [anon_sym_BANG_EQ] = ACTIONS(3974), - [anon_sym_GT_EQ] = ACTIONS(3974), - [anon_sym_LT_EQ] = ACTIONS(3974), - [anon_sym_this] = ACTIONS(3972), - [anon_sym_DOT] = ACTIONS(3972), - [anon_sym_scoped] = ACTIONS(3972), - [anon_sym_EQ_GT] = ACTIONS(3974), - [anon_sym_var] = ACTIONS(3972), - [anon_sym_yield] = ACTIONS(3972), - [anon_sym_switch] = ACTIONS(3972), - [anon_sym_when] = ACTIONS(3972), - [sym_discard] = ACTIONS(3972), - [anon_sym_DOT_DOT] = ACTIONS(3974), - [anon_sym_and] = ACTIONS(3972), - [anon_sym_or] = ACTIONS(3972), - [anon_sym_PLUS_EQ] = ACTIONS(3974), - [anon_sym_DASH_EQ] = ACTIONS(3974), - [anon_sym_STAR_EQ] = ACTIONS(3974), - [anon_sym_SLASH_EQ] = ACTIONS(3974), - [anon_sym_PERCENT_EQ] = ACTIONS(3974), - [anon_sym_AMP_EQ] = ACTIONS(3974), - [anon_sym_CARET_EQ] = ACTIONS(3974), - [anon_sym_PIPE_EQ] = ACTIONS(3974), - [anon_sym_LT_LT_EQ] = ACTIONS(3974), - [anon_sym_GT_GT_EQ] = ACTIONS(3974), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3974), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3974), - [anon_sym_AMP_AMP] = ACTIONS(3974), - [anon_sym_PIPE_PIPE] = ACTIONS(3974), - [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_ascending] = ACTIONS(3972), - [anon_sym_descending] = 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(3974), - [anon_sym_with] = ACTIONS(3972), - [sym_grit_metavariable] = ACTIONS(3974), - [aux_sym_preproc_if_token3] = ACTIONS(3974), - [aux_sym_preproc_else_token1] = ACTIONS(3974), - [aux_sym_preproc_elif_token1] = ACTIONS(3974), + [sym__identifier_token] = ACTIONS(3974), + [anon_sym_alias] = ACTIONS(3974), + [anon_sym_SEMI] = ACTIONS(3976), + [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_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_operator] = ACTIONS(3974), + [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), + [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_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), @@ -412781,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), @@ -412790,93 +412882,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2215), [sym_preproc_define] = STATE(2215), [sym_preproc_undef] = STATE(2215), - [sym__identifier_token] = ACTIONS(3976), - [anon_sym_alias] = ACTIONS(3976), - [anon_sym_SEMI] = ACTIONS(3978), - [anon_sym_global] = ACTIONS(3976), - [anon_sym_EQ] = ACTIONS(3976), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_COLON] = ACTIONS(3978), - [anon_sym_COMMA] = ACTIONS(3978), - [anon_sym_RBRACK] = ACTIONS(3978), - [anon_sym_LPAREN] = ACTIONS(3978), - [anon_sym_RPAREN] = ACTIONS(3978), - [anon_sym_LBRACE] = ACTIONS(3978), - [anon_sym_RBRACE] = ACTIONS(3978), - [anon_sym_file] = ACTIONS(3976), - [anon_sym_LT] = ACTIONS(3976), - [anon_sym_GT] = ACTIONS(3976), - [anon_sym_in] = ACTIONS(3976), - [anon_sym_where] = ACTIONS(3976), - [anon_sym_QMARK] = ACTIONS(3976), - [anon_sym_notnull] = ACTIONS(3976), - [anon_sym_unmanaged] = ACTIONS(3976), - [anon_sym_operator] = ACTIONS(3976), - [anon_sym_BANG] = ACTIONS(3976), - [anon_sym_PLUS_PLUS] = ACTIONS(3978), - [anon_sym_DASH_DASH] = ACTIONS(3978), - [anon_sym_PLUS] = ACTIONS(3976), - [anon_sym_DASH] = ACTIONS(3976), - [anon_sym_STAR] = ACTIONS(3976), - [anon_sym_SLASH] = ACTIONS(3976), - [anon_sym_PERCENT] = ACTIONS(3976), - [anon_sym_CARET] = ACTIONS(3976), - [anon_sym_PIPE] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), - [anon_sym_LT_LT] = ACTIONS(3976), - [anon_sym_GT_GT] = ACTIONS(3976), - [anon_sym_GT_GT_GT] = ACTIONS(3976), - [anon_sym_EQ_EQ] = ACTIONS(3978), - [anon_sym_BANG_EQ] = ACTIONS(3978), - [anon_sym_GT_EQ] = ACTIONS(3978), - [anon_sym_LT_EQ] = ACTIONS(3978), - [anon_sym_this] = ACTIONS(3976), - [anon_sym_DOT] = ACTIONS(3976), - [anon_sym_scoped] = ACTIONS(3976), - [anon_sym_EQ_GT] = ACTIONS(3978), - [anon_sym_var] = ACTIONS(3976), - [anon_sym_yield] = ACTIONS(3976), - [anon_sym_switch] = ACTIONS(3976), - [anon_sym_when] = ACTIONS(3976), - [sym_discard] = ACTIONS(3976), - [anon_sym_DOT_DOT] = ACTIONS(3978), - [anon_sym_and] = ACTIONS(3976), - [anon_sym_or] = ACTIONS(3976), - [anon_sym_PLUS_EQ] = ACTIONS(3978), - [anon_sym_DASH_EQ] = ACTIONS(3978), - [anon_sym_STAR_EQ] = ACTIONS(3978), - [anon_sym_SLASH_EQ] = ACTIONS(3978), - [anon_sym_PERCENT_EQ] = ACTIONS(3978), - [anon_sym_AMP_EQ] = ACTIONS(3978), - [anon_sym_CARET_EQ] = ACTIONS(3978), - [anon_sym_PIPE_EQ] = ACTIONS(3978), - [anon_sym_LT_LT_EQ] = ACTIONS(3978), - [anon_sym_GT_GT_EQ] = ACTIONS(3978), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3978), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3978), - [anon_sym_AMP_AMP] = ACTIONS(3978), - [anon_sym_PIPE_PIPE] = ACTIONS(3978), - [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_ascending] = ACTIONS(3976), - [anon_sym_descending] = ACTIONS(3976), - [anon_sym_group] = ACTIONS(3976), - [anon_sym_by] = ACTIONS(3976), - [anon_sym_select] = ACTIONS(3976), - [anon_sym_as] = ACTIONS(3976), - [anon_sym_is] = ACTIONS(3976), - [anon_sym_DASH_GT] = ACTIONS(3978), - [anon_sym_with] = ACTIONS(3976), - [sym_grit_metavariable] = ACTIONS(3978), - [aux_sym_preproc_if_token3] = ACTIONS(3978), - [aux_sym_preproc_else_token1] = ACTIONS(3978), - [aux_sym_preproc_elif_token1] = ACTIONS(3978), + [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_LPAREN] = ACTIONS(3694), + [anon_sym_ref] = ACTIONS(3978), + [anon_sym_LBRACE] = ACTIONS(3694), + [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), + [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), + [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), @@ -412920,34 +413003,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(3980), [anon_sym_unmanaged] = ACTIONS(3980), [anon_sym_operator] = ACTIONS(3980), - [anon_sym_BANG] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3982), - [anon_sym_DASH_DASH] = ACTIONS(3982), - [anon_sym_PLUS] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_SLASH] = ACTIONS(3980), - [anon_sym_PERCENT] = ACTIONS(3980), - [anon_sym_CARET] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3980), - [anon_sym_LT_LT] = ACTIONS(3980), - [anon_sym_GT_GT] = ACTIONS(3980), - [anon_sym_GT_GT_GT] = ACTIONS(3980), - [anon_sym_EQ_EQ] = ACTIONS(3982), - [anon_sym_BANG_EQ] = ACTIONS(3982), - [anon_sym_GT_EQ] = ACTIONS(3982), - [anon_sym_LT_EQ] = ACTIONS(3982), [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), @@ -412962,9 +413030,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -412997,6 +413080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -413006,11 +413090,117 @@ 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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2218] = { + [sym_preproc_region] = STATE(2218), + [sym_preproc_endregion] = STATE(2218), + [sym_preproc_line] = STATE(2218), + [sym_preproc_pragma] = STATE(2218), + [sym_preproc_nullable] = STATE(2218), + [sym_preproc_error] = STATE(2218), + [sym_preproc_warning] = STATE(2218), + [sym_preproc_define] = STATE(2218), + [sym_preproc_undef] = STATE(2218), [sym__identifier_token] = ACTIONS(3913), [anon_sym_alias] = ACTIONS(3913), [anon_sym_SEMI] = ACTIONS(3910), [anon_sym_global] = ACTIONS(3913), - [anon_sym_EQ] = ACTIONS(3702), + [anon_sym_EQ] = ACTIONS(3696), [anon_sym_LBRACK] = ACTIONS(3910), [anon_sym_COLON] = ACTIONS(3913), [anon_sym_COMMA] = ACTIONS(3910), @@ -413027,51 +413217,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(3913), [anon_sym_notnull] = ACTIONS(3913), [anon_sym_unmanaged] = ACTIONS(3913), - [anon_sym_BANG] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_GT_EQ] = ACTIONS(3910), - [anon_sym_LT_EQ] = ACTIONS(3910), [anon_sym_DOT] = ACTIONS(3913), [anon_sym_scoped] = ACTIONS(3913), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), + [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(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), + [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), @@ -413103,115 +413293,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2218] = { - [sym_type_argument_list] = STATE(2216), - [sym_preproc_region] = STATE(2218), - [sym_preproc_endregion] = STATE(2218), - [sym_preproc_line] = STATE(2218), - [sym_preproc_pragma] = STATE(2218), - [sym_preproc_nullable] = STATE(2218), - [sym_preproc_error] = STATE(2218), - [sym_preproc_warning] = STATE(2218), - [sym_preproc_define] = STATE(2218), - [sym_preproc_undef] = STATE(2218), - [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(3955), - [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(3958), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2219] = { - [sym_type_argument_list] = STATE(2216), + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2219), [sym_preproc_endregion] = STATE(2219), [sym_preproc_line] = STATE(2219), @@ -413221,91 +413304,91 @@ 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(3955), - [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), + [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), @@ -413348,33 +413431,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), @@ -413389,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), @@ -413433,6 +413516,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2221), [sym_preproc_define] = STATE(2221), [sym_preproc_undef] = STATE(2221), + [sym__identifier_token] = ACTIONS(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(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(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), + }, + [2222] = { + [sym_preproc_region] = STATE(2222), + [sym_preproc_endregion] = STATE(2222), + [sym_preproc_line] = STATE(2222), + [sym_preproc_pragma] = STATE(2222), + [sym_preproc_nullable] = STATE(2222), + [sym_preproc_error] = STATE(2222), + [sym_preproc_warning] = STATE(2222), + [sym_preproc_define] = STATE(2222), + [sym_preproc_undef] = STATE(2222), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_SEMI] = ACTIONS(4020), + [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(4010), + [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_in] = 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(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(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_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), + }, + [2223] = { + [sym_preproc_region] = STATE(2223), + [sym_preproc_endregion] = STATE(2223), + [sym_preproc_line] = STATE(2223), + [sym_preproc_pragma] = STATE(2223), + [sym_preproc_nullable] = STATE(2223), + [sym_preproc_error] = STATE(2223), + [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), @@ -413454,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), @@ -413495,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), @@ -413529,64 +413930,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2222] = { - [sym_preproc_region] = STATE(2222), - [sym_preproc_endregion] = STATE(2222), - [sym_preproc_line] = STATE(2222), - [sym_preproc_pragma] = STATE(2222), - [sym_preproc_nullable] = STATE(2222), - [sym_preproc_error] = STATE(2222), - [sym_preproc_warning] = STATE(2222), - [sym_preproc_define] = STATE(2222), - [sym_preproc_undef] = STATE(2222), + [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(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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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), + [sym_preproc_line] = STATE(2226), + [sym_preproc_pragma] = STATE(2226), + [sym_preproc_nullable] = STATE(2226), + [sym_preproc_error] = STATE(2226), + [sym_preproc_warning] = STATE(2226), + [sym_preproc_define] = STATE(2226), + [sym_preproc_undef] = STATE(2226), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_SEMI] = ACTIONS(3997), [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(4034), [anon_sym_COLON] = ACTIONS(3997), [anon_sym_COMMA] = ACTIONS(3997), [anon_sym_RBRACK] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4034), [anon_sym_RPAREN] = ACTIONS(3997), [anon_sym_LBRACE] = ACTIONS(3997), [anon_sym_RBRACE] = ACTIONS(3997), [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(4011), - [anon_sym_GT] = ACTIONS(4011), + [anon_sym_LT] = ACTIONS(4037), + [anon_sym_GT] = ACTIONS(4037), [anon_sym_in] = ACTIONS(3986), [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4011), + [anon_sym_QMARK] = ACTIONS(4037), [anon_sym_notnull] = ACTIONS(3986), [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(4011), - [anon_sym_PLUS_PLUS] = ACTIONS(4008), - [anon_sym_DASH_DASH] = ACTIONS(4008), - [anon_sym_PLUS] = ACTIONS(4011), - [anon_sym_DASH] = ACTIONS(4011), - [anon_sym_STAR] = ACTIONS(4011), - [anon_sym_SLASH] = ACTIONS(4011), - [anon_sym_PERCENT] = ACTIONS(4011), - [anon_sym_CARET] = ACTIONS(4011), - [anon_sym_PIPE] = ACTIONS(4011), - [anon_sym_AMP] = ACTIONS(4011), - [anon_sym_LT_LT] = ACTIONS(4011), - [anon_sym_GT_GT] = ACTIONS(4011), - [anon_sym_GT_GT_GT] = ACTIONS(4011), - [anon_sym_EQ_EQ] = ACTIONS(4008), - [anon_sym_BANG_EQ] = ACTIONS(4008), - [anon_sym_GT_EQ] = ACTIONS(4008), - [anon_sym_LT_EQ] = ACTIONS(4008), - [anon_sym_DOT] = ACTIONS(4011), + [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(4011), + [anon_sym_switch] = ACTIONS(4037), [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(4008), + [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), @@ -413601,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_AMP_AMP] = ACTIONS(4008), - [anon_sym_PIPE_PIPE] = ACTIONS(4008), - [sym_op_coalescing] = ACTIONS(4011), + [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), @@ -413616,10 +414123,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(4011), - [anon_sym_is] = ACTIONS(4011), - [anon_sym_DASH_GT] = ACTIONS(4008), - [anon_sym_with] = ACTIONS(4011), + [anon_sym_as] = ACTIONS(4037), + [anon_sym_is] = ACTIONS(4037), + [anon_sym_DASH_GT] = ACTIONS(4034), + [anon_sym_with] = ACTIONS(4037), [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_if_token3] = ACTIONS(3997), [aux_sym_preproc_else_token1] = ACTIONS(3997), @@ -413635,430 +414142,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2223] = { - [sym_preproc_region] = STATE(2223), - [sym_preproc_endregion] = STATE(2223), - [sym_preproc_line] = STATE(2223), - [sym_preproc_pragma] = STATE(2223), - [sym_preproc_nullable] = STATE(2223), - [sym_preproc_error] = STATE(2223), - [sym_preproc_warning] = STATE(2223), - [sym_preproc_define] = STATE(2223), - [sym_preproc_undef] = STATE(2223), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_SEMI] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4016), - [anon_sym_COMMA] = ACTIONS(4016), - [anon_sym_RBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_RPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4016), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_in] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4023), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [anon_sym_GT_EQ] = ACTIONS(4016), - [anon_sym_LT_EQ] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_EQ_GT] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym_op_coalescing] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4023), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_if_token3] = ACTIONS(4016), - [aux_sym_preproc_else_token1] = ACTIONS(4016), - [aux_sym_preproc_elif_token1] = ACTIONS(4016), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4026), - [anon_sym_COMMA] = ACTIONS(4016), - [anon_sym_RBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_RPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4016), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_in] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_EQ_GT] = ACTIONS(4026), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_if_token3] = ACTIONS(4026), - [aux_sym_preproc_else_token1] = ACTIONS(4026), - [aux_sym_preproc_elif_token1] = ACTIONS(4026), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2225] = { - [sym__variable_designation] = STATE(5009), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(2787), - [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(4028), - [anon_sym_alias] = ACTIONS(4032), - [anon_sym_global] = ACTIONS(4032), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3910), - [anon_sym_RBRACK] = ACTIONS(3910), - [anon_sym_LPAREN] = ACTIONS(3930), - [anon_sym_RPAREN] = ACTIONS(3910), - [anon_sym_LBRACE] = ACTIONS(3910), - [anon_sym_RBRACE] = ACTIONS(3910), - [anon_sym_file] = ACTIONS(4032), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4032), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4032), - [anon_sym_unmanaged] = ACTIONS(4032), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4032), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4032), - [anon_sym_yield] = ACTIONS(4032), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4032), - [sym_discard] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3913), - [anon_sym_or] = ACTIONS(3913), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(4032), - [anon_sym_into] = ACTIONS(4032), - [anon_sym_join] = ACTIONS(4032), - [anon_sym_on] = ACTIONS(4032), - [anon_sym_equals] = ACTIONS(4032), - [anon_sym_let] = ACTIONS(4032), - [anon_sym_orderby] = ACTIONS(4032), - [anon_sym_ascending] = ACTIONS(4032), - [anon_sym_descending] = ACTIONS(4032), - [anon_sym_group] = ACTIONS(4032), - [anon_sym_by] = ACTIONS(4032), - [anon_sym_select] = ACTIONS(4032), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4036), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2226] = { - [sym_preproc_region] = STATE(2226), - [sym_preproc_endregion] = STATE(2226), - [sym_preproc_line] = STATE(2226), - [sym_preproc_pragma] = STATE(2226), - [sym_preproc_nullable] = STATE(2226), - [sym_preproc_error] = STATE(2226), - [sym_preproc_warning] = STATE(2226), - [sym_preproc_define] = STATE(2226), - [sym_preproc_undef] = STATE(2226), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_SEMI] = ACTIONS(4021), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4021), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_RBRACK] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_RPAREN] = ACTIONS(4021), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_in] = ACTIONS(4014), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4023), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [anon_sym_GT_EQ] = ACTIONS(4016), - [anon_sym_LT_EQ] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_EQ_GT] = ACTIONS(4021), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_and] = ACTIONS(4014), - [anon_sym_or] = ACTIONS(4014), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym_op_coalescing] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4023), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_if_token3] = ACTIONS(4021), - [aux_sym_preproc_else_token1] = ACTIONS(4021), - [aux_sym_preproc_elif_token1] = ACTIONS(4021), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2227] = { [sym_preproc_region] = STATE(2227), [sym_preproc_endregion] = STATE(2227), @@ -414069,91 +414152,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2227), [sym_preproc_define] = STATE(2227), [sym_preproc_undef] = STATE(2227), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_SEMI] = ACTIONS(4016), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4016), - [anon_sym_COMMA] = ACTIONS(4016), - [anon_sym_RBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_RPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4016), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_in] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4023), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [anon_sym_GT_EQ] = ACTIONS(4016), - [anon_sym_LT_EQ] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_EQ_GT] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym_op_coalescing] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4023), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4023), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_if_token3] = ACTIONS(4016), - [aux_sym_preproc_else_token1] = ACTIONS(4016), - [aux_sym_preproc_elif_token1] = ACTIONS(4016), + [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), @@ -414177,68 +414260,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_undef] = STATE(2228), [sym__identifier_token] = ACTIONS(3913), [anon_sym_alias] = ACTIONS(3913), - [anon_sym_SEMI] = ACTIONS(3700), + [anon_sym_SEMI] = ACTIONS(3694), [anon_sym_global] = ACTIONS(3913), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), + [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(3700), - [anon_sym_RBRACE] = ACTIONS(3700), + [anon_sym_RPAREN] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), [anon_sym_file] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), [anon_sym_where] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3696), [anon_sym_notnull] = ACTIONS(3913), [anon_sym_unmanaged] = ACTIONS(3913), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3696), [anon_sym_scoped] = ACTIONS(3913), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), + [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(3702), + [anon_sym_switch] = ACTIONS(3696), [anon_sym_when] = ACTIONS(3913), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), + [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), @@ -414251,14 +414334,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(3913), [anon_sym_by] = ACTIONS(3913), [anon_sym_select] = ACTIONS(3913), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), + [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(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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), @@ -414280,16 +414363,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2229), [sym_preproc_define] = STATE(2229), [sym_preproc_undef] = STATE(2229), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_SEMI] = ACTIONS(4020), + [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_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(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_in] = 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(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_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), + }, + [2230] = { + [sym_preproc_region] = STATE(2230), + [sym_preproc_endregion] = STATE(2230), + [sym_preproc_line] = STATE(2230), + [sym_preproc_pragma] = STATE(2230), + [sym_preproc_nullable] = STATE(2230), + [sym_preproc_error] = STATE(2230), + [sym_preproc_warning] = STATE(2230), + [sym_preproc_define] = STATE(2230), + [sym_preproc_undef] = STATE(2230), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_SEMI] = ACTIONS(4006), [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(4034), [anon_sym_COLON] = ACTIONS(4006), [anon_sym_COMMA] = ACTIONS(4006), [anon_sym_RBRACK] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4034), [anon_sym_RPAREN] = ACTIONS(4006), [anon_sym_RBRACE] = ACTIONS(4006), [anon_sym_file] = ACTIONS(3986), @@ -414297,35 +414484,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(3991), [anon_sym_in] = ACTIONS(3991), [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4011), + [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(4011), - [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(4011), + [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), @@ -414340,11 +414512,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(4011), + [anon_sym_into] = ACTIONS(4037), [anon_sym_join] = ACTIONS(3986), [anon_sym_on] = ACTIONS(3986), [anon_sym_equals] = ACTIONS(3986), @@ -414357,7 +414544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(3986), [anon_sym_as] = ACTIONS(3991), [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4008), + [anon_sym_DASH_GT] = ACTIONS(4034), [anon_sym_with] = ACTIONS(3991), [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_if_token3] = ACTIONS(4006), @@ -414374,115 +414561,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2230] = { - [sym__variable_designation] = STATE(5009), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(2787), - [sym_preproc_region] = STATE(2230), - [sym_preproc_endregion] = STATE(2230), - [sym_preproc_line] = STATE(2230), - [sym_preproc_pragma] = STATE(2230), - [sym_preproc_nullable] = STATE(2230), - [sym_preproc_error] = STATE(2230), - [sym_preproc_warning] = STATE(2230), - [sym_preproc_define] = STATE(2230), - [sym_preproc_undef] = STATE(2230), - [sym__identifier_token] = ACTIONS(4028), - [anon_sym_alias] = ACTIONS(4032), - [anon_sym_global] = ACTIONS(4032), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3910), - [anon_sym_LPAREN] = ACTIONS(3930), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3910), - [anon_sym_file] = ACTIONS(4032), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4032), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4032), - [anon_sym_unmanaged] = ACTIONS(4032), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4032), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4032), - [anon_sym_yield] = ACTIONS(4032), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4032), - [sym_discard] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3913), - [anon_sym_or] = ACTIONS(3913), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(4032), - [anon_sym_into] = ACTIONS(4032), - [anon_sym_join] = ACTIONS(4032), - [anon_sym_on] = ACTIONS(4032), - [anon_sym_equals] = ACTIONS(4032), - [anon_sym_let] = ACTIONS(4032), - [anon_sym_orderby] = ACTIONS(4032), - [anon_sym_ascending] = ACTIONS(4032), - [anon_sym_descending] = ACTIONS(4032), - [anon_sym_group] = ACTIONS(4032), - [anon_sym_by] = ACTIONS(4032), - [anon_sym_select] = ACTIONS(4032), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4036), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2231] = { - [sym__variable_designation] = STATE(5766), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym_identifier] = STATE(5768), - [sym__reserved_identifier] = STATE(5564), + [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), @@ -414495,7 +414578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__identifier_token] = ACTIONS(4040), [anon_sym_alias] = ACTIONS(4044), [anon_sym_global] = ACTIONS(4044), - [anon_sym_EQ] = ACTIONS(3702), + [anon_sym_EQ] = ACTIONS(3696), [anon_sym_LBRACK] = ACTIONS(3910), [anon_sym_COLON] = ACTIONS(3913), [anon_sym_COMMA] = ACTIONS(3910), @@ -414508,51 +414591,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(3913), [anon_sym_notnull] = ACTIONS(4044), [anon_sym_unmanaged] = ACTIONS(4044), - [anon_sym_BANG] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_GT_EQ] = ACTIONS(3910), - [anon_sym_LT_EQ] = ACTIONS(3910), [anon_sym_DOT] = ACTIONS(3913), [anon_sym_scoped] = ACTIONS(4044), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), + [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(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), + [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), @@ -414583,6 +414666,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -414592,238 +414698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2232), [sym_preproc_define] = STATE(2232), [sym_preproc_undef] = STATE(2232), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4026), - [anon_sym_COMMA] = ACTIONS(4026), - [anon_sym_RBRACK] = ACTIONS(4026), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_RPAREN] = ACTIONS(4026), - [anon_sym_RBRACE] = ACTIONS(4026), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_in] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_EQ_GT] = ACTIONS(4026), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4023), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_if_token3] = ACTIONS(4026), - [aux_sym_preproc_else_token1] = ACTIONS(4026), - [aux_sym_preproc_elif_token1] = ACTIONS(4026), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4026), - [anon_sym_COMMA] = ACTIONS(4026), - [anon_sym_RBRACK] = ACTIONS(4026), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_RPAREN] = ACTIONS(4026), - [anon_sym_RBRACE] = ACTIONS(4026), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_in] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_EQ_GT] = ACTIONS(4026), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_if_token3] = ACTIONS(4026), - [aux_sym_preproc_else_token1] = ACTIONS(4026), - [aux_sym_preproc_elif_token1] = ACTIONS(4026), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2234] = { - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_modifier] = STATE(4309), - [sym_variable_declaration] = STATE(7942), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5913), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5996), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if_in_attribute_list] = STATE(3597), - [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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3147), + [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), @@ -414836,7 +414711,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_event] = ACTIONS(4062), [anon_sym_class] = ACTIONS(4064), [anon_sym_ref] = ACTIONS(4066), - [anon_sym_struct] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(3065), [anon_sym_enum] = ACTIONS(4068), [anon_sym_interface] = ACTIONS(4070), [anon_sym_delegate] = ACTIONS(4072), @@ -414861,9 +414736,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(4076), - [anon_sym_implicit] = ACTIONS(4078), - [anon_sym_explicit] = ACTIONS(4078), + [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), @@ -414894,98 +414769,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2235] = { - [sym__name] = STATE(2455), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2445), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2433), - [sym_ref_type] = STATE(2386), - [sym__scoped_base_type] = STATE(2366), - [sym_identifier] = STATE(2399), - [sym__reserved_identifier] = STATE(2400), - [sym_preproc_region] = STATE(2235), - [sym_preproc_endregion] = STATE(2235), - [sym_preproc_line] = STATE(2235), - [sym_preproc_pragma] = STATE(2235), - [sym_preproc_nullable] = STATE(2235), - [sym_preproc_error] = STATE(2235), - [sym_preproc_warning] = STATE(2235), - [sym_preproc_define] = STATE(2235), - [sym_preproc_undef] = STATE(2235), - [sym__identifier_token] = ACTIONS(3880), - [anon_sym_alias] = ACTIONS(3883), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_global] = ACTIONS(3883), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3883), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3883), - [anon_sym_unmanaged] = ACTIONS(3883), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3883), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3883), - [anon_sym_yield] = ACTIONS(3883), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3883), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3888), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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(4020), + [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_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(4013), + [anon_sym_GT] = ACTIONS(4013), + [anon_sym_in] = 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(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_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), @@ -414997,98 +414873,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2236] = { - [sym_preproc_region] = STATE(2236), - [sym_preproc_endregion] = STATE(2236), - [sym_preproc_line] = STATE(2236), - [sym_preproc_pragma] = STATE(2236), - [sym_preproc_nullable] = STATE(2236), - [sym_preproc_error] = STATE(2236), - [sym_preproc_warning] = STATE(2236), - [sym_preproc_define] = STATE(2236), - [sym_preproc_undef] = STATE(2236), - [sym__identifier_token] = ACTIONS(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_SEMI] = ACTIONS(4006), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(4008), - [anon_sym_RBRACK] = ACTIONS(4008), - [anon_sym_LPAREN] = ACTIONS(4008), - [anon_sym_RPAREN] = ACTIONS(4008), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_in] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4011), - [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(4011), - [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(4011), - [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(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(4008), - [anon_sym_with] = ACTIONS(3991), - [sym_grit_metavariable] = ACTIONS(3997), - [aux_sym_preproc_if_token3] = ACTIONS(4006), - [aux_sym_preproc_else_token1] = ACTIONS(4006), - [aux_sym_preproc_elif_token1] = ACTIONS(4006), + [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), @@ -415100,16 +414977,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2237] = { - [sym_preproc_region] = STATE(2237), - [sym_preproc_endregion] = STATE(2237), - [sym_preproc_line] = STATE(2237), - [sym_preproc_pragma] = STATE(2237), - [sym_preproc_nullable] = STATE(2237), - [sym_preproc_error] = STATE(2237), - [sym_preproc_warning] = STATE(2237), - [sym_preproc_define] = STATE(2237), - [sym_preproc_undef] = STATE(2237), + [2235] = { + [sym_preproc_region] = STATE(2235), + [sym_preproc_endregion] = STATE(2235), + [sym_preproc_line] = STATE(2235), + [sym_preproc_pragma] = STATE(2235), + [sym_preproc_nullable] = STATE(2235), + [sym_preproc_error] = STATE(2235), + [sym_preproc_warning] = STATE(2235), + [sym_preproc_define] = STATE(2235), + [sym_preproc_undef] = STATE(2235), [sym__identifier_token] = ACTIONS(4084), [anon_sym_extern] = ACTIONS(4084), [anon_sym_alias] = ACTIONS(4084), @@ -415137,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), @@ -415186,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), @@ -415203,78 +415080,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2238] = { - [sym__name] = STATE(4694), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_ref_type] = STATE(4693), - [sym__scoped_base_type] = STATE(4692), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), - [sym_preproc_region] = STATE(2238), - [sym_preproc_endregion] = STATE(2238), - [sym_preproc_line] = STATE(2238), - [sym_preproc_pragma] = STATE(2238), - [sym_preproc_nullable] = STATE(2238), - [sym_preproc_error] = STATE(2238), - [sym_preproc_warning] = STATE(2238), - [sym_preproc_define] = STATE(2238), - [sym_preproc_undef] = STATE(2238), + [2236] = { + [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), + [sym_preproc_pragma] = STATE(2236), + [sym_preproc_nullable] = STATE(2236), + [sym_preproc_error] = STATE(2236), + [sym_preproc_warning] = STATE(2236), + [sym_preproc_define] = STATE(2236), + [sym_preproc_undef] = STATE(2236), [sym__identifier_token] = ACTIONS(4088), [anon_sym_alias] = ACTIONS(4090), - [anon_sym_SEMI] = ACTIONS(3700), + [anon_sym_SEMI] = ACTIONS(3694), [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), + [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(3700), - [anon_sym_RBRACE] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), [anon_sym_file] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [anon_sym_in] = ACTIONS(3696), [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3696), [anon_sym_notnull] = ACTIONS(4090), [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3696), [anon_sym_scoped] = ACTIONS(4090), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), + [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(3702), + [anon_sym_switch] = ACTIONS(3696), [anon_sym_when] = ACTIONS(4090), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), + [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), @@ -415287,14 +415164,220 @@ 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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), + [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(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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), + }, + [2237] = { + [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(2237), + [sym_preproc_endregion] = STATE(2237), + [sym_preproc_line] = STATE(2237), + [sym_preproc_pragma] = STATE(2237), + [sym_preproc_nullable] = STATE(2237), + [sym_preproc_error] = STATE(2237), + [sym_preproc_warning] = STATE(2237), + [sym_preproc_define] = STATE(2237), + [sym_preproc_undef] = STATE(2237), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2238] = { + [sym_preproc_region] = STATE(2238), + [sym_preproc_endregion] = STATE(2238), + [sym_preproc_line] = STATE(2238), + [sym_preproc_pragma] = STATE(2238), + [sym_preproc_nullable] = STATE(2238), + [sym_preproc_error] = STATE(2238), + [sym_preproc_warning] = STATE(2238), + [sym_preproc_define] = STATE(2238), + [sym_preproc_undef] = STATE(2238), + [sym__identifier_token] = ACTIONS(3986), + [anon_sym_alias] = ACTIONS(3986), + [anon_sym_SEMI] = ACTIONS(4006), + [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_RBRACK] = ACTIONS(4034), + [anon_sym_LPAREN] = ACTIONS(4034), + [anon_sym_RPAREN] = ACTIONS(4034), + [anon_sym_file] = ACTIONS(3986), + [anon_sym_LT] = ACTIONS(3991), + [anon_sym_GT] = ACTIONS(3991), + [anon_sym_in] = 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(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(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_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), @@ -415307,30 +415390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2239] = { - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6211), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym__lambda_parameters] = STATE(7940), - [sym_identifier] = STATE(6058), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2239), [sym_preproc_endregion] = STATE(2239), [sym_preproc_line] = STATE(2239), @@ -415340,63 +415400,86 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3147), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2417), - [aux_sym__lambda_expression_init_repeat1] = STATE(4893), - [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(4099), - [anon_sym_class] = ACTIONS(4064), - [anon_sym_ref] = ACTIONS(4066), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_enum] = ACTIONS(4101), - [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), + [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), @@ -415409,15 +415492,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2240] = { - [sym__name] = STATE(5028), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_ref_type] = STATE(4870), - [sym__scoped_base_type] = STATE(4875), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -415427,58 +415505,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2240), [sym_preproc_define] = STATE(2240), [sym_preproc_undef] = STATE(2240), - [sym__identifier_token] = ACTIONS(4103), + [sym__identifier_token] = ACTIONS(4101), [anon_sym_alias] = ACTIONS(4105), - [anon_sym_SEMI] = ACTIONS(3700), [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4107), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), + [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(3702), - [anon_sym_GT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3913), + [anon_sym_GT] = ACTIONS(3913), + [anon_sym_in] = ACTIONS(3913), [anon_sym_where] = ACTIONS(4105), - [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3913), [anon_sym_notnull] = ACTIONS(4105), [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3913), [anon_sym_scoped] = ACTIONS(4105), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), + [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(3702), + [anon_sym_switch] = ACTIONS(3913), [anon_sym_when] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), + [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), @@ -415491,14 +415577,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4105), [anon_sym_by] = ACTIONS(4105), [anon_sym_select] = ACTIONS(4105), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), + [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_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -415511,10 +415594,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2241] = { - [sym__variable_designation] = STATE(5009), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -415524,66 +415612,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2241), [sym_preproc_define] = STATE(2241), [sym_preproc_undef] = STATE(2241), - [sym__identifier_token] = ACTIONS(4111), + [sym__identifier_token] = ACTIONS(4113), [anon_sym_alias] = ACTIONS(4115), + [anon_sym_SEMI] = ACTIONS(3694), [anon_sym_global] = ACTIONS(4115), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3910), - [anon_sym_LPAREN] = ACTIONS(3930), - [anon_sym_LBRACE] = ACTIONS(3910), + [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(3913), - [anon_sym_GT] = ACTIONS(3913), - [anon_sym_in] = ACTIONS(3913), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), [anon_sym_where] = ACTIONS(4115), - [anon_sym_QMARK] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3696), [anon_sym_notnull] = ACTIONS(4115), [anon_sym_unmanaged] = ACTIONS(4115), - [anon_sym_BANG] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_GT_EQ] = ACTIONS(3910), - [anon_sym_LT_EQ] = ACTIONS(3910), - [anon_sym_DOT] = ACTIONS(3913), + [anon_sym_DOT] = ACTIONS(3696), [anon_sym_scoped] = ACTIONS(4115), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), + [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(3913), + [anon_sym_switch] = ACTIONS(3696), [anon_sym_when] = ACTIONS(4115), - [sym_discard] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3910), - [anon_sym_and] = ACTIONS(3913), - [anon_sym_or] = ACTIONS(3913), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3910), - [anon_sym_PIPE_PIPE] = ACTIONS(3910), - [sym_op_coalescing] = 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_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), @@ -415596,11 +415676,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_group] = ACTIONS(4115), [anon_sym_by] = ACTIONS(4115), [anon_sym_select] = ACTIONS(4115), - [anon_sym_as] = ACTIONS(3913), - [anon_sym_is] = ACTIONS(3913), - [anon_sym_DASH_GT] = ACTIONS(3910), - [anon_sym_with] = 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(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), @@ -415613,7 +415696,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2242] = { - [sym_type_argument_list] = STATE(2216), [sym_preproc_region] = STATE(2242), [sym_preproc_endregion] = STATE(2242), [sym_preproc_line] = STATE(2242), @@ -415623,86 +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), - [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(4123), - [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(3955), - [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(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [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(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), @@ -415715,10 +415798,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2243] = { - [sym__variable_designation] = STATE(5009), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(2787), + [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), @@ -415728,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(4028), - [anon_sym_alias] = ACTIONS(4032), - [anon_sym_global] = ACTIONS(4032), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3913), - [anon_sym_LPAREN] = ACTIONS(3930), + [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(4032), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4032), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4032), - [anon_sym_unmanaged] = ACTIONS(4032), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4032), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4032), - [anon_sym_yield] = ACTIONS(4032), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4032), - [sym_discard] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3700), + [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(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(4032), - [anon_sym_into] = ACTIONS(4032), - [anon_sym_join] = ACTIONS(4032), - [anon_sym_on] = ACTIONS(4032), - [anon_sym_equals] = ACTIONS(4032), - [anon_sym_let] = ACTIONS(4032), - [anon_sym_orderby] = ACTIONS(4032), - [anon_sym_ascending] = ACTIONS(4032), - [anon_sym_descending] = ACTIONS(4032), - [anon_sym_group] = ACTIONS(4032), - [anon_sym_by] = ACTIONS(4032), - [anon_sym_select] = ACTIONS(4032), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4036), + [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), @@ -415817,10 +415900,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2244] = { - [sym__variable_designation] = STATE(5364), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym_identifier] = STATE(5246), - [sym__reserved_identifier] = STATE(2400), + [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), @@ -415830,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(3702), - [anon_sym_LBRACK] = ACTIONS(3910), - [anon_sym_COMMA] = ACTIONS(3910), - [anon_sym_LPAREN] = 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(4129), - [anon_sym_LT] = ACTIONS(3913), - [anon_sym_GT] = ACTIONS(3913), - [anon_sym_where] = ACTIONS(4129), - [anon_sym_QMARK] = ACTIONS(3913), - [anon_sym_notnull] = ACTIONS(4129), - [anon_sym_unmanaged] = ACTIONS(4129), - [anon_sym_BANG] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_GT_EQ] = ACTIONS(3910), - [anon_sym_LT_EQ] = ACTIONS(3910), - [anon_sym_DOT] = ACTIONS(3913), - [anon_sym_scoped] = ACTIONS(4129), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4129), - [anon_sym_yield] = ACTIONS(4129), - [anon_sym_switch] = ACTIONS(3913), - [anon_sym_when] = ACTIONS(4129), - [sym_discard] = ACTIONS(4137), - [anon_sym_DOT_DOT] = 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(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3910), - [anon_sym_PIPE_PIPE] = ACTIONS(3910), - [sym_op_coalescing] = ACTIONS(3913), - [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(3913), - [anon_sym_is] = ACTIONS(3913), - [anon_sym_DASH_GT] = ACTIONS(3910), - [anon_sym_with] = ACTIONS(3913), - [sym_grit_metavariable] = ACTIONS(4141), + [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), @@ -415919,30 +416002,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2245] = { - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_modifier] = STATE(4309), - [sym_parameter_list] = STATE(7657), + [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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6211), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym__lambda_parameters] = STATE(7940), - [sym_identifier] = STATE(6058), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [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), @@ -415952,9 +416035,9 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3147), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2421), - [aux_sym__lambda_expression_init_repeat1] = STATE(4893), + [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), @@ -415962,11 +416045,11 @@ 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(4099), + [anon_sym_LPAREN] = ACTIONS(4141), [anon_sym_class] = ACTIONS(4064), [anon_sym_ref] = ACTIONS(4066), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_enum] = ACTIONS(4145), + [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), @@ -416021,6 +416104,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2246] = { + [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), @@ -416030,87 +416137,63 @@ 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(3913), - [anon_sym_alias] = ACTIONS(3913), - [anon_sym_global] = ACTIONS(3913), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3913), - [anon_sym_COMMA] = ACTIONS(3910), - [anon_sym_RBRACK] = ACTIONS(3910), - [anon_sym_LPAREN] = ACTIONS(3910), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3910), - [anon_sym_RBRACE] = ACTIONS(3910), - [anon_sym_file] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3913), - [anon_sym_unmanaged] = ACTIONS(3913), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3913), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3913), - [anon_sym_yield] = ACTIONS(3913), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3913), - [sym_discard] = ACTIONS(3913), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3913), - [anon_sym_or] = ACTIONS(3913), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3910), + [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), + [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(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(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), @@ -416123,7 +416206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2247] = { - [sym_type_argument_list] = STATE(2216), + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2247), [sym_preproc_endregion] = STATE(2247), [sym_preproc_line] = STATE(2247), @@ -416133,86 +416216,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2247), [sym_preproc_define] = STATE(2247), [sym_preproc_undef] = STATE(2247), - [sym__identifier_token] = ACTIONS(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(3955), - [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(3958), - [anon_sym_COLON_COLON] = ACTIONS(4147), - [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(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), @@ -416225,10 +416308,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2248] = { - [sym__variable_designation] = STATE(5009), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(2787), [sym_preproc_region] = STATE(2248), [sym_preproc_endregion] = STATE(2248), [sym_preproc_line] = STATE(2248), @@ -416238,82 +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(4028), - [anon_sym_alias] = ACTIONS(4032), - [anon_sym_global] = ACTIONS(4032), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3930), + [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_file] = ACTIONS(4032), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4032), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4032), - [anon_sym_unmanaged] = ACTIONS(4032), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4032), - [anon_sym_EQ_GT] = ACTIONS(3910), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4032), - [anon_sym_yield] = ACTIONS(4032), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4032), - [sym_discard] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3700), + [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(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(4032), - [anon_sym_into] = ACTIONS(4032), - [anon_sym_join] = ACTIONS(4032), - [anon_sym_on] = ACTIONS(4032), - [anon_sym_equals] = ACTIONS(4032), - [anon_sym_let] = ACTIONS(4032), - [anon_sym_orderby] = ACTIONS(4032), - [anon_sym_ascending] = ACTIONS(4032), - [anon_sym_descending] = ACTIONS(4032), - [anon_sym_group] = ACTIONS(4032), - [anon_sym_by] = ACTIONS(4032), - [anon_sym_select] = ACTIONS(4032), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4036), + [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), @@ -416335,86 +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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(3997), - [anon_sym_RBRACK] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(4008), - [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(4011), - [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(4011), - [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(4011), - [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(4008), - [anon_sym_with] = ACTIONS(3991), - [sym_grit_metavariable] = ACTIONS(3997), + [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), @@ -416427,6 +416510,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2250] = { + [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), @@ -416436,86 +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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4026), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_RBRACK] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_RPAREN] = ACTIONS(4026), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_EQ_GT] = ACTIONS(4021), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4014), - [anon_sym_or] = ACTIONS(4014), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), + [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), @@ -416528,15 +416611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2251] = { - [sym__name] = STATE(5079), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_ref_type] = STATE(3540), - [sym__scoped_base_type] = STATE(3541), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2251), [sym_preproc_endregion] = STATE(2251), [sym_preproc_line] = STATE(2251), @@ -416546,77 +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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4153), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4151), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4151), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4155), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4158), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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), @@ -416629,7 +416712,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2252] = { - [sym_type_argument_list] = STATE(2216), + [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), @@ -416639,85 +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(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(4123), - [anon_sym_COMMA] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(4163), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3955), - [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(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [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(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), @@ -416730,7 +416813,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2253] = { - [sym_type_argument_list] = STATE(2216), + [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), @@ -416740,85 +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(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COMMA] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(4163), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3955), - [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(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [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(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), @@ -416831,10 +416914,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2254] = { - [sym__variable_designation] = STATE(5515), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym_identifier] = STATE(5517), - [sym__reserved_identifier] = STATE(3393), + [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), @@ -416844,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(4165), - [anon_sym_alias] = ACTIONS(4169), - [anon_sym_global] = ACTIONS(4169), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3910), - [anon_sym_LPAREN] = ACTIONS(4173), - [anon_sym_LBRACE] = ACTIONS(3910), - [anon_sym_file] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(3913), - [anon_sym_GT] = ACTIONS(3913), - [anon_sym_where] = ACTIONS(4169), - [anon_sym_QMARK] = ACTIONS(3913), - [anon_sym_notnull] = ACTIONS(4169), - [anon_sym_unmanaged] = ACTIONS(4169), - [anon_sym_BANG] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_GT_EQ] = ACTIONS(3910), - [anon_sym_LT_EQ] = ACTIONS(3910), - [anon_sym_DOT] = ACTIONS(3913), - [anon_sym_scoped] = ACTIONS(4169), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4169), - [anon_sym_yield] = ACTIONS(4169), - [anon_sym_switch] = ACTIONS(3913), - [anon_sym_when] = ACTIONS(4169), - [sym_discard] = ACTIONS(4177), - [anon_sym_DOT_DOT] = ACTIONS(3910), - [anon_sym_and] = ACTIONS(3913), - [anon_sym_or] = ACTIONS(3913), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3910), - [anon_sym_PIPE_PIPE] = ACTIONS(3910), - [sym_op_coalescing] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(4169), - [anon_sym_into] = ACTIONS(4169), - [anon_sym_join] = ACTIONS(4169), - [anon_sym_on] = ACTIONS(4169), - [anon_sym_equals] = ACTIONS(4169), - [anon_sym_let] = ACTIONS(4169), - [anon_sym_orderby] = ACTIONS(4169), - [anon_sym_ascending] = ACTIONS(4169), - [anon_sym_descending] = ACTIONS(4169), - [anon_sym_group] = ACTIONS(4169), - [anon_sym_by] = ACTIONS(4169), - [anon_sym_select] = ACTIONS(4169), - [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(4181), + [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), @@ -416932,10 +417015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2255] = { - [sym__variable_designation] = STATE(5515), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym_identifier] = STATE(5517), - [sym__reserved_identifier] = STATE(3741), + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2255), [sym_preproc_endregion] = STATE(2255), [sym_preproc_line] = STATE(2255), @@ -416945,82 +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(4185), - [anon_sym_alias] = ACTIONS(4189), - [anon_sym_global] = ACTIONS(4189), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3910), - [anon_sym_LPAREN] = ACTIONS(4173), - [anon_sym_LBRACE] = ACTIONS(3910), - [anon_sym_file] = ACTIONS(4189), - [anon_sym_LT] = ACTIONS(3913), - [anon_sym_GT] = ACTIONS(3913), - [anon_sym_where] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(3913), - [anon_sym_notnull] = ACTIONS(4189), - [anon_sym_unmanaged] = ACTIONS(4189), - [anon_sym_BANG] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_GT_EQ] = ACTIONS(3910), - [anon_sym_LT_EQ] = ACTIONS(3910), - [anon_sym_DOT] = ACTIONS(3913), - [anon_sym_scoped] = ACTIONS(4189), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4189), - [anon_sym_yield] = ACTIONS(4189), - [anon_sym_switch] = ACTIONS(3913), - [anon_sym_when] = ACTIONS(4189), - [sym_discard] = ACTIONS(4177), - [anon_sym_DOT_DOT] = ACTIONS(3910), - [anon_sym_and] = ACTIONS(3913), - [anon_sym_or] = ACTIONS(3913), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3910), - [anon_sym_PIPE_PIPE] = ACTIONS(3910), - [sym_op_coalescing] = ACTIONS(3913), - [anon_sym_from] = ACTIONS(4189), - [anon_sym_into] = ACTIONS(4189), - [anon_sym_join] = ACTIONS(4189), - [anon_sym_on] = ACTIONS(4189), - [anon_sym_equals] = ACTIONS(4189), - [anon_sym_let] = ACTIONS(4189), - [anon_sym_orderby] = ACTIONS(4189), - [anon_sym_ascending] = ACTIONS(4189), - [anon_sym_descending] = ACTIONS(4189), - [anon_sym_group] = ACTIONS(4189), - [anon_sym_by] = ACTIONS(4189), - [anon_sym_select] = ACTIONS(4189), - [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(4193), + [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), @@ -417033,7 +417116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2256] = { - [sym_type_argument_list] = STATE(2285), + [sym_type_argument_list] = STATE(2293), [sym_preproc_region] = STATE(2256), [sym_preproc_endregion] = STATE(2256), [sym_preproc_line] = STATE(2256), @@ -417043,101 +417126,98 @@ 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(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(4197), - [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(3958), - [anon_sym_COLON_COLON] = ACTIONS(4200), - [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), + [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__variable_designation] = STATE(4902), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2257), [sym_preproc_endregion] = STATE(2257), [sym_preproc_line] = STATE(2257), @@ -417147,82 +417227,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2257), [sym_preproc_define] = STATE(2257), [sym_preproc_undef] = STATE(2257), - [sym__identifier_token] = ACTIONS(3902), - [anon_sym_alias] = ACTIONS(3906), - [anon_sym_global] = ACTIONS(3906), - [anon_sym_EQ] = ACTIONS(3702), - [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_BANG] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_GT_EQ] = ACTIONS(3910), - [anon_sym_LT_EQ] = ACTIONS(3910), - [anon_sym_DOT] = ACTIONS(3913), - [anon_sym_scoped] = ACTIONS(3906), - [anon_sym_EQ_GT] = ACTIONS(3910), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3906), - [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_and] = ACTIONS(3913), - [anon_sym_or] = ACTIONS(3913), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3910), - [anon_sym_PIPE_PIPE] = ACTIONS(3910), - [sym_op_coalescing] = ACTIONS(3913), - [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), + [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), @@ -417235,10 +417318,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2258] = { - [sym__variable_designation] = STATE(5009), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2258), [sym_preproc_endregion] = STATE(2258), [sym_preproc_line] = STATE(2258), @@ -417248,82 +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(3902), - [anon_sym_alias] = ACTIONS(3906), - [anon_sym_global] = ACTIONS(3906), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3910), - [anon_sym_LPAREN] = ACTIONS(3930), - [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_BANG] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_GT_EQ] = ACTIONS(3910), - [anon_sym_LT_EQ] = ACTIONS(3910), - [anon_sym_DOT] = ACTIONS(3913), - [anon_sym_scoped] = ACTIONS(3906), - [anon_sym_EQ_GT] = ACTIONS(3910), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3906), - [anon_sym_yield] = ACTIONS(3906), - [anon_sym_switch] = ACTIONS(3913), - [anon_sym_when] = ACTIONS(3906), - [sym_discard] = ACTIONS(3934), - [anon_sym_DOT_DOT] = ACTIONS(3910), - [anon_sym_and] = ACTIONS(3913), - [anon_sym_or] = ACTIONS(3913), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3910), - [anon_sym_PIPE_PIPE] = ACTIONS(3910), - [sym_op_coalescing] = ACTIONS(3913), - [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), + [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), @@ -417336,7 +417419,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2259] = { - [sym_type_argument_list] = STATE(2216), [sym_preproc_region] = STATE(2259), [sym_preproc_endregion] = STATE(2259), [sym_preproc_line] = STATE(2259), @@ -417346,85 +417428,86 @@ 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(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_COLON] = ACTIONS(4123), - [anon_sym_COMMA] = ACTIONS(4202), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(4202), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3955), - [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(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [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(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_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(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), @@ -417437,6 +417520,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2260] = { + [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), @@ -417446,86 +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(3913), - [anon_sym_alias] = ACTIONS(3913), - [anon_sym_global] = ACTIONS(3913), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3910), - [anon_sym_LPAREN] = ACTIONS(3910), - [anon_sym_RPAREN] = ACTIONS(3910), + [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_RBRACE] = ACTIONS(3910), - [anon_sym_file] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3913), - [anon_sym_unmanaged] = ACTIONS(3913), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3913), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3913), - [anon_sym_yield] = ACTIONS(3913), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3913), - [sym_discard] = ACTIONS(3913), - [anon_sym_DOT_DOT] = ACTIONS(3700), + [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_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(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3910), + [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), @@ -417547,107 +417630,6 @@ 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(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), - }, - [2262] = { - [sym_preproc_region] = STATE(2262), - [sym_preproc_endregion] = STATE(2262), - [sym_preproc_line] = STATE(2262), - [sym_preproc_pragma] = STATE(2262), - [sym_preproc_nullable] = STATE(2262), - [sym_preproc_error] = STATE(2262), - [sym_preproc_warning] = STATE(2262), - [sym_preproc_define] = STATE(2262), - [sym_preproc_undef] = STATE(2262), [sym__identifier_token] = ACTIONS(2919), [anon_sym_alias] = ACTIONS(2919), [anon_sym_global] = ACTIONS(2919), @@ -417669,33 +417651,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [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), @@ -417708,9 +417675,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(2919), [anon_sym_into] = ACTIONS(2919), [anon_sym_join] = ACTIONS(2919), @@ -417739,7 +417721,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2262] = { + [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), + [sym_preproc_pragma] = STATE(2262), + [sym_preproc_nullable] = STATE(2262), + [sym_preproc_error] = STATE(2262), + [sym_preproc_warning] = STATE(2262), + [sym_preproc_define] = STATE(2262), + [sym_preproc_undef] = STATE(2262), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), @@ -417749,6 +417841,297 @@ 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), @@ -417765,34 +418148,19 @@ 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), @@ -417807,9 +418175,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), @@ -417839,306 +418222,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym_interpolation_close_brace] = ACTIONS(3189), }, - [2264] = { - [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(3702), - [anon_sym_alias] = ACTIONS(3702), - [anon_sym_global] = ACTIONS(3702), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3702), - [anon_sym_unmanaged] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3702), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3702), - [anon_sym_join] = ACTIONS(3702), - [anon_sym_on] = ACTIONS(3702), - [anon_sym_equals] = ACTIONS(3702), - [anon_sym_let] = ACTIONS(3702), - [anon_sym_orderby] = ACTIONS(3702), - [anon_sym_ascending] = ACTIONS(3702), - [anon_sym_descending] = ACTIONS(3702), - [anon_sym_group] = ACTIONS(3702), - [anon_sym_by] = ACTIONS(3702), - [anon_sym_select] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3700), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3700), - }, - [2265] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2297), - [sym_property_pattern_clause] = STATE(2334), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4763), - [sym__reserved_identifier] = STATE(4707), - [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(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2266] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2297), - [sym_property_pattern_clause] = STATE(2334), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4763), - [sym__reserved_identifier] = STATE(4707), - [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(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), - }, [2267] = { [sym_preproc_region] = STATE(2267), [sym_preproc_endregion] = STATE(2267), @@ -418149,85 +418232,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2267), [sym_preproc_define] = STATE(2267), [sym_preproc_undef] = STATE(2267), - [sym__identifier_token] = ACTIONS(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(3993), - [anon_sym_RBRACK] = ACTIONS(3993), - [anon_sym_LPAREN] = ACTIONS(4008), - [anon_sym_RPAREN] = ACTIONS(3993), - [anon_sym_LBRACE] = ACTIONS(3997), - [anon_sym_RBRACE] = ACTIONS(3993), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4011), - [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(4011), - [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(4011), - [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(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(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(4008), - [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(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), @@ -418253,11 +418336,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(4034), [anon_sym_COLON] = ACTIONS(4006), [anon_sym_COMMA] = ACTIONS(3988), [anon_sym_RBRACK] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4034), [anon_sym_RPAREN] = ACTIONS(3988), [anon_sym_LBRACE] = ACTIONS(3997), [anon_sym_RBRACE] = ACTIONS(3988), @@ -418265,35 +418348,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(3991), [anon_sym_GT] = ACTIONS(3991), [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4011), + [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(4011), - [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(4011), + [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), @@ -418308,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), @@ -418325,7 +418408,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(3986), [anon_sym_as] = ACTIONS(3991), [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4008), + [anon_sym_DASH_GT] = ACTIONS(4034), [anon_sym_with] = ACTIONS(3991), [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -418340,14 +418423,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2269] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2297), - [sym_property_pattern_clause] = STATE(2334), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4763), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -418357,77 +418440,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2269), [sym_preproc_define] = STATE(2269), [sym_preproc_undef] = STATE(2269), - [sym__identifier_token] = ACTIONS(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), + [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), @@ -418440,15 +418523,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2270] = { - [sym__name] = STATE(4157), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_ref_type] = STATE(4018), - [sym__scoped_base_type] = STATE(4086), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), [sym_preproc_region] = STATE(2270), [sym_preproc_endregion] = STATE(2270), [sym_preproc_line] = STATE(2270), @@ -418458,76 +418532,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2270), [sym_preproc_define] = STATE(2270), [sym_preproc_undef] = STATE(2270), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4230), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4232), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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_RBRACK] = ACTIONS(4034), + [anon_sym_LPAREN] = ACTIONS(4034), + [anon_sym_RPAREN] = ACTIONS(4006), + [anon_sym_LBRACE] = ACTIONS(3997), + [anon_sym_RBRACE] = 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), + [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), @@ -418553,49 +418636,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(4034), [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(4008), - [anon_sym_RBRACK] = ACTIONS(4008), - [anon_sym_LPAREN] = ACTIONS(4008), - [anon_sym_RPAREN] = ACTIONS(4006), + [anon_sym_COMMA] = ACTIONS(3993), + [anon_sym_RBRACK] = ACTIONS(3993), + [anon_sym_LPAREN] = ACTIONS(4034), + [anon_sym_RPAREN] = ACTIONS(3993), [anon_sym_LBRACE] = ACTIONS(3997), - [anon_sym_RBRACE] = ACTIONS(4008), + [anon_sym_RBRACE] = ACTIONS(3993), [anon_sym_file] = ACTIONS(3986), [anon_sym_LT] = ACTIONS(3991), [anon_sym_GT] = ACTIONS(3991), [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4011), + [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(4011), - [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(4011), + [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_and] = ACTIONS(3986), - [anon_sym_or] = ACTIONS(3986), + [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), @@ -418608,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), @@ -418625,7 +418708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(3986), [anon_sym_as] = ACTIONS(3991), [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4008), + [anon_sym_DASH_GT] = ACTIONS(4034), [anon_sym_with] = ACTIONS(3991), [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -418649,110 +418732,10 @@ 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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4026), - [anon_sym_COMMA] = ACTIONS(4016), - [anon_sym_RBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_RPAREN] = ACTIONS(4026), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4016), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4014), - [anon_sym_or] = ACTIONS(4014), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2273] = { - [sym_preproc_region] = STATE(2273), - [sym_preproc_endregion] = STATE(2273), - [sym_preproc_line] = STATE(2273), - [sym_preproc_pragma] = STATE(2273), - [sym_preproc_nullable] = STATE(2273), - [sym_preproc_error] = STATE(2273), - [sym_preproc_warning] = STATE(2273), - [sym_preproc_define] = STATE(2273), - [sym_preproc_undef] = STATE(2273), [sym__identifier_token] = ACTIONS(3913), [anon_sym_alias] = ACTIONS(3913), [anon_sym_global] = ACTIONS(3913), - [anon_sym_EQ] = ACTIONS(3702), + [anon_sym_EQ] = ACTIONS(3696), [anon_sym_LBRACK] = ACTIONS(3910), [anon_sym_COLON] = ACTIONS(3913), [anon_sym_COMMA] = ACTIONS(3910), @@ -418765,51 +418748,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(3913), [anon_sym_notnull] = ACTIONS(3913), [anon_sym_unmanaged] = ACTIONS(3913), - [anon_sym_BANG] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_GT_EQ] = ACTIONS(3910), - [anon_sym_LT_EQ] = ACTIONS(3910), [anon_sym_DOT] = ACTIONS(3913), [anon_sym_scoped] = ACTIONS(3913), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), + [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(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), + [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), @@ -418839,7 +418822,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_preproc_pragma] = STATE(2273), + [sym_preproc_nullable] = STATE(2273), + [sym_preproc_error] = STATE(2273), + [sym_preproc_warning] = STATE(2273), + [sym_preproc_define] = STATE(2273), + [sym_preproc_undef] = STATE(2273), + [sym__identifier_token] = ACTIONS(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), @@ -418849,84 +418940,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2274), [sym_preproc_define] = STATE(2274), [sym_preproc_undef] = STATE(2274), - [sym__identifier_token] = ACTIONS(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), + [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), @@ -418939,7 +419022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2275] = { - [sym_type_argument_list] = STATE(2216), + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2275), [sym_preproc_endregion] = STATE(2275), [sym_preproc_line] = STATE(2275), @@ -418949,83 +419032,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2275), [sym_preproc_define] = STATE(2275), [sym_preproc_undef] = STATE(2275), - [sym__identifier_token] = ACTIONS(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(3955), - [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(3958), - [anon_sym_COLON_COLON] = ACTIONS(4234), - [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_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), @@ -419038,14 +419121,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2276] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2324), - [sym_property_pattern_clause] = STATE(2362), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4988), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2276), [sym_preproc_endregion] = STATE(2276), [sym_preproc_line] = STATE(2276), @@ -419055,76 +419130,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2276), [sym_preproc_define] = STATE(2276), [sym_preproc_undef] = STATE(2276), - [sym__identifier_token] = ACTIONS(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(4236), - [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), + [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), @@ -419146,84 +419229,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2277), [sym_preproc_define] = STATE(2277), [sym_preproc_undef] = STATE(2277), - [sym__identifier_token] = ACTIONS(3702), - [anon_sym_alias] = ACTIONS(3702), - [anon_sym_global] = ACTIONS(3702), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(4238), - [anon_sym_file] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3702), - [anon_sym_unmanaged] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3702), - [anon_sym_break] = ACTIONS(4240), - [anon_sym_yield] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3702), - [anon_sym_join] = ACTIONS(3702), - [anon_sym_on] = ACTIONS(3702), - [anon_sym_equals] = ACTIONS(3702), - [anon_sym_let] = ACTIONS(3702), - [anon_sym_orderby] = ACTIONS(3702), - [anon_sym_ascending] = ACTIONS(3702), - [anon_sym_descending] = ACTIONS(3702), - [anon_sym_group] = ACTIONS(3702), - [anon_sym_by] = ACTIONS(3702), - [anon_sym_select] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3700), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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_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), @@ -419236,14 +419319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2278] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2324), - [sym_property_pattern_clause] = STATE(2362), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4988), - [sym__reserved_identifier] = STATE(4707), + [sym_type_argument_list] = STATE(2293), [sym_preproc_region] = STATE(2278), [sym_preproc_endregion] = STATE(2278), [sym_preproc_line] = STATE(2278), @@ -419253,86 +419329,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2278), [sym_preproc_define] = STATE(2278), [sym_preproc_undef] = STATE(2278), - [sym__identifier_token] = ACTIONS(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(4236), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2279] = { [sym_preproc_region] = STATE(2279), @@ -419349,45 +419432,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SEMI] = ACTIONS(4006), [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(4034), [anon_sym_COLON] = ACTIONS(4006), [anon_sym_COMMA] = ACTIONS(4006), [anon_sym_RBRACK] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4008), + [anon_sym_LPAREN] = ACTIONS(4034), [anon_sym_RPAREN] = ACTIONS(4006), [anon_sym_RBRACE] = ACTIONS(4006), [anon_sym_file] = ACTIONS(3986), [anon_sym_LT] = ACTIONS(3991), [anon_sym_GT] = ACTIONS(3991), [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4011), + [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(4011), - [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(4011), + [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), @@ -419402,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), @@ -419419,7 +419502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(3986), [anon_sym_as] = ACTIONS(3991), [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4008), + [anon_sym_DASH_GT] = ACTIONS(4034), [anon_sym_with] = ACTIONS(3991), [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -419434,6 +419517,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -419443,281 +419534,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2280), [sym_preproc_define] = STATE(2280), [sym_preproc_undef] = STATE(2280), - [sym__identifier_token] = ACTIONS(3702), - [anon_sym_alias] = ACTIONS(3702), - [anon_sym_global] = ACTIONS(3702), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3702), - [anon_sym_unmanaged] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3702), - [anon_sym_var] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3702), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3702), - [anon_sym_join] = ACTIONS(3702), - [anon_sym_on] = ACTIONS(3702), - [anon_sym_equals] = ACTIONS(3702), - [anon_sym_let] = ACTIONS(3702), - [anon_sym_orderby] = ACTIONS(3702), - [anon_sym_ascending] = ACTIONS(3702), - [anon_sym_descending] = ACTIONS(3702), - [anon_sym_group] = ACTIONS(3702), - [anon_sym_by] = ACTIONS(3702), - [anon_sym_select] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3700), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2324), - [sym_property_pattern_clause] = STATE(2362), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4988), - [sym__reserved_identifier] = STATE(4707), - [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(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(4236), - [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), + [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2282] = { - [sym_type_argument_list] = STATE(2285), - [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(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(4197), - [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(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [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_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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_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), @@ -419728,95 +419713,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(3953), }, - [2283] = { - [sym_type_argument_list] = STATE(2285), - [sym_preproc_region] = STATE(2283), - [sym_preproc_endregion] = STATE(2283), - [sym_preproc_line] = STATE(2283), - [sym_preproc_pragma] = STATE(2283), - [sym_preproc_nullable] = STATE(2283), - [sym_preproc_error] = STATE(2283), - [sym_preproc_warning] = STATE(2283), - [sym_preproc_define] = STATE(2283), - [sym_preproc_undef] = STATE(2283), - [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(4197), - [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), + [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), @@ -419827,9 +419812,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_close_brace] = ACTIONS(3953), + }, + [2283] = { + [sym_type_argument_list] = STATE(2293), + [sym_preproc_region] = STATE(2283), + [sym_preproc_endregion] = STATE(2283), + [sym_preproc_line] = STATE(2283), + [sym_preproc_pragma] = STATE(2283), + [sym_preproc_nullable] = STATE(2283), + [sym_preproc_error] = STATE(2283), + [sym_preproc_warning] = STATE(2283), + [sym_preproc_define] = STATE(2283), + [sym_preproc_undef] = STATE(2283), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2284] = { + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2284), [sym_preproc_endregion] = STATE(2284), [sym_preproc_line] = STATE(2284), @@ -419839,93 +419923,92 @@ 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(3968), - [anon_sym_alias] = ACTIONS(3968), - [anon_sym_global] = ACTIONS(3968), - [anon_sym_EQ] = ACTIONS(3968), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_COLON] = ACTIONS(3970), - [anon_sym_COMMA] = ACTIONS(3970), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_LBRACE] = ACTIONS(3970), - [anon_sym_file] = ACTIONS(3968), - [anon_sym_LT] = ACTIONS(3968), - [anon_sym_GT] = ACTIONS(3968), - [anon_sym_where] = ACTIONS(3968), - [anon_sym_QMARK] = ACTIONS(3968), - [anon_sym_notnull] = ACTIONS(3968), - [anon_sym_unmanaged] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(3968), - [anon_sym_PLUS_PLUS] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(3970), - [anon_sym_PLUS] = ACTIONS(3968), - [anon_sym_DASH] = ACTIONS(3968), - [anon_sym_STAR] = ACTIONS(3968), - [anon_sym_SLASH] = ACTIONS(3968), - [anon_sym_PERCENT] = ACTIONS(3968), - [anon_sym_CARET] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(3968), - [anon_sym_AMP] = ACTIONS(3968), - [anon_sym_LT_LT] = ACTIONS(3968), - [anon_sym_GT_GT] = ACTIONS(3968), - [anon_sym_GT_GT_GT] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3970), - [anon_sym_BANG_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_DOT] = ACTIONS(3968), - [anon_sym_scoped] = ACTIONS(3968), - [anon_sym_var] = ACTIONS(3968), - [anon_sym_yield] = ACTIONS(3968), - [anon_sym_switch] = ACTIONS(3968), - [anon_sym_when] = ACTIONS(3968), - [sym_discard] = ACTIONS(3968), - [anon_sym_DOT_DOT] = ACTIONS(3970), - [anon_sym_and] = ACTIONS(3968), - [anon_sym_or] = ACTIONS(3968), - [anon_sym_PLUS_EQ] = ACTIONS(3970), - [anon_sym_DASH_EQ] = ACTIONS(3970), - [anon_sym_STAR_EQ] = ACTIONS(3970), - [anon_sym_SLASH_EQ] = ACTIONS(3970), - [anon_sym_PERCENT_EQ] = ACTIONS(3970), - [anon_sym_AMP_EQ] = ACTIONS(3970), - [anon_sym_CARET_EQ] = ACTIONS(3970), - [anon_sym_PIPE_EQ] = ACTIONS(3970), - [anon_sym_LT_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_GT_EQ] = ACTIONS(3970), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3970), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3970), - [anon_sym_AMP_AMP] = ACTIONS(3970), - [anon_sym_PIPE_PIPE] = ACTIONS(3970), - [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_ascending] = ACTIONS(3968), - [anon_sym_descending] = 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(3970), - [anon_sym_with] = ACTIONS(3968), - [sym_grit_metavariable] = ACTIONS(3970), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3970), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2285] = { [sym_preproc_region] = STATE(2285), @@ -419937,82 +420020,82 @@ 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(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_BANG] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3982), - [anon_sym_DASH_DASH] = ACTIONS(3982), - [anon_sym_PLUS] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_SLASH] = ACTIONS(3980), - [anon_sym_PERCENT] = ACTIONS(3980), - [anon_sym_CARET] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3980), - [anon_sym_LT_LT] = ACTIONS(3980), - [anon_sym_GT_GT] = ACTIONS(3980), - [anon_sym_GT_GT_GT] = ACTIONS(3980), - [anon_sym_EQ_EQ] = ACTIONS(3982), - [anon_sym_BANG_EQ] = ACTIONS(3982), - [anon_sym_GT_EQ] = ACTIONS(3982), - [anon_sym_LT_EQ] = ACTIONS(3982), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_scoped] = ACTIONS(3980), - [anon_sym_var] = 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_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_AMP_AMP] = ACTIONS(3982), - [anon_sym_PIPE_PIPE] = ACTIONS(3982), - [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_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), + [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), @@ -420023,7 +420106,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(3982), + [sym_interpolation_close_brace] = ACTIONS(3988), }, [2286] = { [sym_preproc_region] = STATE(2286), @@ -420035,83 +420118,83 @@ 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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4026), - [anon_sym_COMMA] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_RPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4014), - [anon_sym_or] = ACTIONS(4014), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), + [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), @@ -420133,93 +420216,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2287), [sym_preproc_define] = STATE(2287), [sym_preproc_undef] = STATE(2287), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4016), - [anon_sym_COMMA] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4023), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [anon_sym_GT_EQ] = ACTIONS(4016), - [anon_sym_LT_EQ] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym_op_coalescing] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4023), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4016), + [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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2288] = { [sym_preproc_region] = STATE(2288), @@ -420231,245 +420314,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2288), [sym_preproc_define] = STATE(2288), [sym_preproc_undef] = STATE(2288), - [sym__identifier_token] = ACTIONS(3972), - [anon_sym_alias] = ACTIONS(3972), - [anon_sym_global] = ACTIONS(3972), - [anon_sym_EQ] = ACTIONS(3972), - [anon_sym_LBRACK] = ACTIONS(3974), - [anon_sym_COLON] = ACTIONS(3974), - [anon_sym_COMMA] = ACTIONS(3974), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_LBRACE] = ACTIONS(3974), - [anon_sym_file] = ACTIONS(3972), - [anon_sym_LT] = ACTIONS(3972), - [anon_sym_GT] = ACTIONS(3972), - [anon_sym_where] = ACTIONS(3972), - [anon_sym_QMARK] = ACTIONS(3972), - [anon_sym_notnull] = ACTIONS(3972), - [anon_sym_unmanaged] = ACTIONS(3972), - [anon_sym_BANG] = ACTIONS(3972), - [anon_sym_PLUS_PLUS] = ACTIONS(3974), - [anon_sym_DASH_DASH] = ACTIONS(3974), - [anon_sym_PLUS] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3972), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_SLASH] = ACTIONS(3972), - [anon_sym_PERCENT] = ACTIONS(3972), - [anon_sym_CARET] = ACTIONS(3972), - [anon_sym_PIPE] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3972), - [anon_sym_LT_LT] = ACTIONS(3972), - [anon_sym_GT_GT] = ACTIONS(3972), - [anon_sym_GT_GT_GT] = ACTIONS(3972), - [anon_sym_EQ_EQ] = ACTIONS(3974), - [anon_sym_BANG_EQ] = ACTIONS(3974), - [anon_sym_GT_EQ] = ACTIONS(3974), - [anon_sym_LT_EQ] = ACTIONS(3974), - [anon_sym_DOT] = ACTIONS(3972), - [anon_sym_scoped] = ACTIONS(3972), - [anon_sym_var] = ACTIONS(3972), - [anon_sym_yield] = ACTIONS(3972), - [anon_sym_switch] = ACTIONS(3972), - [anon_sym_when] = ACTIONS(3972), - [sym_discard] = ACTIONS(3972), - [anon_sym_DOT_DOT] = ACTIONS(3974), - [anon_sym_and] = ACTIONS(3972), - [anon_sym_or] = ACTIONS(3972), - [anon_sym_PLUS_EQ] = ACTIONS(3974), - [anon_sym_DASH_EQ] = ACTIONS(3974), - [anon_sym_STAR_EQ] = ACTIONS(3974), - [anon_sym_SLASH_EQ] = ACTIONS(3974), - [anon_sym_PERCENT_EQ] = ACTIONS(3974), - [anon_sym_AMP_EQ] = ACTIONS(3974), - [anon_sym_CARET_EQ] = ACTIONS(3974), - [anon_sym_PIPE_EQ] = ACTIONS(3974), - [anon_sym_LT_LT_EQ] = ACTIONS(3974), - [anon_sym_GT_GT_EQ] = ACTIONS(3974), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3974), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3974), - [anon_sym_AMP_AMP] = ACTIONS(3974), - [anon_sym_PIPE_PIPE] = ACTIONS(3974), - [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_ascending] = ACTIONS(3972), - [anon_sym_descending] = 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(3974), - [anon_sym_with] = ACTIONS(3972), - [sym_grit_metavariable] = ACTIONS(3974), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3974), - }, - [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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4026), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_RPAREN] = ACTIONS(4021), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4014), - [anon_sym_or] = ACTIONS(4014), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [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(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(4034), [anon_sym_COLON] = ACTIONS(4006), [anon_sym_COMMA] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(4008), + [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(4011), + [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(4011), - [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(4011), + [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), @@ -420484,9 +420356,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), @@ -420501,7 +420388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(3986), [anon_sym_as] = ACTIONS(3991), [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4008), + [anon_sym_DASH_GT] = ACTIONS(4034), [anon_sym_with] = ACTIONS(3991), [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -420515,6 +420402,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(4244), + [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_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), + }, + [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(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(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(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_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4015), + }, [2291] = { [sym_preproc_region] = STATE(2291), [sym_preproc_endregion] = STATE(2291), @@ -420525,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(3976), - [anon_sym_alias] = ACTIONS(3976), - [anon_sym_global] = ACTIONS(3976), - [anon_sym_EQ] = ACTIONS(3976), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_COLON] = ACTIONS(3978), - [anon_sym_COMMA] = ACTIONS(3978), - [anon_sym_LPAREN] = ACTIONS(3978), - [anon_sym_LBRACE] = ACTIONS(3978), - [anon_sym_file] = ACTIONS(3976), - [anon_sym_LT] = ACTIONS(3976), - [anon_sym_GT] = ACTIONS(3976), - [anon_sym_where] = ACTIONS(3976), - [anon_sym_QMARK] = ACTIONS(3976), - [anon_sym_notnull] = ACTIONS(3976), - [anon_sym_unmanaged] = ACTIONS(3976), - [anon_sym_BANG] = ACTIONS(3976), - [anon_sym_PLUS_PLUS] = ACTIONS(3978), - [anon_sym_DASH_DASH] = ACTIONS(3978), - [anon_sym_PLUS] = ACTIONS(3976), - [anon_sym_DASH] = ACTIONS(3976), - [anon_sym_STAR] = ACTIONS(3976), - [anon_sym_SLASH] = ACTIONS(3976), - [anon_sym_PERCENT] = ACTIONS(3976), - [anon_sym_CARET] = ACTIONS(3976), - [anon_sym_PIPE] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), - [anon_sym_LT_LT] = ACTIONS(3976), - [anon_sym_GT_GT] = ACTIONS(3976), - [anon_sym_GT_GT_GT] = ACTIONS(3976), - [anon_sym_EQ_EQ] = ACTIONS(3978), - [anon_sym_BANG_EQ] = ACTIONS(3978), - [anon_sym_GT_EQ] = ACTIONS(3978), - [anon_sym_LT_EQ] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3976), - [anon_sym_scoped] = ACTIONS(3976), - [anon_sym_var] = ACTIONS(3976), - [anon_sym_yield] = ACTIONS(3976), - [anon_sym_switch] = ACTIONS(3976), - [anon_sym_when] = ACTIONS(3976), - [sym_discard] = ACTIONS(3976), - [anon_sym_DOT_DOT] = ACTIONS(3978), - [anon_sym_and] = ACTIONS(3976), - [anon_sym_or] = ACTIONS(3976), - [anon_sym_PLUS_EQ] = ACTIONS(3978), - [anon_sym_DASH_EQ] = ACTIONS(3978), - [anon_sym_STAR_EQ] = ACTIONS(3978), - [anon_sym_SLASH_EQ] = ACTIONS(3978), - [anon_sym_PERCENT_EQ] = ACTIONS(3978), - [anon_sym_AMP_EQ] = ACTIONS(3978), - [anon_sym_CARET_EQ] = ACTIONS(3978), - [anon_sym_PIPE_EQ] = ACTIONS(3978), - [anon_sym_LT_LT_EQ] = ACTIONS(3978), - [anon_sym_GT_GT_EQ] = ACTIONS(3978), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3978), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3978), - [anon_sym_AMP_AMP] = ACTIONS(3978), - [anon_sym_PIPE_PIPE] = ACTIONS(3978), - [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_ascending] = ACTIONS(3976), - [anon_sym_descending] = ACTIONS(3976), - [anon_sym_group] = ACTIONS(3976), - [anon_sym_by] = ACTIONS(3976), - [anon_sym_select] = ACTIONS(3976), - [anon_sym_as] = ACTIONS(3976), - [anon_sym_is] = ACTIONS(3976), - [anon_sym_DASH_GT] = ACTIONS(3978), - [anon_sym_with] = ACTIONS(3976), - [sym_grit_metavariable] = ACTIONS(3978), + [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), @@ -420611,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(3978), + [sym_interpolation_close_brace] = ACTIONS(3189), }, [2292] = { [sym_preproc_region] = STATE(2292), @@ -420623,83 +420706,83 @@ 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(3702), - [anon_sym_alias] = ACTIONS(3702), - [anon_sym_global] = ACTIONS(3702), - [anon_sym_using] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3702), - [anon_sym_unmanaged] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3702), - [anon_sym_join] = ACTIONS(3702), - [anon_sym_on] = ACTIONS(3702), - [anon_sym_equals] = ACTIONS(3702), - [anon_sym_let] = ACTIONS(3702), - [anon_sym_orderby] = ACTIONS(3702), - [anon_sym_ascending] = ACTIONS(3702), - [anon_sym_descending] = ACTIONS(3702), - [anon_sym_group] = ACTIONS(3702), - [anon_sym_by] = ACTIONS(3702), - [anon_sym_select] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3700), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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_LPAREN] = ACTIONS(4010), + [anon_sym_RPAREN] = ACTIONS(4015), + [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), @@ -420721,82 +420804,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2293), [sym_preproc_define] = STATE(2293), [sym_preproc_undef] = STATE(2293), - [sym__identifier_token] = ACTIONS(3913), - [anon_sym_alias] = ACTIONS(3913), - [anon_sym_global] = ACTIONS(3913), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3910), - [anon_sym_file] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3913), - [anon_sym_unmanaged] = ACTIONS(3913), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3913), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3913), - [anon_sym_yield] = ACTIONS(3913), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3913), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3910), + [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), @@ -420807,10 +420890,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(3700), + [sym_interpolation_close_brace] = ACTIONS(3976), }, [2294] = { - [sym_type_argument_list] = STATE(2216), [sym_preproc_region] = STATE(2294), [sym_preproc_endregion] = STATE(2294), [sym_preproc_line] = STATE(2294), @@ -420820,82 +420902,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2294), [sym_preproc_define] = STATE(2294), [sym_preproc_undef] = STATE(2294), - [sym__identifier_token] = ACTIONS(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(4244), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3955), - [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(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [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_if_token3] = ACTIONS(3953), - [aux_sym_preproc_else_token1] = ACTIONS(3953), - [aux_sym_preproc_elif_token1] = 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(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), @@ -420917,50 +421000,232 @@ 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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [2296] = { + [sym_preproc_region] = STATE(2296), + [sym_preproc_endregion] = STATE(2296), + [sym_preproc_line] = STATE(2296), + [sym_preproc_pragma] = STATE(2296), + [sym_preproc_nullable] = STATE(2296), + [sym_preproc_error] = STATE(2296), + [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), @@ -420973,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), @@ -420988,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), @@ -421003,205 +421283,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(3988), - }, - [2296] = { - [sym_preproc_region] = STATE(2296), - [sym_preproc_endregion] = STATE(2296), - [sym_preproc_line] = STATE(2296), - [sym_preproc_pragma] = STATE(2296), - [sym_preproc_nullable] = STATE(2296), - [sym_preproc_error] = STATE(2296), - [sym_preproc_warning] = STATE(2296), - [sym_preproc_define] = STATE(2296), - [sym_preproc_undef] = STATE(2296), - [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), - }, - [2297] = { - [sym_property_pattern_clause] = STATE(2336), - [sym__variable_designation] = STATE(4897), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), - [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), - [anon_sym_SEMI] = ACTIONS(4246), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_COLON] = ACTIONS(4246), - [anon_sym_COMMA] = ACTIONS(4246), - [anon_sym_RBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_RPAREN] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_in] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4246), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4248), - [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(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4246), - [aux_sym_preproc_else_token1] = ACTIONS(4246), - [aux_sym_preproc_elif_token1] = ACTIONS(4246), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), }, [2298] = { + [sym_property_pattern_clause] = STATE(2340), + [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), @@ -421211,93 +421299,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2298), [sym_preproc_define] = STATE(2298), [sym_preproc_undef] = STATE(2298), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4021), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4023), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [anon_sym_GT_EQ] = ACTIONS(4016), - [anon_sym_LT_EQ] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_and] = ACTIONS(4014), - [anon_sym_or] = ACTIONS(4014), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym_op_coalescing] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4023), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4021), + [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_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), }, [2299] = { [sym_preproc_region] = STATE(2299), @@ -421309,147 +421392,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2299), [sym_preproc_define] = STATE(2299), [sym_preproc_undef] = STATE(2299), - [sym__identifier_token] = ACTIONS(3702), - [anon_sym_alias] = ACTIONS(3702), - [anon_sym_global] = ACTIONS(3702), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3702), - [anon_sym_unmanaged] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3702), - [anon_sym_var] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3702), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3702), - [anon_sym_join] = ACTIONS(3702), - [anon_sym_on] = ACTIONS(3702), - [anon_sym_equals] = ACTIONS(3702), - [anon_sym_let] = ACTIONS(3702), - [anon_sym_orderby] = ACTIONS(3702), - [anon_sym_ascending] = ACTIONS(3702), - [anon_sym_descending] = ACTIONS(3702), - [anon_sym_group] = ACTIONS(3702), - [anon_sym_by] = ACTIONS(3702), - [anon_sym_select] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3700), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3700), - }, - [2300] = { - [sym_preproc_region] = STATE(2300), - [sym_preproc_endregion] = STATE(2300), - [sym_preproc_line] = STATE(2300), - [sym_preproc_pragma] = STATE(2300), - [sym_preproc_nullable] = STATE(2300), - [sym_preproc_error] = STATE(2300), - [sym_preproc_warning] = STATE(2300), - [sym_preproc_define] = STATE(2300), - [sym_preproc_undef] = STATE(2300), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(4008), - [anon_sym_LPAREN] = ACTIONS(4008), - [anon_sym_RPAREN] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(3997), + [anon_sym_COMMA] = 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_LT] = ACTIONS(4037), + [anon_sym_GT] = ACTIONS(4037), [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4011), + [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(4011), - [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(4011), + [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), @@ -421464,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), @@ -421479,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_DASH_GT] = ACTIONS(4008), - [anon_sym_with] = ACTIONS(3991), + [anon_sym_as] = ACTIONS(4037), + [anon_sym_is] = ACTIONS(4037), + [anon_sym_DASH_GT] = ACTIONS(4034), + [anon_sym_with] = ACTIONS(4037), [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), @@ -421494,8 +421478,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(3997), + }, + [2300] = { + [sym_preproc_region] = STATE(2300), + [sym_preproc_endregion] = STATE(2300), + [sym_preproc_line] = STATE(2300), + [sym_preproc_pragma] = STATE(2300), + [sym_preproc_nullable] = STATE(2300), + [sym_preproc_error] = STATE(2300), + [sym_preproc_warning] = STATE(2300), + [sym_preproc_define] = STATE(2300), + [sym_preproc_undef] = STATE(2300), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [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), @@ -421505,93 +421593,88 @@ 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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4016), - [anon_sym_COMMA] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4023), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [anon_sym_GT_EQ] = ACTIONS(4016), - [anon_sym_LT_EQ] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym_op_coalescing] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4023), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4023), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4016), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2302] = { [sym_preproc_region] = STATE(2302), @@ -421603,104 +421686,300 @@ 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(3962), - [anon_sym_alias] = ACTIONS(3962), - [anon_sym_global] = ACTIONS(3962), - [anon_sym_EQ] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_COLON] = ACTIONS(3964), - [anon_sym_COMMA] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_file] = ACTIONS(3962), - [anon_sym_LT] = ACTIONS(3962), - [anon_sym_GT] = ACTIONS(3962), - [anon_sym_where] = ACTIONS(3962), - [anon_sym_QMARK] = ACTIONS(3962), - [anon_sym_notnull] = ACTIONS(3962), - [anon_sym_unmanaged] = ACTIONS(3962), - [anon_sym_BANG] = ACTIONS(3962), - [anon_sym_PLUS_PLUS] = ACTIONS(3964), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_PLUS] = ACTIONS(3962), - [anon_sym_DASH] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3962), - [anon_sym_SLASH] = ACTIONS(3962), - [anon_sym_PERCENT] = ACTIONS(3962), - [anon_sym_CARET] = ACTIONS(3962), - [anon_sym_PIPE] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_LT_LT] = ACTIONS(3962), - [anon_sym_GT_GT] = ACTIONS(3962), - [anon_sym_GT_GT_GT] = ACTIONS(3962), - [anon_sym_EQ_EQ] = ACTIONS(3964), - [anon_sym_BANG_EQ] = ACTIONS(3964), - [anon_sym_GT_EQ] = ACTIONS(3964), - [anon_sym_LT_EQ] = ACTIONS(3964), - [anon_sym_DOT] = ACTIONS(3962), - [anon_sym_scoped] = ACTIONS(3962), - [anon_sym_var] = ACTIONS(3962), - [anon_sym_yield] = ACTIONS(3962), - [anon_sym_switch] = ACTIONS(3962), - [anon_sym_when] = ACTIONS(3962), - [sym_discard] = ACTIONS(3962), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_and] = ACTIONS(3962), - [anon_sym_or] = ACTIONS(3962), - [anon_sym_PLUS_EQ] = ACTIONS(3964), - [anon_sym_DASH_EQ] = ACTIONS(3964), - [anon_sym_STAR_EQ] = ACTIONS(3964), - [anon_sym_SLASH_EQ] = ACTIONS(3964), - [anon_sym_PERCENT_EQ] = ACTIONS(3964), - [anon_sym_AMP_EQ] = ACTIONS(3964), - [anon_sym_CARET_EQ] = ACTIONS(3964), - [anon_sym_PIPE_EQ] = ACTIONS(3964), - [anon_sym_LT_LT_EQ] = ACTIONS(3964), - [anon_sym_GT_GT_EQ] = ACTIONS(3964), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3964), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3964), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [sym_op_coalescing] = ACTIONS(3962), - [anon_sym_from] = ACTIONS(3962), - [anon_sym_into] = ACTIONS(3962), - [anon_sym_join] = ACTIONS(3962), - [anon_sym_on] = ACTIONS(3962), - [anon_sym_equals] = ACTIONS(3962), - [anon_sym_let] = ACTIONS(3962), - [anon_sym_orderby] = ACTIONS(3962), - [anon_sym_ascending] = ACTIONS(3962), - [anon_sym_descending] = ACTIONS(3962), - [anon_sym_group] = ACTIONS(3962), - [anon_sym_by] = ACTIONS(3962), - [anon_sym_select] = ACTIONS(3962), - [anon_sym_as] = ACTIONS(3962), - [anon_sym_is] = ACTIONS(3962), - [anon_sym_DASH_GT] = ACTIONS(3964), - [anon_sym_with] = ACTIONS(3962), - [sym_grit_metavariable] = ACTIONS(3964), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3964), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), + }, + [2303] = { + [sym_preproc_region] = STATE(2303), + [sym_preproc_endregion] = STATE(2303), + [sym_preproc_line] = STATE(2303), + [sym_preproc_pragma] = STATE(2303), + [sym_preproc_nullable] = STATE(2303), + [sym_preproc_error] = STATE(2303), + [sym_preproc_warning] = STATE(2303), + [sym_preproc_define] = STATE(2303), + [sym_preproc_undef] = STATE(2303), + [sym__identifier_token] = ACTIONS(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), + [sym_preproc_endregion] = STATE(2304), + [sym_preproc_line] = STATE(2304), + [sym_preproc_pragma] = STATE(2304), + [sym_preproc_nullable] = STATE(2304), + [sym_preproc_error] = STATE(2304), + [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), }, - [2303] = { - [sym_preproc_region] = STATE(2303), - [sym_preproc_endregion] = STATE(2303), - [sym_preproc_line] = STATE(2303), - [sym_preproc_pragma] = STATE(2303), - [sym_preproc_nullable] = STATE(2303), - [sym_preproc_error] = STATE(2303), - [sym_preproc_warning] = STATE(2303), - [sym_preproc_define] = STATE(2303), - [sym_preproc_undef] = STATE(2303), + [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), @@ -421717,32 +421996,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), @@ -421757,9 +422021,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), @@ -421789,92 +422068,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym_interpolation_close_brace] = ACTIONS(3988), }, - [2304] = { - [sym_preproc_region] = STATE(2304), - [sym_preproc_endregion] = STATE(2304), - [sym_preproc_line] = STATE(2304), - [sym_preproc_pragma] = STATE(2304), - [sym_preproc_nullable] = STATE(2304), - [sym_preproc_error] = STATE(2304), - [sym_preproc_warning] = STATE(2304), - [sym_preproc_define] = STATE(2304), - [sym_preproc_undef] = STATE(2304), - [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), + [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), @@ -421885,61 +422165,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), }, - [2305] = { - [sym_type_argument_list] = STATE(2216), - [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), + [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(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(3955), + [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(3953), - [anon_sym_COLON_COLON] = ACTIONS(3960), [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), @@ -421954,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), @@ -421984,202 +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), - }, - [2306] = { - [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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_COLON] = ACTIONS(3997), - [anon_sym_COMMA] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(4008), - [anon_sym_LBRACE] = ACTIONS(3997), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(4011), - [anon_sym_GT] = ACTIONS(4011), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4011), - [anon_sym_notnull] = ACTIONS(3986), - [anon_sym_unmanaged] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(4011), - [anon_sym_PLUS_PLUS] = ACTIONS(4008), - [anon_sym_DASH_DASH] = ACTIONS(4008), - [anon_sym_PLUS] = ACTIONS(4011), - [anon_sym_DASH] = ACTIONS(4011), - [anon_sym_STAR] = ACTIONS(4011), - [anon_sym_SLASH] = ACTIONS(4011), - [anon_sym_PERCENT] = ACTIONS(4011), - [anon_sym_CARET] = ACTIONS(4011), - [anon_sym_PIPE] = ACTIONS(4011), - [anon_sym_AMP] = ACTIONS(4011), - [anon_sym_LT_LT] = ACTIONS(4011), - [anon_sym_GT_GT] = ACTIONS(4011), - [anon_sym_GT_GT_GT] = ACTIONS(4011), - [anon_sym_EQ_EQ] = ACTIONS(4008), - [anon_sym_BANG_EQ] = ACTIONS(4008), - [anon_sym_GT_EQ] = ACTIONS(4008), - [anon_sym_LT_EQ] = ACTIONS(4008), - [anon_sym_DOT] = ACTIONS(4011), - [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_var] = ACTIONS(3986), - [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(4011), - [anon_sym_when] = ACTIONS(3986), - [sym_discard] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(4008), - [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(4008), - [anon_sym_PIPE_PIPE] = ACTIONS(4008), - [sym_op_coalescing] = ACTIONS(4011), - [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(4011), - [anon_sym_is] = ACTIONS(4011), - [anon_sym_DASH_GT] = ACTIONS(4008), - [anon_sym_with] = ACTIONS(4011), - [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(3997), - }, - [2307] = { - [sym_property_pattern_clause] = STATE(2335), - [sym__variable_designation] = STATE(4906), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), - [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(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_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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2308] = { [sym_preproc_region] = STATE(2308), @@ -422191,83 +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(3702), - [anon_sym_alias] = ACTIONS(3702), - [anon_sym_global] = ACTIONS(3702), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(4254), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3702), - [anon_sym_unmanaged] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3702), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_yield] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3702), - [anon_sym_join] = ACTIONS(3702), - [anon_sym_on] = ACTIONS(3702), - [anon_sym_equals] = ACTIONS(3702), - [anon_sym_let] = ACTIONS(3702), - [anon_sym_orderby] = ACTIONS(3702), - [anon_sym_ascending] = ACTIONS(3702), - [anon_sym_descending] = ACTIONS(3702), - [anon_sym_group] = ACTIONS(3702), - [anon_sym_by] = ACTIONS(3702), - [anon_sym_select] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3700), + [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), @@ -422278,9 +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(3982), }, [2309] = { - [sym_type_argument_list] = STATE(2216), [sym_preproc_region] = STATE(2309), [sym_preproc_endregion] = STATE(2309), [sym_preproc_line] = STATE(2309), @@ -422290,99 +422372,115 @@ 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), + [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(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2310] = { - [sym_property_pattern_clause] = STATE(2368), - [sym__variable_designation] = STATE(4986), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -422392,77 +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(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(4236), - [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__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), @@ -422475,6 +422558,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2311] = { + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2311), [sym_preproc_endregion] = STATE(2311), [sym_preproc_line] = STATE(2311), @@ -422484,82 +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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_COLON] = ACTIONS(3993), - [anon_sym_LPAREN] = ACTIONS(4008), - [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(4011), - [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(4011), - [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(4011), - [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(3991), - [anon_sym_when] = ACTIONS(4003), - [sym_discard] = ACTIONS(3986), - [anon_sym_DOT_DOT] = 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), - [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(4008), - [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(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), @@ -422572,6 +422655,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2312] = { + [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), @@ -422581,82 +422669,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2312), [sym_preproc_define] = STATE(2312), [sym_preproc_undef] = STATE(2312), - [sym__identifier_token] = ACTIONS(3913), - [anon_sym_alias] = ACTIONS(3913), - [anon_sym_global] = ACTIONS(3913), - [anon_sym_EQ] = ACTIONS(3702), - [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_BANG] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3913), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3913), - [anon_sym_CARET] = ACTIONS(3913), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3913), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3913), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_GT_EQ] = ACTIONS(3910), - [anon_sym_LT_EQ] = ACTIONS(3910), - [anon_sym_DOT] = ACTIONS(3913), - [anon_sym_scoped] = ACTIONS(3913), - [anon_sym_EQ_GT] = ACTIONS(3910), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = 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_and] = ACTIONS(3913), - [anon_sym_or] = ACTIONS(3913), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3910), - [anon_sym_PIPE_PIPE] = ACTIONS(3910), - [sym_op_coalescing] = 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), - [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), + [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), @@ -422669,26 +422752,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2313] = { - [sym_modifier] = STATE(4309), - [sym_variable_declaration] = STATE(7730), + [sym_modifier] = STATE(3484), + [sym_variable_declaration] = STATE(7838), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5907), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6005), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -422698,7 +422781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2313), [sym_preproc_define] = STATE(2313), [sym_preproc_undef] = STATE(2313), - [aux_sym__class_declaration_initializer_repeat2] = STATE(4047), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3232), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(65), [anon_sym_alias] = ACTIONS(3211), @@ -422706,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(4260), - [anon_sym_ref] = ACTIONS(4262), - [anon_sym_struct] = ACTIONS(4264), - [anon_sym_enum] = ACTIONS(4266), - [anon_sym_interface] = ACTIONS(4268), - [anon_sym_delegate] = ACTIONS(4270), - [anon_sym_record] = ACTIONS(4272), + [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), @@ -422734,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(4274), - [anon_sym_explicit] = ACTIONS(4274), + [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), @@ -422766,26 +422849,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2314] = { - [sym_modifier] = STATE(4309), - [sym_variable_declaration] = STATE(7927), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5922), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6011), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -422795,62 +422863,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2314), [sym_preproc_define] = STATE(2314), [sym_preproc_undef] = STATE(2314), - [aux_sym__class_declaration_initializer_repeat2] = STATE(4047), - [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(4276), - [anon_sym_class] = ACTIONS(4064), - [anon_sym_ref] = ACTIONS(4066), - [anon_sym_struct] = ACTIONS(2995), - [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(4078), - [anon_sym_explicit] = 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), + [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), @@ -422863,6 +422946,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -422872,48 +422959,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2315), [sym_preproc_define] = STATE(2315), [sym_preproc_undef] = STATE(2315), + [sym__identifier_token] = ACTIONS(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), [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(3993), - [anon_sym_COLON] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(3993), + [anon_sym_LBRACK] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(3993), + [anon_sym_LPAREN] = 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_EQ_GT] = ACTIONS(3988), [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(4003), [sym_discard] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(3993), + [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), @@ -422928,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_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), @@ -422943,10 +423123,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), @@ -422959,103 +423139,6 @@ 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_type_argument_list] = STATE(2216), - [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(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(4278), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RPAREN] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3955), - [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(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [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), - }, [2317] = { [sym_preproc_region] = STATE(2317), [sym_preproc_endregion] = STATE(2317), @@ -423066,82 +423149,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2317), [sym_preproc_define] = STATE(2317), [sym_preproc_undef] = STATE(2317), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_EQ_GT] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4023), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), + [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), @@ -423154,6 +423237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2318] = { + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2318), [sym_preproc_endregion] = STATE(2318), [sym_preproc_line] = STATE(2318), @@ -423163,82 +423247,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2318), [sym_preproc_define] = STATE(2318), [sym_preproc_undef] = STATE(2318), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4023), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [anon_sym_GT_EQ] = ACTIONS(4016), - [anon_sym_LT_EQ] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_EQ_GT] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4023), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym_op_coalescing] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4023), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4023), - [sym_grit_metavariable] = ACTIONS(4021), + [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), @@ -423260,82 +423343,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2319), [sym_preproc_define] = STATE(2319), [sym_preproc_undef] = STATE(2319), - [sym__identifier_token] = ACTIONS(3913), - [anon_sym_alias] = ACTIONS(3913), - [anon_sym_global] = ACTIONS(3913), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3910), - [anon_sym_LBRACE] = ACTIONS(3910), - [anon_sym_file] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3913), - [anon_sym_unmanaged] = ACTIONS(3913), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3913), - [anon_sym_EQ_GT] = ACTIONS(3910), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3913), - [anon_sym_yield] = ACTIONS(3913), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3913), - [sym_discard] = ACTIONS(3913), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3913), - [anon_sym_or] = ACTIONS(3913), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3910), + [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(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), @@ -423348,6 +423431,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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(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), @@ -423357,147 +423464,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2320), [sym_preproc_define] = STATE(2320), [sym_preproc_undef] = STATE(2320), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4023), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [anon_sym_GT_EQ] = ACTIONS(4016), - [anon_sym_LT_EQ] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_EQ_GT] = ACTIONS(4016), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4023), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym_op_coalescing] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4023), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2321] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_modifier] = STATE(5186), - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6211), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym__lambda_parameters] = STATE(7940), - [sym_identifier] = STATE(6058), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if_in_attribute_list] = STATE(5078), - [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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4640), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2631), - [aux_sym__lambda_expression_init_repeat1] = STATE(4893), + [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(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(4280), - [anon_sym_LPAREN] = ACTIONS(4099), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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(4282), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -423529,7 +423515,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), [sym_grit_metavariable] = ACTIONS(4080), - [aux_sym_preproc_if_token1] = ACTIONS(4284), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2321] = { + [sym_preproc_region] = STATE(2321), + [sym_preproc_endregion] = STATE(2321), + [sym_preproc_line] = STATE(2321), + [sym_preproc_pragma] = STATE(2321), + [sym_preproc_nullable] = STATE(2321), + [sym_preproc_error] = STATE(2321), + [sym_preproc_warning] = STATE(2321), + [sym_preproc_define] = STATE(2321), + [sym_preproc_undef] = STATE(2321), + [sym__identifier_token] = ACTIONS(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), @@ -423551,6 +423634,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2322), [sym_preproc_define] = STATE(2322), [sym_preproc_undef] = STATE(2322), + [sym__identifier_token] = ACTIONS(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_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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2323] = { + [sym_preproc_region] = STATE(2323), + [sym_preproc_endregion] = STATE(2323), + [sym_preproc_line] = STATE(2323), + [sym_preproc_pragma] = STATE(2323), + [sym_preproc_nullable] = STATE(2323), + [sym_preproc_error] = STATE(2323), + [sym_preproc_warning] = STATE(2323), + [sym_preproc_define] = STATE(2323), + [sym_preproc_undef] = STATE(2323), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), @@ -423566,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), @@ -423607,11 +423869,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), @@ -423638,210 +423915,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2323] = { - [sym_type_argument_list] = STATE(2216), - [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(4286), - [anon_sym_COMMA] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_RBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3955), - [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(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [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_property_pattern_clause] = STATE(2354), - [sym__variable_designation] = STATE(4997), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), - [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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4246), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_COLON] = ACTIONS(4246), - [anon_sym_COMMA] = ACTIONS(4246), - [anon_sym_RBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_RPAREN] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4246), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [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(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4246), - [aux_sym_preproc_else_token1] = ACTIONS(4246), - [aux_sym_preproc_elif_token1] = ACTIONS(4246), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2325] = { - [sym__name] = STATE(2731), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2445), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2433), - [sym_ref_type] = STATE(2386), - [sym__scoped_base_type] = STATE(2366), - [sym_identifier] = STATE(2636), - [sym__reserved_identifier] = STATE(2400), + [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), @@ -423851,73 +423934,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2325), [sym_preproc_define] = STATE(2325), [sym_preproc_undef] = STATE(2325), - [sym__identifier_token] = ACTIONS(3880), - [anon_sym_alias] = ACTIONS(3883), - [anon_sym_global] = ACTIONS(3883), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), + [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(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3883), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3883), - [anon_sym_unmanaged] = ACTIONS(3883), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3883), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3883), - [anon_sym_yield] = ACTIONS(3883), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3883), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3888), + [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), @@ -423930,10 +424013,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2326] = { - [sym_parameter_list] = STATE(7657), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(7814), - [sym__reserved_identifier] = STATE(2206), [sym_preproc_region] = STATE(2326), [sym_preproc_endregion] = STATE(2326), [sym_preproc_line] = STATE(2326), @@ -423943,78 +424022,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2326), [sym_preproc_define] = STATE(2326), [sym_preproc_undef] = STATE(2326), - [sym__identifier_token] = ACTIONS(4288), - [anon_sym_alias] = ACTIONS(4288), - [anon_sym_SEMI] = ACTIONS(4290), - [anon_sym_global] = ACTIONS(4288), - [anon_sym_LBRACK] = ACTIONS(4290), - [anon_sym_COLON] = ACTIONS(4290), - [anon_sym_COMMA] = ACTIONS(4290), - [anon_sym_RBRACK] = ACTIONS(4290), - [anon_sym_LPAREN] = ACTIONS(4290), - [anon_sym_RPAREN] = ACTIONS(4290), - [anon_sym_LBRACE] = ACTIONS(4290), - [anon_sym_RBRACE] = ACTIONS(4290), - [anon_sym_file] = ACTIONS(4288), - [anon_sym_LT] = ACTIONS(4288), - [anon_sym_GT] = ACTIONS(4288), - [anon_sym_in] = ACTIONS(4288), - [anon_sym_where] = ACTIONS(4288), - [anon_sym_QMARK] = ACTIONS(4288), - [anon_sym_notnull] = ACTIONS(4288), - [anon_sym_unmanaged] = ACTIONS(4288), - [anon_sym_BANG] = ACTIONS(4288), - [anon_sym_PLUS_PLUS] = ACTIONS(4290), - [anon_sym_DASH_DASH] = ACTIONS(4290), - [anon_sym_PLUS] = ACTIONS(4288), - [anon_sym_DASH] = ACTIONS(4288), - [anon_sym_STAR] = ACTIONS(4290), - [anon_sym_SLASH] = ACTIONS(4288), - [anon_sym_PERCENT] = ACTIONS(4290), - [anon_sym_CARET] = ACTIONS(4290), - [anon_sym_PIPE] = ACTIONS(4288), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_LT_LT] = ACTIONS(4290), - [anon_sym_GT_GT] = ACTIONS(4288), - [anon_sym_GT_GT_GT] = ACTIONS(4290), - [anon_sym_EQ_EQ] = ACTIONS(4290), - [anon_sym_BANG_EQ] = ACTIONS(4290), - [anon_sym_GT_EQ] = ACTIONS(4290), - [anon_sym_LT_EQ] = ACTIONS(4290), - [anon_sym_DOT] = ACTIONS(4288), - [anon_sym_scoped] = ACTIONS(4288), - [anon_sym_EQ_GT] = ACTIONS(4290), - [anon_sym_var] = ACTIONS(4288), - [anon_sym_yield] = ACTIONS(4288), - [anon_sym_switch] = ACTIONS(4288), - [anon_sym_when] = ACTIONS(4288), - [sym_discard] = ACTIONS(4288), - [anon_sym_DOT_DOT] = ACTIONS(4290), - [anon_sym_and] = ACTIONS(4288), - [anon_sym_or] = ACTIONS(4288), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_PIPE_PIPE] = ACTIONS(4290), - [sym_op_coalescing] = ACTIONS(4290), - [anon_sym_from] = ACTIONS(4288), - [anon_sym_into] = ACTIONS(4288), - [anon_sym_join] = ACTIONS(4288), - [anon_sym_on] = ACTIONS(4288), - [anon_sym_equals] = ACTIONS(4288), - [anon_sym_let] = ACTIONS(4288), - [anon_sym_orderby] = ACTIONS(4288), - [anon_sym_ascending] = ACTIONS(4288), - [anon_sym_descending] = ACTIONS(4288), - [anon_sym_group] = ACTIONS(4288), - [anon_sym_by] = ACTIONS(4288), - [anon_sym_select] = ACTIONS(4288), - [anon_sym_as] = ACTIONS(4288), - [anon_sym_is] = ACTIONS(4288), - [anon_sym_DASH_GT] = ACTIONS(4290), - [anon_sym_with] = ACTIONS(4288), - [sym_grit_metavariable] = ACTIONS(4290), - [aux_sym_preproc_if_token3] = ACTIONS(4290), - [aux_sym_preproc_else_token1] = ACTIONS(4290), - [aux_sym_preproc_elif_token1] = ACTIONS(4290), + [sym__identifier_token] = ACTIONS(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_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_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), + [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -424036,81 +424119,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2327), [sym_preproc_define] = STATE(2327), [sym_preproc_undef] = STATE(2327), - [sym__identifier_token] = ACTIONS(3702), - [anon_sym_alias] = ACTIONS(3702), - [anon_sym_global] = ACTIONS(3702), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(4292), - [anon_sym_file] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3702), - [anon_sym_unmanaged] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3702), - [anon_sym_break] = ACTIONS(4294), - [anon_sym_yield] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3702), - [anon_sym_join] = ACTIONS(3702), - [anon_sym_on] = ACTIONS(3702), - [anon_sym_equals] = ACTIONS(3702), - [anon_sym_let] = ACTIONS(3702), - [anon_sym_orderby] = ACTIONS(3702), - [anon_sym_ascending] = ACTIONS(3702), - [anon_sym_descending] = ACTIONS(3702), - [anon_sym_group] = ACTIONS(3702), - [anon_sym_by] = ACTIONS(3702), - [anon_sym_select] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3700), + [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(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(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), @@ -424123,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), @@ -424132,91 +424224,82 @@ 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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4014), - [anon_sym_or] = ACTIONS(4014), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym__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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2329] = { [sym_preproc_region] = STATE(2329), @@ -424228,91 +424311,91 @@ 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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4026), - [anon_sym_COMMA] = ACTIONS(4026), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4026), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2330] = { [sym_preproc_region] = STATE(2330), @@ -424324,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(4008), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4008), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4011), - [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(4011), - [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(4011), - [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(4008), - [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), @@ -424408,13 +424492,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(4006), }, [2331] = { - [sym__variable_designation] = STATE(4911), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2331), [sym_preproc_endregion] = STATE(2331), [sym_preproc_line] = STATE(2331), @@ -424424,77 +424503,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2331), [sym_preproc_define] = STATE(2331), [sym_preproc_undef] = STATE(2331), - [sym__identifier_token] = ACTIONS(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_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_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), @@ -424516,49 +424599,129 @@ 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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2333] = { + [sym_preproc_region] = STATE(2333), + [sym_preproc_endregion] = STATE(2333), + [sym_preproc_line] = STATE(2333), + [sym_preproc_pragma] = STATE(2333), + [sym_preproc_nullable] = STATE(2333), + [sym_preproc_error] = STATE(2333), + [sym_preproc_warning] = STATE(2333), + [sym_preproc_define] = STATE(2333), + [sym_preproc_undef] = STATE(2333), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_COLON] = ACTIONS(4008), - [anon_sym_LPAREN] = ACTIONS(4008), - [anon_sym_LBRACE] = ACTIONS(3997), + [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(4011), + [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(4011), - [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(4011), + [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_and] = ACTIONS(3986), - [anon_sym_or] = ACTIONS(3986), + [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), @@ -424571,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), @@ -424588,7 +424766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(3986), [anon_sym_as] = ACTIONS(3991), [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4008), + [anon_sym_DASH_GT] = ACTIONS(4034), [anon_sym_with] = ACTIONS(3991), [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -424601,108 +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), - }, - [2333] = { - [sym_preproc_region] = STATE(2333), - [sym_preproc_endregion] = STATE(2333), - [sym_preproc_line] = STATE(2333), - [sym_preproc_pragma] = STATE(2333), - [sym_preproc_nullable] = STATE(2333), - [sym_preproc_error] = STATE(2333), - [sym_preproc_warning] = STATE(2333), - [sym_preproc_define] = STATE(2333), - [sym_preproc_undef] = STATE(2333), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COMMA] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4023), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4023), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [anon_sym_GT_EQ] = ACTIONS(4016), - [anon_sym_LT_EQ] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym_op_coalescing] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4023), - [anon_sym_into] = ACTIONS(4023), - [anon_sym_join] = ACTIONS(4023), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4023), - [anon_sym_orderby] = ACTIONS(4023), - [anon_sym_ascending] = ACTIONS(4023), - [anon_sym_descending] = ACTIONS(4023), - [anon_sym_group] = ACTIONS(4023), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4023), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4023), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4006), }, [2334] = { - [sym__variable_designation] = STATE(4896), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2334), [sym_preproc_endregion] = STATE(2334), [sym_preproc_line] = STATE(2334), @@ -424712,77 +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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4246), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_COLON] = ACTIONS(4246), - [anon_sym_COMMA] = ACTIONS(4246), - [anon_sym_RBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_RPAREN] = ACTIONS(4246), - [anon_sym_RBRACE] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_in] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4246), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4248), - [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(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4246), - [aux_sym_preproc_else_token1] = ACTIONS(4246), - [aux_sym_preproc_elif_token1] = ACTIONS(4246), + [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), @@ -424795,10 +424878,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2335] = { - [sym__variable_designation] = STATE(4887), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2335), [sym_preproc_endregion] = STATE(2335), [sym_preproc_line] = STATE(2335), @@ -424808,77 +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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4296), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4296), - [anon_sym_COLON] = ACTIONS(4296), - [anon_sym_COMMA] = ACTIONS(4296), - [anon_sym_RBRACK] = ACTIONS(4296), - [anon_sym_LPAREN] = ACTIONS(4296), - [anon_sym_RPAREN] = ACTIONS(4296), - [anon_sym_RBRACE] = ACTIONS(4296), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4298), - [anon_sym_GT] = ACTIONS(4298), - [anon_sym_in] = ACTIONS(4298), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4298), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_SLASH] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4298), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4298), - [anon_sym_GT_GT_GT] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4296), - [anon_sym_BANG_EQ] = ACTIONS(4296), - [anon_sym_GT_EQ] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4296), - [anon_sym_DOT] = ACTIONS(4298), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4296), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4298), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4298), - [anon_sym_or] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4296), - [sym_op_coalescing] = ACTIONS(4296), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4298), - [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(4298), - [anon_sym_is] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4296), - [anon_sym_with] = ACTIONS(4298), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4296), - [aux_sym_preproc_else_token1] = ACTIONS(4296), - [aux_sym_preproc_elif_token1] = ACTIONS(4296), + [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), @@ -424891,10 +424974,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2336] = { - [sym__variable_designation] = STATE(4861), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2336), [sym_preproc_endregion] = STATE(2336), [sym_preproc_line] = STATE(2336), @@ -424904,77 +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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4300), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4300), - [anon_sym_COLON] = ACTIONS(4300), - [anon_sym_COMMA] = ACTIONS(4300), - [anon_sym_RBRACK] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_RPAREN] = ACTIONS(4300), - [anon_sym_RBRACE] = ACTIONS(4300), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4302), - [anon_sym_in] = ACTIONS(4302), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4302), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_PLUS_PLUS] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4302), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4302), - [anon_sym_LT_LT] = ACTIONS(4300), - [anon_sym_GT_GT] = ACTIONS(4302), - [anon_sym_GT_GT_GT] = ACTIONS(4300), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_GT_EQ] = ACTIONS(4300), - [anon_sym_LT_EQ] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4300), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4302), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4302), - [anon_sym_or] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4300), - [sym_op_coalescing] = ACTIONS(4300), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4302), - [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(4302), - [anon_sym_is] = ACTIONS(4302), - [anon_sym_DASH_GT] = ACTIONS(4300), - [anon_sym_with] = ACTIONS(4302), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4300), - [aux_sym_preproc_else_token1] = ACTIONS(4300), - [aux_sym_preproc_elif_token1] = ACTIONS(4300), + [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), @@ -424987,7 +425070,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2337] = { - [sym_type_argument_list] = STATE(2216), [sym_preproc_region] = STATE(2337), [sym_preproc_endregion] = STATE(2337), [sym_preproc_line] = STATE(2337), @@ -424997,92 +425079,97 @@ 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(3951), - [anon_sym_alias] = ACTIONS(3951), - [anon_sym_global] = ACTIONS(3951), - [anon_sym_EQ] = ACTIONS(4304), - [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(3955), - [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(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [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), @@ -425092,49 +425179,125 @@ 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), [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_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(3999), - [anon_sym_GT] = ACTIONS(3999), - [anon_sym_where] = ACTIONS(4003), - [anon_sym_QMARK] = ACTIONS(3999), + [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(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(3991), + [anon_sym_or] = ACTIONS(3991), [anon_sym_PLUS_EQ] = ACTIONS(4006), [anon_sym_DASH_EQ] = ACTIONS(4006), [anon_sym_STAR_EQ] = ACTIONS(4006), @@ -425147,25 +425310,40 @@ 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_from] = ACTIONS(4003), + [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(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_ascending] = ACTIONS(4003), - [anon_sym_descending] = ACTIONS(4003), - [anon_sym_group] = 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(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), + [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), @@ -425177,59 +425355,334 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), + }, + [2340] = { + [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), + [sym_preproc_pragma] = STATE(2340), + [sym_preproc_nullable] = STATE(2340), + [sym_preproc_error] = STATE(2340), + [sym_preproc_warning] = STATE(2340), + [sym_preproc_define] = STATE(2340), + [sym_preproc_undef] = STATE(2340), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(2341), + [sym_preproc_nullable] = STATE(2341), + [sym_preproc_error] = STATE(2341), + [sym_preproc_warning] = STATE(2341), + [sym_preproc_define] = STATE(2341), + [sym_preproc_undef] = STATE(2341), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [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), + [sym_preproc_pragma] = STATE(2342), + [sym_preproc_nullable] = STATE(2342), + [sym_preproc_error] = STATE(2342), + [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), }, - [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), + [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(4008), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4008), + [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(4011), + [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(4011), - [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(4011), + [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_and] = ACTIONS(3991), - [anon_sym_or] = ACTIONS(3991), + [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), @@ -425242,11 +425695,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(4011), + [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), [anon_sym_on] = ACTIONS(3986), [anon_sym_equals] = ACTIONS(3986), @@ -425259,7 +425727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(3986), [anon_sym_as] = ACTIONS(3991), [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4008), + [anon_sym_DASH_GT] = ACTIONS(4034), [anon_sym_with] = ACTIONS(3991), [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -425272,18 +425740,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(4006), }, - [2340] = { - [sym_preproc_region] = STATE(2340), - [sym_preproc_endregion] = STATE(2340), - [sym_preproc_line] = STATE(2340), - [sym_preproc_pragma] = STATE(2340), - [sym_preproc_nullable] = STATE(2340), - [sym_preproc_error] = STATE(2340), - [sym_preproc_warning] = STATE(2340), - [sym_preproc_define] = STATE(2340), - [sym_preproc_undef] = STATE(2340), + [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), @@ -425298,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), @@ -425339,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), @@ -425370,91 +425837,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2341] = { - [sym_preproc_region] = STATE(2341), - [sym_preproc_endregion] = STATE(2341), - [sym_preproc_line] = STATE(2341), - [sym_preproc_pragma] = STATE(2341), - [sym_preproc_nullable] = STATE(2341), - [sym_preproc_error] = STATE(2341), - [sym_preproc_warning] = STATE(2341), - [sym_preproc_define] = STATE(2341), - [sym_preproc_undef] = STATE(2341), - [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(3997), + [2345] = { + [sym_preproc_region] = STATE(2345), + [sym_preproc_endregion] = STATE(2345), + [sym_preproc_line] = STATE(2345), + [sym_preproc_pragma] = STATE(2345), + [sym_preproc_nullable] = STATE(2345), + [sym_preproc_error] = STATE(2345), + [sym_preproc_warning] = STATE(2345), + [sym_preproc_define] = STATE(2345), + [sym_preproc_undef] = STATE(2345), + [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), @@ -425466,345 +425933,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2342] = { - [sym_preproc_region] = STATE(2342), - [sym_preproc_endregion] = STATE(2342), - [sym_preproc_line] = STATE(2342), - [sym_preproc_pragma] = STATE(2342), - [sym_preproc_nullable] = STATE(2342), - [sym_preproc_error] = STATE(2342), - [sym_preproc_warning] = STATE(2342), - [sym_preproc_define] = STATE(2342), - [sym_preproc_undef] = STATE(2342), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4026), - [anon_sym_COMMA] = ACTIONS(4026), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4023), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4026), - }, - [2343] = { - [sym__name] = STATE(3012), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(3005), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(3044), - [sym_ref_type] = STATE(2999), - [sym__scoped_base_type] = STATE(2989), - [sym_identifier] = STATE(2652), - [sym__reserved_identifier] = STATE(2755), - [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(3940), - [anon_sym_alias] = ACTIONS(3943), - [anon_sym_global] = ACTIONS(3943), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(3946), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3943), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3943), - [anon_sym_unmanaged] = ACTIONS(3943), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3943), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3943), - [anon_sym_yield] = ACTIONS(3943), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3943), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [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(3700), - }, - [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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COMMA] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4023), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4023), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [anon_sym_GT_EQ] = ACTIONS(4016), - [anon_sym_LT_EQ] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym_op_coalescing] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4023), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4023), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4023), - [anon_sym_orderby] = ACTIONS(4023), - [anon_sym_ascending] = ACTIONS(4023), - [anon_sym_descending] = ACTIONS(4023), - [anon_sym_group] = ACTIONS(4023), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4023), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4023), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [2346] = { + [sym_preproc_region] = STATE(2346), + [sym_preproc_endregion] = STATE(2346), + [sym_preproc_line] = STATE(2346), + [sym_preproc_pragma] = STATE(2346), + [sym_preproc_nullable] = STATE(2346), + [sym_preproc_error] = STATE(2346), + [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), }, - [2345] = { - [sym_preproc_region] = STATE(2345), - [sym_preproc_endregion] = STATE(2345), - [sym_preproc_line] = STATE(2345), - [sym_preproc_pragma] = STATE(2345), - [sym_preproc_nullable] = STATE(2345), - [sym_preproc_error] = STATE(2345), - [sym_preproc_warning] = STATE(2345), - [sym_preproc_define] = STATE(2345), - [sym_preproc_undef] = STATE(2345), + [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(4008), - [anon_sym_COLON] = ACTIONS(3997), - [anon_sym_LPAREN] = ACTIONS(4008), + [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(4011), + [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(4011), - [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(4011), + [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), @@ -425819,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), @@ -425836,7 +426111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(3986), [anon_sym_as] = ACTIONS(3991), [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4008), + [anon_sym_DASH_GT] = ACTIONS(4034), [anon_sym_with] = ACTIONS(3991), [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -425850,57 +426125,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2346] = { - [sym_preproc_region] = STATE(2346), - [sym_preproc_endregion] = STATE(2346), - [sym_preproc_line] = STATE(2346), - [sym_preproc_pragma] = STATE(2346), - [sym_preproc_nullable] = STATE(2346), - [sym_preproc_error] = STATE(2346), - [sym_preproc_warning] = STATE(2346), - [sym_preproc_define] = STATE(2346), - [sym_preproc_undef] = STATE(2346), + [2348] = { + [sym_preproc_region] = STATE(2348), + [sym_preproc_endregion] = STATE(2348), + [sym_preproc_line] = STATE(2348), + [sym_preproc_pragma] = STATE(2348), + [sym_preproc_nullable] = STATE(2348), + [sym_preproc_error] = STATE(2348), + [sym_preproc_warning] = STATE(2348), + [sym_preproc_define] = STATE(2348), + [sym_preproc_undef] = STATE(2348), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_COLON] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(4008), + [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(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4011), + [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(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(4011), - [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(4011), + [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(3991), - [anon_sym_when] = ACTIONS(4003), + [anon_sym_switch] = ACTIONS(3999), + [anon_sym_when] = ACTIONS(3986), [sym_discard] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(4006), + [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), @@ -425915,218 +426175,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_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), - [anon_sym_from] = ACTIONS(3986), + [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(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_ascending] = ACTIONS(3986), - [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = 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(3986), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4008), - [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), - }, - [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(3702), - [anon_sym_alias] = ACTIONS(3702), - [anon_sym_global] = ACTIONS(3702), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(4306), - [anon_sym_file] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3702), - [anon_sym_unmanaged] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3702), - [anon_sym_break] = ACTIONS(4308), - [anon_sym_yield] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3702), - [anon_sym_join] = ACTIONS(3702), - [anon_sym_on] = ACTIONS(3702), - [anon_sym_equals] = ACTIONS(3702), - [anon_sym_let] = ACTIONS(3702), - [anon_sym_orderby] = ACTIONS(3702), - [anon_sym_ascending] = ACTIONS(3702), - [anon_sym_descending] = ACTIONS(3702), - [anon_sym_group] = ACTIONS(3702), - [anon_sym_by] = ACTIONS(3702), - [anon_sym_select] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3700), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2348] = { - [sym_preproc_region] = STATE(2348), - [sym_preproc_endregion] = STATE(2348), - [sym_preproc_line] = STATE(2348), - [sym_preproc_pragma] = STATE(2348), - [sym_preproc_nullable] = STATE(2348), - [sym_preproc_error] = STATE(2348), - [sym_preproc_warning] = STATE(2348), - [sym_preproc_define] = STATE(2348), - [sym_preproc_undef] = STATE(2348), - [sym__identifier_token] = ACTIONS(3913), - [anon_sym_alias] = ACTIONS(3913), - [anon_sym_global] = ACTIONS(3913), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3910), - [anon_sym_LPAREN] = ACTIONS(3910), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3913), - [anon_sym_unmanaged] = ACTIONS(3913), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3913), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3913), - [anon_sym_yield] = ACTIONS(3913), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3913), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3910), + [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), @@ -426148,142 +426231,32 @@ 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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4014), - [anon_sym_or] = ACTIONS(4014), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [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(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_LBRACK] = ACTIONS(4034), + [anon_sym_COLON] = ACTIONS(3988), + [anon_sym_LPAREN] = 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_when] = ACTIONS(3986), + [anon_sym_switch] = ACTIONS(3991), + [anon_sym_when] = ACTIONS(4003), [sym_discard] = ACTIONS(3986), - [anon_sym_DOT_DOT] = ACTIONS(3993), + [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), @@ -426298,11 +426271,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(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(3986), [anon_sym_join] = ACTIONS(3986), [anon_sym_on] = ACTIONS(3986), [anon_sym_equals] = ACTIONS(3986), @@ -426311,12 +426299,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [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), @@ -426329,16 +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), }, - [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), + [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), @@ -426360,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), @@ -426424,11 +426412,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(4314), + [anon_sym_alias] = ACTIONS(4314), + [anon_sym_SEMI] = ACTIONS(4316), + [anon_sym_global] = ACTIONS(4314), + [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_file] = ACTIONS(4314), + [anon_sym_LT] = ACTIONS(4314), + [anon_sym_GT] = ACTIONS(4314), + [anon_sym_in] = ACTIONS(4314), + [anon_sym_where] = ACTIONS(4314), + [anon_sym_QMARK] = ACTIONS(4314), + [anon_sym_notnull] = ACTIONS(4314), + [anon_sym_unmanaged] = ACTIONS(4314), + [anon_sym_operator] = ACTIONS(4314), + [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), + [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_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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2352] = { - [sym__variable_designation] = STATE(4985), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2352), [sym_preproc_endregion] = STATE(2352), [sym_preproc_line] = STATE(2352), @@ -426438,76 +426517,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2352), [sym_preproc_define] = STATE(2352), [sym_preproc_undef] = STATE(2352), - [sym__identifier_token] = ACTIONS(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(4236), - [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), + [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(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(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), @@ -426529,80 +426612,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2353), [sym_preproc_define] = STATE(2353), [sym_preproc_undef] = STATE(2353), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4023), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [anon_sym_GT_EQ] = ACTIONS(4016), - [anon_sym_LT_EQ] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym_op_coalescing] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4023), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4023), - [sym_grit_metavariable] = ACTIONS(4021), + [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(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), @@ -426615,10 +426698,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2354] = { - [sym__variable_designation] = STATE(4980), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2354), [sym_preproc_endregion] = STATE(2354), [sym_preproc_line] = STATE(2354), @@ -426628,76 +426707,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2354), [sym_preproc_define] = STATE(2354), [sym_preproc_undef] = STATE(2354), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4300), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4300), - [anon_sym_COLON] = ACTIONS(4300), - [anon_sym_COMMA] = ACTIONS(4300), - [anon_sym_RBRACK] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_RPAREN] = ACTIONS(4300), - [anon_sym_RBRACE] = ACTIONS(4300), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4302), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4302), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_PLUS_PLUS] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4302), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4302), - [anon_sym_LT_LT] = ACTIONS(4300), - [anon_sym_GT_GT] = ACTIONS(4302), - [anon_sym_GT_GT_GT] = ACTIONS(4300), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_GT_EQ] = ACTIONS(4300), - [anon_sym_LT_EQ] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4300), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4302), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4302), - [anon_sym_or] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4300), - [sym_op_coalescing] = ACTIONS(4300), - [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(4302), - [anon_sym_is] = ACTIONS(4302), - [anon_sym_DASH_GT] = ACTIONS(4300), - [anon_sym_with] = ACTIONS(4302), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4300), - [aux_sym_preproc_else_token1] = ACTIONS(4300), - [aux_sym_preproc_elif_token1] = ACTIONS(4300), + [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(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), @@ -426733,32 +426816,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), @@ -426773,20 +426841,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(4003), + [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = 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_by] = ACTIONS(4003), [anon_sym_select] = ACTIONS(3986), [anon_sym_as] = ACTIONS(3999), [anon_sym_is] = ACTIONS(3999), @@ -426805,7 +426888,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2356] = { - [sym_type_argument_list] = STATE(2216), [sym_preproc_region] = STATE(2356), [sym_preproc_endregion] = STATE(2356), [sym_preproc_line] = STATE(2356), @@ -426815,79 +426897,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2356), [sym_preproc_define] = STATE(2356), [sym_preproc_undef] = STATE(2356), - [sym__identifier_token] = ACTIONS(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(4314), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3955), - [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(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [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(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), @@ -426900,6 +426983,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -426909,252 +427001,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2357), [sym_preproc_define] = STATE(2357), [sym_preproc_undef] = STATE(2357), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4023), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [anon_sym_GT_EQ] = ACTIONS(4016), - [anon_sym_LT_EQ] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym_op_coalescing] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4023), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4023), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4318), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4316), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_operator] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_this] = ACTIONS(4316), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [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), - [sym__identifier_token] = ACTIONS(4320), + [sym__identifier_token] = ACTIONS(4318), [anon_sym_alias] = ACTIONS(4320), - [anon_sym_SEMI] = ACTIONS(4322), [anon_sym_global] = ACTIONS(4320), - [anon_sym_LBRACK] = ACTIONS(4322), - [anon_sym_COLON] = ACTIONS(4322), - [anon_sym_COMMA] = ACTIONS(4322), - [anon_sym_RBRACK] = ACTIONS(4322), - [anon_sym_LPAREN] = ACTIONS(4322), - [anon_sym_RPAREN] = ACTIONS(4322), - [anon_sym_LBRACE] = ACTIONS(4322), - [anon_sym_RBRACE] = ACTIONS(4322), + [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(3694), [anon_sym_file] = ACTIONS(4320), - [anon_sym_LT] = ACTIONS(4320), - [anon_sym_GT] = ACTIONS(4320), - [anon_sym_in] = ACTIONS(4320), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), [anon_sym_where] = ACTIONS(4320), - [anon_sym_QMARK] = ACTIONS(4320), + [anon_sym_QMARK] = ACTIONS(3696), [anon_sym_notnull] = ACTIONS(4320), [anon_sym_unmanaged] = ACTIONS(4320), - [anon_sym_operator] = ACTIONS(4320), - [anon_sym_BANG] = ACTIONS(4320), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS] = ACTIONS(4320), - [anon_sym_DASH] = ACTIONS(4320), - [anon_sym_STAR] = ACTIONS(4322), - [anon_sym_SLASH] = ACTIONS(4320), - [anon_sym_PERCENT] = ACTIONS(4322), - [anon_sym_CARET] = ACTIONS(4322), - [anon_sym_PIPE] = ACTIONS(4320), - [anon_sym_AMP] = ACTIONS(4320), - [anon_sym_LT_LT] = ACTIONS(4322), - [anon_sym_GT_GT] = ACTIONS(4320), - [anon_sym_GT_GT_GT] = ACTIONS(4322), - [anon_sym_EQ_EQ] = ACTIONS(4322), - [anon_sym_BANG_EQ] = ACTIONS(4322), - [anon_sym_GT_EQ] = ACTIONS(4322), - [anon_sym_LT_EQ] = ACTIONS(4322), - [anon_sym_this] = ACTIONS(4320), - [anon_sym_DOT] = ACTIONS(4320), + [anon_sym_DOT] = ACTIONS(3696), [anon_sym_scoped] = ACTIONS(4320), - [anon_sym_EQ_GT] = ACTIONS(4322), + [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(4320), + [anon_sym_switch] = ACTIONS(3696), [anon_sym_when] = ACTIONS(4320), - [sym_discard] = ACTIONS(4320), - [anon_sym_DOT_DOT] = ACTIONS(4322), - [anon_sym_and] = ACTIONS(4320), - [anon_sym_or] = ACTIONS(4320), - [anon_sym_AMP_AMP] = ACTIONS(4322), - [anon_sym_PIPE_PIPE] = ACTIONS(4322), - [sym_op_coalescing] = ACTIONS(4322), + [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_into] = ACTIONS(4324), [anon_sym_join] = ACTIONS(4320), [anon_sym_on] = ACTIONS(4320), [anon_sym_equals] = ACTIONS(4320), @@ -427165,14 +427060,11 @@ 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(4320), - [anon_sym_is] = ACTIONS(4320), - [anon_sym_DASH_GT] = ACTIONS(4322), - [anon_sym_with] = ACTIONS(4320), - [sym_grit_metavariable] = ACTIONS(4322), - [aux_sym_preproc_if_token3] = ACTIONS(4322), - [aux_sym_preproc_else_token1] = ACTIONS(4322), - [aux_sym_preproc_elif_token1] = ACTIONS(4322), + [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), @@ -427183,17 +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(3694), }, - [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), + [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), @@ -427208,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), @@ -427248,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(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), @@ -427279,6 +427172,196 @@ 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), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_global] = ACTIONS(4329), + [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_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_operator] = ACTIONS(4329), + [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), + [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), + }, + [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), @@ -427289,46 +427372,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2361), [sym_preproc_define] = STATE(2361), [sym_preproc_undef] = STATE(2361), + [sym__identifier_token] = ACTIONS(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(4008), + [anon_sym_LBRACK] = ACTIONS(4034), [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4008), + [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(4011), + [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(4011), - [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(4011), + [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(4011), + [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), @@ -427343,11 +427506,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(4011), + [anon_sym_into] = ACTIONS(4037), [anon_sym_join] = ACTIONS(3986), [anon_sym_on] = ACTIONS(3986), [anon_sym_equals] = ACTIONS(3986), @@ -427360,7 +427538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_select] = ACTIONS(3986), [anon_sym_as] = ACTIONS(3991), [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4008), + [anon_sym_DASH_GT] = ACTIONS(4034), [anon_sym_with] = ACTIONS(3991), [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -427374,102 +427552,16 @@ 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__variable_designation] = STATE(4951), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), - [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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4246), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_COLON] = ACTIONS(4246), - [anon_sym_COMMA] = ACTIONS(4246), - [anon_sym_RBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_RPAREN] = ACTIONS(4246), - [anon_sym_RBRACE] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4246), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [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(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4246), - [aux_sym_preproc_else_token1] = ACTIONS(4246), - [aux_sym_preproc_elif_token1] = ACTIONS(4246), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [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), @@ -427479,80 +427571,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2363), [sym_preproc_define] = STATE(2363), [sym_preproc_undef] = STATE(2363), - [sym__identifier_token] = ACTIONS(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_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(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(4003), - [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(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), @@ -427563,6 +427645,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), }, [2364] = { [sym_preproc_region] = STATE(2364), @@ -427574,80 +427657,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2364), [sym_preproc_define] = STATE(2364), [sym_preproc_undef] = STATE(2364), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4023), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4023), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [anon_sym_GT_EQ] = ACTIONS(4016), - [anon_sym_LT_EQ] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym_op_coalescing] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4023), - [anon_sym_into] = ACTIONS(4023), - [anon_sym_join] = ACTIONS(4023), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4023), - [anon_sym_orderby] = ACTIONS(4023), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4023), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4023), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4023), - [sym_grit_metavariable] = ACTIONS(4021), + [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), @@ -427669,80 +427752,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2365), [sym_preproc_define] = STATE(2365), [sym_preproc_undef] = STATE(2365), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4023), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [anon_sym_GT_EQ] = ACTIONS(4016), - [anon_sym_LT_EQ] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym_op_coalescing] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4023), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4023), - [sym_grit_metavariable] = ACTIONS(4021), + [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), @@ -427755,6 +427838,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -427764,80 +427851,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2366), [sym_preproc_define] = STATE(2366), [sym_preproc_undef] = STATE(2366), - [sym__identifier_token] = ACTIONS(4324), - [anon_sym_alias] = ACTIONS(4324), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_global] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4326), - [anon_sym_RBRACK] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_RPAREN] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4326), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_file] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_where] = ACTIONS(4324), - [anon_sym_QMARK] = ACTIONS(4324), - [anon_sym_notnull] = ACTIONS(4324), - [anon_sym_unmanaged] = ACTIONS(4324), - [anon_sym_operator] = ACTIONS(4324), - [anon_sym_BANG] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_CARET] = ACTIONS(4326), - [anon_sym_PIPE] = ACTIONS(4324), - [anon_sym_AMP] = ACTIONS(4324), - [anon_sym_LT_LT] = ACTIONS(4326), - [anon_sym_GT_GT] = ACTIONS(4324), - [anon_sym_GT_GT_GT] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_this] = ACTIONS(4324), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_scoped] = ACTIONS(4324), - [anon_sym_EQ_GT] = ACTIONS(4326), - [anon_sym_var] = ACTIONS(4324), - [anon_sym_yield] = ACTIONS(4324), - [anon_sym_switch] = ACTIONS(4324), - [anon_sym_when] = ACTIONS(4324), - [sym_discard] = ACTIONS(4324), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_and] = ACTIONS(4324), - [anon_sym_or] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [sym_op_coalescing] = ACTIONS(4326), - [anon_sym_from] = ACTIONS(4324), - [anon_sym_into] = ACTIONS(4324), - [anon_sym_join] = ACTIONS(4324), - [anon_sym_on] = ACTIONS(4324), - [anon_sym_equals] = ACTIONS(4324), - [anon_sym_let] = ACTIONS(4324), - [anon_sym_orderby] = ACTIONS(4324), - [anon_sym_ascending] = ACTIONS(4324), - [anon_sym_descending] = ACTIONS(4324), - [anon_sym_group] = ACTIONS(4324), - [anon_sym_by] = ACTIONS(4324), - [anon_sym_select] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4324), - [anon_sym_DASH_GT] = ACTIONS(4326), - [anon_sym_with] = ACTIONS(4324), - [sym_grit_metavariable] = ACTIONS(4326), - [aux_sym_preproc_if_token3] = ACTIONS(4326), - [aux_sym_preproc_else_token1] = ACTIONS(4326), - [aux_sym_preproc_elif_token1] = ACTIONS(4326), + [sym__identifier_token] = ACTIONS(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), @@ -427850,6 +427933,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -427859,80 +427946,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2367), [sym_preproc_define] = STATE(2367), [sym_preproc_undef] = STATE(2367), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4023), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [anon_sym_GT_EQ] = ACTIONS(4016), - [anon_sym_LT_EQ] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym_op_coalescing] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4023), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4023), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4023), - [sym_grit_metavariable] = ACTIONS(4021), + [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), @@ -427945,10 +428028,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2368] = { - [sym__variable_designation] = STATE(4984), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -427958,76 +428041,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2368), [sym_preproc_define] = STATE(2368), [sym_preproc_undef] = STATE(2368), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_SEMI] = ACTIONS(4296), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4296), - [anon_sym_COLON] = ACTIONS(4296), - [anon_sym_COMMA] = ACTIONS(4296), - [anon_sym_RBRACK] = ACTIONS(4296), - [anon_sym_LPAREN] = ACTIONS(4296), - [anon_sym_RPAREN] = ACTIONS(4296), - [anon_sym_RBRACE] = ACTIONS(4296), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4298), - [anon_sym_GT] = ACTIONS(4298), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4298), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_SLASH] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4298), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4298), - [anon_sym_GT_GT_GT] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4296), - [anon_sym_BANG_EQ] = ACTIONS(4296), - [anon_sym_GT_EQ] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4296), - [anon_sym_DOT] = ACTIONS(4298), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4296), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4298), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4298), - [anon_sym_or] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4296), - [sym_op_coalescing] = ACTIONS(4296), - [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(4298), - [anon_sym_is] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4296), - [anon_sym_with] = ACTIONS(4298), - [sym_grit_metavariable] = ACTIONS(4220), - [aux_sym_preproc_if_token3] = ACTIONS(4296), - [aux_sym_preproc_else_token1] = ACTIONS(4296), - [aux_sym_preproc_elif_token1] = ACTIONS(4296), + [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), @@ -428040,6 +428123,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -428049,80 +428136,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2369), [sym_preproc_define] = STATE(2369), [sym_preproc_undef] = STATE(2369), - [sym__identifier_token] = ACTIONS(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_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(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), + [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), @@ -428135,15 +428218,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2370] = { - [sym__name] = STATE(5595), - [sym_alias_qualified_name] = STATE(5627), - [sym__simple_name] = STATE(5627), - [sym_qualified_name] = STATE(5627), - [sym_generic_name] = STATE(5585), - [sym_ref_type] = STATE(5620), - [sym__scoped_base_type] = STATE(5619), - [sym_identifier] = STATE(5530), - [sym__reserved_identifier] = STATE(5560), [sym_preproc_region] = STATE(2370), [sym_preproc_endregion] = STATE(2370), [sym_preproc_line] = STATE(2370), @@ -428153,81 +428227,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2370), [sym_preproc_define] = STATE(2370), [sym_preproc_undef] = STATE(2370), - [sym__identifier_token] = ACTIONS(4328), - [anon_sym_alias] = ACTIONS(4330), - [anon_sym_global] = ACTIONS(4330), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4332), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4330), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4330), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4330), - [anon_sym_unmanaged] = ACTIONS(4330), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4330), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4330), - [anon_sym_yield] = ACTIONS(4330), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4330), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(4330), - [anon_sym_into] = ACTIONS(4330), - [anon_sym_join] = ACTIONS(4330), - [anon_sym_on] = ACTIONS(4330), - [anon_sym_equals] = ACTIONS(4330), - [anon_sym_let] = ACTIONS(4330), - [anon_sym_orderby] = ACTIONS(4330), - [anon_sym_ascending] = ACTIONS(4330), - [anon_sym_descending] = ACTIONS(4330), - [anon_sym_group] = ACTIONS(4330), - [anon_sym_by] = ACTIONS(4330), - [anon_sym_select] = ACTIONS(4330), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4334), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3700), + [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), + [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_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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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), @@ -428239,6 +428322,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2371), [sym_preproc_define] = STATE(2371), [sym_preproc_undef] = STATE(2371), + [sym__identifier_token] = ACTIONS(4339), + [anon_sym_alias] = ACTIONS(4339), + [anon_sym_SEMI] = ACTIONS(4341), + [anon_sym_global] = ACTIONS(4339), + [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_file] = ACTIONS(4339), + [anon_sym_LT] = ACTIONS(4339), + [anon_sym_GT] = ACTIONS(4339), + [anon_sym_in] = ACTIONS(4339), + [anon_sym_where] = ACTIONS(4339), + [anon_sym_QMARK] = ACTIONS(4339), + [anon_sym_notnull] = ACTIONS(4339), + [anon_sym_unmanaged] = ACTIONS(4339), + [anon_sym_operator] = ACTIONS(4339), + [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), + [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_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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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), + [sym_preproc_line] = STATE(2372), + [sym_preproc_pragma] = STATE(2372), + [sym_preproc_nullable] = STATE(2372), + [sym_preproc_error] = STATE(2372), + [sym_preproc_warning] = STATE(2372), + [sym_preproc_define] = STATE(2372), + [sym_preproc_undef] = STATE(2372), [sym__identifier_token] = ACTIONS(3986), [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), @@ -428249,36 +428427,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), @@ -428293,21 +428456,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(3986), - [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(4003), + [anon_sym_join] = ACTIONS(4003), [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(4003), - [anon_sym_let] = ACTIONS(3986), - [anon_sym_orderby] = ACTIONS(3986), + [anon_sym_equals] = 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_group] = ACTIONS(4003), [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(3986), + [anon_sym_select] = ACTIONS(4003), [anon_sym_as] = ACTIONS(3999), [anon_sym_is] = ACTIONS(3999), [anon_sym_DASH_GT] = ACTIONS(3993), @@ -428324,101 +428502,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2372] = { - [sym_preproc_region] = STATE(2372), - [sym_preproc_endregion] = STATE(2372), - [sym_preproc_line] = STATE(2372), - [sym_preproc_pragma] = STATE(2372), - [sym_preproc_nullable] = STATE(2372), - [sym_preproc_error] = STATE(2372), - [sym_preproc_warning] = STATE(2372), - [sym_preproc_define] = STATE(2372), - [sym_preproc_undef] = STATE(2372), - [sym__identifier_token] = ACTIONS(4336), - [anon_sym_alias] = ACTIONS(4336), - [anon_sym_SEMI] = ACTIONS(4338), - [anon_sym_global] = ACTIONS(4336), - [anon_sym_LBRACK] = ACTIONS(4338), - [anon_sym_COLON] = ACTIONS(4338), - [anon_sym_COMMA] = ACTIONS(4338), - [anon_sym_RBRACK] = ACTIONS(4338), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_RPAREN] = ACTIONS(4338), - [anon_sym_LBRACE] = ACTIONS(4338), - [anon_sym_RBRACE] = ACTIONS(4338), - [anon_sym_file] = ACTIONS(4336), - [anon_sym_LT] = ACTIONS(4336), - [anon_sym_GT] = ACTIONS(4336), - [anon_sym_in] = ACTIONS(4336), - [anon_sym_where] = ACTIONS(4336), - [anon_sym_QMARK] = ACTIONS(4336), - [anon_sym_notnull] = ACTIONS(4336), - [anon_sym_unmanaged] = ACTIONS(4336), - [anon_sym_operator] = ACTIONS(4336), - [anon_sym_BANG] = ACTIONS(4336), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS] = ACTIONS(4336), - [anon_sym_DASH] = ACTIONS(4336), - [anon_sym_STAR] = ACTIONS(4338), - [anon_sym_SLASH] = ACTIONS(4336), - [anon_sym_PERCENT] = ACTIONS(4338), - [anon_sym_CARET] = ACTIONS(4338), - [anon_sym_PIPE] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym_LT_LT] = ACTIONS(4338), - [anon_sym_GT_GT] = ACTIONS(4336), - [anon_sym_GT_GT_GT] = ACTIONS(4338), - [anon_sym_EQ_EQ] = ACTIONS(4338), - [anon_sym_BANG_EQ] = ACTIONS(4338), - [anon_sym_GT_EQ] = ACTIONS(4338), - [anon_sym_LT_EQ] = ACTIONS(4338), - [anon_sym_this] = ACTIONS(4336), - [anon_sym_DOT] = ACTIONS(4336), - [anon_sym_scoped] = ACTIONS(4336), - [anon_sym_EQ_GT] = ACTIONS(4338), - [anon_sym_var] = ACTIONS(4336), - [anon_sym_yield] = ACTIONS(4336), - [anon_sym_switch] = ACTIONS(4336), - [anon_sym_when] = ACTIONS(4336), - [sym_discard] = ACTIONS(4336), - [anon_sym_DOT_DOT] = ACTIONS(4338), - [anon_sym_and] = ACTIONS(4336), - [anon_sym_or] = ACTIONS(4336), - [anon_sym_AMP_AMP] = ACTIONS(4338), - [anon_sym_PIPE_PIPE] = ACTIONS(4338), - [sym_op_coalescing] = ACTIONS(4338), - [anon_sym_from] = ACTIONS(4336), - [anon_sym_into] = ACTIONS(4336), - [anon_sym_join] = ACTIONS(4336), - [anon_sym_on] = ACTIONS(4336), - [anon_sym_equals] = ACTIONS(4336), - [anon_sym_let] = ACTIONS(4336), - [anon_sym_orderby] = ACTIONS(4336), - [anon_sym_ascending] = ACTIONS(4336), - [anon_sym_descending] = ACTIONS(4336), - [anon_sym_group] = ACTIONS(4336), - [anon_sym_by] = ACTIONS(4336), - [anon_sym_select] = ACTIONS(4336), - [anon_sym_as] = ACTIONS(4336), - [anon_sym_is] = ACTIONS(4336), - [anon_sym_DASH_GT] = ACTIONS(4338), - [anon_sym_with] = ACTIONS(4336), - [sym_grit_metavariable] = ACTIONS(4338), - [aux_sym_preproc_if_token3] = ACTIONS(4338), - [aux_sym_preproc_else_token1] = ACTIONS(4338), - [aux_sym_preproc_elif_token1] = ACTIONS(4338), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2373] = { [sym_preproc_region] = STATE(2373), [sym_preproc_endregion] = STATE(2373), @@ -428439,36 +428522,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), @@ -428483,21 +428551,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_into] = ACTIONS(4003), - [anon_sym_join] = ACTIONS(4003), - [anon_sym_on] = ACTIONS(3986), + [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(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_group] = ACTIONS(3986), [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(4003), + [anon_sym_select] = ACTIONS(3986), [anon_sym_as] = ACTIONS(3999), [anon_sym_is] = ACTIONS(3999), [anon_sym_DASH_GT] = ACTIONS(3993), @@ -428524,80 +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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4023), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4023), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [anon_sym_GT_EQ] = ACTIONS(4016), - [anon_sym_LT_EQ] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym_op_coalescing] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4023), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4023), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4023), - [anon_sym_orderby] = ACTIONS(4023), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4023), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4023), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4023), - [sym_grit_metavariable] = ACTIONS(4021), + [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), @@ -428619,80 +428702,80 @@ 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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4026), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_EQ_GT] = ACTIONS(4026), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4023), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), + [sym__identifier_token] = ACTIONS(4347), + [anon_sym_alias] = ACTIONS(4347), + [anon_sym_SEMI] = ACTIONS(4349), + [anon_sym_global] = ACTIONS(4347), + [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_file] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_GT] = ACTIONS(4347), + [anon_sym_in] = ACTIONS(4347), + [anon_sym_where] = ACTIONS(4347), + [anon_sym_QMARK] = ACTIONS(4347), + [anon_sym_notnull] = ACTIONS(4347), + [anon_sym_unmanaged] = ACTIONS(4347), + [anon_sym_operator] = ACTIONS(4347), + [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), + [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_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), @@ -428714,80 +428797,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2376), [sym_preproc_define] = STATE(2376), [sym_preproc_undef] = STATE(2376), - [sym__identifier_token] = ACTIONS(4340), - [anon_sym_alias] = ACTIONS(4340), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_global] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_COLON] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4342), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_file] = ACTIONS(4340), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4340), - [anon_sym_QMARK] = ACTIONS(4340), - [anon_sym_notnull] = ACTIONS(4340), - [anon_sym_unmanaged] = ACTIONS(4340), - [anon_sym_operator] = ACTIONS(4340), - [anon_sym_BANG] = ACTIONS(4340), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4342), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4342), - [anon_sym_CARET] = ACTIONS(4342), - [anon_sym_PIPE] = ACTIONS(4340), - [anon_sym_AMP] = ACTIONS(4340), - [anon_sym_LT_LT] = ACTIONS(4342), - [anon_sym_GT_GT] = ACTIONS(4340), - [anon_sym_GT_GT_GT] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_this] = ACTIONS(4340), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_scoped] = ACTIONS(4340), - [anon_sym_EQ_GT] = ACTIONS(4342), - [anon_sym_var] = ACTIONS(4340), - [anon_sym_yield] = ACTIONS(4340), - [anon_sym_switch] = ACTIONS(4340), - [anon_sym_when] = ACTIONS(4340), - [sym_discard] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_and] = ACTIONS(4340), - [anon_sym_or] = ACTIONS(4340), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [sym_op_coalescing] = ACTIONS(4342), - [anon_sym_from] = ACTIONS(4340), - [anon_sym_into] = ACTIONS(4340), - [anon_sym_join] = ACTIONS(4340), - [anon_sym_on] = ACTIONS(4340), - [anon_sym_equals] = ACTIONS(4340), - [anon_sym_let] = ACTIONS(4340), - [anon_sym_orderby] = ACTIONS(4340), - [anon_sym_ascending] = ACTIONS(4340), - [anon_sym_descending] = ACTIONS(4340), - [anon_sym_group] = ACTIONS(4340), - [anon_sym_by] = ACTIONS(4340), - [anon_sym_select] = ACTIONS(4340), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_DASH_GT] = ACTIONS(4342), - [anon_sym_with] = ACTIONS(4340), - [sym_grit_metavariable] = ACTIONS(4342), - [aux_sym_preproc_if_token3] = ACTIONS(4342), - [aux_sym_preproc_else_token1] = ACTIONS(4342), - [aux_sym_preproc_elif_token1] = ACTIONS(4342), + [sym__identifier_token] = ACTIONS(4351), + [anon_sym_alias] = ACTIONS(4351), + [anon_sym_SEMI] = ACTIONS(4353), + [anon_sym_global] = ACTIONS(4351), + [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_file] = ACTIONS(4351), + [anon_sym_LT] = ACTIONS(4351), + [anon_sym_GT] = ACTIONS(4351), + [anon_sym_in] = ACTIONS(4351), + [anon_sym_where] = ACTIONS(4351), + [anon_sym_QMARK] = ACTIONS(4351), + [anon_sym_notnull] = ACTIONS(4351), + [anon_sym_unmanaged] = ACTIONS(4351), + [anon_sym_operator] = ACTIONS(4351), + [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), + [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_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), @@ -428800,7 +428883,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2377] = { - [sym_type_argument_list] = STATE(2216), [sym_preproc_region] = STATE(2377), [sym_preproc_endregion] = STATE(2377), [sym_preproc_line] = STATE(2377), @@ -428810,79 +428892,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2377), [sym_preproc_define] = STATE(2377), [sym_preproc_undef] = STATE(2377), - [sym__identifier_token] = ACTIONS(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(4344), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(3955), - [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(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [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(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), @@ -428904,80 +428987,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2378), [sym_preproc_define] = STATE(2378), [sym_preproc_undef] = STATE(2378), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4023), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [anon_sym_GT_EQ] = ACTIONS(4016), - [anon_sym_LT_EQ] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym_op_coalescing] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4023), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4023), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4023), - [sym_grit_metavariable] = ACTIONS(4021), + [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(4003), + [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), @@ -428999,80 +429082,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2379), [sym_preproc_define] = STATE(2379), [sym_preproc_undef] = STATE(2379), - [sym__identifier_token] = ACTIONS(3702), - [anon_sym_alias] = ACTIONS(3702), - [anon_sym_global] = ACTIONS(3702), - [anon_sym_using] = ACTIONS(4346), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3702), - [anon_sym_unmanaged] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3702), - [anon_sym_join] = ACTIONS(3702), - [anon_sym_on] = ACTIONS(3702), - [anon_sym_equals] = ACTIONS(3702), - [anon_sym_let] = ACTIONS(3702), - [anon_sym_orderby] = ACTIONS(3702), - [anon_sym_ascending] = ACTIONS(3702), - [anon_sym_descending] = ACTIONS(3702), - [anon_sym_group] = ACTIONS(3702), - [anon_sym_by] = ACTIONS(3702), - [anon_sym_select] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3700), + [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), @@ -429098,44 +429181,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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_where] = ACTIONS(4003), - [anon_sym_QMARK] = ACTIONS(3999), + [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(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), @@ -429148,25 +429216,40 @@ 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_from] = ACTIONS(4003), + [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(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_group] = ACTIONS(3986), [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), + [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), @@ -429193,44 +429276,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(3993), + [anon_sym_LPAREN] = ACTIONS(3993), + [anon_sym_LBRACE] = ACTIONS(3997), [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), + [anon_sym_LT] = ACTIONS(3999), + [anon_sym_GT] = ACTIONS(3999), [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4011), + [anon_sym_QMARK] = ACTIONS(3999), [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(4011), - [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(4011), + [anon_sym_DOT] = ACTIONS(3999), [anon_sym_scoped] = ACTIONS(3986), - [anon_sym_EQ_GT] = ACTIONS(4006), [anon_sym_var] = ACTIONS(3986), + [anon_sym_STAR] = ACTIONS(3999), [anon_sym_yield] = ACTIONS(3986), - [anon_sym_switch] = ACTIONS(3991), - [anon_sym_when] = ACTIONS(4011), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(3991), - [anon_sym_or] = ACTIONS(3991), + [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), @@ -429243,14 +429311,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_AMP_AMP] = ACTIONS(4006), - [anon_sym_PIPE_PIPE] = ACTIONS(4006), - [sym_op_coalescing] = ACTIONS(3991), + [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), + [anon_sym_equals] = ACTIONS(4003), [anon_sym_let] = ACTIONS(3986), [anon_sym_orderby] = ACTIONS(3986), [anon_sym_ascending] = ACTIONS(3986), @@ -429258,10 +429341,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_DASH_GT] = ACTIONS(4008), - [anon_sym_with] = ACTIONS(3991), + [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), @@ -429284,80 +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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4023), - [anon_sym_GT] = ACTIONS(4023), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_PLUS_PLUS] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_PERCENT] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_PIPE] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_LT] = ACTIONS(4023), - [anon_sym_GT_GT] = ACTIONS(4023), - [anon_sym_GT_GT_GT] = ACTIONS(4023), - [anon_sym_EQ_EQ] = ACTIONS(4016), - [anon_sym_BANG_EQ] = ACTIONS(4016), - [anon_sym_GT_EQ] = ACTIONS(4016), - [anon_sym_LT_EQ] = ACTIONS(4016), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4023), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4016), - [anon_sym_and] = ACTIONS(4023), - [anon_sym_or] = ACTIONS(4023), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4016), - [anon_sym_PIPE_PIPE] = ACTIONS(4016), - [sym_op_coalescing] = ACTIONS(4023), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4023), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4023), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4023), - [anon_sym_is] = ACTIONS(4023), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4023), - [sym_grit_metavariable] = ACTIONS(4021), + [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_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), @@ -429370,15 +429453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2383] = { - [sym__name] = STATE(5595), - [sym_alias_qualified_name] = STATE(5627), - [sym__simple_name] = STATE(5627), - [sym_qualified_name] = STATE(5627), - [sym_generic_name] = STATE(5585), - [sym_ref_type] = STATE(5620), - [sym__scoped_base_type] = STATE(5619), - [sym_identifier] = STATE(5530), - [sym__reserved_identifier] = STATE(5560), + [sym_type_argument_list] = STATE(2214), [sym_preproc_region] = STATE(2383), [sym_preproc_endregion] = STATE(2383), [sym_preproc_line] = STATE(2383), @@ -429388,81 +429463,89 @@ 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(4328), - [anon_sym_alias] = ACTIONS(4330), - [anon_sym_global] = ACTIONS(4330), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4348), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4330), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4330), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4330), - [anon_sym_unmanaged] = ACTIONS(4330), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4330), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4330), - [anon_sym_yield] = ACTIONS(4330), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4330), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(4330), - [anon_sym_into] = ACTIONS(4350), - [anon_sym_join] = ACTIONS(4330), - [anon_sym_on] = ACTIONS(4330), - [anon_sym_equals] = ACTIONS(4330), - [anon_sym_let] = ACTIONS(4330), - [anon_sym_orderby] = ACTIONS(4330), - [anon_sym_ascending] = ACTIONS(4330), - [anon_sym_descending] = ACTIONS(4330), - [anon_sym_group] = ACTIONS(4330), - [anon_sym_by] = ACTIONS(4330), - [anon_sym_select] = ACTIONS(4330), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4334), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3700), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2384] = { [sym_preproc_region] = STATE(2384), @@ -429474,80 +429557,80 @@ 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(4353), - [anon_sym_alias] = ACTIONS(4353), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym_global] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4355), - [anon_sym_COLON] = ACTIONS(4355), - [anon_sym_COMMA] = ACTIONS(4355), - [anon_sym_RBRACK] = ACTIONS(4355), - [anon_sym_LPAREN] = ACTIONS(4355), - [anon_sym_RPAREN] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4355), - [anon_sym_RBRACE] = ACTIONS(4355), - [anon_sym_file] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4353), - [anon_sym_GT] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4353), - [anon_sym_where] = ACTIONS(4353), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_notnull] = ACTIONS(4353), - [anon_sym_unmanaged] = ACTIONS(4353), - [anon_sym_operator] = ACTIONS(4353), - [anon_sym_BANG] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4355), - [anon_sym_DASH_DASH] = ACTIONS(4355), - [anon_sym_PLUS] = ACTIONS(4353), - [anon_sym_DASH] = ACTIONS(4353), - [anon_sym_STAR] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4353), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_CARET] = ACTIONS(4355), - [anon_sym_PIPE] = ACTIONS(4353), - [anon_sym_AMP] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4355), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_GT_GT_GT] = ACTIONS(4355), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_GT_EQ] = ACTIONS(4355), - [anon_sym_LT_EQ] = ACTIONS(4355), - [anon_sym_this] = ACTIONS(4353), - [anon_sym_DOT] = ACTIONS(4353), - [anon_sym_scoped] = ACTIONS(4353), - [anon_sym_EQ_GT] = ACTIONS(4355), - [anon_sym_var] = ACTIONS(4353), - [anon_sym_yield] = ACTIONS(4353), - [anon_sym_switch] = ACTIONS(4353), - [anon_sym_when] = ACTIONS(4353), - [sym_discard] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4355), - [anon_sym_and] = ACTIONS(4353), - [anon_sym_or] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4355), - [sym_op_coalescing] = ACTIONS(4355), - [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_ascending] = ACTIONS(4353), - [anon_sym_descending] = 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(4355), - [anon_sym_with] = ACTIONS(4353), - [sym_grit_metavariable] = ACTIONS(4355), - [aux_sym_preproc_if_token3] = ACTIONS(4355), - [aux_sym_preproc_else_token1] = ACTIONS(4355), - [aux_sym_preproc_elif_token1] = ACTIONS(4355), + [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), @@ -429560,6 +429643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -429569,80 +429653,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2385), [sym_preproc_define] = STATE(2385), [sym_preproc_undef] = STATE(2385), - [sym__identifier_token] = ACTIONS(4357), - [anon_sym_alias] = ACTIONS(4357), - [anon_sym_SEMI] = ACTIONS(4359), - [anon_sym_global] = ACTIONS(4357), - [anon_sym_LBRACK] = ACTIONS(4359), - [anon_sym_COLON] = ACTIONS(4359), - [anon_sym_COMMA] = ACTIONS(4359), - [anon_sym_RBRACK] = ACTIONS(4359), - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_RPAREN] = ACTIONS(4359), - [anon_sym_LBRACE] = ACTIONS(4359), - [anon_sym_RBRACE] = ACTIONS(4359), - [anon_sym_file] = ACTIONS(4357), - [anon_sym_LT] = ACTIONS(4357), - [anon_sym_GT] = ACTIONS(4357), - [anon_sym_in] = ACTIONS(4357), - [anon_sym_where] = ACTIONS(4357), - [anon_sym_QMARK] = ACTIONS(4357), - [anon_sym_notnull] = ACTIONS(4357), - [anon_sym_unmanaged] = ACTIONS(4357), - [anon_sym_operator] = ACTIONS(4357), - [anon_sym_BANG] = ACTIONS(4357), - [anon_sym_PLUS_PLUS] = ACTIONS(4359), - [anon_sym_DASH_DASH] = ACTIONS(4359), - [anon_sym_PLUS] = ACTIONS(4357), - [anon_sym_DASH] = ACTIONS(4357), - [anon_sym_STAR] = ACTIONS(4359), - [anon_sym_SLASH] = ACTIONS(4357), - [anon_sym_PERCENT] = ACTIONS(4359), - [anon_sym_CARET] = ACTIONS(4359), - [anon_sym_PIPE] = ACTIONS(4357), - [anon_sym_AMP] = ACTIONS(4357), - [anon_sym_LT_LT] = ACTIONS(4359), - [anon_sym_GT_GT] = ACTIONS(4357), - [anon_sym_GT_GT_GT] = ACTIONS(4359), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_GT_EQ] = ACTIONS(4359), - [anon_sym_LT_EQ] = ACTIONS(4359), - [anon_sym_this] = ACTIONS(4357), - [anon_sym_DOT] = ACTIONS(4357), - [anon_sym_scoped] = ACTIONS(4357), - [anon_sym_EQ_GT] = ACTIONS(4359), - [anon_sym_var] = ACTIONS(4357), - [anon_sym_yield] = ACTIONS(4357), - [anon_sym_switch] = ACTIONS(4357), - [anon_sym_when] = ACTIONS(4357), - [sym_discard] = ACTIONS(4357), - [anon_sym_DOT_DOT] = ACTIONS(4359), - [anon_sym_and] = ACTIONS(4357), - [anon_sym_or] = ACTIONS(4357), - [anon_sym_AMP_AMP] = ACTIONS(4359), - [anon_sym_PIPE_PIPE] = ACTIONS(4359), - [sym_op_coalescing] = ACTIONS(4359), - [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_ascending] = ACTIONS(4357), - [anon_sym_descending] = 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(4359), - [anon_sym_with] = ACTIONS(4357), - [sym_grit_metavariable] = ACTIONS(4359), - [aux_sym_preproc_if_token3] = ACTIONS(4359), - [aux_sym_preproc_else_token1] = ACTIONS(4359), - [aux_sym_preproc_elif_token1] = ACTIONS(4359), + [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), @@ -429664,80 +429747,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2386), [sym_preproc_define] = STATE(2386), [sym_preproc_undef] = STATE(2386), - [sym__identifier_token] = ACTIONS(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(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(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), @@ -429759,80 +429842,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2387), [sym_preproc_define] = STATE(2387), [sym_preproc_undef] = STATE(2387), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COLON] = ACTIONS(4026), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_EQ_GT] = ACTIONS(4026), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4023), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4023), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), + [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(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(3986), + [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(3986), + [anon_sym_descending] = 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), + [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), @@ -429845,6 +429928,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2388] = { + [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), @@ -429854,79 +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(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_BANG] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3910), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3910), - [anon_sym_CARET] = ACTIONS(3910), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3910), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3910), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_GT_EQ] = ACTIONS(3910), - [anon_sym_LT_EQ] = ACTIONS(3910), - [anon_sym_DOT] = ACTIONS(3913), - [anon_sym_scoped] = ACTIONS(3913), - [anon_sym_EQ_GT] = ACTIONS(3910), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = 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_and] = ACTIONS(3913), - [anon_sym_or] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(3910), - [anon_sym_PIPE_PIPE] = ACTIONS(3910), - [sym_op_coalescing] = 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), + [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), @@ -429939,7 +430022,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2389] = { - [sym_type_argument_list] = STATE(2423), + [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), @@ -429949,78 +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(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(4365), - [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__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), @@ -430033,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), @@ -430042,121 +430145,7 @@ 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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_COMMA] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4008), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(4011), - [anon_sym_QMARK] = ACTIONS(4011), - [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(4011), - [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(4011), - [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(4011), - [anon_sym_into] = ACTIONS(4011), - [anon_sym_join] = ACTIONS(4011), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(4011), - [anon_sym_orderby] = ACTIONS(4011), - [anon_sym_ascending] = ACTIONS(4011), - [anon_sym_descending] = ACTIONS(4011), - [anon_sym_group] = ACTIONS(4011), - [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(4011), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4008), - [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), - }, - [2391] = { - [sym_modifier] = STATE(4309), - [sym_variable_declaration] = STATE(7884), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(2391), - [sym_preproc_endregion] = STATE(2391), - [sym_preproc_line] = STATE(2391), - [sym_preproc_pragma] = STATE(2391), - [sym_preproc_nullable] = STATE(2391), - [sym_preproc_error] = STATE(2391), - [sym_preproc_warning] = STATE(2391), - [sym_preproc_define] = STATE(2391), - [sym_preproc_undef] = STATE(2391), - [aux_sym__class_declaration_initializer_repeat2] = STATE(4047), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3232), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(65), [anon_sym_alias] = ACTIONS(3211), @@ -430166,8 +430155,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(3219), [anon_sym_class] = ACTIONS(4064), [anon_sym_ref] = ACTIONS(4066), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_enum] = ACTIONS(4101), + [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), @@ -430220,7 +430209,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2391] = { + [sym_preproc_region] = STATE(2391), + [sym_preproc_endregion] = STATE(2391), + [sym_preproc_line] = STATE(2391), + [sym_preproc_pragma] = STATE(2391), + [sym_preproc_nullable] = STATE(2391), + [sym_preproc_error] = STATE(2391), + [sym_preproc_warning] = STATE(2391), + [sym_preproc_define] = STATE(2391), + [sym_preproc_undef] = STATE(2391), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2392] = { + [sym_type_argument_list] = STATE(2417), [sym_preproc_region] = STATE(2392), [sym_preproc_endregion] = STATE(2392), [sym_preproc_line] = STATE(2392), @@ -430230,79 +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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COMMA] = ACTIONS(4026), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4023), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4023), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4023), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4023), - [anon_sym_orderby] = ACTIONS(4023), - [anon_sym_ascending] = ACTIONS(4023), - [anon_sym_descending] = ACTIONS(4023), - [anon_sym_group] = ACTIONS(4023), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4023), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), + [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(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), @@ -430315,15 +430398,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2393] = { - [sym__name] = STATE(5799), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_ref_type] = STATE(4018), - [sym__scoped_base_type] = STATE(4086), - [sym_identifier] = STATE(5616), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -430333,70 +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(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4368), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4232), + [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), @@ -430409,6 +430492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2394] = { + [sym_type_argument_list] = STATE(2417), [sym_preproc_region] = STATE(2394), [sym_preproc_endregion] = STATE(2394), [sym_preproc_line] = STATE(2394), @@ -430418,79 +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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_COMMA] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(4008), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(4011), - [anon_sym_QMARK] = ACTIONS(4011), - [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(4011), - [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(4011), - [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(4011), - [anon_sym_into] = ACTIONS(3986), - [anon_sym_join] = ACTIONS(4011), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(4011), - [anon_sym_orderby] = ACTIONS(4011), - [anon_sym_ascending] = ACTIONS(4011), - [anon_sym_descending] = ACTIONS(4011), - [anon_sym_group] = ACTIONS(4011), - [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(4011), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4008), - [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(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), @@ -430512,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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_COMMA] = ACTIONS(4026), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4023), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4023), - [anon_sym_into] = ACTIONS(4023), - [anon_sym_join] = ACTIONS(4023), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4023), - [anon_sym_orderby] = ACTIONS(4023), - [anon_sym_ascending] = ACTIONS(4023), - [anon_sym_descending] = ACTIONS(4023), - [anon_sym_group] = ACTIONS(4023), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4023), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), + [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), @@ -430597,15 +430680,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2396] = { - [sym__name] = STATE(5028), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_ref_type] = STATE(4870), - [sym__scoped_base_type] = STATE(4875), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), [sym_preproc_region] = STATE(2396), [sym_preproc_endregion] = STATE(2396), [sym_preproc_line] = STATE(2396), @@ -430615,70 +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), - [sym__identifier_token] = ACTIONS(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4370), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4105), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4105), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4372), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -430691,25 +430774,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2397] = { - [sym_argument_list] = STATE(3651), - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4999), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(3718), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -430719,60 +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(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(4375), - [anon_sym_LPAREN] = ACTIONS(4377), - [anon_sym_class] = ACTIONS(3738), - [anon_sym_ref] = ACTIONS(4230), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_enum] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_interface] = ACTIONS(3738), - [anon_sym_delegate] = ACTIONS(4381), - [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(4383), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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_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), @@ -430785,26 +430868,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2398] = { - [sym_modifier] = STATE(4309), - [sym_variable_declaration] = STATE(8056), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(2398), [sym_preproc_endregion] = STATE(2398), [sym_preproc_line] = STATE(2398), @@ -430814,59 +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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(4047), - [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(2995), - [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), + [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), @@ -430879,7 +430962,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2399] = { - [sym_type_argument_list] = STATE(2423), [sym_preproc_region] = STATE(2399), [sym_preproc_endregion] = STATE(2399), [sym_preproc_line] = STATE(2399), @@ -430889,78 +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(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(4365), - [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_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), + [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), @@ -430973,6 +431056,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2400] = { + [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), @@ -430982,6 +431084,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2400), [sym_preproc_define] = STATE(2400), [sym_preproc_undef] = STATE(2400), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2401] = { + [sym_preproc_region] = STATE(2401), + [sym_preproc_endregion] = STATE(2401), + [sym_preproc_line] = STATE(2401), + [sym_preproc_pragma] = STATE(2401), + [sym_preproc_nullable] = STATE(2401), + [sym_preproc_error] = STATE(2401), + [sym_preproc_warning] = STATE(2401), + [sym_preproc_define] = STATE(2401), + [sym_preproc_undef] = STATE(2401), + [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(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), + [aux_sym_preproc_region_token1] = ACTIONS(3), + [aux_sym_preproc_endregion_token1] = ACTIONS(5), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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(3187), [anon_sym_alias] = ACTIONS(3187), [anon_sym_SEMI] = ACTIONS(3189), @@ -431002,39 +431273,39 @@ 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(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_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), @@ -431066,194 +431337,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2401] = { - [sym__name] = STATE(4694), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_ref_type] = STATE(4693), - [sym__scoped_base_type] = STATE(4692), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), - [sym_preproc_region] = STATE(2401), - [sym_preproc_endregion] = STATE(2401), - [sym_preproc_line] = STATE(2401), - [sym_preproc_pragma] = STATE(2401), - [sym_preproc_nullable] = STATE(2401), - [sym_preproc_error] = STATE(2401), - [sym_preproc_warning] = STATE(2401), - [sym_preproc_define] = STATE(2401), - [sym_preproc_undef] = STATE(2401), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4090), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4090), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4094), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [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), - }, - [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(3702), - [anon_sym_alias] = ACTIONS(3702), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_global] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3702), - [anon_sym_unmanaged] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3702), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3702), - [anon_sym_join] = ACTIONS(3702), - [anon_sym_on] = ACTIONS(3702), - [anon_sym_equals] = ACTIONS(3702), - [anon_sym_let] = ACTIONS(3702), - [anon_sym_orderby] = ACTIONS(3702), - [anon_sym_ascending] = ACTIONS(3702), - [anon_sym_descending] = ACTIONS(3702), - [anon_sym_group] = ACTIONS(3702), - [anon_sym_by] = ACTIONS(3702), - [anon_sym_select] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3700), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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), @@ -431264,78 +431347,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2403), [sym_preproc_define] = STATE(2403), [sym_preproc_undef] = STATE(2403), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [sym__identifier_token] = ACTIONS(4391), + [anon_sym_alias] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [anon_sym_global] = ACTIONS(4391), + [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_file] = ACTIONS(4391), + [anon_sym_LT] = ACTIONS(4391), + [anon_sym_GT] = ACTIONS(4391), + [anon_sym_in] = 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_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), + [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_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), @@ -431357,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(4288), - [anon_sym_alias] = ACTIONS(4288), - [anon_sym_SEMI] = ACTIONS(4290), - [anon_sym_global] = ACTIONS(4288), - [anon_sym_LBRACK] = ACTIONS(4290), - [anon_sym_COLON] = ACTIONS(4290), - [anon_sym_COMMA] = ACTIONS(4290), - [anon_sym_RBRACK] = ACTIONS(4290), - [anon_sym_LPAREN] = ACTIONS(4290), - [anon_sym_RPAREN] = ACTIONS(4290), - [anon_sym_LBRACE] = ACTIONS(4290), - [anon_sym_RBRACE] = ACTIONS(4290), - [anon_sym_file] = ACTIONS(4288), - [anon_sym_LT] = ACTIONS(4288), - [anon_sym_GT] = ACTIONS(4288), - [anon_sym_in] = ACTIONS(4288), - [anon_sym_where] = ACTIONS(4288), - [anon_sym_QMARK] = ACTIONS(4288), - [anon_sym_notnull] = ACTIONS(4288), - [anon_sym_unmanaged] = ACTIONS(4288), - [anon_sym_BANG] = ACTIONS(4288), - [anon_sym_PLUS_PLUS] = ACTIONS(4290), - [anon_sym_DASH_DASH] = ACTIONS(4290), - [anon_sym_PLUS] = ACTIONS(4288), - [anon_sym_DASH] = ACTIONS(4288), - [anon_sym_STAR] = ACTIONS(4290), - [anon_sym_SLASH] = ACTIONS(4288), - [anon_sym_PERCENT] = ACTIONS(4290), - [anon_sym_CARET] = ACTIONS(4290), - [anon_sym_PIPE] = ACTIONS(4288), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_LT_LT] = ACTIONS(4290), - [anon_sym_GT_GT] = ACTIONS(4288), - [anon_sym_GT_GT_GT] = ACTIONS(4290), - [anon_sym_EQ_EQ] = ACTIONS(4290), - [anon_sym_BANG_EQ] = ACTIONS(4290), - [anon_sym_GT_EQ] = ACTIONS(4290), - [anon_sym_LT_EQ] = ACTIONS(4290), - [anon_sym_DOT] = ACTIONS(4288), - [anon_sym_scoped] = ACTIONS(4288), - [anon_sym_EQ_GT] = ACTIONS(4290), - [anon_sym_var] = ACTIONS(4288), - [anon_sym_yield] = ACTIONS(4288), - [anon_sym_switch] = ACTIONS(4288), - [anon_sym_when] = ACTIONS(4288), - [sym_discard] = ACTIONS(4288), - [anon_sym_DOT_DOT] = ACTIONS(4290), - [anon_sym_and] = ACTIONS(4288), - [anon_sym_or] = ACTIONS(4288), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_PIPE_PIPE] = ACTIONS(4290), - [sym_op_coalescing] = ACTIONS(4290), - [anon_sym_from] = ACTIONS(4288), - [anon_sym_into] = ACTIONS(4288), - [anon_sym_join] = ACTIONS(4288), - [anon_sym_on] = ACTIONS(4288), - [anon_sym_equals] = ACTIONS(4288), - [anon_sym_let] = ACTIONS(4288), - [anon_sym_orderby] = ACTIONS(4288), - [anon_sym_ascending] = ACTIONS(4288), - [anon_sym_descending] = ACTIONS(4288), - [anon_sym_group] = ACTIONS(4288), - [anon_sym_by] = ACTIONS(4288), - [anon_sym_select] = ACTIONS(4288), - [anon_sym_as] = ACTIONS(4288), - [anon_sym_is] = ACTIONS(4288), - [anon_sym_DASH_GT] = ACTIONS(4290), - [anon_sym_with] = ACTIONS(4288), - [sym_grit_metavariable] = ACTIONS(4290), - [aux_sym_preproc_if_token3] = ACTIONS(4290), - [aux_sym_preproc_else_token1] = ACTIONS(4290), - [aux_sym_preproc_elif_token1] = ACTIONS(4290), + [sym__identifier_token] = ACTIONS(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), @@ -431450,78 +431533,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2405), [sym_preproc_define] = STATE(2405), [sym_preproc_undef] = STATE(2405), - [sym__identifier_token] = ACTIONS(3976), - [anon_sym_alias] = ACTIONS(3976), - [anon_sym_SEMI] = ACTIONS(3978), - [anon_sym_global] = ACTIONS(3976), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_COLON] = ACTIONS(3978), - [anon_sym_COMMA] = ACTIONS(3978), - [anon_sym_RBRACK] = ACTIONS(3978), - [anon_sym_LPAREN] = ACTIONS(3978), - [anon_sym_RPAREN] = ACTIONS(3978), - [anon_sym_LBRACE] = ACTIONS(3978), - [anon_sym_RBRACE] = ACTIONS(3978), - [anon_sym_file] = ACTIONS(3976), - [anon_sym_LT] = ACTIONS(3976), - [anon_sym_GT] = ACTIONS(3976), - [anon_sym_in] = ACTIONS(3976), - [anon_sym_where] = ACTIONS(3976), - [anon_sym_QMARK] = ACTIONS(3976), - [anon_sym_notnull] = ACTIONS(3976), - [anon_sym_unmanaged] = ACTIONS(3976), - [anon_sym_BANG] = ACTIONS(3976), - [anon_sym_PLUS_PLUS] = ACTIONS(3978), - [anon_sym_DASH_DASH] = ACTIONS(3978), - [anon_sym_PLUS] = ACTIONS(3976), - [anon_sym_DASH] = ACTIONS(3976), - [anon_sym_STAR] = ACTIONS(3978), - [anon_sym_SLASH] = ACTIONS(3976), - [anon_sym_PERCENT] = ACTIONS(3978), - [anon_sym_CARET] = ACTIONS(3978), - [anon_sym_PIPE] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), - [anon_sym_LT_LT] = ACTIONS(3978), - [anon_sym_GT_GT] = ACTIONS(3976), - [anon_sym_GT_GT_GT] = ACTIONS(3978), - [anon_sym_EQ_EQ] = ACTIONS(3978), - [anon_sym_BANG_EQ] = ACTIONS(3978), - [anon_sym_GT_EQ] = ACTIONS(3978), - [anon_sym_LT_EQ] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3976), - [anon_sym_scoped] = ACTIONS(3976), - [anon_sym_EQ_GT] = ACTIONS(3978), - [anon_sym_var] = ACTIONS(3976), - [anon_sym_yield] = ACTIONS(3976), - [anon_sym_switch] = ACTIONS(3976), - [anon_sym_when] = ACTIONS(3976), - [sym_discard] = ACTIONS(3976), - [anon_sym_DOT_DOT] = ACTIONS(3978), - [anon_sym_and] = ACTIONS(3976), - [anon_sym_or] = ACTIONS(3976), - [anon_sym_AMP_AMP] = ACTIONS(3978), - [anon_sym_PIPE_PIPE] = ACTIONS(3978), - [sym_op_coalescing] = ACTIONS(3978), - [anon_sym_from] = ACTIONS(3976), - [anon_sym_into] = ACTIONS(3976), - [anon_sym_join] = ACTIONS(3976), - [anon_sym_on] = ACTIONS(3976), - [anon_sym_equals] = ACTIONS(3976), - [anon_sym_let] = ACTIONS(3976), - [anon_sym_orderby] = ACTIONS(3976), - [anon_sym_ascending] = ACTIONS(3976), - [anon_sym_descending] = ACTIONS(3976), - [anon_sym_group] = ACTIONS(3976), - [anon_sym_by] = ACTIONS(3976), - [anon_sym_select] = ACTIONS(3976), - [anon_sym_as] = ACTIONS(3976), - [anon_sym_is] = ACTIONS(3976), - [anon_sym_DASH_GT] = ACTIONS(3978), - [anon_sym_with] = ACTIONS(3976), - [sym_grit_metavariable] = ACTIONS(3978), - [aux_sym_preproc_if_token3] = ACTIONS(3978), - [aux_sym_preproc_else_token1] = ACTIONS(3978), - [aux_sym_preproc_elif_token1] = ACTIONS(3978), + [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), @@ -431543,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(3968), - [anon_sym_alias] = ACTIONS(3968), - [anon_sym_SEMI] = ACTIONS(3970), - [anon_sym_global] = ACTIONS(3968), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_COLON] = ACTIONS(3970), - [anon_sym_COMMA] = ACTIONS(3970), - [anon_sym_RBRACK] = ACTIONS(3970), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_RPAREN] = ACTIONS(3970), - [anon_sym_LBRACE] = ACTIONS(3970), - [anon_sym_RBRACE] = ACTIONS(3970), - [anon_sym_file] = ACTIONS(3968), - [anon_sym_LT] = ACTIONS(3968), - [anon_sym_GT] = ACTIONS(3968), - [anon_sym_in] = ACTIONS(3968), - [anon_sym_where] = ACTIONS(3968), - [anon_sym_QMARK] = ACTIONS(3968), - [anon_sym_notnull] = ACTIONS(3968), - [anon_sym_unmanaged] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(3968), - [anon_sym_PLUS_PLUS] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(3970), - [anon_sym_PLUS] = ACTIONS(3968), - [anon_sym_DASH] = ACTIONS(3968), - [anon_sym_STAR] = ACTIONS(3970), - [anon_sym_SLASH] = ACTIONS(3968), - [anon_sym_PERCENT] = ACTIONS(3970), - [anon_sym_CARET] = ACTIONS(3970), - [anon_sym_PIPE] = ACTIONS(3968), - [anon_sym_AMP] = ACTIONS(3968), - [anon_sym_LT_LT] = ACTIONS(3970), - [anon_sym_GT_GT] = ACTIONS(3968), - [anon_sym_GT_GT_GT] = ACTIONS(3970), - [anon_sym_EQ_EQ] = ACTIONS(3970), - [anon_sym_BANG_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_DOT] = ACTIONS(3968), - [anon_sym_scoped] = ACTIONS(3968), - [anon_sym_EQ_GT] = ACTIONS(3970), - [anon_sym_var] = ACTIONS(3968), - [anon_sym_yield] = ACTIONS(3968), - [anon_sym_switch] = ACTIONS(3968), - [anon_sym_when] = ACTIONS(3968), - [sym_discard] = ACTIONS(3968), - [anon_sym_DOT_DOT] = ACTIONS(3970), - [anon_sym_and] = ACTIONS(3968), - [anon_sym_or] = ACTIONS(3968), - [anon_sym_AMP_AMP] = ACTIONS(3970), - [anon_sym_PIPE_PIPE] = ACTIONS(3970), - [sym_op_coalescing] = ACTIONS(3970), - [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_ascending] = ACTIONS(3968), - [anon_sym_descending] = 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(3970), - [anon_sym_with] = ACTIONS(3968), - [sym_grit_metavariable] = ACTIONS(3970), - [aux_sym_preproc_if_token3] = ACTIONS(3970), - [aux_sym_preproc_else_token1] = ACTIONS(3970), - [aux_sym_preproc_elif_token1] = ACTIONS(3970), + [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), @@ -431627,14 +431710,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2407] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2528), - [sym_property_pattern_clause] = STATE(2643), - [sym__variable_designation] = STATE(5769), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5632), - [sym__reserved_identifier] = STATE(5564), [sym_preproc_region] = STATE(2407), [sym_preproc_endregion] = STATE(2407), [sym_preproc_line] = STATE(2407), @@ -431644,69 +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(4404), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4408), - [anon_sym_file] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4406), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [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(4406), - [anon_sym_var] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4406), - [sym_discard] = ACTIONS(4410), - [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(4406), - [anon_sym_into] = ACTIONS(4406), - [anon_sym_join] = ACTIONS(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), - [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(4412), + [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), @@ -431717,7 +431801,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), }, [2408] = { [sym_preproc_region] = STATE(2408), @@ -431729,78 +431812,78 @@ 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(4414), - [anon_sym_alias] = ACTIONS(4414), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_global] = ACTIONS(4414), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_COLON] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_RBRACK] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_RPAREN] = ACTIONS(4416), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_file] = ACTIONS(4414), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_QMARK] = ACTIONS(4414), - [anon_sym_notnull] = ACTIONS(4414), - [anon_sym_unmanaged] = ACTIONS(4414), - [anon_sym_BANG] = ACTIONS(4414), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4416), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4416), - [anon_sym_CARET] = ACTIONS(4416), - [anon_sym_PIPE] = ACTIONS(4414), - [anon_sym_AMP] = ACTIONS(4414), - [anon_sym_LT_LT] = ACTIONS(4416), - [anon_sym_GT_GT] = ACTIONS(4414), - [anon_sym_GT_GT_GT] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_scoped] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4416), - [anon_sym_var] = ACTIONS(4414), - [anon_sym_yield] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4414), - [anon_sym_when] = ACTIONS(4414), - [sym_discard] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_and] = ACTIONS(4414), - [anon_sym_or] = ACTIONS(4414), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [sym_op_coalescing] = ACTIONS(4416), - [anon_sym_from] = ACTIONS(4414), - [anon_sym_into] = ACTIONS(4414), - [anon_sym_join] = ACTIONS(4414), - [anon_sym_on] = ACTIONS(4414), - [anon_sym_equals] = ACTIONS(4414), - [anon_sym_let] = ACTIONS(4414), - [anon_sym_orderby] = ACTIONS(4414), - [anon_sym_ascending] = ACTIONS(4414), - [anon_sym_descending] = ACTIONS(4414), - [anon_sym_group] = ACTIONS(4414), - [anon_sym_by] = ACTIONS(4414), - [anon_sym_select] = ACTIONS(4414), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4414), - [sym_grit_metavariable] = ACTIONS(4416), - [aux_sym_preproc_if_token3] = ACTIONS(4416), - [aux_sym_preproc_else_token1] = ACTIONS(4416), - [aux_sym_preproc_elif_token1] = ACTIONS(4416), + [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), @@ -431822,78 +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), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4023), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4023), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4023), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4023), - [anon_sym_orderby] = ACTIONS(4023), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4023), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4023), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), + [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), @@ -431915,78 +431998,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2410), [sym_preproc_define] = STATE(2410), [sym_preproc_undef] = STATE(2410), - [sym__identifier_token] = ACTIONS(4418), - [anon_sym_alias] = ACTIONS(4418), - [anon_sym_SEMI] = ACTIONS(4420), - [anon_sym_global] = ACTIONS(4418), - [anon_sym_LBRACK] = ACTIONS(4420), - [anon_sym_COLON] = ACTIONS(4420), - [anon_sym_COMMA] = ACTIONS(4420), - [anon_sym_RBRACK] = ACTIONS(4420), - [anon_sym_LPAREN] = ACTIONS(4420), - [anon_sym_RPAREN] = ACTIONS(4420), - [anon_sym_LBRACE] = ACTIONS(4420), - [anon_sym_RBRACE] = ACTIONS(4420), - [anon_sym_file] = ACTIONS(4418), - [anon_sym_LT] = ACTIONS(4418), - [anon_sym_GT] = ACTIONS(4418), - [anon_sym_in] = ACTIONS(4418), - [anon_sym_where] = ACTIONS(4418), - [anon_sym_QMARK] = ACTIONS(4418), - [anon_sym_notnull] = ACTIONS(4418), - [anon_sym_unmanaged] = ACTIONS(4418), - [anon_sym_BANG] = ACTIONS(4418), - [anon_sym_PLUS_PLUS] = ACTIONS(4420), - [anon_sym_DASH_DASH] = ACTIONS(4420), - [anon_sym_PLUS] = ACTIONS(4418), - [anon_sym_DASH] = ACTIONS(4418), - [anon_sym_STAR] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4418), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_CARET] = ACTIONS(4420), - [anon_sym_PIPE] = ACTIONS(4418), - [anon_sym_AMP] = ACTIONS(4418), - [anon_sym_LT_LT] = ACTIONS(4420), - [anon_sym_GT_GT] = ACTIONS(4418), - [anon_sym_GT_GT_GT] = ACTIONS(4420), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_GT_EQ] = ACTIONS(4420), - [anon_sym_LT_EQ] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4418), - [anon_sym_scoped] = ACTIONS(4418), - [anon_sym_EQ_GT] = ACTIONS(4420), - [anon_sym_var] = ACTIONS(4418), - [anon_sym_yield] = ACTIONS(4418), - [anon_sym_switch] = ACTIONS(4418), - [anon_sym_when] = ACTIONS(4418), - [sym_discard] = ACTIONS(4418), - [anon_sym_DOT_DOT] = ACTIONS(4420), - [anon_sym_and] = ACTIONS(4418), - [anon_sym_or] = ACTIONS(4418), - [anon_sym_AMP_AMP] = ACTIONS(4420), - [anon_sym_PIPE_PIPE] = ACTIONS(4420), - [sym_op_coalescing] = ACTIONS(4420), - [anon_sym_from] = ACTIONS(4418), - [anon_sym_into] = ACTIONS(4418), - [anon_sym_join] = ACTIONS(4418), - [anon_sym_on] = ACTIONS(4418), - [anon_sym_equals] = ACTIONS(4418), - [anon_sym_let] = ACTIONS(4418), - [anon_sym_orderby] = ACTIONS(4418), - [anon_sym_ascending] = ACTIONS(4418), - [anon_sym_descending] = ACTIONS(4418), - [anon_sym_group] = ACTIONS(4418), - [anon_sym_by] = ACTIONS(4418), - [anon_sym_select] = ACTIONS(4418), - [anon_sym_as] = ACTIONS(4418), - [anon_sym_is] = ACTIONS(4418), - [anon_sym_DASH_GT] = ACTIONS(4420), - [anon_sym_with] = ACTIONS(4418), - [sym_grit_metavariable] = ACTIONS(4420), - [aux_sym_preproc_if_token3] = ACTIONS(4420), - [aux_sym_preproc_else_token1] = ACTIONS(4420), - [aux_sym_preproc_elif_token1] = ACTIONS(4420), + [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(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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -432008,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(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(4426), - [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), + [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), @@ -432101,78 +432184,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2412), [sym_preproc_define] = STATE(2412), [sym_preproc_undef] = STATE(2412), - [sym__identifier_token] = ACTIONS(3962), - [anon_sym_alias] = ACTIONS(3962), - [anon_sym_SEMI] = ACTIONS(3964), - [anon_sym_global] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_COLON] = ACTIONS(3964), - [anon_sym_COMMA] = ACTIONS(3964), - [anon_sym_RBRACK] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_RBRACE] = ACTIONS(3964), - [anon_sym_file] = ACTIONS(3962), - [anon_sym_LT] = ACTIONS(3962), - [anon_sym_GT] = ACTIONS(3962), - [anon_sym_in] = ACTIONS(3962), - [anon_sym_where] = ACTIONS(3962), - [anon_sym_QMARK] = ACTIONS(3962), - [anon_sym_notnull] = ACTIONS(3962), - [anon_sym_unmanaged] = ACTIONS(3962), - [anon_sym_BANG] = ACTIONS(3962), - [anon_sym_PLUS_PLUS] = ACTIONS(3964), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_PLUS] = ACTIONS(3962), - [anon_sym_DASH] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3964), - [anon_sym_SLASH] = ACTIONS(3962), - [anon_sym_PERCENT] = ACTIONS(3964), - [anon_sym_CARET] = ACTIONS(3964), - [anon_sym_PIPE] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_LT_LT] = ACTIONS(3964), - [anon_sym_GT_GT] = ACTIONS(3962), - [anon_sym_GT_GT_GT] = ACTIONS(3964), - [anon_sym_EQ_EQ] = ACTIONS(3964), - [anon_sym_BANG_EQ] = ACTIONS(3964), - [anon_sym_GT_EQ] = ACTIONS(3964), - [anon_sym_LT_EQ] = ACTIONS(3964), - [anon_sym_DOT] = ACTIONS(3962), - [anon_sym_scoped] = ACTIONS(3962), - [anon_sym_EQ_GT] = ACTIONS(3964), - [anon_sym_var] = ACTIONS(3962), - [anon_sym_yield] = ACTIONS(3962), - [anon_sym_switch] = ACTIONS(3962), - [anon_sym_when] = ACTIONS(3962), - [sym_discard] = ACTIONS(3962), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_and] = ACTIONS(3962), - [anon_sym_or] = ACTIONS(3962), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [sym_op_coalescing] = ACTIONS(3964), - [anon_sym_from] = ACTIONS(3962), - [anon_sym_into] = ACTIONS(3962), - [anon_sym_join] = ACTIONS(3962), - [anon_sym_on] = ACTIONS(3962), - [anon_sym_equals] = ACTIONS(3962), - [anon_sym_let] = ACTIONS(3962), - [anon_sym_orderby] = ACTIONS(3962), - [anon_sym_ascending] = ACTIONS(3962), - [anon_sym_descending] = ACTIONS(3962), - [anon_sym_group] = ACTIONS(3962), - [anon_sym_by] = ACTIONS(3962), - [anon_sym_select] = ACTIONS(3962), - [anon_sym_as] = ACTIONS(3962), - [anon_sym_is] = ACTIONS(3962), - [anon_sym_DASH_GT] = ACTIONS(3964), - [anon_sym_with] = ACTIONS(3962), - [sym_grit_metavariable] = ACTIONS(3964), - [aux_sym_preproc_if_token3] = ACTIONS(3964), - [aux_sym_preproc_else_token1] = ACTIONS(3964), - [aux_sym_preproc_elif_token1] = ACTIONS(3964), + [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(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), @@ -432185,14 +432268,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2413] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2528), - [sym_property_pattern_clause] = STATE(2643), - [sym__variable_designation] = STATE(5769), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5632), - [sym__reserved_identifier] = STATE(5564), [sym_preproc_region] = STATE(2413), [sym_preproc_endregion] = STATE(2413), [sym_preproc_line] = STATE(2413), @@ -432202,69 +432277,78 @@ 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(4404), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4408), - [anon_sym_file] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4406), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [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(4406), - [anon_sym_var] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4406), - [sym_discard] = ACTIONS(4410), - [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(4406), - [anon_sym_into] = ACTIONS(4406), - [anon_sym_join] = ACTIONS(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), - [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(4412), + [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), @@ -432275,18 +432359,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(4222), }, [2414] = { - [sym__name] = STATE(5905), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_ref_type] = STATE(4870), - [sym__scoped_base_type] = STATE(4875), - [sym_identifier] = STATE(5757), - [sym__reserved_identifier] = STATE(4715), [sym_preproc_region] = STATE(2414), [sym_preproc_endregion] = STATE(2414), [sym_preproc_line] = STATE(2414), @@ -432296,69 +432370,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2414), [sym_preproc_define] = STATE(2414), [sym_preproc_undef] = STATE(2414), - [sym__identifier_token] = ACTIONS(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4428), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4105), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4105), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4109), + [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(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(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), @@ -432371,15 +432454,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2415] = { - [sym__name] = STATE(2455), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2445), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2433), - [sym_ref_type] = STATE(2386), - [sym__scoped_base_type] = STATE(2366), - [sym_identifier] = STATE(2399), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(2415), [sym_preproc_endregion] = STATE(2415), [sym_preproc_line] = STATE(2415), @@ -432389,69 +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(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4434), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4432), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4432), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(3883), - [anon_sym_into] = ACTIONS(3883), - [anon_sym_join] = ACTIONS(3883), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [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(4432), - [anon_sym_select] = ACTIONS(3883), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -432464,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), @@ -432473,119 +432575,7 @@ 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(3972), - [anon_sym_alias] = ACTIONS(3972), - [anon_sym_SEMI] = ACTIONS(3974), - [anon_sym_global] = ACTIONS(3972), - [anon_sym_LBRACK] = ACTIONS(3974), - [anon_sym_COLON] = ACTIONS(3974), - [anon_sym_COMMA] = ACTIONS(3974), - [anon_sym_RBRACK] = ACTIONS(3974), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_RPAREN] = ACTIONS(3974), - [anon_sym_LBRACE] = ACTIONS(3974), - [anon_sym_RBRACE] = ACTIONS(3974), - [anon_sym_file] = ACTIONS(3972), - [anon_sym_LT] = ACTIONS(3972), - [anon_sym_GT] = ACTIONS(3972), - [anon_sym_in] = ACTIONS(3972), - [anon_sym_where] = ACTIONS(3972), - [anon_sym_QMARK] = ACTIONS(3972), - [anon_sym_notnull] = ACTIONS(3972), - [anon_sym_unmanaged] = ACTIONS(3972), - [anon_sym_BANG] = ACTIONS(3972), - [anon_sym_PLUS_PLUS] = ACTIONS(3974), - [anon_sym_DASH_DASH] = ACTIONS(3974), - [anon_sym_PLUS] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3972), - [anon_sym_STAR] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3972), - [anon_sym_PERCENT] = ACTIONS(3974), - [anon_sym_CARET] = ACTIONS(3974), - [anon_sym_PIPE] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3972), - [anon_sym_LT_LT] = ACTIONS(3974), - [anon_sym_GT_GT] = ACTIONS(3972), - [anon_sym_GT_GT_GT] = ACTIONS(3974), - [anon_sym_EQ_EQ] = ACTIONS(3974), - [anon_sym_BANG_EQ] = ACTIONS(3974), - [anon_sym_GT_EQ] = ACTIONS(3974), - [anon_sym_LT_EQ] = ACTIONS(3974), - [anon_sym_DOT] = ACTIONS(3972), - [anon_sym_scoped] = ACTIONS(3972), - [anon_sym_EQ_GT] = ACTIONS(3974), - [anon_sym_var] = ACTIONS(3972), - [anon_sym_yield] = ACTIONS(3972), - [anon_sym_switch] = ACTIONS(3972), - [anon_sym_when] = ACTIONS(3972), - [sym_discard] = ACTIONS(3972), - [anon_sym_DOT_DOT] = ACTIONS(3974), - [anon_sym_and] = ACTIONS(3972), - [anon_sym_or] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3974), - [anon_sym_PIPE_PIPE] = ACTIONS(3974), - [sym_op_coalescing] = ACTIONS(3974), - [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_ascending] = ACTIONS(3972), - [anon_sym_descending] = 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(3974), - [anon_sym_with] = ACTIONS(3972), - [sym_grit_metavariable] = ACTIONS(3974), - [aux_sym_preproc_if_token3] = ACTIONS(3974), - [aux_sym_preproc_else_token1] = ACTIONS(3974), - [aux_sym_preproc_elif_token1] = ACTIONS(3974), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2417] = { - [sym_modifier] = STATE(4309), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6422), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(2417), - [sym_preproc_endregion] = STATE(2417), - [sym_preproc_line] = STATE(2417), - [sym_preproc_pragma] = STATE(2417), - [sym_preproc_nullable] = STATE(2417), - [sym_preproc_error] = STATE(2417), - [sym_preproc_warning] = STATE(2417), - [sym_preproc_define] = STATE(2417), - [sym_preproc_undef] = STATE(2417), - [aux_sym__class_declaration_initializer_repeat2] = STATE(4047), + [aux_sym__class_declaration_initializer_repeat2] = STATE(3232), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(65), [anon_sym_alias] = ACTIONS(3211), @@ -432593,20 +432583,20 @@ 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_class] = ACTIONS(4260), - [anon_sym_ref] = ACTIONS(4262), - [anon_sym_struct] = ACTIONS(4264), - [anon_sym_enum] = ACTIONS(4438), - [anon_sym_interface] = ACTIONS(4268), - [anon_sym_delegate] = ACTIONS(4270), - [anon_sym_record] = ACTIONS(4272), + [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(4440), + [anon_sym_file] = ACTIONS(4407), [anon_sym_fixed] = ACTIONS(65), [anon_sym_internal] = ACTIONS(65), [anon_sym_new] = ACTIONS(65), @@ -432649,6 +432639,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2417] = { + [sym_preproc_region] = STATE(2417), + [sym_preproc_endregion] = STATE(2417), + [sym_preproc_line] = STATE(2417), + [sym_preproc_pragma] = STATE(2417), + [sym_preproc_nullable] = STATE(2417), + [sym_preproc_error] = STATE(2417), + [sym_preproc_warning] = STATE(2417), + [sym_preproc_define] = STATE(2417), + [sym_preproc_undef] = STATE(2417), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2418] = { [sym_preproc_region] = STATE(2418), [sym_preproc_endregion] = STATE(2418), @@ -432659,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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4023), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4023), - [anon_sym_into] = ACTIONS(4023), - [anon_sym_join] = ACTIONS(4023), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4023), - [anon_sym_orderby] = ACTIONS(4023), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4023), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4023), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), + [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), @@ -432743,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), @@ -432752,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(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(4426), - [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), + [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), @@ -432834,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), @@ -432845,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(4442), - [anon_sym_alias] = ACTIONS(4442), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_global] = ACTIONS(4442), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_COLON] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_RBRACK] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_RPAREN] = ACTIONS(4444), - [anon_sym_LBRACE] = ACTIONS(4444), - [anon_sym_RBRACE] = ACTIONS(4444), - [anon_sym_file] = ACTIONS(4442), - [anon_sym_LT] = ACTIONS(4442), - [anon_sym_GT] = ACTIONS(4442), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_where] = ACTIONS(4442), - [anon_sym_QMARK] = ACTIONS(4442), - [anon_sym_notnull] = ACTIONS(4442), - [anon_sym_unmanaged] = ACTIONS(4442), - [anon_sym_BANG] = ACTIONS(4442), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4444), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4444), - [anon_sym_CARET] = ACTIONS(4444), - [anon_sym_PIPE] = ACTIONS(4442), - [anon_sym_AMP] = ACTIONS(4442), - [anon_sym_LT_LT] = ACTIONS(4444), - [anon_sym_GT_GT] = ACTIONS(4442), - [anon_sym_GT_GT_GT] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_scoped] = ACTIONS(4442), - [anon_sym_EQ_GT] = ACTIONS(4444), - [anon_sym_var] = ACTIONS(4442), - [anon_sym_yield] = ACTIONS(4442), - [anon_sym_switch] = ACTIONS(4442), - [anon_sym_when] = ACTIONS(4442), - [sym_discard] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_and] = ACTIONS(4442), - [anon_sym_or] = ACTIONS(4442), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [sym_op_coalescing] = ACTIONS(4444), - [anon_sym_from] = ACTIONS(4442), - [anon_sym_into] = ACTIONS(4442), - [anon_sym_join] = ACTIONS(4442), - [anon_sym_on] = ACTIONS(4442), - [anon_sym_equals] = ACTIONS(4442), - [anon_sym_let] = ACTIONS(4442), - [anon_sym_orderby] = ACTIONS(4442), - [anon_sym_ascending] = ACTIONS(4442), - [anon_sym_descending] = ACTIONS(4442), - [anon_sym_group] = ACTIONS(4442), - [anon_sym_by] = ACTIONS(4442), - [anon_sym_select] = ACTIONS(4442), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_DASH_GT] = ACTIONS(4444), - [anon_sym_with] = ACTIONS(4442), - [sym_grit_metavariable] = ACTIONS(4444), - [aux_sym_preproc_if_token3] = ACTIONS(4444), - [aux_sym_preproc_else_token1] = ACTIONS(4444), - [aux_sym_preproc_elif_token1] = ACTIONS(4444), + [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), @@ -432929,25 +433012,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2421] = { - [sym_modifier] = STATE(4309), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6422), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(2421), [sym_preproc_endregion] = STATE(2421), [sym_preproc_line] = STATE(2421), @@ -432957,59 +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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(4047), - [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(4260), - [anon_sym_ref] = ACTIONS(4262), - [anon_sym_struct] = ACTIONS(4264), - [anon_sym_enum] = ACTIONS(4446), - [anon_sym_interface] = ACTIONS(4268), - [anon_sym_delegate] = ACTIONS(4270), - [anon_sym_record] = ACTIONS(4272), - [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(4440), - [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), + [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), @@ -433022,6 +433105,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2422] = { + [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), @@ -433031,90 +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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4023), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4023), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym__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_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), @@ -433124,78 +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(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_BANG] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3982), - [anon_sym_DASH_DASH] = ACTIONS(3982), - [anon_sym_PLUS] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3982), - [anon_sym_SLASH] = ACTIONS(3980), - [anon_sym_PERCENT] = ACTIONS(3982), - [anon_sym_CARET] = ACTIONS(3982), - [anon_sym_PIPE] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3980), - [anon_sym_LT_LT] = ACTIONS(3982), - [anon_sym_GT_GT] = ACTIONS(3980), - [anon_sym_GT_GT_GT] = ACTIONS(3982), - [anon_sym_EQ_EQ] = ACTIONS(3982), - [anon_sym_BANG_EQ] = ACTIONS(3982), - [anon_sym_GT_EQ] = ACTIONS(3982), - [anon_sym_LT_EQ] = ACTIONS(3982), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_scoped] = ACTIONS(3980), - [anon_sym_EQ_GT] = ACTIONS(3982), - [anon_sym_var] = 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_and] = ACTIONS(3980), - [anon_sym_or] = ACTIONS(3980), - [anon_sym_AMP_AMP] = ACTIONS(3982), - [anon_sym_PIPE_PIPE] = ACTIONS(3982), - [sym_op_coalescing] = 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), + [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), @@ -433206,6 +433288,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(4220), }, [2424] = { [sym_preproc_region] = STATE(2424), @@ -433217,78 +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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_LPAREN] = ACTIONS(4008), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(4011), - [anon_sym_QMARK] = ACTIONS(4011), - [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(4011), - [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(4011), - [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(4011), - [anon_sym_into] = ACTIONS(4011), - [anon_sym_join] = ACTIONS(4011), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(4011), - [anon_sym_orderby] = ACTIONS(4011), - [anon_sym_ascending] = ACTIONS(3986), - [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = ACTIONS(4011), - [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(4011), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4008), - [anon_sym_with] = ACTIONS(3991), - [sym_grit_metavariable] = ACTIONS(3997), + [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), @@ -433310,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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_LPAREN] = ACTIONS(4008), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4011), - [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(4011), - [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(4011), - [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(4011), - [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(4011), - [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(4008), - [anon_sym_with] = ACTIONS(3991), - [sym_grit_metavariable] = ACTIONS(3997), + [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), @@ -433403,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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_LPAREN] = ACTIONS(4008), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4011), - [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(4011), - [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(4011), - [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(4011), - [anon_sym_select] = ACTIONS(3986), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4008), - [anon_sym_with] = ACTIONS(3991), - [sym_grit_metavariable] = ACTIONS(3997), + [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), @@ -433496,78 +433579,78 @@ 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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_LPAREN] = ACTIONS(4008), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4011), - [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(4011), - [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(4011), - [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(4011), - [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(4008), - [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_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), @@ -433593,40 +433676,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alias] = ACTIONS(3986), [anon_sym_global] = ACTIONS(3986), [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_LPAREN] = ACTIONS(4008), + [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(4011), + [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(4011), - [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(4011), + [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), @@ -433641,24 +433709,39 @@ 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(4011), + [anon_sym_into] = ACTIONS(3986), [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = 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(4011), + [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(4008), + [anon_sym_DASH_GT] = ACTIONS(4034), [anon_sym_with] = ACTIONS(3991), [sym_grit_metavariable] = ACTIONS(3997), [aux_sym_preproc_region_token1] = ACTIONS(3), @@ -433682,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(4008), - [anon_sym_LPAREN] = ACTIONS(4008), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4011), - [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(4011), - [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(4011), - [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(4011), - [anon_sym_join] = ACTIONS(3986), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(4011), - [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(4008), - [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), @@ -433775,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(4448), - [anon_sym_alias] = ACTIONS(4448), - [anon_sym_SEMI] = ACTIONS(4450), - [anon_sym_global] = ACTIONS(4448), - [anon_sym_LBRACK] = ACTIONS(4450), - [anon_sym_COLON] = ACTIONS(4450), - [anon_sym_COMMA] = ACTIONS(4450), - [anon_sym_RBRACK] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_RPAREN] = ACTIONS(4450), - [anon_sym_LBRACE] = ACTIONS(4450), - [anon_sym_RBRACE] = ACTIONS(4450), - [anon_sym_file] = ACTIONS(4448), - [anon_sym_LT] = ACTIONS(4448), - [anon_sym_GT] = ACTIONS(4448), - [anon_sym_in] = ACTIONS(4448), - [anon_sym_where] = ACTIONS(4448), - [anon_sym_QMARK] = ACTIONS(4448), - [anon_sym_notnull] = ACTIONS(4448), - [anon_sym_unmanaged] = ACTIONS(4448), - [anon_sym_BANG] = ACTIONS(4448), - [anon_sym_PLUS_PLUS] = ACTIONS(4450), - [anon_sym_DASH_DASH] = ACTIONS(4450), - [anon_sym_PLUS] = ACTIONS(4448), - [anon_sym_DASH] = ACTIONS(4448), - [anon_sym_STAR] = ACTIONS(4450), - [anon_sym_SLASH] = ACTIONS(4448), - [anon_sym_PERCENT] = ACTIONS(4450), - [anon_sym_CARET] = ACTIONS(4450), - [anon_sym_PIPE] = ACTIONS(4448), - [anon_sym_AMP] = ACTIONS(4448), - [anon_sym_LT_LT] = ACTIONS(4450), - [anon_sym_GT_GT] = ACTIONS(4448), - [anon_sym_GT_GT_GT] = ACTIONS(4450), - [anon_sym_EQ_EQ] = ACTIONS(4450), - [anon_sym_BANG_EQ] = ACTIONS(4450), - [anon_sym_GT_EQ] = ACTIONS(4450), - [anon_sym_LT_EQ] = ACTIONS(4450), - [anon_sym_DOT] = ACTIONS(4448), - [anon_sym_scoped] = ACTIONS(4448), - [anon_sym_EQ_GT] = ACTIONS(4450), - [anon_sym_var] = ACTIONS(4448), - [anon_sym_yield] = ACTIONS(4448), - [anon_sym_switch] = ACTIONS(4448), - [anon_sym_when] = ACTIONS(4448), - [sym_discard] = ACTIONS(4448), - [anon_sym_DOT_DOT] = ACTIONS(4450), - [anon_sym_and] = ACTIONS(4448), - [anon_sym_or] = ACTIONS(4448), - [anon_sym_AMP_AMP] = ACTIONS(4450), - [anon_sym_PIPE_PIPE] = ACTIONS(4450), - [sym_op_coalescing] = ACTIONS(4450), - [anon_sym_from] = ACTIONS(4448), - [anon_sym_into] = ACTIONS(4448), - [anon_sym_join] = ACTIONS(4448), - [anon_sym_on] = ACTIONS(4448), - [anon_sym_equals] = ACTIONS(4448), - [anon_sym_let] = ACTIONS(4448), - [anon_sym_orderby] = ACTIONS(4448), - [anon_sym_ascending] = ACTIONS(4448), - [anon_sym_descending] = ACTIONS(4448), - [anon_sym_group] = ACTIONS(4448), - [anon_sym_by] = ACTIONS(4448), - [anon_sym_select] = ACTIONS(4448), - [anon_sym_as] = ACTIONS(4448), - [anon_sym_is] = ACTIONS(4448), - [anon_sym_DASH_GT] = ACTIONS(4450), - [anon_sym_with] = ACTIONS(4448), - [sym_grit_metavariable] = ACTIONS(4450), - [aux_sym_preproc_if_token3] = ACTIONS(4450), - [aux_sym_preproc_else_token1] = ACTIONS(4450), - [aux_sym_preproc_elif_token1] = ACTIONS(4450), + [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), @@ -433868,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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4023), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4023), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), + [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), @@ -433961,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(3986), - [anon_sym_alias] = ACTIONS(3986), - [anon_sym_global] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_LPAREN] = ACTIONS(4008), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(3986), - [anon_sym_QMARK] = ACTIONS(4011), - [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(4011), - [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(4011), - [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(4011), - [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(4008), - [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_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), @@ -434054,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(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), + [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), @@ -434147,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(4008), - [anon_sym_LPAREN] = ACTIONS(4008), - [anon_sym_file] = ACTIONS(3986), - [anon_sym_LT] = ACTIONS(3991), - [anon_sym_GT] = ACTIONS(3991), - [anon_sym_where] = ACTIONS(4011), - [anon_sym_QMARK] = ACTIONS(4011), - [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(4011), - [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(4011), - [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(4011), - [anon_sym_into] = ACTIONS(3986), - [anon_sym_join] = ACTIONS(4011), - [anon_sym_on] = ACTIONS(3986), - [anon_sym_equals] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(4011), - [anon_sym_orderby] = ACTIONS(4011), - [anon_sym_ascending] = ACTIONS(3986), - [anon_sym_descending] = ACTIONS(3986), - [anon_sym_group] = ACTIONS(4011), - [anon_sym_by] = ACTIONS(3986), - [anon_sym_select] = ACTIONS(4011), - [anon_sym_as] = ACTIONS(3991), - [anon_sym_is] = ACTIONS(3991), - [anon_sym_DASH_GT] = ACTIONS(4008), - [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), @@ -434231,14 +434314,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2435] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2560), - [sym_property_pattern_clause] = STATE(2618), - [sym__variable_designation] = STATE(5769), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5632), - [sym__reserved_identifier] = STATE(5564), + [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), @@ -434248,69 +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(4404), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4408), - [anon_sym_file] = ACTIONS(4406), + [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(4406), + [anon_sym_where] = ACTIONS(4415), [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [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(4415), + [anon_sym_unmanaged] = ACTIONS(4415), [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4406), - [anon_sym_var] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), + [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(4406), - [sym_discard] = ACTIONS(4410), - [anon_sym_DOT_DOT] = ACTIONS(4222), + [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_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [anon_sym_from] = ACTIONS(4406), + [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(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), + [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(4222), + [anon_sym_DASH_GT] = ACTIONS(4220), [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4412), + [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), @@ -434321,17 +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(4222), + [sym_interpolation_close_brace] = ACTIONS(4220), }, [2436] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2560), - [sym_property_pattern_clause] = STATE(2618), - [sym__variable_designation] = STATE(5769), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5632), - [sym__reserved_identifier] = STATE(5564), + [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), @@ -434341,91 +434424,91 @@ 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(4404), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_COLON] = ACTIONS(4212), - [anon_sym_COMMA] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4408), - [anon_sym_file] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4406), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [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(4406), - [anon_sym_var] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4406), - [sym_discard] = ACTIONS(4410), - [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(4406), - [anon_sym_into] = ACTIONS(4216), - [anon_sym_join] = ACTIONS(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), - [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(4412), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4212), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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(2455), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2445), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2433), - [sym_ref_type] = STATE(2386), - [sym__scoped_base_type] = STATE(2366), - [sym_identifier] = STATE(2399), - [sym__reserved_identifier] = STATE(2400), + [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), @@ -434435,69 +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(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4432), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4432), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(3883), - [anon_sym_into] = ACTIONS(4432), - [anon_sym_join] = ACTIONS(3883), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [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(4432), - [anon_sym_select] = ACTIONS(3883), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -434519,78 +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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4023), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4023), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), + [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), @@ -434612,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(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(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_preproc_if_token3] = ACTIONS(4456), - [aux_sym_preproc_else_token1] = ACTIONS(4456), - [aux_sym_preproc_elif_token1] = ACTIONS(4456), + [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), @@ -434705,78 +434788,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2440), [sym_preproc_define] = STATE(2440), [sym_preproc_undef] = STATE(2440), - [sym__identifier_token] = ACTIONS(4458), - [anon_sym_alias] = ACTIONS(4458), - [anon_sym_SEMI] = ACTIONS(4460), - [anon_sym_global] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_COLON] = ACTIONS(4460), - [anon_sym_COMMA] = ACTIONS(4460), - [anon_sym_RBRACK] = ACTIONS(4460), - [anon_sym_LPAREN] = ACTIONS(4460), - [anon_sym_RPAREN] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4460), - [anon_sym_RBRACE] = ACTIONS(4460), - [anon_sym_file] = ACTIONS(4458), - [anon_sym_LT] = ACTIONS(4458), - [anon_sym_GT] = ACTIONS(4458), - [anon_sym_in] = ACTIONS(4458), - [anon_sym_where] = ACTIONS(4458), - [anon_sym_QMARK] = ACTIONS(4458), - [anon_sym_notnull] = ACTIONS(4458), - [anon_sym_unmanaged] = ACTIONS(4458), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_PLUS_PLUS] = ACTIONS(4460), - [anon_sym_DASH_DASH] = ACTIONS(4460), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4458), - [anon_sym_PERCENT] = ACTIONS(4460), - [anon_sym_CARET] = ACTIONS(4460), - [anon_sym_PIPE] = ACTIONS(4458), - [anon_sym_AMP] = ACTIONS(4458), - [anon_sym_LT_LT] = ACTIONS(4460), - [anon_sym_GT_GT] = ACTIONS(4458), - [anon_sym_GT_GT_GT] = ACTIONS(4460), - [anon_sym_EQ_EQ] = ACTIONS(4460), - [anon_sym_BANG_EQ] = ACTIONS(4460), - [anon_sym_GT_EQ] = ACTIONS(4460), - [anon_sym_LT_EQ] = ACTIONS(4460), - [anon_sym_DOT] = ACTIONS(4458), - [anon_sym_scoped] = ACTIONS(4458), - [anon_sym_EQ_GT] = ACTIONS(4460), - [anon_sym_var] = ACTIONS(4458), - [anon_sym_yield] = ACTIONS(4458), - [anon_sym_switch] = ACTIONS(4458), - [anon_sym_when] = ACTIONS(4458), - [sym_discard] = ACTIONS(4458), - [anon_sym_DOT_DOT] = ACTIONS(4460), - [anon_sym_and] = ACTIONS(4458), - [anon_sym_or] = ACTIONS(4458), - [anon_sym_AMP_AMP] = ACTIONS(4460), - [anon_sym_PIPE_PIPE] = ACTIONS(4460), - [sym_op_coalescing] = ACTIONS(4460), - [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_ascending] = ACTIONS(4458), - [anon_sym_descending] = 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(4460), - [anon_sym_with] = ACTIONS(4458), - [sym_grit_metavariable] = ACTIONS(4460), - [aux_sym_preproc_if_token3] = ACTIONS(4460), - [aux_sym_preproc_else_token1] = ACTIONS(4460), - [aux_sym_preproc_elif_token1] = ACTIONS(4460), + [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(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), @@ -434789,14 +434872,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2441] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2560), - [sym_property_pattern_clause] = STATE(2618), - [sym__variable_designation] = STATE(5769), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5632), - [sym__reserved_identifier] = STATE(5564), [sym_preproc_region] = STATE(2441), [sym_preproc_endregion] = STATE(2441), [sym_preproc_line] = STATE(2441), @@ -434806,69 +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(4404), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COLON] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4408), - [anon_sym_file] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4406), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [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(4406), - [anon_sym_var] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4406), - [sym_discard] = ACTIONS(4410), - [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(4406), - [anon_sym_into] = ACTIONS(4224), - [anon_sym_join] = ACTIONS(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), - [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(4412), + [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), @@ -434879,7 +434963,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), }, [2442] = { [sym_preproc_region] = STATE(2442), @@ -434891,78 +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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4023), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), + [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), @@ -434975,6 +435058,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -434984,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(4462), - [anon_sym_alias] = ACTIONS(4462), - [anon_sym_SEMI] = ACTIONS(4464), - [anon_sym_global] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(4464), - [anon_sym_COLON] = ACTIONS(4464), - [anon_sym_COMMA] = ACTIONS(4464), - [anon_sym_RBRACK] = ACTIONS(4464), - [anon_sym_LPAREN] = ACTIONS(4464), - [anon_sym_RPAREN] = ACTIONS(4464), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_RBRACE] = ACTIONS(4464), - [anon_sym_file] = ACTIONS(4462), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_in] = ACTIONS(4462), - [anon_sym_where] = ACTIONS(4462), - [anon_sym_QMARK] = ACTIONS(4462), - [anon_sym_notnull] = ACTIONS(4462), - [anon_sym_unmanaged] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PLUS_PLUS] = ACTIONS(4464), - [anon_sym_DASH_DASH] = ACTIONS(4464), - [anon_sym_PLUS] = ACTIONS(4462), - [anon_sym_DASH] = ACTIONS(4462), - [anon_sym_STAR] = ACTIONS(4464), - [anon_sym_SLASH] = ACTIONS(4462), - [anon_sym_PERCENT] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4464), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_AMP] = ACTIONS(4462), - [anon_sym_LT_LT] = ACTIONS(4464), - [anon_sym_GT_GT] = ACTIONS(4462), - [anon_sym_GT_GT_GT] = ACTIONS(4464), - [anon_sym_EQ_EQ] = ACTIONS(4464), - [anon_sym_BANG_EQ] = ACTIONS(4464), - [anon_sym_GT_EQ] = ACTIONS(4464), - [anon_sym_LT_EQ] = ACTIONS(4464), - [anon_sym_DOT] = ACTIONS(4462), - [anon_sym_scoped] = ACTIONS(4462), - [anon_sym_EQ_GT] = ACTIONS(4464), - [anon_sym_var] = ACTIONS(4462), - [anon_sym_yield] = ACTIONS(4462), - [anon_sym_switch] = ACTIONS(4462), - [anon_sym_when] = ACTIONS(4462), - [sym_discard] = ACTIONS(4462), - [anon_sym_DOT_DOT] = ACTIONS(4464), - [anon_sym_and] = ACTIONS(4462), - [anon_sym_or] = ACTIONS(4462), - [anon_sym_AMP_AMP] = ACTIONS(4464), - [anon_sym_PIPE_PIPE] = ACTIONS(4464), - [sym_op_coalescing] = ACTIONS(4464), - [anon_sym_from] = ACTIONS(4462), - [anon_sym_into] = ACTIONS(4462), - [anon_sym_join] = ACTIONS(4462), - [anon_sym_on] = ACTIONS(4462), - [anon_sym_equals] = ACTIONS(4462), - [anon_sym_let] = ACTIONS(4462), - [anon_sym_orderby] = ACTIONS(4462), - [anon_sym_ascending] = ACTIONS(4462), - [anon_sym_descending] = ACTIONS(4462), - [anon_sym_group] = ACTIONS(4462), - [anon_sym_by] = ACTIONS(4462), - [anon_sym_select] = ACTIONS(4462), - [anon_sym_as] = ACTIONS(4462), - [anon_sym_is] = ACTIONS(4462), - [anon_sym_DASH_GT] = ACTIONS(4464), - [anon_sym_with] = ACTIONS(4462), - [sym_grit_metavariable] = ACTIONS(4464), - [aux_sym_preproc_if_token3] = ACTIONS(4464), - [aux_sym_preproc_else_token1] = ACTIONS(4464), - [aux_sym_preproc_elif_token1] = ACTIONS(4464), + [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), @@ -435066,6 +435148,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(4220), }, [2444] = { [sym_preproc_region] = STATE(2444), @@ -435077,78 +435160,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2444), [sym_preproc_define] = STATE(2444), [sym_preproc_undef] = STATE(2444), - [sym__identifier_token] = ACTIONS(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4023), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), + [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), @@ -435170,78 +435253,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2445), [sym_preproc_define] = STATE(2445), [sym_preproc_undef] = STATE(2445), - [sym__identifier_token] = ACTIONS(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(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), @@ -435263,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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [sym__identifier_token] = ACTIONS(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), @@ -435347,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), @@ -435356,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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [sym__identifier_token] = ACTIONS(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), @@ -435440,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), @@ -435449,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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_SEMI] = ACTIONS(4021), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_LBRACK] = ACTIONS(4021), - [anon_sym_COLON] = ACTIONS(4021), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_RBRACK] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4021), - [anon_sym_RPAREN] = ACTIONS(4021), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4014), - [anon_sym_GT] = ACTIONS(4014), - [anon_sym_in] = ACTIONS(4014), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4014), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4014), - [anon_sym_PLUS_PLUS] = ACTIONS(4021), - [anon_sym_DASH_DASH] = ACTIONS(4021), - [anon_sym_PLUS] = ACTIONS(4014), - [anon_sym_DASH] = ACTIONS(4014), - [anon_sym_STAR] = ACTIONS(4021), - [anon_sym_SLASH] = ACTIONS(4014), - [anon_sym_PERCENT] = ACTIONS(4021), - [anon_sym_CARET] = ACTIONS(4021), - [anon_sym_PIPE] = ACTIONS(4014), - [anon_sym_AMP] = ACTIONS(4014), - [anon_sym_LT_LT] = ACTIONS(4021), - [anon_sym_GT_GT] = ACTIONS(4014), - [anon_sym_GT_GT_GT] = ACTIONS(4021), - [anon_sym_EQ_EQ] = ACTIONS(4021), - [anon_sym_BANG_EQ] = ACTIONS(4021), - [anon_sym_GT_EQ] = ACTIONS(4021), - [anon_sym_LT_EQ] = ACTIONS(4021), - [anon_sym_DOT] = ACTIONS(4014), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_EQ_GT] = ACTIONS(4021), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4014), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4021), - [anon_sym_and] = ACTIONS(4014), - [anon_sym_or] = ACTIONS(4014), - [anon_sym_AMP_AMP] = ACTIONS(4021), - [anon_sym_PIPE_PIPE] = ACTIONS(4021), - [sym_op_coalescing] = ACTIONS(4021), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4014), - [anon_sym_is] = ACTIONS(4014), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(4014), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_if_token3] = ACTIONS(4021), - [aux_sym_preproc_else_token1] = ACTIONS(4021), - [aux_sym_preproc_elif_token1] = ACTIONS(4021), + [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), @@ -435542,78 +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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_LPAREN] = ACTIONS(4016), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4023), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4019), - [anon_sym_when] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4019), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4023), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4019), - [anon_sym_DASH_GT] = ACTIONS(4016), - [anon_sym_with] = ACTIONS(4019), - [sym_grit_metavariable] = ACTIONS(4021), + [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), @@ -435626,14 +435709,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2450] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2528), - [sym_property_pattern_clause] = STATE(2643), - [sym__variable_designation] = STATE(5769), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5632), - [sym__reserved_identifier] = STATE(5564), [sym_preproc_region] = STATE(2450), [sym_preproc_endregion] = STATE(2450), [sym_preproc_line] = STATE(2450), @@ -435643,80 +435718,88 @@ 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(4404), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_COLON] = ACTIONS(4212), - [anon_sym_COMMA] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4408), - [anon_sym_file] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4406), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [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(4406), - [anon_sym_var] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4406), - [sym_discard] = ACTIONS(4410), - [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(4406), - [anon_sym_into] = ACTIONS(4406), - [anon_sym_join] = ACTIONS(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), - [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(4412), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4212), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2451] = { [sym_preproc_region] = STATE(2451), @@ -435728,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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4316), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [sym__identifier_token] = ACTIONS(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), @@ -435821,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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [sym__identifier_token] = ACTIONS(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), @@ -435905,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), @@ -435914,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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4470), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [sym__identifier_token] = ACTIONS(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), @@ -436006,77 +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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4472), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [sym__identifier_token] = ACTIONS(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), @@ -436089,6 +436172,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2455] = { + [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), @@ -436098,157 +436190,56 @@ 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), - [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_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_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(4474), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2456] = { - [sym__name] = STATE(4694), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_ref_type] = STATE(4693), - [sym__scoped_base_type] = STATE(4692), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), - [sym_preproc_region] = STATE(2456), - [sym_preproc_endregion] = STATE(2456), - [sym_preproc_line] = STATE(2456), - [sym_preproc_pragma] = STATE(2456), - [sym_preproc_nullable] = STATE(2456), - [sym_preproc_error] = STATE(2456), - [sym_preproc_warning] = STATE(2456), - [sym_preproc_define] = STATE(2456), - [sym_preproc_undef] = STATE(2456), [sym__identifier_token] = ACTIONS(4088), [anon_sym_alias] = ACTIONS(4090), [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4476), - [anon_sym_LBRACE] = ACTIONS(3700), + [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(3702), - [anon_sym_GT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(3702), + [anon_sym_QMARK] = ACTIONS(3696), [anon_sym_notnull] = ACTIONS(4090), [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), + [anon_sym_DOT] = ACTIONS(3696), [anon_sym_scoped] = ACTIONS(4090), - [anon_sym_COLON_COLON] = ACTIONS(3700), + [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(3702), + [anon_sym_switch] = ACTIONS(3696), [anon_sym_when] = ACTIONS(4090), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), + [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_on] = ACTIONS(4094), + [anon_sym_equals] = ACTIONS(4090), [anon_sym_let] = ACTIONS(4090), [anon_sym_orderby] = ACTIONS(4090), [anon_sym_ascending] = ACTIONS(4090), @@ -436256,10 +436247,10 @@ 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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), + [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), @@ -436272,16 +436263,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2456] = { + [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), + [sym_preproc_pragma] = STATE(2456), + [sym_preproc_nullable] = STATE(2456), + [sym_preproc_error] = STATE(2456), + [sym_preproc_warning] = STATE(2456), + [sym_preproc_define] = STATE(2456), + [sym_preproc_undef] = STATE(2456), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2457] = { - [sym__name] = STATE(4694), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_ref_type] = STATE(4693), - [sym__scoped_base_type] = STATE(4692), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), [sym_preproc_region] = STATE(2457), [sym_preproc_endregion] = STATE(2457), [sym_preproc_line] = STATE(2457), @@ -436291,68 +436365,77 @@ 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(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4478), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4090), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4090), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4097), + [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), @@ -436365,15 +436448,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2458] = { - [sym__name] = STATE(4694), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_ref_type] = STATE(4693), - [sym__scoped_base_type] = STATE(4692), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), [sym_preproc_region] = STATE(2458), [sym_preproc_endregion] = STATE(2458), [sym_preproc_line] = STATE(2458), @@ -436383,68 +436457,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2458), [sym_preproc_define] = STATE(2458), [sym_preproc_undef] = STATE(2458), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4480), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4090), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4090), - [anon_sym_yield] = ACTIONS(4090), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4090), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4097), + [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_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(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), + [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), @@ -436466,77 +436549,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2459), [sym_preproc_define] = STATE(2459), [sym_preproc_undef] = STATE(2459), - [sym__identifier_token] = ACTIONS(4482), - [anon_sym_alias] = ACTIONS(4482), - [anon_sym_SEMI] = ACTIONS(4484), - [anon_sym_global] = ACTIONS(4482), - [anon_sym_LBRACK] = ACTIONS(4484), - [anon_sym_COLON] = ACTIONS(4484), - [anon_sym_COMMA] = ACTIONS(4484), - [anon_sym_RBRACK] = ACTIONS(4484), - [anon_sym_LPAREN] = ACTIONS(4484), - [anon_sym_RPAREN] = ACTIONS(4484), - [anon_sym_RBRACE] = ACTIONS(4484), - [anon_sym_file] = ACTIONS(4482), - [anon_sym_LT] = ACTIONS(4482), - [anon_sym_GT] = ACTIONS(4482), - [anon_sym_in] = ACTIONS(4482), - [anon_sym_where] = ACTIONS(4482), - [anon_sym_QMARK] = ACTIONS(4482), - [anon_sym_notnull] = ACTIONS(4482), - [anon_sym_unmanaged] = ACTIONS(4482), - [anon_sym_BANG] = ACTIONS(4482), - [anon_sym_PLUS_PLUS] = ACTIONS(4484), - [anon_sym_DASH_DASH] = ACTIONS(4484), - [anon_sym_PLUS] = ACTIONS(4482), - [anon_sym_DASH] = ACTIONS(4482), - [anon_sym_STAR] = ACTIONS(4484), - [anon_sym_SLASH] = ACTIONS(4482), - [anon_sym_PERCENT] = ACTIONS(4484), - [anon_sym_CARET] = ACTIONS(4484), - [anon_sym_PIPE] = ACTIONS(4482), - [anon_sym_AMP] = ACTIONS(4482), - [anon_sym_LT_LT] = ACTIONS(4484), - [anon_sym_GT_GT] = ACTIONS(4482), - [anon_sym_GT_GT_GT] = ACTIONS(4484), - [anon_sym_EQ_EQ] = ACTIONS(4484), - [anon_sym_BANG_EQ] = ACTIONS(4484), - [anon_sym_GT_EQ] = ACTIONS(4484), - [anon_sym_LT_EQ] = ACTIONS(4484), - [anon_sym_DOT] = ACTIONS(4482), - [anon_sym_scoped] = ACTIONS(4482), - [anon_sym_EQ_GT] = ACTIONS(4484), - [anon_sym_var] = ACTIONS(4482), - [anon_sym_yield] = ACTIONS(4482), - [anon_sym_switch] = ACTIONS(4482), - [anon_sym_when] = ACTIONS(4482), - [sym_discard] = ACTIONS(4482), - [anon_sym_DOT_DOT] = ACTIONS(4484), - [anon_sym_and] = ACTIONS(4482), - [anon_sym_or] = ACTIONS(4482), - [anon_sym_AMP_AMP] = ACTIONS(4484), - [anon_sym_PIPE_PIPE] = ACTIONS(4484), - [sym_op_coalescing] = ACTIONS(4484), - [anon_sym_from] = ACTIONS(4482), - [anon_sym_into] = ACTIONS(4482), - [anon_sym_join] = ACTIONS(4482), - [anon_sym_on] = ACTIONS(4482), - [anon_sym_equals] = ACTIONS(4482), - [anon_sym_let] = ACTIONS(4482), - [anon_sym_orderby] = ACTIONS(4482), - [anon_sym_ascending] = ACTIONS(4482), - [anon_sym_descending] = ACTIONS(4482), - [anon_sym_group] = ACTIONS(4482), - [anon_sym_by] = ACTIONS(4482), - [anon_sym_select] = ACTIONS(4482), - [anon_sym_as] = ACTIONS(4482), - [anon_sym_is] = ACTIONS(4482), - [anon_sym_DASH_GT] = ACTIONS(4484), - [anon_sym_with] = ACTIONS(4482), - [sym_grit_metavariable] = ACTIONS(4484), - [aux_sym_preproc_if_token3] = ACTIONS(4484), - [aux_sym_preproc_else_token1] = ACTIONS(4484), - [aux_sym_preproc_elif_token1] = ACTIONS(4484), + [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), @@ -436558,77 +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(4486), - [anon_sym_alias] = ACTIONS(4486), - [anon_sym_SEMI] = ACTIONS(4488), - [anon_sym_global] = ACTIONS(4486), - [anon_sym_LBRACK] = ACTIONS(4488), - [anon_sym_COLON] = ACTIONS(4488), - [anon_sym_COMMA] = ACTIONS(4488), - [anon_sym_RBRACK] = ACTIONS(4488), - [anon_sym_LPAREN] = ACTIONS(4488), - [anon_sym_RPAREN] = ACTIONS(4488), - [anon_sym_RBRACE] = ACTIONS(4488), - [anon_sym_file] = ACTIONS(4486), - [anon_sym_LT] = ACTIONS(4486), - [anon_sym_GT] = ACTIONS(4486), - [anon_sym_in] = ACTIONS(4486), - [anon_sym_where] = ACTIONS(4486), - [anon_sym_QMARK] = ACTIONS(4486), - [anon_sym_notnull] = ACTIONS(4486), - [anon_sym_unmanaged] = ACTIONS(4486), - [anon_sym_BANG] = ACTIONS(4486), - [anon_sym_PLUS_PLUS] = ACTIONS(4488), - [anon_sym_DASH_DASH] = ACTIONS(4488), - [anon_sym_PLUS] = ACTIONS(4486), - [anon_sym_DASH] = ACTIONS(4486), - [anon_sym_STAR] = ACTIONS(4488), - [anon_sym_SLASH] = ACTIONS(4486), - [anon_sym_PERCENT] = ACTIONS(4488), - [anon_sym_CARET] = ACTIONS(4488), - [anon_sym_PIPE] = ACTIONS(4486), - [anon_sym_AMP] = ACTIONS(4486), - [anon_sym_LT_LT] = ACTIONS(4488), - [anon_sym_GT_GT] = ACTIONS(4486), - [anon_sym_GT_GT_GT] = ACTIONS(4488), - [anon_sym_EQ_EQ] = ACTIONS(4488), - [anon_sym_BANG_EQ] = ACTIONS(4488), - [anon_sym_GT_EQ] = ACTIONS(4488), - [anon_sym_LT_EQ] = ACTIONS(4488), - [anon_sym_DOT] = ACTIONS(4486), - [anon_sym_scoped] = ACTIONS(4486), - [anon_sym_EQ_GT] = ACTIONS(4488), - [anon_sym_var] = ACTIONS(4486), - [anon_sym_yield] = ACTIONS(4486), - [anon_sym_switch] = ACTIONS(4486), - [anon_sym_when] = ACTIONS(4486), - [sym_discard] = ACTIONS(4486), - [anon_sym_DOT_DOT] = ACTIONS(4488), - [anon_sym_and] = ACTIONS(4486), - [anon_sym_or] = ACTIONS(4486), - [anon_sym_AMP_AMP] = ACTIONS(4488), - [anon_sym_PIPE_PIPE] = ACTIONS(4488), - [sym_op_coalescing] = ACTIONS(4488), - [anon_sym_from] = ACTIONS(4486), - [anon_sym_into] = ACTIONS(4486), - [anon_sym_join] = ACTIONS(4486), - [anon_sym_on] = ACTIONS(4486), - [anon_sym_equals] = ACTIONS(4486), - [anon_sym_let] = ACTIONS(4486), - [anon_sym_orderby] = ACTIONS(4486), - [anon_sym_ascending] = ACTIONS(4486), - [anon_sym_descending] = ACTIONS(4486), - [anon_sym_group] = ACTIONS(4486), - [anon_sym_by] = ACTIONS(4486), - [anon_sym_select] = ACTIONS(4486), - [anon_sym_as] = ACTIONS(4486), - [anon_sym_is] = ACTIONS(4486), - [anon_sym_DASH_GT] = ACTIONS(4488), - [anon_sym_with] = ACTIONS(4486), - [sym_grit_metavariable] = ACTIONS(4488), - [aux_sym_preproc_if_token3] = ACTIONS(4488), - [aux_sym_preproc_else_token1] = ACTIONS(4488), - [aux_sym_preproc_elif_token1] = ACTIONS(4488), + [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), @@ -436641,15 +436724,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2461] = { - [sym__name] = STATE(5028), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_ref_type] = STATE(4870), - [sym__scoped_base_type] = STATE(4875), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -436659,68 +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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4490), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4105), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4105), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(4105), - [anon_sym_into] = ACTIONS(4105), - [anon_sym_join] = ACTIONS(4105), - [anon_sym_on] = ACTIONS(4372), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -436733,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), @@ -436742,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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4492), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [sym__identifier_token] = ACTIONS(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), @@ -436825,15 +436908,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2463] = { - [sym__name] = STATE(5028), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_ref_type] = STATE(4870), - [sym__scoped_base_type] = STATE(4875), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -436843,68 +436926,68 @@ 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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4494), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4105), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4105), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(4105), - [anon_sym_into] = ACTIONS(4105), - [anon_sym_join] = ACTIONS(4105), - [anon_sym_on] = ACTIONS(4105), - [anon_sym_equals] = ACTIONS(4372), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -436926,77 +437009,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2464), [sym_preproc_define] = STATE(2464), [sym_preproc_undef] = STATE(2464), - [sym__identifier_token] = ACTIONS(4496), - [anon_sym_alias] = ACTIONS(4496), - [anon_sym_SEMI] = ACTIONS(4498), - [anon_sym_global] = ACTIONS(4496), - [anon_sym_LBRACK] = ACTIONS(4498), - [anon_sym_COLON] = ACTIONS(4498), - [anon_sym_COMMA] = ACTIONS(4498), - [anon_sym_RBRACK] = ACTIONS(4498), - [anon_sym_LPAREN] = ACTIONS(4498), - [anon_sym_RPAREN] = ACTIONS(4498), - [anon_sym_RBRACE] = ACTIONS(4498), - [anon_sym_file] = ACTIONS(4496), - [anon_sym_LT] = ACTIONS(4496), - [anon_sym_GT] = ACTIONS(4496), - [anon_sym_in] = ACTIONS(4496), - [anon_sym_where] = ACTIONS(4496), - [anon_sym_QMARK] = ACTIONS(4496), - [anon_sym_notnull] = ACTIONS(4496), - [anon_sym_unmanaged] = ACTIONS(4496), - [anon_sym_BANG] = ACTIONS(4496), - [anon_sym_PLUS_PLUS] = ACTIONS(4498), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_PLUS] = ACTIONS(4496), - [anon_sym_DASH] = ACTIONS(4496), - [anon_sym_STAR] = ACTIONS(4498), - [anon_sym_SLASH] = ACTIONS(4496), - [anon_sym_PERCENT] = ACTIONS(4498), - [anon_sym_CARET] = ACTIONS(4498), - [anon_sym_PIPE] = ACTIONS(4496), - [anon_sym_AMP] = ACTIONS(4496), - [anon_sym_LT_LT] = ACTIONS(4498), - [anon_sym_GT_GT] = ACTIONS(4496), - [anon_sym_GT_GT_GT] = ACTIONS(4498), - [anon_sym_EQ_EQ] = ACTIONS(4498), - [anon_sym_BANG_EQ] = ACTIONS(4498), - [anon_sym_GT_EQ] = ACTIONS(4498), - [anon_sym_LT_EQ] = ACTIONS(4498), - [anon_sym_DOT] = ACTIONS(4496), - [anon_sym_scoped] = ACTIONS(4496), - [anon_sym_EQ_GT] = ACTIONS(4498), - [anon_sym_var] = ACTIONS(4496), - [anon_sym_yield] = ACTIONS(4496), - [anon_sym_switch] = ACTIONS(4496), - [anon_sym_when] = ACTIONS(4496), - [sym_discard] = ACTIONS(4496), - [anon_sym_DOT_DOT] = ACTIONS(4498), - [anon_sym_and] = ACTIONS(4496), - [anon_sym_or] = ACTIONS(4496), - [anon_sym_AMP_AMP] = ACTIONS(4498), - [anon_sym_PIPE_PIPE] = ACTIONS(4498), - [sym_op_coalescing] = ACTIONS(4498), - [anon_sym_from] = ACTIONS(4496), - [anon_sym_into] = ACTIONS(4496), - [anon_sym_join] = ACTIONS(4496), - [anon_sym_on] = ACTIONS(4496), - [anon_sym_equals] = ACTIONS(4496), - [anon_sym_let] = ACTIONS(4496), - [anon_sym_orderby] = ACTIONS(4496), - [anon_sym_ascending] = ACTIONS(4496), - [anon_sym_descending] = ACTIONS(4496), - [anon_sym_group] = ACTIONS(4496), - [anon_sym_by] = ACTIONS(4496), - [anon_sym_select] = ACTIONS(4496), - [anon_sym_as] = ACTIONS(4496), - [anon_sym_is] = ACTIONS(4496), - [anon_sym_DASH_GT] = ACTIONS(4498), - [anon_sym_with] = ACTIONS(4496), - [sym_grit_metavariable] = ACTIONS(4498), - [aux_sym_preproc_if_token3] = ACTIONS(4498), - [aux_sym_preproc_else_token1] = ACTIONS(4498), - [aux_sym_preproc_elif_token1] = ACTIONS(4498), + [sym__identifier_token] = ACTIONS(4329), + [anon_sym_alias] = ACTIONS(4329), + [anon_sym_SEMI] = ACTIONS(4331), + [anon_sym_global] = ACTIONS(4329), + [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_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(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), + [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), @@ -437009,6 +437092,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -437018,77 +437110,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2465), [sym_preproc_define] = STATE(2465), [sym_preproc_undef] = STATE(2465), - [sym__identifier_token] = ACTIONS(4500), - [anon_sym_extern] = ACTIONS(4503), - [anon_sym_alias] = ACTIONS(4500), - [anon_sym_global] = ACTIONS(4500), - [anon_sym_using] = ACTIONS(4503), - [anon_sym_unsafe] = ACTIONS(4503), - [anon_sym_static] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4505), - [anon_sym_LPAREN] = ACTIONS(4505), - [anon_sym_event] = ACTIONS(4503), - [anon_sym_namespace] = ACTIONS(4503), - [anon_sym_class] = ACTIONS(4503), - [anon_sym_ref] = ACTIONS(4503), - [anon_sym_struct] = ACTIONS(4503), - [anon_sym_enum] = ACTIONS(4503), - [anon_sym_RBRACE] = ACTIONS(4508), - [anon_sym_interface] = ACTIONS(4503), - [anon_sym_delegate] = ACTIONS(4503), - [anon_sym_record] = ACTIONS(4503), - [anon_sym_public] = ACTIONS(4503), - [anon_sym_private] = ACTIONS(4503), - [anon_sym_readonly] = ACTIONS(4503), - [anon_sym_abstract] = ACTIONS(4503), - [anon_sym_async] = ACTIONS(4503), - [anon_sym_const] = ACTIONS(4503), - [anon_sym_file] = ACTIONS(4500), - [anon_sym_fixed] = ACTIONS(4503), - [anon_sym_internal] = ACTIONS(4503), - [anon_sym_new] = ACTIONS(4503), - [anon_sym_override] = ACTIONS(4503), - [anon_sym_partial] = ACTIONS(4503), - [anon_sym_protected] = ACTIONS(4503), - [anon_sym_required] = ACTIONS(4503), - [anon_sym_sealed] = ACTIONS(4503), - [anon_sym_virtual] = ACTIONS(4503), - [anon_sym_volatile] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_where] = ACTIONS(4500), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_notnull] = ACTIONS(4500), - [anon_sym_unmanaged] = ACTIONS(4500), - [anon_sym_operator] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(4508), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_implicit] = ACTIONS(4503), - [anon_sym_explicit] = ACTIONS(4503), - [anon_sym_this] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_scoped] = ACTIONS(4500), - [anon_sym_COLON_COLON] = ACTIONS(3189), - [anon_sym_var] = ACTIONS(4500), - [sym_predefined_type] = ACTIONS(4503), - [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(4508), - [aux_sym_preproc_if_token3] = ACTIONS(4508), - [aux_sym_preproc_else_token1] = ACTIONS(4508), - [aux_sym_preproc_elif_token1] = ACTIONS(4508), + [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(4505), + [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(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(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), @@ -437101,7 +437184,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2466] = { - [sym_type_argument_list] = STATE(2504), [sym_preproc_region] = STATE(2466), [sym_preproc_endregion] = STATE(2466), [sym_preproc_line] = STATE(2466), @@ -437111,76 +437193,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2466), [sym_preproc_define] = STATE(2466), [sym_preproc_undef] = STATE(2466), - [anon_sym_SEMI] = ACTIONS(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(4510), - [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(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), @@ -437193,15 +437276,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2467] = { - [sym__name] = STATE(4157), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_ref_type] = STATE(4018), - [sym__scoped_base_type] = STATE(4086), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), [sym_preproc_region] = STATE(2467), [sym_preproc_endregion] = STATE(2467), [sym_preproc_line] = STATE(2467), @@ -437211,68 +437285,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2467), [sym_preproc_define] = STATE(2467), [sym_preproc_undef] = STATE(2467), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4513), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4515), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(4515), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4515), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4515), - [anon_sym_orderby] = ACTIONS(4515), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4515), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4515), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4232), + [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_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(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), + [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), @@ -437285,15 +437368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2468] = { - [sym__name] = STATE(5486), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_ref_type] = STATE(3540), - [sym__scoped_base_type] = STATE(3541), - [sym_identifier] = STATE(5284), - [sym__reserved_identifier] = STATE(3393), + [sym_type_argument_list] = STATE(2496), [sym_preproc_region] = STATE(2468), [sym_preproc_endregion] = STATE(2468), [sym_preproc_line] = STATE(2468), @@ -437303,68 +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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4155), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4151), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4151), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(4155), - [anon_sym_into] = ACTIONS(4155), - [anon_sym_join] = ACTIONS(4155), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4155), - [anon_sym_orderby] = ACTIONS(4155), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4155), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4155), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -437386,77 +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(4520), - [anon_sym_alias] = ACTIONS(4520), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_global] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(4522), - [anon_sym_COMMA] = ACTIONS(4522), - [anon_sym_RBRACK] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_RPAREN] = ACTIONS(4522), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_file] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4520), - [anon_sym_where] = ACTIONS(4520), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_notnull] = ACTIONS(4520), - [anon_sym_unmanaged] = ACTIONS(4520), - [anon_sym_BANG] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4522), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4522), - [anon_sym_CARET] = ACTIONS(4522), - [anon_sym_PIPE] = ACTIONS(4520), - [anon_sym_AMP] = ACTIONS(4520), - [anon_sym_LT_LT] = ACTIONS(4522), - [anon_sym_GT_GT] = ACTIONS(4520), - [anon_sym_GT_GT_GT] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_scoped] = ACTIONS(4520), - [anon_sym_EQ_GT] = ACTIONS(4522), - [anon_sym_var] = ACTIONS(4520), - [anon_sym_yield] = ACTIONS(4520), - [anon_sym_switch] = ACTIONS(4520), - [anon_sym_when] = ACTIONS(4520), - [sym_discard] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_and] = ACTIONS(4520), - [anon_sym_or] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [sym_op_coalescing] = ACTIONS(4522), - [anon_sym_from] = ACTIONS(4520), - [anon_sym_into] = ACTIONS(4520), - [anon_sym_join] = ACTIONS(4520), - [anon_sym_on] = ACTIONS(4520), - [anon_sym_equals] = ACTIONS(4520), - [anon_sym_let] = ACTIONS(4520), - [anon_sym_orderby] = ACTIONS(4520), - [anon_sym_ascending] = ACTIONS(4520), - [anon_sym_descending] = ACTIONS(4520), - [anon_sym_group] = ACTIONS(4520), - [anon_sym_by] = ACTIONS(4520), - [anon_sym_select] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_DASH_GT] = ACTIONS(4522), - [anon_sym_with] = ACTIONS(4520), - [sym_grit_metavariable] = ACTIONS(4522), - [aux_sym_preproc_if_token3] = ACTIONS(4522), - [aux_sym_preproc_else_token1] = ACTIONS(4522), - [aux_sym_preproc_elif_token1] = ACTIONS(4522), + [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), @@ -437469,6 +437552,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2470] = { + [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), @@ -437478,77 +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(4520), - [anon_sym_alias] = ACTIONS(4520), - [anon_sym_SEMI] = ACTIONS(4522), - [anon_sym_global] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(4522), - [anon_sym_COMMA] = ACTIONS(4522), - [anon_sym_RBRACK] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_RPAREN] = ACTIONS(4522), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_file] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_in] = ACTIONS(4520), - [anon_sym_where] = ACTIONS(4520), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_notnull] = ACTIONS(4520), - [anon_sym_unmanaged] = ACTIONS(4520), - [anon_sym_BANG] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4522), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4522), - [anon_sym_CARET] = ACTIONS(4522), - [anon_sym_PIPE] = ACTIONS(4520), - [anon_sym_AMP] = ACTIONS(4520), - [anon_sym_LT_LT] = ACTIONS(4522), - [anon_sym_GT_GT] = ACTIONS(4520), - [anon_sym_GT_GT_GT] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_scoped] = ACTIONS(4520), - [anon_sym_EQ_GT] = ACTIONS(4522), - [anon_sym_var] = ACTIONS(4520), - [anon_sym_yield] = ACTIONS(4520), - [anon_sym_switch] = ACTIONS(4520), - [anon_sym_when] = ACTIONS(4520), - [sym_discard] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_and] = ACTIONS(4520), - [anon_sym_or] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [sym_op_coalescing] = ACTIONS(4522), - [anon_sym_from] = ACTIONS(4520), - [anon_sym_into] = ACTIONS(4520), - [anon_sym_join] = ACTIONS(4520), - [anon_sym_on] = ACTIONS(4520), - [anon_sym_equals] = ACTIONS(4520), - [anon_sym_let] = ACTIONS(4520), - [anon_sym_orderby] = ACTIONS(4520), - [anon_sym_ascending] = ACTIONS(4520), - [anon_sym_descending] = ACTIONS(4520), - [anon_sym_group] = ACTIONS(4520), - [anon_sym_by] = ACTIONS(4520), - [anon_sym_select] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_DASH_GT] = ACTIONS(4522), - [anon_sym_with] = ACTIONS(4520), - [sym_grit_metavariable] = ACTIONS(4522), - [aux_sym_preproc_if_token3] = ACTIONS(4522), - [aux_sym_preproc_else_token1] = ACTIONS(4522), - [aux_sym_preproc_elif_token1] = ACTIONS(4522), + [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(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), @@ -437570,77 +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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4474), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [sym__identifier_token] = ACTIONS(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), @@ -437653,15 +437736,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2472] = { - [sym__name] = STATE(5028), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_ref_type] = STATE(4870), - [sym__scoped_base_type] = STATE(4875), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), [sym_preproc_region] = STATE(2472), [sym_preproc_endregion] = STATE(2472), [sym_preproc_line] = STATE(2472), @@ -437671,68 +437745,77 @@ 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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4524), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4105), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4105), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4105), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [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(4372), - [anon_sym_select] = ACTIONS(4105), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -437754,77 +437837,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2473), [sym_preproc_define] = STATE(2473), [sym_preproc_undef] = STATE(2473), - [sym__identifier_token] = ACTIONS(4482), - [anon_sym_alias] = ACTIONS(4482), - [anon_sym_SEMI] = ACTIONS(4484), - [anon_sym_global] = ACTIONS(4482), - [anon_sym_LBRACK] = ACTIONS(4484), - [anon_sym_COLON] = ACTIONS(4484), - [anon_sym_COMMA] = ACTIONS(4484), - [anon_sym_RBRACK] = ACTIONS(4484), - [anon_sym_LPAREN] = ACTIONS(4484), - [anon_sym_RPAREN] = ACTIONS(4484), - [anon_sym_RBRACE] = ACTIONS(4484), - [anon_sym_file] = ACTIONS(4482), - [anon_sym_LT] = ACTIONS(4482), - [anon_sym_GT] = ACTIONS(4482), - [anon_sym_in] = ACTIONS(4482), - [anon_sym_where] = ACTIONS(4482), - [anon_sym_QMARK] = ACTIONS(4482), - [anon_sym_notnull] = ACTIONS(4482), - [anon_sym_unmanaged] = ACTIONS(4482), - [anon_sym_BANG] = ACTIONS(4482), - [anon_sym_PLUS_PLUS] = ACTIONS(4484), - [anon_sym_DASH_DASH] = ACTIONS(4484), - [anon_sym_PLUS] = ACTIONS(4482), - [anon_sym_DASH] = ACTIONS(4482), - [anon_sym_STAR] = ACTIONS(4484), - [anon_sym_SLASH] = ACTIONS(4482), - [anon_sym_PERCENT] = ACTIONS(4484), - [anon_sym_CARET] = ACTIONS(4484), - [anon_sym_PIPE] = ACTIONS(4482), - [anon_sym_AMP] = ACTIONS(4482), - [anon_sym_LT_LT] = ACTIONS(4484), - [anon_sym_GT_GT] = ACTIONS(4482), - [anon_sym_GT_GT_GT] = ACTIONS(4484), - [anon_sym_EQ_EQ] = ACTIONS(4484), - [anon_sym_BANG_EQ] = ACTIONS(4484), - [anon_sym_GT_EQ] = ACTIONS(4484), - [anon_sym_LT_EQ] = ACTIONS(4484), - [anon_sym_DOT] = ACTIONS(4482), - [anon_sym_scoped] = ACTIONS(4482), - [anon_sym_EQ_GT] = ACTIONS(4484), - [anon_sym_var] = ACTIONS(4482), - [anon_sym_yield] = ACTIONS(4482), - [anon_sym_switch] = ACTIONS(4482), - [anon_sym_when] = ACTIONS(4482), - [sym_discard] = ACTIONS(4482), - [anon_sym_DOT_DOT] = ACTIONS(4484), - [anon_sym_and] = ACTIONS(4482), - [anon_sym_or] = ACTIONS(4482), - [anon_sym_AMP_AMP] = ACTIONS(4484), - [anon_sym_PIPE_PIPE] = ACTIONS(4484), - [sym_op_coalescing] = ACTIONS(4484), - [anon_sym_from] = ACTIONS(4482), - [anon_sym_into] = ACTIONS(4482), - [anon_sym_join] = ACTIONS(4482), - [anon_sym_on] = ACTIONS(4482), - [anon_sym_equals] = ACTIONS(4482), - [anon_sym_let] = ACTIONS(4482), - [anon_sym_orderby] = ACTIONS(4482), - [anon_sym_ascending] = ACTIONS(4482), - [anon_sym_descending] = ACTIONS(4482), - [anon_sym_group] = ACTIONS(4482), - [anon_sym_by] = ACTIONS(4482), - [anon_sym_select] = ACTIONS(4482), - [anon_sym_as] = ACTIONS(4482), - [anon_sym_is] = ACTIONS(4482), - [anon_sym_DASH_GT] = ACTIONS(4484), - [anon_sym_with] = ACTIONS(4482), - [sym_grit_metavariable] = ACTIONS(4484), - [aux_sym_preproc_if_token3] = ACTIONS(4484), - [aux_sym_preproc_else_token1] = ACTIONS(4484), - [aux_sym_preproc_elif_token1] = ACTIONS(4484), + [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_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(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), + [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), @@ -437846,76 +437929,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2474), [sym_preproc_define] = STATE(2474), [sym_preproc_undef] = STATE(2474), - [anon_sym_SEMI] = ACTIONS(3964), - [anon_sym_EQ] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_COLON] = ACTIONS(3964), - [anon_sym_COMMA] = ACTIONS(3964), - [anon_sym_RBRACK] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_RBRACE] = ACTIONS(3964), - [anon_sym_LT] = ACTIONS(3962), - [anon_sym_GT] = ACTIONS(3962), - [anon_sym_in] = ACTIONS(3962), - [anon_sym_where] = ACTIONS(3964), - [anon_sym_QMARK] = ACTIONS(3962), - [anon_sym_BANG] = ACTIONS(3962), - [anon_sym_PLUS_PLUS] = ACTIONS(3964), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_PLUS] = ACTIONS(3962), - [anon_sym_DASH] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3962), - [anon_sym_SLASH] = ACTIONS(3962), - [anon_sym_PERCENT] = ACTIONS(3962), - [anon_sym_CARET] = ACTIONS(3962), - [anon_sym_PIPE] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_LT_LT] = ACTIONS(3962), - [anon_sym_GT_GT] = ACTIONS(3962), - [anon_sym_GT_GT_GT] = ACTIONS(3962), - [anon_sym_EQ_EQ] = ACTIONS(3964), - [anon_sym_BANG_EQ] = ACTIONS(3964), - [anon_sym_GT_EQ] = ACTIONS(3964), - [anon_sym_LT_EQ] = ACTIONS(3964), - [anon_sym_DOT] = ACTIONS(3962), - [anon_sym_EQ_GT] = ACTIONS(3964), - [anon_sym_switch] = ACTIONS(3964), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_and] = ACTIONS(3964), - [anon_sym_or] = ACTIONS(3962), - [anon_sym_PLUS_EQ] = ACTIONS(3964), - [anon_sym_DASH_EQ] = ACTIONS(3964), - [anon_sym_STAR_EQ] = ACTIONS(3964), - [anon_sym_SLASH_EQ] = ACTIONS(3964), - [anon_sym_PERCENT_EQ] = ACTIONS(3964), - [anon_sym_AMP_EQ] = ACTIONS(3964), - [anon_sym_CARET_EQ] = ACTIONS(3964), - [anon_sym_PIPE_EQ] = ACTIONS(3964), - [anon_sym_LT_LT_EQ] = ACTIONS(3964), - [anon_sym_GT_GT_EQ] = ACTIONS(3964), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3964), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3964), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [sym_op_coalescing] = ACTIONS(3962), - [anon_sym_from] = ACTIONS(3964), - [anon_sym_into] = ACTIONS(3964), - [anon_sym_join] = ACTIONS(3964), - [anon_sym_on] = ACTIONS(3964), - [anon_sym_equals] = ACTIONS(3964), - [anon_sym_let] = ACTIONS(3964), - [anon_sym_orderby] = ACTIONS(3964), - [anon_sym_group] = ACTIONS(3964), - [anon_sym_by] = ACTIONS(3964), - [anon_sym_select] = ACTIONS(3964), - [anon_sym_as] = ACTIONS(3964), - [anon_sym_is] = ACTIONS(3964), - [anon_sym_DASH_GT] = ACTIONS(3964), - [anon_sym_with] = ACTIONS(3964), - [aux_sym_preproc_if_token3] = ACTIONS(3964), - [aux_sym_preproc_else_token1] = ACTIONS(3964), - [aux_sym_preproc_elif_token1] = ACTIONS(3964), + [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), @@ -437937,76 +438020,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2475), [sym_preproc_define] = STATE(2475), [sym_preproc_undef] = STATE(2475), - [anon_sym_SEMI] = ACTIONS(4526), - [anon_sym_EQ] = ACTIONS(4528), - [anon_sym_LBRACK] = ACTIONS(4526), - [anon_sym_COLON] = ACTIONS(4530), - [anon_sym_COMMA] = ACTIONS(4526), - [anon_sym_RBRACK] = ACTIONS(4526), - [anon_sym_LPAREN] = ACTIONS(4526), - [anon_sym_RPAREN] = ACTIONS(4526), - [anon_sym_RBRACE] = ACTIONS(4526), - [anon_sym_LT] = ACTIONS(4532), - [anon_sym_GT] = ACTIONS(4532), - [anon_sym_in] = ACTIONS(4532), - [anon_sym_where] = ACTIONS(4526), - [anon_sym_QMARK] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4526), - [anon_sym_DASH_DASH] = ACTIONS(4526), - [anon_sym_PLUS] = ACTIONS(4532), - [anon_sym_DASH] = ACTIONS(4532), - [anon_sym_STAR] = ACTIONS(4532), - [anon_sym_SLASH] = ACTIONS(4532), - [anon_sym_PERCENT] = ACTIONS(4532), - [anon_sym_CARET] = ACTIONS(4532), - [anon_sym_PIPE] = ACTIONS(4532), - [anon_sym_AMP] = ACTIONS(4532), - [anon_sym_LT_LT] = ACTIONS(4532), - [anon_sym_GT_GT] = ACTIONS(4532), - [anon_sym_GT_GT_GT] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4526), - [anon_sym_BANG_EQ] = ACTIONS(4526), - [anon_sym_GT_EQ] = ACTIONS(4526), - [anon_sym_LT_EQ] = ACTIONS(4526), - [anon_sym_DOT] = ACTIONS(4532), - [anon_sym_EQ_GT] = ACTIONS(4526), - [anon_sym_switch] = ACTIONS(4526), - [anon_sym_DOT_DOT] = ACTIONS(4526), - [anon_sym_and] = ACTIONS(4526), - [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_AMP_AMP] = ACTIONS(4526), - [anon_sym_PIPE_PIPE] = ACTIONS(4526), - [sym_op_coalescing] = ACTIONS(4532), - [anon_sym_from] = ACTIONS(4526), - [anon_sym_into] = ACTIONS(4526), - [anon_sym_join] = ACTIONS(4526), - [anon_sym_on] = ACTIONS(4526), - [anon_sym_equals] = ACTIONS(4526), - [anon_sym_let] = ACTIONS(4526), - [anon_sym_orderby] = ACTIONS(4526), - [anon_sym_group] = ACTIONS(4526), - [anon_sym_by] = ACTIONS(4526), - [anon_sym_select] = ACTIONS(4526), - [anon_sym_as] = ACTIONS(4526), - [anon_sym_is] = ACTIONS(4526), - [anon_sym_DASH_GT] = ACTIONS(4526), - [anon_sym_with] = ACTIONS(4526), - [aux_sym_preproc_if_token3] = ACTIONS(4526), - [aux_sym_preproc_else_token1] = ACTIONS(4526), - [aux_sym_preproc_elif_token1] = ACTIONS(4526), + [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_where] = 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_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_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), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -438019,14 +438102,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2476] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2597), - [sym_property_pattern_clause] = STATE(2676), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4763), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -438034,70 +438117,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_nullable] = STATE(2476), [sym_preproc_error] = STATE(2476), [sym_preproc_warning] = STATE(2476), - [sym_preproc_define] = STATE(2476), - [sym_preproc_undef] = STATE(2476), - [sym__identifier_token] = ACTIONS(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_grit_metavariable] = ACTIONS(4220), + [sym_preproc_define] = STATE(2476), + [sym_preproc_undef] = STATE(2476), + [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(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), @@ -438110,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(2597), - [sym_property_pattern_clause] = STATE(2676), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4763), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2477), [sym_preproc_endregion] = STATE(2477), [sym_preproc_line] = STATE(2477), @@ -438127,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(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(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), @@ -438201,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(2297), - [sym_property_pattern_clause] = STATE(2334), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5796), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -438218,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(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_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(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(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(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), @@ -438292,14 +438375,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2479] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2597), - [sym_property_pattern_clause] = STATE(2676), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5796), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -438309,68 +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), - [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), + [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), @@ -438383,6 +438466,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2480] = { + [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), @@ -438392,76 +438483,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2480), [sym_preproc_define] = STATE(2480), [sym_preproc_undef] = STATE(2480), - [anon_sym_SEMI] = ACTIONS(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(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(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(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), @@ -438474,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), @@ -438483,8 +438574,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2481), [sym_preproc_define] = STATE(2481), [sym_preproc_undef] = STATE(2481), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2482] = { + [sym_preproc_region] = STATE(2482), + [sym_preproc_endregion] = STATE(2482), + [sym_preproc_line] = STATE(2482), + [sym_preproc_pragma] = STATE(2482), + [sym_preproc_nullable] = STATE(2482), + [sym_preproc_error] = STATE(2482), + [sym_preproc_warning] = STATE(2482), + [sym_preproc_define] = STATE(2482), + [sym_preproc_undef] = STATE(2482), [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(4528), + [anon_sym_EQ] = ACTIONS(4532), [anon_sym_LBRACK] = ACTIONS(4530), [anon_sym_COLON] = ACTIONS(4530), [anon_sym_COMMA] = ACTIONS(4530), @@ -438492,35 +438666,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(4530), [anon_sym_RPAREN] = ACTIONS(4530), [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_in] = ACTIONS(4528), + [anon_sym_LT] = ACTIONS(4532), + [anon_sym_GT] = ACTIONS(4532), + [anon_sym_in] = ACTIONS(4532), [anon_sym_where] = ACTIONS(4530), - [anon_sym_QMARK] = ACTIONS(4528), - [anon_sym_BANG] = ACTIONS(4528), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4528), - [anon_sym_CARET] = ACTIONS(4528), - [anon_sym_PIPE] = ACTIONS(4528), - [anon_sym_AMP] = ACTIONS(4528), - [anon_sym_LT_LT] = ACTIONS(4528), - [anon_sym_GT_GT] = ACTIONS(4528), - [anon_sym_GT_GT_GT] = ACTIONS(4528), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4528), + [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(4528), + [anon_sym_or] = ACTIONS(4532), [anon_sym_PLUS_EQ] = ACTIONS(4530), [anon_sym_DASH_EQ] = ACTIONS(4530), [anon_sym_STAR_EQ] = ACTIONS(4530), @@ -438533,9 +438692,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), - [sym_op_coalescing] = ACTIONS(4528), + [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), @@ -438564,106 +438738,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2482] = { - [sym_preproc_region] = STATE(2482), - [sym_preproc_endregion] = STATE(2482), - [sym_preproc_line] = STATE(2482), - [sym_preproc_pragma] = STATE(2482), - [sym_preproc_nullable] = STATE(2482), - [sym_preproc_error] = STATE(2482), - [sym_preproc_warning] = STATE(2482), - [sym_preproc_define] = STATE(2482), - [sym_preproc_undef] = STATE(2482), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [2483] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2637), - [sym_property_pattern_clause] = STATE(2718), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4988), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -438673,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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_in] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [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(4105), - [anon_sym_var] = ACTIONS(4105), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4105), - [sym_discard] = ACTIONS(4236), - [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(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(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -438756,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(3700), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3700), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3700), - [anon_sym_into] = ACTIONS(3700), - [anon_sym_join] = ACTIONS(3700), - [anon_sym_on] = ACTIONS(3700), - [anon_sym_equals] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_orderby] = ACTIONS(3700), - [anon_sym_group] = ACTIONS(3700), - [anon_sym_by] = ACTIONS(3700), - [anon_sym_select] = ACTIONS(3700), - [anon_sym_as] = ACTIONS(3700), - [anon_sym_is] = ACTIONS(3700), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3700), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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), @@ -438838,14 +438921,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2485] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2650), - [sym_property_pattern_clause] = STATE(2732), - [sym__variable_designation] = STATE(5286), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5161), - [sym__reserved_identifier] = STATE(2400), + [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), @@ -438855,68 +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), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4432), + [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(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [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(4432), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), + [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(4432), - [sym_discard] = ACTIONS(4534), - [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_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(4432), + [anon_sym_into] = ACTIONS(4224), [anon_sym_join] = ACTIONS(4224), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), + [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(4432), + [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(4436), + [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), @@ -438929,14 +439012,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2486] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2585), - [sym_property_pattern_clause] = STATE(2688), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5796), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -438946,68 +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), - [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(4236), - [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(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), @@ -439020,6 +439103,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2487] = { + [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), @@ -439029,76 +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), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_EQ] = ACTIONS(4538), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_COLON] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(4536), - [anon_sym_RBRACK] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_RPAREN] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LT] = ACTIONS(4538), - [anon_sym_GT] = ACTIONS(4538), - [anon_sym_in] = ACTIONS(4538), - [anon_sym_where] = ACTIONS(4536), - [anon_sym_QMARK] = ACTIONS(4538), - [anon_sym_BANG] = ACTIONS(4538), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4538), - [anon_sym_DASH] = ACTIONS(4538), - [anon_sym_STAR] = ACTIONS(4538), - [anon_sym_SLASH] = ACTIONS(4538), - [anon_sym_PERCENT] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4538), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_AMP] = ACTIONS(4538), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [anon_sym_GT_GT_GT] = ACTIONS(4538), - [anon_sym_EQ_EQ] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_DOT] = ACTIONS(4538), - [anon_sym_EQ_GT] = ACTIONS(4536), - [anon_sym_switch] = ACTIONS(4536), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_and] = ACTIONS(4536), - [anon_sym_or] = ACTIONS(4538), - [anon_sym_PLUS_EQ] = ACTIONS(4536), - [anon_sym_DASH_EQ] = ACTIONS(4536), - [anon_sym_STAR_EQ] = ACTIONS(4536), - [anon_sym_SLASH_EQ] = ACTIONS(4536), - [anon_sym_PERCENT_EQ] = ACTIONS(4536), - [anon_sym_AMP_EQ] = ACTIONS(4536), - [anon_sym_CARET_EQ] = ACTIONS(4536), - [anon_sym_PIPE_EQ] = ACTIONS(4536), - [anon_sym_LT_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_GT_EQ] = ACTIONS(4536), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4536), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [sym_op_coalescing] = ACTIONS(4538), - [anon_sym_from] = ACTIONS(4536), - [anon_sym_into] = ACTIONS(4536), - [anon_sym_join] = ACTIONS(4536), - [anon_sym_on] = ACTIONS(4536), - [anon_sym_equals] = ACTIONS(4536), - [anon_sym_let] = ACTIONS(4536), - [anon_sym_orderby] = ACTIONS(4536), - [anon_sym_group] = ACTIONS(4536), - [anon_sym_by] = ACTIONS(4536), - [anon_sym_select] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4536), - [anon_sym_DASH_GT] = ACTIONS(4536), - [anon_sym_with] = ACTIONS(4536), - [aux_sym_preproc_if_token3] = ACTIONS(4536), - [aux_sym_preproc_else_token1] = ACTIONS(4536), - [aux_sym_preproc_elif_token1] = ACTIONS(4536), + [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(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), @@ -439111,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(2597), - [sym_property_pattern_clause] = STATE(2676), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5796), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -439128,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(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), + [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), @@ -439211,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(4540), - [anon_sym_EQ] = ACTIONS(4542), - [anon_sym_LBRACK] = ACTIONS(4540), - [anon_sym_COLON] = ACTIONS(4540), - [anon_sym_COMMA] = ACTIONS(4540), - [anon_sym_RBRACK] = ACTIONS(4540), - [anon_sym_LPAREN] = ACTIONS(4540), - [anon_sym_RPAREN] = ACTIONS(4540), - [anon_sym_RBRACE] = ACTIONS(4540), - [anon_sym_LT] = ACTIONS(4542), - [anon_sym_GT] = ACTIONS(4542), - [anon_sym_in] = ACTIONS(4542), - [anon_sym_where] = ACTIONS(4540), - [anon_sym_QMARK] = ACTIONS(4542), - [anon_sym_BANG] = ACTIONS(4542), - [anon_sym_PLUS_PLUS] = ACTIONS(4540), - [anon_sym_DASH_DASH] = ACTIONS(4540), - [anon_sym_PLUS] = ACTIONS(4542), - [anon_sym_DASH] = ACTIONS(4542), - [anon_sym_STAR] = ACTIONS(4542), - [anon_sym_SLASH] = ACTIONS(4542), - [anon_sym_PERCENT] = ACTIONS(4542), - [anon_sym_CARET] = ACTIONS(4542), - [anon_sym_PIPE] = ACTIONS(4542), - [anon_sym_AMP] = ACTIONS(4542), - [anon_sym_LT_LT] = ACTIONS(4542), - [anon_sym_GT_GT] = ACTIONS(4542), - [anon_sym_GT_GT_GT] = ACTIONS(4542), - [anon_sym_EQ_EQ] = ACTIONS(4540), - [anon_sym_BANG_EQ] = ACTIONS(4540), - [anon_sym_GT_EQ] = ACTIONS(4540), - [anon_sym_LT_EQ] = ACTIONS(4540), - [anon_sym_DOT] = ACTIONS(4542), - [anon_sym_EQ_GT] = ACTIONS(4540), - [anon_sym_switch] = ACTIONS(4540), - [anon_sym_DOT_DOT] = ACTIONS(4540), - [anon_sym_and] = ACTIONS(4540), - [anon_sym_or] = ACTIONS(4542), - [anon_sym_PLUS_EQ] = ACTIONS(4540), - [anon_sym_DASH_EQ] = ACTIONS(4540), - [anon_sym_STAR_EQ] = ACTIONS(4540), - [anon_sym_SLASH_EQ] = ACTIONS(4540), - [anon_sym_PERCENT_EQ] = ACTIONS(4540), - [anon_sym_AMP_EQ] = ACTIONS(4540), - [anon_sym_CARET_EQ] = ACTIONS(4540), - [anon_sym_PIPE_EQ] = ACTIONS(4540), - [anon_sym_LT_LT_EQ] = ACTIONS(4540), - [anon_sym_GT_GT_EQ] = ACTIONS(4540), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4540), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4540), - [anon_sym_AMP_AMP] = ACTIONS(4540), - [anon_sym_PIPE_PIPE] = ACTIONS(4540), - [sym_op_coalescing] = ACTIONS(4542), - [anon_sym_from] = ACTIONS(4540), - [anon_sym_into] = ACTIONS(4540), - [anon_sym_join] = ACTIONS(4540), - [anon_sym_on] = ACTIONS(4540), - [anon_sym_equals] = ACTIONS(4540), - [anon_sym_let] = ACTIONS(4540), - [anon_sym_orderby] = ACTIONS(4540), - [anon_sym_group] = ACTIONS(4540), - [anon_sym_by] = ACTIONS(4540), - [anon_sym_select] = ACTIONS(4540), - [anon_sym_as] = ACTIONS(4540), - [anon_sym_is] = ACTIONS(4540), - [anon_sym_DASH_GT] = ACTIONS(4540), - [anon_sym_with] = ACTIONS(4540), - [aux_sym_preproc_if_token3] = ACTIONS(4540), - [aux_sym_preproc_else_token1] = ACTIONS(4540), - [aux_sym_preproc_elif_token1] = ACTIONS(4540), + [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), @@ -439293,14 +439376,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2490] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2623), - [sym_property_pattern_clause] = STATE(2769), - [sym__variable_designation] = STATE(5286), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5161), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(2490), [sym_preproc_endregion] = STATE(2490), [sym_preproc_line] = STATE(2490), @@ -439310,68 +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), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [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(4432), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4432), - [sym_discard] = ACTIONS(4534), - [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(4432), - [anon_sym_equals] = ACTIONS(4432), - [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(4432), - [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(4436), + [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), @@ -439384,6 +439467,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2491] = { + [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), @@ -439393,76 +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), - [anon_sym_SEMI] = ACTIONS(4544), - [anon_sym_EQ] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(4544), - [anon_sym_COLON] = ACTIONS(4544), - [anon_sym_COMMA] = ACTIONS(4544), - [anon_sym_RBRACK] = ACTIONS(4544), - [anon_sym_LPAREN] = ACTIONS(4544), - [anon_sym_RPAREN] = ACTIONS(4544), - [anon_sym_RBRACE] = ACTIONS(4544), - [anon_sym_LT] = ACTIONS(4546), - [anon_sym_GT] = ACTIONS(4546), - [anon_sym_in] = ACTIONS(4546), - [anon_sym_where] = ACTIONS(4544), - [anon_sym_QMARK] = ACTIONS(4546), - [anon_sym_BANG] = ACTIONS(4546), - [anon_sym_PLUS_PLUS] = ACTIONS(4544), - [anon_sym_DASH_DASH] = ACTIONS(4544), - [anon_sym_PLUS] = ACTIONS(4546), - [anon_sym_DASH] = ACTIONS(4546), - [anon_sym_STAR] = ACTIONS(4546), - [anon_sym_SLASH] = ACTIONS(4546), - [anon_sym_PERCENT] = ACTIONS(4546), - [anon_sym_CARET] = ACTIONS(4546), - [anon_sym_PIPE] = ACTIONS(4546), - [anon_sym_AMP] = ACTIONS(4546), - [anon_sym_LT_LT] = ACTIONS(4546), - [anon_sym_GT_GT] = ACTIONS(4546), - [anon_sym_GT_GT_GT] = ACTIONS(4546), - [anon_sym_EQ_EQ] = ACTIONS(4544), - [anon_sym_BANG_EQ] = ACTIONS(4544), - [anon_sym_GT_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4544), - [anon_sym_DOT] = ACTIONS(4546), - [anon_sym_EQ_GT] = ACTIONS(4544), - [anon_sym_switch] = ACTIONS(4544), - [anon_sym_DOT_DOT] = ACTIONS(4544), - [anon_sym_and] = ACTIONS(4544), - [anon_sym_or] = ACTIONS(4546), - [anon_sym_PLUS_EQ] = ACTIONS(4544), - [anon_sym_DASH_EQ] = ACTIONS(4544), - [anon_sym_STAR_EQ] = ACTIONS(4544), - [anon_sym_SLASH_EQ] = ACTIONS(4544), - [anon_sym_PERCENT_EQ] = ACTIONS(4544), - [anon_sym_AMP_EQ] = ACTIONS(4544), - [anon_sym_CARET_EQ] = ACTIONS(4544), - [anon_sym_PIPE_EQ] = ACTIONS(4544), - [anon_sym_LT_LT_EQ] = ACTIONS(4544), - [anon_sym_GT_GT_EQ] = ACTIONS(4544), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4544), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4544), - [anon_sym_AMP_AMP] = ACTIONS(4544), - [anon_sym_PIPE_PIPE] = ACTIONS(4544), - [sym_op_coalescing] = ACTIONS(4546), - [anon_sym_from] = ACTIONS(4544), - [anon_sym_into] = ACTIONS(4544), - [anon_sym_join] = ACTIONS(4544), - [anon_sym_on] = ACTIONS(4544), - [anon_sym_equals] = ACTIONS(4544), - [anon_sym_let] = ACTIONS(4544), - [anon_sym_orderby] = ACTIONS(4544), - [anon_sym_group] = ACTIONS(4544), - [anon_sym_by] = ACTIONS(4544), - [anon_sym_select] = ACTIONS(4544), - [anon_sym_as] = ACTIONS(4544), - [anon_sym_is] = ACTIONS(4544), - [anon_sym_DASH_GT] = ACTIONS(4544), - [anon_sym_with] = ACTIONS(4544), - [aux_sym_preproc_if_token3] = ACTIONS(4544), - [aux_sym_preproc_else_token1] = ACTIONS(4544), - [aux_sym_preproc_elif_token1] = ACTIONS(4544), + [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(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), @@ -439475,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(2324), - [sym_property_pattern_clause] = STATE(2362), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5796), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -439492,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(4236), - [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(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), @@ -439566,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(2650), - [sym_property_pattern_clause] = STATE(2732), - [sym__variable_designation] = STATE(5286), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5161), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(2493), [sym_preproc_endregion] = STATE(2493), [sym_preproc_line] = STATE(2493), @@ -439583,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(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [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(4432), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4432), - [sym_discard] = ACTIONS(4534), - [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(4432), - [anon_sym_join] = ACTIONS(4224), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [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(4432), - [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(4436), + [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), @@ -439657,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(2637), - [sym_property_pattern_clause] = STATE(2718), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4988), - [sym__reserved_identifier] = STATE(4715), [sym_preproc_region] = STATE(2494), [sym_preproc_endregion] = STATE(2494), [sym_preproc_line] = STATE(2494), @@ -439674,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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_in] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [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(4105), - [anon_sym_var] = ACTIONS(4105), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4105), - [sym_discard] = ACTIONS(4236), - [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(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(4216), - [anon_sym_is] = ACTIONS(4216), - [anon_sym_DASH_GT] = ACTIONS(4212), - [anon_sym_with] = ACTIONS(4216), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -439748,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(2637), - [sym_property_pattern_clause] = STATE(2718), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4988), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -439765,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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4105), + [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(4105), + [anon_sym_where] = ACTIONS(4218), [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [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(4105), - [anon_sym_var] = ACTIONS(4105), - [anon_sym_yield] = ACTIONS(4105), + [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(4105), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4222), + [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_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_op_coalescing] = ACTIONS(4222), - [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_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(4222), + [anon_sym_DASH_GT] = ACTIONS(4220), [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -439848,76 +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), - [anon_sym_SEMI] = ACTIONS(4548), - [anon_sym_EQ] = ACTIONS(4550), - [anon_sym_LBRACK] = ACTIONS(4548), - [anon_sym_COLON] = ACTIONS(4548), - [anon_sym_COMMA] = ACTIONS(4548), - [anon_sym_RBRACK] = ACTIONS(4548), - [anon_sym_LPAREN] = ACTIONS(4548), - [anon_sym_RPAREN] = ACTIONS(4548), - [anon_sym_RBRACE] = ACTIONS(4548), - [anon_sym_LT] = ACTIONS(4550), - [anon_sym_GT] = ACTIONS(4550), - [anon_sym_in] = ACTIONS(4550), - [anon_sym_where] = ACTIONS(4548), - [anon_sym_QMARK] = ACTIONS(4550), - [anon_sym_BANG] = ACTIONS(4550), - [anon_sym_PLUS_PLUS] = ACTIONS(4548), - [anon_sym_DASH_DASH] = ACTIONS(4548), - [anon_sym_PLUS] = ACTIONS(4550), - [anon_sym_DASH] = ACTIONS(4550), - [anon_sym_STAR] = ACTIONS(4550), - [anon_sym_SLASH] = ACTIONS(4550), - [anon_sym_PERCENT] = ACTIONS(4550), - [anon_sym_CARET] = ACTIONS(4550), - [anon_sym_PIPE] = ACTIONS(4550), - [anon_sym_AMP] = ACTIONS(4550), - [anon_sym_LT_LT] = ACTIONS(4550), - [anon_sym_GT_GT] = ACTIONS(4550), - [anon_sym_GT_GT_GT] = ACTIONS(4550), - [anon_sym_EQ_EQ] = ACTIONS(4548), - [anon_sym_BANG_EQ] = ACTIONS(4548), - [anon_sym_GT_EQ] = ACTIONS(4548), - [anon_sym_LT_EQ] = ACTIONS(4548), - [anon_sym_DOT] = ACTIONS(4550), - [anon_sym_EQ_GT] = ACTIONS(4548), - [anon_sym_switch] = ACTIONS(4548), - [anon_sym_DOT_DOT] = ACTIONS(4548), - [anon_sym_and] = ACTIONS(4548), - [anon_sym_or] = ACTIONS(4550), - [anon_sym_PLUS_EQ] = ACTIONS(4548), - [anon_sym_DASH_EQ] = ACTIONS(4548), - [anon_sym_STAR_EQ] = ACTIONS(4548), - [anon_sym_SLASH_EQ] = ACTIONS(4548), - [anon_sym_PERCENT_EQ] = ACTIONS(4548), - [anon_sym_AMP_EQ] = ACTIONS(4548), - [anon_sym_CARET_EQ] = ACTIONS(4548), - [anon_sym_PIPE_EQ] = ACTIONS(4548), - [anon_sym_LT_LT_EQ] = ACTIONS(4548), - [anon_sym_GT_GT_EQ] = ACTIONS(4548), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4548), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4548), - [anon_sym_AMP_AMP] = ACTIONS(4548), - [anon_sym_PIPE_PIPE] = ACTIONS(4548), - [sym_op_coalescing] = ACTIONS(4550), - [anon_sym_from] = ACTIONS(4548), - [anon_sym_into] = ACTIONS(4548), - [anon_sym_join] = ACTIONS(4548), - [anon_sym_on] = ACTIONS(4548), - [anon_sym_equals] = ACTIONS(4548), - [anon_sym_let] = ACTIONS(4548), - [anon_sym_orderby] = ACTIONS(4548), - [anon_sym_group] = ACTIONS(4548), - [anon_sym_by] = ACTIONS(4548), - [anon_sym_select] = ACTIONS(4548), - [anon_sym_as] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4548), - [anon_sym_DASH_GT] = ACTIONS(4548), - [anon_sym_with] = ACTIONS(4548), - [aux_sym_preproc_if_token3] = ACTIONS(4548), - [aux_sym_preproc_else_token1] = ACTIONS(4548), - [aux_sym_preproc_elif_token1] = ACTIONS(4548), + [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), @@ -439930,6 +440013,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2497] = { + [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), @@ -439939,76 +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), - [anon_sym_SEMI] = ACTIONS(4552), - [anon_sym_EQ] = ACTIONS(4554), - [anon_sym_LBRACK] = ACTIONS(4552), - [anon_sym_COLON] = ACTIONS(4552), - [anon_sym_COMMA] = ACTIONS(4552), - [anon_sym_RBRACK] = ACTIONS(4552), - [anon_sym_LPAREN] = ACTIONS(4552), - [anon_sym_RPAREN] = ACTIONS(4552), - [anon_sym_RBRACE] = ACTIONS(4552), - [anon_sym_LT] = ACTIONS(4554), - [anon_sym_GT] = ACTIONS(4554), - [anon_sym_in] = ACTIONS(4554), - [anon_sym_where] = ACTIONS(4552), - [anon_sym_QMARK] = ACTIONS(4554), - [anon_sym_BANG] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(4552), - [anon_sym_DASH_DASH] = ACTIONS(4552), - [anon_sym_PLUS] = ACTIONS(4554), - [anon_sym_DASH] = ACTIONS(4554), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_CARET] = ACTIONS(4554), - [anon_sym_PIPE] = ACTIONS(4554), - [anon_sym_AMP] = ACTIONS(4554), - [anon_sym_LT_LT] = ACTIONS(4554), - [anon_sym_GT_GT] = ACTIONS(4554), - [anon_sym_GT_GT_GT] = ACTIONS(4554), - [anon_sym_EQ_EQ] = ACTIONS(4552), - [anon_sym_BANG_EQ] = ACTIONS(4552), - [anon_sym_GT_EQ] = ACTIONS(4552), - [anon_sym_LT_EQ] = ACTIONS(4552), - [anon_sym_DOT] = ACTIONS(4554), - [anon_sym_EQ_GT] = ACTIONS(4552), - [anon_sym_switch] = ACTIONS(4552), - [anon_sym_DOT_DOT] = ACTIONS(4552), - [anon_sym_and] = ACTIONS(4552), - [anon_sym_or] = ACTIONS(4554), - [anon_sym_PLUS_EQ] = ACTIONS(4552), - [anon_sym_DASH_EQ] = ACTIONS(4552), - [anon_sym_STAR_EQ] = ACTIONS(4552), - [anon_sym_SLASH_EQ] = ACTIONS(4552), - [anon_sym_PERCENT_EQ] = ACTIONS(4552), - [anon_sym_AMP_EQ] = ACTIONS(4552), - [anon_sym_CARET_EQ] = ACTIONS(4552), - [anon_sym_PIPE_EQ] = ACTIONS(4552), - [anon_sym_LT_LT_EQ] = ACTIONS(4552), - [anon_sym_GT_GT_EQ] = ACTIONS(4552), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4552), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4552), - [anon_sym_AMP_AMP] = ACTIONS(4552), - [anon_sym_PIPE_PIPE] = ACTIONS(4552), - [sym_op_coalescing] = ACTIONS(4554), - [anon_sym_from] = ACTIONS(4552), - [anon_sym_into] = ACTIONS(4552), - [anon_sym_join] = ACTIONS(4552), - [anon_sym_on] = ACTIONS(4552), - [anon_sym_equals] = ACTIONS(4552), - [anon_sym_let] = ACTIONS(4552), - [anon_sym_orderby] = ACTIONS(4552), - [anon_sym_group] = ACTIONS(4552), - [anon_sym_by] = ACTIONS(4552), - [anon_sym_select] = ACTIONS(4552), - [anon_sym_as] = ACTIONS(4552), - [anon_sym_is] = ACTIONS(4552), - [anon_sym_DASH_GT] = ACTIONS(4552), - [anon_sym_with] = ACTIONS(4552), - [aux_sym_preproc_if_token3] = ACTIONS(4552), - [aux_sym_preproc_else_token1] = ACTIONS(4552), - [aux_sym_preproc_elif_token1] = ACTIONS(4552), + [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(4115), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4115), + [anon_sym_unmanaged] = ACTIONS(4115), + [anon_sym_DOT] = ACTIONS(4224), + [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(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_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(4220), + [anon_sym_with] = ACTIONS(4224), + [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), @@ -440021,14 +440104,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2498] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2650), - [sym_property_pattern_clause] = STATE(2732), - [sym__variable_designation] = STATE(5286), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5161), - [sym__reserved_identifier] = STATE(2400), + [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), @@ -440038,68 +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), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_COMMA] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4216), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [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(4432), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4432), - [sym_discard] = ACTIONS(4534), - [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(4432), - [anon_sym_join] = ACTIONS(4216), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [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(4432), - [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(4436), + [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), @@ -440112,14 +440195,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2499] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2297), - [sym_property_pattern_clause] = STATE(2334), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5796), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2499), [sym_preproc_endregion] = STATE(2499), [sym_preproc_line] = STATE(2499), @@ -440129,68 +440204,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2499), [sym_preproc_define] = STATE(2499), [sym_preproc_undef] = STATE(2499), - [sym__identifier_token] = ACTIONS(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), + [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), @@ -440203,14 +440286,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2500] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2324), - [sym_property_pattern_clause] = STATE(2362), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5796), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -440220,68 +440303,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2500), [sym_preproc_define] = STATE(2500), [sym_preproc_undef] = STATE(2500), - [sym__identifier_token] = ACTIONS(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_EQ_GT] = ACTIONS(4222), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), + [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(4210), - [sym_discard] = ACTIONS(4236), - [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_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(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), @@ -440294,176 +440377,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2501] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2585), - [sym_property_pattern_clause] = STATE(2688), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4988), - [sym__reserved_identifier] = STATE(4707), + [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), [sym_preproc_pragma] = STATE(2501), - [sym_preproc_nullable] = STATE(2501), - [sym_preproc_error] = STATE(2501), - [sym_preproc_warning] = STATE(2501), - [sym_preproc_define] = STATE(2501), - [sym_preproc_undef] = STATE(2501), - [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(4236), - [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_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2502] = { - [sym_preproc_region] = STATE(2502), - [sym_preproc_endregion] = STATE(2502), - [sym_preproc_line] = STATE(2502), - [sym_preproc_pragma] = STATE(2502), - [sym_preproc_nullable] = STATE(2502), - [sym_preproc_error] = STATE(2502), - [sym_preproc_warning] = STATE(2502), - [sym_preproc_define] = STATE(2502), - [sym_preproc_undef] = STATE(2502), - [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_preproc_nullable] = STATE(2501), + [sym_preproc_error] = STATE(2501), + [sym_preproc_warning] = STATE(2501), + [sym_preproc_define] = STATE(2501), + [sym_preproc_undef] = STATE(2501), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2502] = { + [sym_preproc_region] = STATE(2502), + [sym_preproc_endregion] = STATE(2502), + [sym_preproc_line] = STATE(2502), + [sym_preproc_pragma] = STATE(2502), + [sym_preproc_nullable] = STATE(2502), + [sym_preproc_error] = STATE(2502), + [sym_preproc_warning] = STATE(2502), + [sym_preproc_define] = STATE(2502), + [sym_preproc_undef] = STATE(2502), + [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), @@ -440476,6 +440559,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2503] = { + [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), @@ -440485,76 +440576,68 @@ 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), - [anon_sym_SEMI] = ACTIONS(4556), - [anon_sym_EQ] = ACTIONS(4558), - [anon_sym_LBRACK] = ACTIONS(4556), - [anon_sym_COLON] = ACTIONS(4556), - [anon_sym_COMMA] = ACTIONS(4556), - [anon_sym_RBRACK] = ACTIONS(4556), - [anon_sym_LPAREN] = ACTIONS(4556), - [anon_sym_RPAREN] = ACTIONS(4556), - [anon_sym_RBRACE] = ACTIONS(4556), - [anon_sym_LT] = ACTIONS(4558), - [anon_sym_GT] = ACTIONS(4558), - [anon_sym_in] = ACTIONS(4558), - [anon_sym_where] = ACTIONS(4556), - [anon_sym_QMARK] = ACTIONS(4558), - [anon_sym_BANG] = ACTIONS(4558), - [anon_sym_PLUS_PLUS] = ACTIONS(4556), - [anon_sym_DASH_DASH] = ACTIONS(4556), - [anon_sym_PLUS] = ACTIONS(4558), - [anon_sym_DASH] = ACTIONS(4558), - [anon_sym_STAR] = ACTIONS(4558), - [anon_sym_SLASH] = ACTIONS(4558), - [anon_sym_PERCENT] = ACTIONS(4558), - [anon_sym_CARET] = ACTIONS(4558), - [anon_sym_PIPE] = ACTIONS(4558), - [anon_sym_AMP] = ACTIONS(4558), - [anon_sym_LT_LT] = ACTIONS(4558), - [anon_sym_GT_GT] = ACTIONS(4558), - [anon_sym_GT_GT_GT] = ACTIONS(4558), - [anon_sym_EQ_EQ] = ACTIONS(4556), - [anon_sym_BANG_EQ] = ACTIONS(4556), - [anon_sym_GT_EQ] = ACTIONS(4556), - [anon_sym_LT_EQ] = ACTIONS(4556), - [anon_sym_DOT] = ACTIONS(4558), - [anon_sym_EQ_GT] = ACTIONS(4556), - [anon_sym_switch] = ACTIONS(4556), - [anon_sym_DOT_DOT] = ACTIONS(4556), - [anon_sym_and] = ACTIONS(4556), - [anon_sym_or] = ACTIONS(4558), - [anon_sym_PLUS_EQ] = ACTIONS(4556), - [anon_sym_DASH_EQ] = ACTIONS(4556), - [anon_sym_STAR_EQ] = ACTIONS(4556), - [anon_sym_SLASH_EQ] = ACTIONS(4556), - [anon_sym_PERCENT_EQ] = ACTIONS(4556), - [anon_sym_AMP_EQ] = ACTIONS(4556), - [anon_sym_CARET_EQ] = ACTIONS(4556), - [anon_sym_PIPE_EQ] = ACTIONS(4556), - [anon_sym_LT_LT_EQ] = ACTIONS(4556), - [anon_sym_GT_GT_EQ] = ACTIONS(4556), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4556), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4556), - [anon_sym_AMP_AMP] = ACTIONS(4556), - [anon_sym_PIPE_PIPE] = ACTIONS(4556), - [sym_op_coalescing] = ACTIONS(4558), - [anon_sym_from] = ACTIONS(4556), - [anon_sym_into] = ACTIONS(4556), - [anon_sym_join] = ACTIONS(4556), - [anon_sym_on] = ACTIONS(4556), - [anon_sym_equals] = ACTIONS(4556), - [anon_sym_let] = ACTIONS(4556), - [anon_sym_orderby] = ACTIONS(4556), - [anon_sym_group] = ACTIONS(4556), - [anon_sym_by] = ACTIONS(4556), - [anon_sym_select] = ACTIONS(4556), - [anon_sym_as] = ACTIONS(4556), - [anon_sym_is] = ACTIONS(4556), - [anon_sym_DASH_GT] = ACTIONS(4556), - [anon_sym_with] = ACTIONS(4556), - [aux_sym_preproc_if_token3] = ACTIONS(4556), - [aux_sym_preproc_else_token1] = ACTIONS(4556), - [aux_sym_preproc_elif_token1] = ACTIONS(4556), + [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), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -440576,76 +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), - [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_BANG] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3982), - [anon_sym_DASH_DASH] = ACTIONS(3982), - [anon_sym_PLUS] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_SLASH] = ACTIONS(3980), - [anon_sym_PERCENT] = ACTIONS(3980), - [anon_sym_CARET] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3980), - [anon_sym_LT_LT] = ACTIONS(3980), - [anon_sym_GT_GT] = ACTIONS(3980), - [anon_sym_GT_GT_GT] = ACTIONS(3980), - [anon_sym_EQ_EQ] = ACTIONS(3982), - [anon_sym_BANG_EQ] = ACTIONS(3982), - [anon_sym_GT_EQ] = ACTIONS(3982), - [anon_sym_LT_EQ] = ACTIONS(3982), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_EQ_GT] = ACTIONS(3982), - [anon_sym_switch] = ACTIONS(3982), - [anon_sym_DOT_DOT] = 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_AMP_AMP] = ACTIONS(3982), - [anon_sym_PIPE_PIPE] = ACTIONS(3982), - [sym_op_coalescing] = ACTIONS(3980), - [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), + [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), @@ -440658,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(2623), - [sym_property_pattern_clause] = STATE(2769), - [sym__variable_designation] = STATE(5286), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5161), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(2505), [sym_preproc_endregion] = STATE(2505), [sym_preproc_line] = STATE(2505), @@ -440675,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(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_COMMA] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [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(4432), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4432), - [sym_discard] = ACTIONS(4534), - [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(4432), - [anon_sym_equals] = ACTIONS(4432), - [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(4432), - [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(4436), + [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), @@ -440758,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(4560), - [anon_sym_EQ] = ACTIONS(4562), - [anon_sym_LBRACK] = ACTIONS(4560), - [anon_sym_COLON] = ACTIONS(4560), - [anon_sym_COMMA] = ACTIONS(4560), - [anon_sym_RBRACK] = ACTIONS(4560), - [anon_sym_LPAREN] = ACTIONS(4560), - [anon_sym_RPAREN] = ACTIONS(4560), - [anon_sym_RBRACE] = ACTIONS(4560), - [anon_sym_LT] = ACTIONS(4562), - [anon_sym_GT] = ACTIONS(4562), - [anon_sym_in] = ACTIONS(4562), - [anon_sym_where] = ACTIONS(4560), - [anon_sym_QMARK] = ACTIONS(4562), - [anon_sym_BANG] = ACTIONS(4562), - [anon_sym_PLUS_PLUS] = ACTIONS(4560), - [anon_sym_DASH_DASH] = ACTIONS(4560), - [anon_sym_PLUS] = ACTIONS(4562), - [anon_sym_DASH] = ACTIONS(4562), - [anon_sym_STAR] = ACTIONS(4562), - [anon_sym_SLASH] = ACTIONS(4562), - [anon_sym_PERCENT] = ACTIONS(4562), - [anon_sym_CARET] = ACTIONS(4562), - [anon_sym_PIPE] = ACTIONS(4562), - [anon_sym_AMP] = ACTIONS(4562), - [anon_sym_LT_LT] = ACTIONS(4562), - [anon_sym_GT_GT] = ACTIONS(4562), - [anon_sym_GT_GT_GT] = ACTIONS(4562), - [anon_sym_EQ_EQ] = ACTIONS(4560), - [anon_sym_BANG_EQ] = ACTIONS(4560), - [anon_sym_GT_EQ] = ACTIONS(4560), - [anon_sym_LT_EQ] = ACTIONS(4560), - [anon_sym_DOT] = ACTIONS(4562), - [anon_sym_EQ_GT] = ACTIONS(4560), - [anon_sym_switch] = ACTIONS(4560), - [anon_sym_DOT_DOT] = ACTIONS(4560), - [anon_sym_and] = ACTIONS(4560), - [anon_sym_or] = ACTIONS(4562), - [anon_sym_PLUS_EQ] = ACTIONS(4560), - [anon_sym_DASH_EQ] = ACTIONS(4560), - [anon_sym_STAR_EQ] = ACTIONS(4560), - [anon_sym_SLASH_EQ] = ACTIONS(4560), - [anon_sym_PERCENT_EQ] = ACTIONS(4560), - [anon_sym_AMP_EQ] = ACTIONS(4560), - [anon_sym_CARET_EQ] = ACTIONS(4560), - [anon_sym_PIPE_EQ] = ACTIONS(4560), - [anon_sym_LT_LT_EQ] = ACTIONS(4560), - [anon_sym_GT_GT_EQ] = ACTIONS(4560), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4560), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4560), - [anon_sym_AMP_AMP] = ACTIONS(4560), - [anon_sym_PIPE_PIPE] = ACTIONS(4560), - [sym_op_coalescing] = ACTIONS(4562), - [anon_sym_from] = ACTIONS(4560), - [anon_sym_into] = ACTIONS(4560), - [anon_sym_join] = ACTIONS(4560), - [anon_sym_on] = ACTIONS(4560), - [anon_sym_equals] = ACTIONS(4560), - [anon_sym_let] = ACTIONS(4560), - [anon_sym_orderby] = ACTIONS(4560), - [anon_sym_group] = ACTIONS(4560), - [anon_sym_by] = ACTIONS(4560), - [anon_sym_select] = ACTIONS(4560), - [anon_sym_as] = ACTIONS(4560), - [anon_sym_is] = ACTIONS(4560), - [anon_sym_DASH_GT] = ACTIONS(4560), - [anon_sym_with] = ACTIONS(4560), - [aux_sym_preproc_if_token3] = ACTIONS(4560), - [aux_sym_preproc_else_token1] = ACTIONS(4560), - [aux_sym_preproc_elif_token1] = ACTIONS(4560), + [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), @@ -440840,14 +440923,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2507] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2324), - [sym_property_pattern_clause] = STATE(2362), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5796), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2507), [sym_preproc_endregion] = STATE(2507), [sym_preproc_line] = STATE(2507), @@ -440857,68 +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), - [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(4236), - [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), + [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), @@ -440940,76 +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), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4026), - [anon_sym_COLON] = ACTIONS(4026), - [anon_sym_COMMA] = ACTIONS(4026), - [anon_sym_RBRACK] = ACTIONS(4026), - [anon_sym_LPAREN] = ACTIONS(4026), - [anon_sym_RPAREN] = ACTIONS(4026), - [anon_sym_RBRACE] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_in] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4026), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_EQ_GT] = ACTIONS(4026), - [anon_sym_switch] = ACTIONS(4026), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4026), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [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_group] = ACTIONS(4026), - [anon_sym_by] = ACTIONS(4026), - [anon_sym_select] = ACTIONS(4026), - [anon_sym_as] = ACTIONS(4026), - [anon_sym_is] = ACTIONS(4026), - [anon_sym_DASH_GT] = ACTIONS(4026), - [anon_sym_with] = ACTIONS(4026), - [aux_sym_preproc_if_token3] = ACTIONS(4026), - [aux_sym_preproc_else_token1] = ACTIONS(4026), - [aux_sym_preproc_elif_token1] = ACTIONS(4026), + [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), @@ -441022,14 +441105,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2509] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2585), - [sym_property_pattern_clause] = STATE(2688), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5796), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -441039,68 +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), - [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(4236), - [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), + [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), @@ -441113,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(2585), - [sym_property_pattern_clause] = STATE(2688), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4988), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2510), [sym_preproc_endregion] = STATE(2510), [sym_preproc_line] = STATE(2510), @@ -441130,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(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(4236), - [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(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), @@ -441213,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(4564), - [anon_sym_EQ] = ACTIONS(4566), - [anon_sym_LBRACK] = ACTIONS(4564), - [anon_sym_COLON] = ACTIONS(4564), - [anon_sym_COMMA] = ACTIONS(4564), - [anon_sym_RBRACK] = ACTIONS(4564), - [anon_sym_LPAREN] = ACTIONS(4564), - [anon_sym_RPAREN] = ACTIONS(4564), - [anon_sym_RBRACE] = ACTIONS(4564), - [anon_sym_LT] = ACTIONS(4566), - [anon_sym_GT] = ACTIONS(4566), - [anon_sym_in] = ACTIONS(4566), - [anon_sym_where] = ACTIONS(4564), - [anon_sym_QMARK] = ACTIONS(4566), - [anon_sym_BANG] = ACTIONS(4566), - [anon_sym_PLUS_PLUS] = ACTIONS(4564), - [anon_sym_DASH_DASH] = ACTIONS(4564), - [anon_sym_PLUS] = ACTIONS(4566), - [anon_sym_DASH] = ACTIONS(4566), - [anon_sym_STAR] = ACTIONS(4566), - [anon_sym_SLASH] = ACTIONS(4566), - [anon_sym_PERCENT] = ACTIONS(4566), - [anon_sym_CARET] = ACTIONS(4566), - [anon_sym_PIPE] = ACTIONS(4566), - [anon_sym_AMP] = ACTIONS(4566), - [anon_sym_LT_LT] = ACTIONS(4566), - [anon_sym_GT_GT] = ACTIONS(4566), - [anon_sym_GT_GT_GT] = ACTIONS(4566), - [anon_sym_EQ_EQ] = ACTIONS(4564), - [anon_sym_BANG_EQ] = ACTIONS(4564), - [anon_sym_GT_EQ] = ACTIONS(4564), - [anon_sym_LT_EQ] = ACTIONS(4564), - [anon_sym_DOT] = ACTIONS(4566), - [anon_sym_EQ_GT] = ACTIONS(4564), - [anon_sym_switch] = ACTIONS(4564), - [anon_sym_DOT_DOT] = ACTIONS(4564), - [anon_sym_and] = ACTIONS(4564), - [anon_sym_or] = ACTIONS(4566), - [anon_sym_PLUS_EQ] = ACTIONS(4564), - [anon_sym_DASH_EQ] = ACTIONS(4564), - [anon_sym_STAR_EQ] = ACTIONS(4564), - [anon_sym_SLASH_EQ] = ACTIONS(4564), - [anon_sym_PERCENT_EQ] = ACTIONS(4564), - [anon_sym_AMP_EQ] = ACTIONS(4564), - [anon_sym_CARET_EQ] = ACTIONS(4564), - [anon_sym_PIPE_EQ] = ACTIONS(4564), - [anon_sym_LT_LT_EQ] = ACTIONS(4564), - [anon_sym_GT_GT_EQ] = ACTIONS(4564), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4564), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4564), - [anon_sym_AMP_AMP] = ACTIONS(4564), - [anon_sym_PIPE_PIPE] = ACTIONS(4564), - [sym_op_coalescing] = ACTIONS(4566), - [anon_sym_from] = ACTIONS(4564), - [anon_sym_into] = ACTIONS(4564), - [anon_sym_join] = ACTIONS(4564), - [anon_sym_on] = ACTIONS(4564), - [anon_sym_equals] = ACTIONS(4564), - [anon_sym_let] = ACTIONS(4564), - [anon_sym_orderby] = ACTIONS(4564), - [anon_sym_group] = ACTIONS(4564), - [anon_sym_by] = ACTIONS(4564), - [anon_sym_select] = ACTIONS(4564), - [anon_sym_as] = ACTIONS(4564), - [anon_sym_is] = ACTIONS(4564), - [anon_sym_DASH_GT] = ACTIONS(4564), - [anon_sym_with] = ACTIONS(4564), - [aux_sym_preproc_if_token3] = ACTIONS(4564), - [aux_sym_preproc_else_token1] = ACTIONS(4564), - [aux_sym_preproc_elif_token1] = ACTIONS(4564), + [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), @@ -441295,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), @@ -441304,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(3970), - [anon_sym_EQ] = ACTIONS(3968), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_COLON] = ACTIONS(3970), - [anon_sym_COMMA] = ACTIONS(3970), - [anon_sym_RBRACK] = ACTIONS(3970), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_RPAREN] = ACTIONS(3970), - [anon_sym_RBRACE] = ACTIONS(3970), - [anon_sym_LT] = ACTIONS(3968), - [anon_sym_GT] = ACTIONS(3968), - [anon_sym_in] = ACTIONS(3968), - [anon_sym_where] = ACTIONS(3970), - [anon_sym_QMARK] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(3968), - [anon_sym_PLUS_PLUS] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(3970), - [anon_sym_PLUS] = ACTIONS(3968), - [anon_sym_DASH] = ACTIONS(3968), - [anon_sym_STAR] = ACTIONS(3968), - [anon_sym_SLASH] = ACTIONS(3968), - [anon_sym_PERCENT] = ACTIONS(3968), - [anon_sym_CARET] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(3968), - [anon_sym_AMP] = ACTIONS(3968), - [anon_sym_LT_LT] = ACTIONS(3968), - [anon_sym_GT_GT] = ACTIONS(3968), - [anon_sym_GT_GT_GT] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3970), - [anon_sym_BANG_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_DOT] = ACTIONS(3968), - [anon_sym_EQ_GT] = ACTIONS(3970), - [anon_sym_switch] = ACTIONS(3970), - [anon_sym_DOT_DOT] = ACTIONS(3970), - [anon_sym_and] = ACTIONS(3970), - [anon_sym_or] = ACTIONS(3968), - [anon_sym_PLUS_EQ] = ACTIONS(3970), - [anon_sym_DASH_EQ] = ACTIONS(3970), - [anon_sym_STAR_EQ] = ACTIONS(3970), - [anon_sym_SLASH_EQ] = ACTIONS(3970), - [anon_sym_PERCENT_EQ] = ACTIONS(3970), - [anon_sym_AMP_EQ] = ACTIONS(3970), - [anon_sym_CARET_EQ] = ACTIONS(3970), - [anon_sym_PIPE_EQ] = ACTIONS(3970), - [anon_sym_LT_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_GT_EQ] = ACTIONS(3970), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3970), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3970), - [anon_sym_AMP_AMP] = ACTIONS(3970), - [anon_sym_PIPE_PIPE] = ACTIONS(3970), - [sym_op_coalescing] = ACTIONS(3968), - [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_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(3970), - [anon_sym_with] = ACTIONS(3970), - [aux_sym_preproc_if_token3] = ACTIONS(3970), - [aux_sym_preproc_else_token1] = ACTIONS(3970), - [aux_sym_preproc_elif_token1] = ACTIONS(3970), + [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), @@ -441386,14 +441469,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2513] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2623), - [sym_property_pattern_clause] = STATE(2769), - [sym__variable_designation] = STATE(5286), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5161), - [sym__reserved_identifier] = STATE(2400), + [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), @@ -441403,68 +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), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_COMMA] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4216), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [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(4432), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4432), - [sym_discard] = ACTIONS(4534), - [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(4432), - [anon_sym_equals] = ACTIONS(4432), - [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(4432), - [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(4436), + [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), @@ -441477,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(2297), - [sym_property_pattern_clause] = STATE(2334), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5796), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2514), [sym_preproc_endregion] = STATE(2514), [sym_preproc_line] = STATE(2514), @@ -441494,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(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), + [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), @@ -441568,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), @@ -441577,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(3978), - [anon_sym_EQ] = ACTIONS(3976), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_COLON] = ACTIONS(3978), - [anon_sym_COMMA] = ACTIONS(3978), - [anon_sym_RBRACK] = ACTIONS(3978), - [anon_sym_LPAREN] = ACTIONS(3978), - [anon_sym_RPAREN] = ACTIONS(3978), - [anon_sym_RBRACE] = ACTIONS(3978), - [anon_sym_LT] = ACTIONS(3976), - [anon_sym_GT] = ACTIONS(3976), - [anon_sym_in] = ACTIONS(3976), - [anon_sym_where] = ACTIONS(3978), - [anon_sym_QMARK] = ACTIONS(3976), - [anon_sym_BANG] = ACTIONS(3976), - [anon_sym_PLUS_PLUS] = ACTIONS(3978), - [anon_sym_DASH_DASH] = ACTIONS(3978), - [anon_sym_PLUS] = ACTIONS(3976), - [anon_sym_DASH] = ACTIONS(3976), - [anon_sym_STAR] = ACTIONS(3976), - [anon_sym_SLASH] = ACTIONS(3976), - [anon_sym_PERCENT] = ACTIONS(3976), - [anon_sym_CARET] = ACTIONS(3976), - [anon_sym_PIPE] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), - [anon_sym_LT_LT] = ACTIONS(3976), - [anon_sym_GT_GT] = ACTIONS(3976), - [anon_sym_GT_GT_GT] = ACTIONS(3976), - [anon_sym_EQ_EQ] = ACTIONS(3978), - [anon_sym_BANG_EQ] = ACTIONS(3978), - [anon_sym_GT_EQ] = ACTIONS(3978), - [anon_sym_LT_EQ] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3976), - [anon_sym_EQ_GT] = ACTIONS(3978), - [anon_sym_switch] = ACTIONS(3978), - [anon_sym_DOT_DOT] = ACTIONS(3978), - [anon_sym_and] = ACTIONS(3978), - [anon_sym_or] = ACTIONS(3976), - [anon_sym_PLUS_EQ] = ACTIONS(3978), - [anon_sym_DASH_EQ] = ACTIONS(3978), - [anon_sym_STAR_EQ] = ACTIONS(3978), - [anon_sym_SLASH_EQ] = ACTIONS(3978), - [anon_sym_PERCENT_EQ] = ACTIONS(3978), - [anon_sym_AMP_EQ] = ACTIONS(3978), - [anon_sym_CARET_EQ] = ACTIONS(3978), - [anon_sym_PIPE_EQ] = ACTIONS(3978), - [anon_sym_LT_LT_EQ] = ACTIONS(3978), - [anon_sym_GT_GT_EQ] = ACTIONS(3978), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3978), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3978), - [anon_sym_AMP_AMP] = ACTIONS(3978), - [anon_sym_PIPE_PIPE] = ACTIONS(3978), - [sym_op_coalescing] = ACTIONS(3976), - [anon_sym_from] = ACTIONS(3978), - [anon_sym_into] = ACTIONS(3978), - [anon_sym_join] = ACTIONS(3978), - [anon_sym_on] = ACTIONS(3978), - [anon_sym_equals] = ACTIONS(3978), - [anon_sym_let] = ACTIONS(3978), - [anon_sym_orderby] = ACTIONS(3978), - [anon_sym_group] = ACTIONS(3978), - [anon_sym_by] = ACTIONS(3978), - [anon_sym_select] = ACTIONS(3978), - [anon_sym_as] = ACTIONS(3978), - [anon_sym_is] = ACTIONS(3978), - [anon_sym_DASH_GT] = ACTIONS(3978), - [anon_sym_with] = ACTIONS(3978), - [aux_sym_preproc_if_token3] = ACTIONS(3978), - [aux_sym_preproc_else_token1] = ACTIONS(3978), - [aux_sym_preproc_elif_token1] = ACTIONS(3978), + [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), @@ -441659,6 +441742,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2516] = { + [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), @@ -441668,256 +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), - [anon_sym_SEMI] = ACTIONS(3974), - [anon_sym_EQ] = ACTIONS(3972), - [anon_sym_LBRACK] = ACTIONS(3974), - [anon_sym_COLON] = ACTIONS(3974), - [anon_sym_COMMA] = ACTIONS(3974), - [anon_sym_RBRACK] = ACTIONS(3974), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_RPAREN] = ACTIONS(3974), - [anon_sym_RBRACE] = ACTIONS(3974), - [anon_sym_LT] = ACTIONS(3972), - [anon_sym_GT] = ACTIONS(3972), - [anon_sym_in] = ACTIONS(3972), - [anon_sym_where] = ACTIONS(3974), - [anon_sym_QMARK] = ACTIONS(3972), - [anon_sym_BANG] = ACTIONS(3972), - [anon_sym_PLUS_PLUS] = ACTIONS(3974), - [anon_sym_DASH_DASH] = ACTIONS(3974), - [anon_sym_PLUS] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3972), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_SLASH] = ACTIONS(3972), - [anon_sym_PERCENT] = ACTIONS(3972), - [anon_sym_CARET] = ACTIONS(3972), - [anon_sym_PIPE] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3972), - [anon_sym_LT_LT] = ACTIONS(3972), - [anon_sym_GT_GT] = ACTIONS(3972), - [anon_sym_GT_GT_GT] = ACTIONS(3972), - [anon_sym_EQ_EQ] = ACTIONS(3974), - [anon_sym_BANG_EQ] = ACTIONS(3974), - [anon_sym_GT_EQ] = ACTIONS(3974), - [anon_sym_LT_EQ] = ACTIONS(3974), - [anon_sym_DOT] = ACTIONS(3972), - [anon_sym_EQ_GT] = ACTIONS(3974), - [anon_sym_switch] = ACTIONS(3974), - [anon_sym_DOT_DOT] = ACTIONS(3974), - [anon_sym_and] = ACTIONS(3974), - [anon_sym_or] = ACTIONS(3972), - [anon_sym_PLUS_EQ] = ACTIONS(3974), - [anon_sym_DASH_EQ] = ACTIONS(3974), - [anon_sym_STAR_EQ] = ACTIONS(3974), - [anon_sym_SLASH_EQ] = ACTIONS(3974), - [anon_sym_PERCENT_EQ] = ACTIONS(3974), - [anon_sym_AMP_EQ] = ACTIONS(3974), - [anon_sym_CARET_EQ] = ACTIONS(3974), - [anon_sym_PIPE_EQ] = ACTIONS(3974), - [anon_sym_LT_LT_EQ] = ACTIONS(3974), - [anon_sym_GT_GT_EQ] = ACTIONS(3974), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3974), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3974), - [anon_sym_AMP_AMP] = ACTIONS(3974), - [anon_sym_PIPE_PIPE] = ACTIONS(3974), - [sym_op_coalescing] = ACTIONS(3972), - [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_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(3974), - [anon_sym_with] = ACTIONS(3974), - [aux_sym_preproc_if_token3] = ACTIONS(3974), - [aux_sym_preproc_else_token1] = ACTIONS(3974), - [aux_sym_preproc_elif_token1] = ACTIONS(3974), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2517] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2668), - [sym_property_pattern_clause] = STATE(2906), - [sym__variable_designation] = STATE(5502), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5482), - [sym__reserved_identifier] = STATE(3741), - [sym_preproc_region] = STATE(2517), - [sym_preproc_endregion] = STATE(2517), - [sym_preproc_line] = STATE(2517), - [sym_preproc_pragma] = STATE(2517), - [sym_preproc_nullable] = STATE(2517), - [sym_preproc_error] = STATE(2517), - [sym_preproc_warning] = STATE(2517), - [sym_preproc_define] = STATE(2517), - [sym_preproc_undef] = STATE(2517), - [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), + [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(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_notnull] = ACTIONS(4425), + [anon_sym_unmanaged] = ACTIONS(4425), [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), + [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(4228), - [sym_discard] = ACTIONS(4568), - [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_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_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(4228), + [anon_sym_into] = ACTIONS(4425), [anon_sym_join] = ACTIONS(4224), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), + [anon_sym_on] = ACTIONS(4425), + [anon_sym_equals] = ACTIONS(4425), [anon_sym_let] = ACTIONS(4224), [anon_sym_orderby] = ACTIONS(4224), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), + [anon_sym_ascending] = ACTIONS(4224), + [anon_sym_descending] = ACTIONS(4224), [anon_sym_group] = ACTIONS(4224), - [anon_sym_by] = ACTIONS(4228), + [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(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), - }, - [2518] = { - [sym__name] = STATE(5079), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_ref_type] = STATE(3540), - [sym__scoped_base_type] = STATE(3541), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), - [sym_preproc_region] = STATE(2518), - [sym_preproc_endregion] = STATE(2518), - [sym_preproc_line] = STATE(2518), - [sym_preproc_pragma] = STATE(2518), - [sym_preproc_nullable] = STATE(2518), - [sym_preproc_error] = STATE(2518), - [sym_preproc_warning] = STATE(2518), - [sym_preproc_define] = STATE(2518), - [sym_preproc_undef] = STATE(2518), - [sym__identifier_token] = ACTIONS(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4151), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4151), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4155), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4155), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -441929,73 +441832,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2519] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2695), - [sym_property_pattern_clause] = STATE(3048), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4763), - [sym__reserved_identifier] = STATE(4707), - [sym_preproc_region] = STATE(2519), - [sym_preproc_endregion] = STATE(2519), - [sym_preproc_line] = STATE(2519), - [sym_preproc_pragma] = STATE(2519), - [sym_preproc_nullable] = STATE(2519), - [sym_preproc_error] = STATE(2519), - [sym_preproc_warning] = STATE(2519), - [sym_preproc_define] = STATE(2519), - [sym_preproc_undef] = STATE(2519), + [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), + [sym_preproc_pragma] = STATE(2517), + [sym_preproc_nullable] = STATE(2517), + [sym_preproc_error] = STATE(2517), + [sym_preproc_warning] = STATE(2517), + [sym_preproc_define] = STATE(2517), + [sym_preproc_undef] = STATE(2517), [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(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(4224), - [anon_sym_GT] = ACTIONS(4224), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_QMARK] = ACTIONS(3696), [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_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(4224), + [anon_sym_switch] = ACTIONS(3696), [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_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(4224), + [anon_sym_into] = ACTIONS(4210), [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4224), + [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), @@ -442003,11 +441906,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(4224), - [anon_sym_is] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4222), - [anon_sym_with] = ACTIONS(4224), - [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), @@ -442019,106 +441922,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2520] = { - [sym_preproc_region] = STATE(2520), - [sym_preproc_endregion] = STATE(2520), - [sym_preproc_line] = STATE(2520), - [sym_preproc_pragma] = STATE(2520), - [sym_preproc_nullable] = STATE(2520), - [sym_preproc_error] = STATE(2520), - [sym_preproc_warning] = STATE(2520), - [sym_preproc_define] = STATE(2520), - [sym_preproc_undef] = STATE(2520), - [anon_sym_SEMI] = ACTIONS(4552), - [anon_sym_EQ] = ACTIONS(4554), - [anon_sym_LBRACK] = ACTIONS(4552), - [anon_sym_COLON] = ACTIONS(4552), - [anon_sym_COMMA] = ACTIONS(4552), - [anon_sym_RBRACK] = ACTIONS(4552), - [anon_sym_LPAREN] = ACTIONS(4552), - [anon_sym_RPAREN] = ACTIONS(4552), - [anon_sym_RBRACE] = ACTIONS(4552), - [anon_sym_LT] = ACTIONS(4554), - [anon_sym_GT] = ACTIONS(4554), - [anon_sym_in] = ACTIONS(4552), - [anon_sym_where] = ACTIONS(4552), - [anon_sym_QMARK] = ACTIONS(4554), - [anon_sym_BANG] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(4552), - [anon_sym_DASH_DASH] = ACTIONS(4552), - [anon_sym_PLUS] = ACTIONS(4554), - [anon_sym_DASH] = ACTIONS(4554), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_CARET] = ACTIONS(4554), - [anon_sym_PIPE] = ACTIONS(4554), - [anon_sym_AMP] = ACTIONS(4554), - [anon_sym_LT_LT] = ACTIONS(4554), - [anon_sym_GT_GT] = ACTIONS(4554), - [anon_sym_GT_GT_GT] = ACTIONS(4554), - [anon_sym_EQ_EQ] = ACTIONS(4552), - [anon_sym_BANG_EQ] = ACTIONS(4552), - [anon_sym_GT_EQ] = ACTIONS(4552), - [anon_sym_LT_EQ] = ACTIONS(4552), - [anon_sym_DOT] = ACTIONS(4554), - [anon_sym_EQ_GT] = ACTIONS(4552), - [anon_sym_switch] = ACTIONS(4552), - [anon_sym_DOT_DOT] = ACTIONS(4552), - [anon_sym_and] = ACTIONS(4552), - [anon_sym_or] = ACTIONS(4554), - [anon_sym_PLUS_EQ] = ACTIONS(4552), - [anon_sym_DASH_EQ] = ACTIONS(4552), - [anon_sym_STAR_EQ] = ACTIONS(4552), - [anon_sym_SLASH_EQ] = ACTIONS(4552), - [anon_sym_PERCENT_EQ] = ACTIONS(4552), - [anon_sym_AMP_EQ] = ACTIONS(4552), - [anon_sym_CARET_EQ] = ACTIONS(4552), - [anon_sym_PIPE_EQ] = ACTIONS(4552), - [anon_sym_LT_LT_EQ] = ACTIONS(4552), - [anon_sym_GT_GT_EQ] = ACTIONS(4552), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4552), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4552), - [anon_sym_AMP_AMP] = ACTIONS(4552), - [anon_sym_PIPE_PIPE] = ACTIONS(4552), - [sym_op_coalescing] = ACTIONS(4554), - [anon_sym_from] = ACTIONS(4552), - [anon_sym_join] = ACTIONS(4552), - [anon_sym_on] = ACTIONS(4552), - [anon_sym_equals] = ACTIONS(4552), - [anon_sym_let] = ACTIONS(4552), - [anon_sym_orderby] = ACTIONS(4552), - [anon_sym_group] = ACTIONS(4552), - [anon_sym_by] = ACTIONS(4552), - [anon_sym_select] = ACTIONS(4552), - [anon_sym_as] = ACTIONS(4552), - [anon_sym_is] = ACTIONS(4552), - [anon_sym_DASH_GT] = ACTIONS(4552), - [anon_sym_with] = ACTIONS(4552), - [aux_sym_preproc_if_token3] = ACTIONS(4552), - [aux_sym_preproc_else_token1] = ACTIONS(4552), - [aux_sym_preproc_elif_token1] = ACTIONS(4552), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [2518] = { + [sym_preproc_region] = STATE(2518), + [sym_preproc_endregion] = STATE(2518), + [sym_preproc_line] = STATE(2518), + [sym_preproc_pragma] = STATE(2518), + [sym_preproc_nullable] = STATE(2518), + [sym_preproc_error] = STATE(2518), + [sym_preproc_warning] = STATE(2518), + [sym_preproc_define] = STATE(2518), + [sym_preproc_undef] = STATE(2518), + [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(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), }, - [2521] = { - [sym_preproc_region] = STATE(2521), - [sym_preproc_endregion] = STATE(2521), - [sym_preproc_line] = STATE(2521), - [sym_preproc_pragma] = STATE(2521), - [sym_preproc_nullable] = STATE(2521), - [sym_preproc_error] = STATE(2521), - [sym_preproc_warning] = STATE(2521), - [sym_preproc_define] = STATE(2521), - [sym_preproc_undef] = STATE(2521), + [2519] = { + [sym_preproc_region] = STATE(2519), + [sym_preproc_endregion] = STATE(2519), + [sym_preproc_line] = STATE(2519), + [sym_preproc_pragma] = STATE(2519), + [sym_preproc_nullable] = STATE(2519), + [sym_preproc_error] = STATE(2519), + [sym_preproc_warning] = STATE(2519), + [sym_preproc_define] = STATE(2519), + [sym_preproc_undef] = STATE(2519), [sym__identifier_token] = ACTIONS(4572), [anon_sym_alias] = ACTIONS(4572), [anon_sym_global] = ACTIONS(4572), @@ -442135,21 +442038,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(4572), [anon_sym_unmanaged] = ACTIONS(4572), [anon_sym_checked] = ACTIONS(4572), - [anon_sym_BANG] = ACTIONS(4574), [anon_sym_TILDE] = 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_PLUS] = ACTIONS(4572), - [anon_sym_DASH] = ACTIONS(4572), - [anon_sym_STAR] = ACTIONS(4574), - [anon_sym_CARET] = ACTIONS(4574), - [anon_sym_AMP] = 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), @@ -442158,6 +442052,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -442199,85 +442102,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_raw_start] = ACTIONS(4574), [sym_raw_string_start] = ACTIONS(4574), }, - [2522] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2656), - [sym_property_pattern_clause] = STATE(2805), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4988), - [sym__reserved_identifier] = STATE(4707), - [sym_preproc_region] = STATE(2522), - [sym_preproc_endregion] = STATE(2522), - [sym_preproc_line] = STATE(2522), - [sym_preproc_pragma] = STATE(2522), - [sym_preproc_nullable] = STATE(2522), - [sym_preproc_error] = STATE(2522), - [sym_preproc_warning] = STATE(2522), - [sym_preproc_define] = STATE(2522), - [sym_preproc_undef] = STATE(2522), + [2520] = { + [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), + [sym_preproc_pragma] = STATE(2520), + [sym_preproc_nullable] = STATE(2520), + [sym_preproc_error] = STATE(2520), + [sym_preproc_warning] = STATE(2520), + [sym_preproc_define] = STATE(2520), + [sym_preproc_undef] = STATE(2520), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2521] = { + [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), + [sym_preproc_pragma] = STATE(2521), + [sym_preproc_nullable] = STATE(2521), + [sym_preproc_error] = STATE(2521), + [sym_preproc_warning] = STATE(2521), + [sym_preproc_define] = STATE(2521), + [sym_preproc_undef] = STATE(2521), [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(4236), - [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2522] = { + [sym_preproc_region] = STATE(2522), + [sym_preproc_endregion] = STATE(2522), + [sym_preproc_line] = STATE(2522), + [sym_preproc_pragma] = STATE(2522), + [sym_preproc_nullable] = STATE(2522), + [sym_preproc_error] = STATE(2522), + [sym_preproc_warning] = STATE(2522), + [sym_preproc_define] = STATE(2522), + [sym_preproc_undef] = STATE(2522), + [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), @@ -442290,14 +442373,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2523] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2664), - [sym_property_pattern_clause] = STATE(2875), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4988), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2523), [sym_preproc_endregion] = STATE(2523), [sym_preproc_line] = STATE(2523), @@ -442307,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(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(4236), - [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(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), + [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), @@ -442380,15 +442463,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2524] = { - [sym__name] = STATE(5079), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_ref_type] = STATE(3540), - [sym__scoped_base_type] = STATE(3541), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), + [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), @@ -442398,66 +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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4576), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4151), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4151), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4155), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4155), - [anon_sym_select] = ACTIONS(4151), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4158), + [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(4224), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4224), + [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(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(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(4220), + [anon_sym_with] = ACTIONS(4224), + [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), @@ -442495,21 +442578,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_notnull] = ACTIONS(4578), [anon_sym_unmanaged] = ACTIONS(4578), [anon_sym_checked] = ACTIONS(4578), - [anon_sym_BANG] = ACTIONS(4580), [anon_sym_TILDE] = 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_PLUS] = ACTIONS(4578), - [anon_sym_DASH] = ACTIONS(4578), - [anon_sym_STAR] = ACTIONS(4580), - [anon_sym_CARET] = ACTIONS(4580), - [anon_sym_AMP] = 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), @@ -442518,6 +442592,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -442585,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), @@ -442608,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), @@ -442659,71 +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), - [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), + [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), @@ -442734,17 +442821,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), }, [2528] = { - [sym_property_pattern_clause] = STATE(2638), - [sym__variable_designation] = STATE(5778), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym_identifier] = STATE(5768), - [sym__reserved_identifier] = STATE(5564), + [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), @@ -442754,91 +442840,87 @@ 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(4404), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_COLON] = ACTIONS(4246), - [anon_sym_COMMA] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4408), - [anon_sym_file] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4406), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4406), - [anon_sym_var] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4406), - [sym_discard] = ACTIONS(4410), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4406), - [anon_sym_into] = ACTIONS(4406), - [anon_sym_join] = ACTIONS(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4412), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4246), + [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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2529] = { - [sym__name] = STATE(4157), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_ref_type] = STATE(4018), - [sym__scoped_base_type] = STATE(4086), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -442848,66 +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(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4590), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4515), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4232), + [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), @@ -442920,6 +443003,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2530] = { + [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), @@ -442929,71 +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(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(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(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(4188), + [anon_sym_equals] = ACTIONS(4188), + [anon_sym_let] = ACTIONS(4228), + [anon_sym_orderby] = ACTIONS(4228), + [anon_sym_ascending] = ACTIONS(4188), + [anon_sym_descending] = ACTIONS(4188), + [anon_sym_group] = ACTIONS(4228), + [anon_sym_by] = ACTIONS(4188), + [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(4195), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -443004,21 +443091,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4594), - [sym_interpolation_verbatim_start] = ACTIONS(4594), - [sym_interpolation_raw_start] = ACTIONS(4594), - [sym_raw_string_start] = ACTIONS(4594), }, [2531] = { - [sym__name] = STATE(4157), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_ref_type] = STATE(4018), - [sym__scoped_base_type] = STATE(4086), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -443028,78 +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), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4596), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(4228), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4228), - [anon_sym_on] = ACTIONS(4515), - [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(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [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(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), @@ -443109,165 +443200,153 @@ 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(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_BANG] = ACTIONS(4600), - [anon_sym_TILDE] = 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_PLUS] = ACTIONS(4598), - [anon_sym_DASH] = ACTIONS(4598), - [anon_sym_STAR] = ACTIONS(4600), - [anon_sym_CARET] = ACTIONS(4600), - [anon_sym_AMP] = ACTIONS(4600), - [anon_sym_this] = ACTIONS(4598), - [anon_sym_scoped] = ACTIONS(4598), - [anon_sym_base] = ACTIONS(4598), - [anon_sym_var] = ACTIONS(4598), - [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_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), - }, - [2533] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2655), - [sym_property_pattern_clause] = STATE(2809), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4763), - [sym__reserved_identifier] = STATE(4707), - [sym_preproc_region] = STATE(2533), - [sym_preproc_endregion] = STATE(2533), - [sym_preproc_line] = STATE(2533), - [sym_preproc_pragma] = STATE(2533), - [sym_preproc_nullable] = STATE(2533), - [sym_preproc_error] = STATE(2533), - [sym_preproc_warning] = STATE(2533), - [sym_preproc_define] = STATE(2533), - [sym_preproc_undef] = STATE(2533), [sym__identifier_token] = ACTIONS(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(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), + [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(4210), - [anon_sym_orderby] = 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_by] = ACTIONS(4224), - [anon_sym_select] = 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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2533] = { + [sym_preproc_region] = STATE(2533), + [sym_preproc_endregion] = STATE(2533), + [sym_preproc_line] = STATE(2533), + [sym_preproc_pragma] = STATE(2533), + [sym_preproc_nullable] = STATE(2533), + [sym_preproc_error] = STATE(2533), + [sym_preproc_warning] = STATE(2533), + [sym_preproc_define] = STATE(2533), + [sym_preproc_undef] = STATE(2533), + [sym__identifier_token] = ACTIONS(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), @@ -443278,13 +443357,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(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(2639), - [sym__variable_designation] = STATE(5771), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym_identifier] = STATE(5768), - [sym__reserved_identifier] = STATE(5564), + [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), @@ -443294,69 +443377,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2534), [sym_preproc_define] = STATE(2534), [sym_preproc_undef] = STATE(2534), - [sym__identifier_token] = ACTIONS(4404), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), + [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(4408), - [anon_sym_file] = ACTIONS(4406), + [anon_sym_LBRACE] = ACTIONS(4417), + [anon_sym_file] = ACTIONS(4415), [anon_sym_LT] = ACTIONS(4252), [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4406), + [anon_sym_where] = ACTIONS(4415), [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [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(4406), - [anon_sym_var] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), + [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(4406), - [sym_discard] = ACTIONS(4410), + [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(4406), - [anon_sym_into] = ACTIONS(4406), - [anon_sym_join] = ACTIONS(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), + [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(4412), + [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), @@ -443370,14 +443453,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_interpolation_close_brace] = ACTIONS(4250), }, [2535] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2672), - [sym_property_pattern_clause] = STATE(2964), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4763), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -443390,64 +443474,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(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), + [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(4224), - [anon_sym_GT] = ACTIONS(4224), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_QMARK] = ACTIONS(3696), [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_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(4224), + [anon_sym_switch] = ACTIONS(3696), [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_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(4224), + [anon_sym_into] = ACTIONS(4210), [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4224), + [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_by] = ACTIONS(4498), [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_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), @@ -443469,95 +443552,95 @@ 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(4602), - [anon_sym_alias] = ACTIONS(4602), - [anon_sym_global] = ACTIONS(4602), - [anon_sym_static] = ACTIONS(4602), - [anon_sym_LBRACK] = ACTIONS(4604), - [anon_sym_LPAREN] = ACTIONS(4604), - [anon_sym_ref] = ACTIONS(4602), - [anon_sym_LBRACE] = ACTIONS(4604), - [anon_sym_delegate] = ACTIONS(4602), - [anon_sym_async] = ACTIONS(4602), - [anon_sym_file] = ACTIONS(4602), - [anon_sym_new] = ACTIONS(4602), - [anon_sym_where] = ACTIONS(4602), - [anon_sym_notnull] = ACTIONS(4602), - [anon_sym_unmanaged] = ACTIONS(4602), - [anon_sym_checked] = ACTIONS(4602), - [anon_sym_BANG] = ACTIONS(4604), - [anon_sym_TILDE] = ACTIONS(4604), - [anon_sym_PLUS_PLUS] = ACTIONS(4604), - [anon_sym_DASH_DASH] = ACTIONS(4604), - [anon_sym_true] = ACTIONS(4602), - [anon_sym_false] = ACTIONS(4602), - [anon_sym_PLUS] = ACTIONS(4602), - [anon_sym_DASH] = ACTIONS(4602), - [anon_sym_STAR] = ACTIONS(4604), - [anon_sym_CARET] = ACTIONS(4604), - [anon_sym_AMP] = ACTIONS(4604), - [anon_sym_this] = ACTIONS(4602), - [anon_sym_scoped] = ACTIONS(4602), - [anon_sym_base] = ACTIONS(4602), - [anon_sym_var] = ACTIONS(4602), - [sym_predefined_type] = ACTIONS(4602), - [anon_sym_unchecked] = ACTIONS(4602), - [anon_sym_yield] = ACTIONS(4602), - [anon_sym_default] = ACTIONS(4602), - [anon_sym_throw] = ACTIONS(4602), - [anon_sym_when] = ACTIONS(4602), - [anon_sym_await] = ACTIONS(4602), - [anon_sym_DOT_DOT] = ACTIONS(4604), - [anon_sym_from] = ACTIONS(4602), - [anon_sym_into] = ACTIONS(4602), - [anon_sym_join] = ACTIONS(4602), - [anon_sym_on] = ACTIONS(4602), - [anon_sym_equals] = ACTIONS(4602), - [anon_sym_let] = ACTIONS(4602), - [anon_sym_orderby] = ACTIONS(4602), - [anon_sym_ascending] = ACTIONS(4602), - [anon_sym_descending] = ACTIONS(4602), - [anon_sym_group] = ACTIONS(4602), - [anon_sym_by] = ACTIONS(4602), - [anon_sym_select] = ACTIONS(4602), - [anon_sym_stackalloc] = ACTIONS(4602), - [anon_sym_sizeof] = ACTIONS(4602), - [anon_sym_typeof] = ACTIONS(4602), - [anon_sym___makeref] = ACTIONS(4602), - [anon_sym___reftype] = ACTIONS(4602), - [anon_sym___refvalue] = ACTIONS(4602), - [sym_null_literal] = ACTIONS(4602), - [anon_sym_SQUOTE] = ACTIONS(4604), - [sym_integer_literal] = ACTIONS(4602), - [sym_real_literal] = ACTIONS(4604), - [anon_sym_DQUOTE] = ACTIONS(4604), - [sym_verbatim_string_literal] = ACTIONS(4604), - [sym_grit_metavariable] = ACTIONS(4604), - [aux_sym_preproc_if_token1] = ACTIONS(4604), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4604), - [sym_interpolation_verbatim_start] = ACTIONS(4604), - [sym_interpolation_raw_start] = ACTIONS(4604), - [sym_raw_string_start] = ACTIONS(4604), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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(2656), - [sym_property_pattern_clause] = STATE(2805), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4988), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -443567,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(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(4236), - [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_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(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), @@ -443640,6 +443723,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2538] = { + [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), @@ -443649,87 +443740,87 @@ 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(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(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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2539] = { + [sym_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), @@ -443739,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(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(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), @@ -443829,75 +443921,66 @@ 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), - [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(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), @@ -443910,14 +443993,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2541] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2655), - [sym_property_pattern_clause] = STATE(2809), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4763), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -443927,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(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), + [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), @@ -444000,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(2681), - [sym_property_pattern_clause] = STATE(2946), - [sym__variable_designation] = STATE(5502), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5482), - [sym__reserved_identifier] = STATE(3393), [sym_preproc_region] = STATE(2542), [sym_preproc_endregion] = STATE(2542), [sym_preproc_line] = STATE(2542), @@ -444017,67 +444092,71 @@ 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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_LT] = ACTIONS(4224), - [anon_sym_GT] = ACTIONS(4224), - [anon_sym_where] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [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(4151), - [anon_sym_var] = ACTIONS(4151), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_switch] = ACTIONS(4224), - [anon_sym_when] = ACTIONS(4151), - [sym_discard] = ACTIONS(4568), - [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(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4224), - [anon_sym_orderby] = ACTIONS(4224), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4224), - [anon_sym_by] = ACTIONS(4151), - [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(4158), + [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), @@ -444088,8 +444167,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(4600), + [sym_interpolation_verbatim_start] = ACTIONS(4600), + [sym_interpolation_raw_start] = ACTIONS(4600), + [sym_raw_string_start] = ACTIONS(4600), }, [2543] = { + [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), @@ -444099,87 +444190,88 @@ 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(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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [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), @@ -444189,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(4544), - [anon_sym_EQ] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(4544), - [anon_sym_COLON] = ACTIONS(4544), - [anon_sym_COMMA] = ACTIONS(4544), - [anon_sym_RBRACK] = ACTIONS(4544), - [anon_sym_LPAREN] = ACTIONS(4544), - [anon_sym_RPAREN] = ACTIONS(4544), - [anon_sym_RBRACE] = ACTIONS(4544), - [anon_sym_LT] = ACTIONS(4546), - [anon_sym_GT] = ACTIONS(4546), - [anon_sym_in] = ACTIONS(4544), - [anon_sym_where] = ACTIONS(4544), - [anon_sym_QMARK] = ACTIONS(4546), - [anon_sym_BANG] = ACTIONS(4546), - [anon_sym_PLUS_PLUS] = ACTIONS(4544), - [anon_sym_DASH_DASH] = ACTIONS(4544), - [anon_sym_PLUS] = ACTIONS(4546), - [anon_sym_DASH] = ACTIONS(4546), - [anon_sym_STAR] = ACTIONS(4546), - [anon_sym_SLASH] = ACTIONS(4546), - [anon_sym_PERCENT] = ACTIONS(4546), - [anon_sym_CARET] = ACTIONS(4546), - [anon_sym_PIPE] = ACTIONS(4546), - [anon_sym_AMP] = ACTIONS(4546), - [anon_sym_LT_LT] = ACTIONS(4546), - [anon_sym_GT_GT] = ACTIONS(4546), - [anon_sym_GT_GT_GT] = ACTIONS(4546), - [anon_sym_EQ_EQ] = ACTIONS(4544), - [anon_sym_BANG_EQ] = ACTIONS(4544), - [anon_sym_GT_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4544), - [anon_sym_DOT] = ACTIONS(4546), - [anon_sym_EQ_GT] = ACTIONS(4544), - [anon_sym_switch] = ACTIONS(4544), - [anon_sym_DOT_DOT] = ACTIONS(4544), - [anon_sym_and] = ACTIONS(4544), - [anon_sym_or] = ACTIONS(4546), - [anon_sym_PLUS_EQ] = ACTIONS(4544), - [anon_sym_DASH_EQ] = ACTIONS(4544), - [anon_sym_STAR_EQ] = ACTIONS(4544), - [anon_sym_SLASH_EQ] = ACTIONS(4544), - [anon_sym_PERCENT_EQ] = ACTIONS(4544), - [anon_sym_AMP_EQ] = ACTIONS(4544), - [anon_sym_CARET_EQ] = ACTIONS(4544), - [anon_sym_PIPE_EQ] = ACTIONS(4544), - [anon_sym_LT_LT_EQ] = ACTIONS(4544), - [anon_sym_GT_GT_EQ] = ACTIONS(4544), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4544), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4544), - [anon_sym_AMP_AMP] = ACTIONS(4544), - [anon_sym_PIPE_PIPE] = ACTIONS(4544), - [sym_op_coalescing] = ACTIONS(4546), - [anon_sym_from] = ACTIONS(4544), - [anon_sym_join] = ACTIONS(4544), - [anon_sym_on] = ACTIONS(4544), - [anon_sym_equals] = ACTIONS(4544), - [anon_sym_let] = ACTIONS(4544), - [anon_sym_orderby] = ACTIONS(4544), - [anon_sym_group] = ACTIONS(4544), - [anon_sym_by] = ACTIONS(4544), - [anon_sym_select] = ACTIONS(4544), - [anon_sym_as] = ACTIONS(4544), - [anon_sym_is] = ACTIONS(4544), - [anon_sym_DASH_GT] = ACTIONS(4544), - [anon_sym_with] = ACTIONS(4544), - [aux_sym_preproc_if_token3] = ACTIONS(4544), - [aux_sym_preproc_else_token1] = ACTIONS(4544), - [aux_sym_preproc_elif_token1] = ACTIONS(4544), + [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), @@ -444270,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(2668), - [sym_property_pattern_clause] = STATE(2906), - [sym__variable_designation] = STATE(5502), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5482), - [sym__reserved_identifier] = STATE(3741), [sym_preproc_region] = STATE(2545), [sym_preproc_endregion] = STATE(2545), [sym_preproc_line] = STATE(2545), @@ -444287,87 +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(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(4568), - [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), + [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_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2675), - [sym_property_pattern_clause] = STATE(2919), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4988), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -444377,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(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(4236), - [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(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(7657), - [sym_positional_pattern_clause] = STATE(2672), - [sym_property_pattern_clause] = STATE(2964), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4763), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -444467,67 +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(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), + [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), @@ -444540,11 +444623,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2548] = { - [sym_property_pattern_clause] = STATE(2620), - [sym__variable_designation] = STATE(5771), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym_identifier] = STATE(5768), - [sym__reserved_identifier] = STATE(5564), [sym_preproc_region] = STATE(2548), [sym_preproc_endregion] = STATE(2548), [sym_preproc_line] = STATE(2548), @@ -444554,82 +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(4404), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4408), - [anon_sym_file] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4406), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [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(4406), - [anon_sym_var] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4406), - [sym_discard] = ACTIONS(4410), - [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(4406), - [anon_sym_into] = ACTIONS(4252), - [anon_sym_join] = ACTIONS(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), - [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(4412), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4250), + [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), @@ -444639,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(4540), - [anon_sym_EQ] = ACTIONS(4542), - [anon_sym_LBRACK] = ACTIONS(4540), - [anon_sym_COLON] = ACTIONS(4540), - [anon_sym_COMMA] = ACTIONS(4540), - [anon_sym_RBRACK] = ACTIONS(4540), - [anon_sym_LPAREN] = ACTIONS(4540), - [anon_sym_RPAREN] = ACTIONS(4540), - [anon_sym_RBRACE] = ACTIONS(4540), - [anon_sym_LT] = ACTIONS(4542), - [anon_sym_GT] = ACTIONS(4542), - [anon_sym_in] = ACTIONS(4540), - [anon_sym_where] = ACTIONS(4540), - [anon_sym_QMARK] = ACTIONS(4542), - [anon_sym_BANG] = ACTIONS(4542), - [anon_sym_PLUS_PLUS] = ACTIONS(4540), - [anon_sym_DASH_DASH] = ACTIONS(4540), - [anon_sym_PLUS] = ACTIONS(4542), - [anon_sym_DASH] = ACTIONS(4542), - [anon_sym_STAR] = ACTIONS(4542), - [anon_sym_SLASH] = ACTIONS(4542), - [anon_sym_PERCENT] = ACTIONS(4542), - [anon_sym_CARET] = ACTIONS(4542), - [anon_sym_PIPE] = ACTIONS(4542), - [anon_sym_AMP] = ACTIONS(4542), - [anon_sym_LT_LT] = ACTIONS(4542), - [anon_sym_GT_GT] = ACTIONS(4542), - [anon_sym_GT_GT_GT] = ACTIONS(4542), - [anon_sym_EQ_EQ] = ACTIONS(4540), - [anon_sym_BANG_EQ] = ACTIONS(4540), - [anon_sym_GT_EQ] = ACTIONS(4540), - [anon_sym_LT_EQ] = ACTIONS(4540), - [anon_sym_DOT] = ACTIONS(4542), - [anon_sym_EQ_GT] = ACTIONS(4540), - [anon_sym_switch] = ACTIONS(4540), - [anon_sym_DOT_DOT] = ACTIONS(4540), - [anon_sym_and] = ACTIONS(4540), - [anon_sym_or] = ACTIONS(4542), - [anon_sym_PLUS_EQ] = ACTIONS(4540), - [anon_sym_DASH_EQ] = ACTIONS(4540), - [anon_sym_STAR_EQ] = ACTIONS(4540), - [anon_sym_SLASH_EQ] = ACTIONS(4540), - [anon_sym_PERCENT_EQ] = ACTIONS(4540), - [anon_sym_AMP_EQ] = ACTIONS(4540), - [anon_sym_CARET_EQ] = ACTIONS(4540), - [anon_sym_PIPE_EQ] = ACTIONS(4540), - [anon_sym_LT_LT_EQ] = ACTIONS(4540), - [anon_sym_GT_GT_EQ] = ACTIONS(4540), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4540), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4540), - [anon_sym_AMP_AMP] = ACTIONS(4540), - [anon_sym_PIPE_PIPE] = ACTIONS(4540), - [sym_op_coalescing] = ACTIONS(4542), - [anon_sym_from] = ACTIONS(4540), - [anon_sym_join] = ACTIONS(4540), - [anon_sym_on] = ACTIONS(4540), - [anon_sym_equals] = ACTIONS(4540), - [anon_sym_let] = ACTIONS(4540), - [anon_sym_orderby] = ACTIONS(4540), - [anon_sym_group] = ACTIONS(4540), - [anon_sym_by] = ACTIONS(4540), - [anon_sym_select] = ACTIONS(4540), - [anon_sym_as] = ACTIONS(4540), - [anon_sym_is] = ACTIONS(4540), - [anon_sym_DASH_GT] = ACTIONS(4540), - [anon_sym_with] = ACTIONS(4540), - [aux_sym_preproc_if_token3] = ACTIONS(4540), - [aux_sym_preproc_else_token1] = ACTIONS(4540), - [aux_sym_preproc_elif_token1] = ACTIONS(4540), + [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), @@ -444720,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(2664), - [sym_property_pattern_clause] = STATE(2875), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4988), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -444737,157 +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(4236), - [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), - }, - [2551] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2695), - [sym_property_pattern_clause] = STATE(3048), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4763), - [sym__reserved_identifier] = STATE(4707), - [sym_preproc_region] = STATE(2551), - [sym_preproc_endregion] = STATE(2551), - [sym_preproc_line] = STATE(2551), - [sym_preproc_pragma] = STATE(2551), - [sym_preproc_nullable] = STATE(2551), - [sym_preproc_error] = STATE(2551), - [sym_preproc_warning] = STATE(2551), - [sym_preproc_define] = STATE(2551), - [sym_preproc_undef] = STATE(2551), - [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(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), @@ -444898,6 +444890,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), + [sym_preproc_endregion] = STATE(2551), + [sym_preproc_line] = STATE(2551), + [sym_preproc_pragma] = STATE(2551), + [sym_preproc_nullable] = STATE(2551), + [sym_preproc_error] = STATE(2551), + [sym_preproc_warning] = STATE(2551), + [sym_preproc_define] = STATE(2551), + [sym_preproc_undef] = STATE(2551), + [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), @@ -444909,71 +444992,75 @@ 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(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), + [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), @@ -444984,12 +445071,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(4620), - [sym_interpolation_verbatim_start] = ACTIONS(4620), - [sym_interpolation_raw_start] = ACTIONS(4620), - [sym_raw_string_start] = ACTIONS(4620), }, [2553] = { + [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), @@ -444999,96 +445090,87 @@ 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(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(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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2554] = { - [sym__name] = STATE(4157), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_ref_type] = STATE(4018), - [sym__scoped_base_type] = STATE(4086), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -445098,66 +445180,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2554), [sym_preproc_define] = STATE(2554), [sym_preproc_undef] = STATE(2554), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4626), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4228), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [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(4515), - [anon_sym_select] = ACTIONS(4228), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4232), + [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(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(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), @@ -445170,6 +445253,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2555] = { + [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), @@ -445179,71 +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), - [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_BANG] = ACTIONS(4630), - [anon_sym_TILDE] = 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_PLUS] = ACTIONS(4628), - [anon_sym_DASH] = ACTIONS(4628), - [anon_sym_STAR] = ACTIONS(4630), - [anon_sym_CARET] = ACTIONS(4630), - [anon_sym_AMP] = ACTIONS(4630), - [anon_sym_this] = ACTIONS(4628), - [anon_sym_scoped] = ACTIONS(4628), - [anon_sym_base] = ACTIONS(4628), - [anon_sym_var] = ACTIONS(4628), - [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_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), + [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), @@ -445254,20 +445341,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(4630), - [sym_interpolation_verbatim_start] = ACTIONS(4630), - [sym_interpolation_raw_start] = ACTIONS(4630), - [sym_raw_string_start] = ACTIONS(4630), }, [2556] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2681), - [sym_property_pattern_clause] = STATE(2946), - [sym__variable_designation] = STATE(5502), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5482), - [sym__reserved_identifier] = STATE(3393), + [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), @@ -445277,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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_LPAREN] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_where] = ACTIONS(4216), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [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(4151), - [anon_sym_var] = ACTIONS(4151), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_switch] = ACTIONS(4216), - [anon_sym_when] = ACTIONS(4151), - [sym_discard] = ACTIONS(4568), - [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(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4216), - [anon_sym_orderby] = ACTIONS(4216), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4216), - [anon_sym_by] = ACTIONS(4151), - [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(4158), + [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(4224), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_notnull] = ACTIONS(4188), + [anon_sym_unmanaged] = ACTIONS(4188), + [anon_sym_DOT] = ACTIONS(4224), + [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(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_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(4220), + [anon_sym_with] = ACTIONS(4224), + [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), @@ -445350,15 +445433,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2557] = { - [sym__name] = STATE(5079), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_ref_type] = STATE(3540), - [sym__scoped_base_type] = STATE(3541), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), [sym_preproc_region] = STATE(2557), [sym_preproc_endregion] = STATE(2557), [sym_preproc_line] = STATE(2557), @@ -445368,66 +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), - [sym__identifier_token] = ACTIONS(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(4632), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(4151), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(4151), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4155), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4155), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -445440,26 +445523,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2558] = { - [sym_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(7680), - [sym__name] = STATE(6179), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6030), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -445469,55 +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), - [aux_sym_using_directive_repeat1] = STATE(6038), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2608), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(657), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(4634), - [anon_sym_static] = ACTIONS(4636), - [anon_sym_LPAREN] = ACTIONS(4638), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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(4282), - [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), + [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), @@ -445530,14 +445613,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2559] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2655), - [sym_property_pattern_clause] = STATE(2809), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4763), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -445550,64 +445634,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(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [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(4224), - [anon_sym_GT] = ACTIONS(4224), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_QMARK] = ACTIONS(3696), [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_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(4224), + [anon_sym_switch] = ACTIONS(3696), [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_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(4224), + [anon_sym_into] = ACTIONS(4210), [anon_sym_join] = ACTIONS(4210), [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4210), + [anon_sym_equals] = ACTIONS(4498), [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_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_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), @@ -445620,11 +445703,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2560] = { - [sym_property_pattern_clause] = STATE(2622), - [sym__variable_designation] = STATE(5778), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym_identifier] = STATE(5768), - [sym__reserved_identifier] = STATE(5564), [sym_preproc_region] = STATE(2560), [sym_preproc_endregion] = STATE(2560), [sym_preproc_line] = STATE(2560), @@ -445634,80 +445712,85 @@ 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(4404), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_COLON] = ACTIONS(4246), - [anon_sym_COMMA] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4408), - [anon_sym_file] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4406), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4406), - [anon_sym_var] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4406), - [sym_discard] = ACTIONS(4410), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4406), - [anon_sym_into] = ACTIONS(4248), - [anon_sym_join] = ACTIONS(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4412), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4246), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), }, [2561] = { [sym_preproc_region] = STATE(2561), @@ -445719,75 +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), - [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(4528), - [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(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_where] = ACTIONS(4530), - [anon_sym_QMARK] = ACTIONS(4528), - [anon_sym_BANG] = ACTIONS(4528), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4528), - [anon_sym_CARET] = ACTIONS(4528), - [anon_sym_PIPE] = ACTIONS(4528), - [anon_sym_AMP] = ACTIONS(4528), - [anon_sym_LT_LT] = ACTIONS(4528), - [anon_sym_GT_GT] = ACTIONS(4528), - [anon_sym_GT_GT_GT] = ACTIONS(4528), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_EQ_GT] = ACTIONS(4530), - [anon_sym_switch] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_and] = ACTIONS(4530), - [anon_sym_or] = ACTIONS(4528), - [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_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [sym_op_coalescing] = ACTIONS(4528), - [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), + [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), @@ -445800,14 +445883,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2562] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2681), - [sym_property_pattern_clause] = STATE(2946), - [sym__variable_designation] = STATE(5502), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5482), - [sym__reserved_identifier] = STATE(3393), + [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), @@ -445817,67 +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), - [sym__identifier_token] = ACTIONS(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4151), + [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(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [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(4151), - [anon_sym_var] = ACTIONS(4151), - [anon_sym_yield] = ACTIONS(4151), + [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(4151), - [sym_discard] = ACTIONS(4568), - [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(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4224), - [anon_sym_orderby] = ACTIONS(4224), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4224), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = 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(4222), + [anon_sym_DASH_GT] = ACTIONS(4220), [anon_sym_with] = ACTIONS(4224), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -445890,6 +445973,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2563] = { + [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), @@ -445899,255 +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(4640), - [anon_sym_alias] = ACTIONS(4640), - [anon_sym_global] = ACTIONS(4640), - [anon_sym_static] = ACTIONS(4640), - [anon_sym_LBRACK] = ACTIONS(4642), - [anon_sym_LPAREN] = ACTIONS(4642), - [anon_sym_ref] = ACTIONS(4640), - [anon_sym_LBRACE] = ACTIONS(4642), - [anon_sym_delegate] = ACTIONS(4640), - [anon_sym_async] = ACTIONS(4640), - [anon_sym_file] = ACTIONS(4640), - [anon_sym_new] = ACTIONS(4640), - [anon_sym_where] = ACTIONS(4640), - [anon_sym_notnull] = ACTIONS(4640), - [anon_sym_unmanaged] = ACTIONS(4640), - [anon_sym_checked] = ACTIONS(4640), - [anon_sym_BANG] = ACTIONS(4642), - [anon_sym_TILDE] = ACTIONS(4642), - [anon_sym_PLUS_PLUS] = ACTIONS(4642), - [anon_sym_DASH_DASH] = ACTIONS(4642), - [anon_sym_true] = ACTIONS(4640), - [anon_sym_false] = ACTIONS(4640), - [anon_sym_PLUS] = ACTIONS(4640), - [anon_sym_DASH] = ACTIONS(4640), - [anon_sym_STAR] = ACTIONS(4642), - [anon_sym_CARET] = ACTIONS(4642), - [anon_sym_AMP] = ACTIONS(4642), - [anon_sym_this] = ACTIONS(4640), - [anon_sym_scoped] = ACTIONS(4640), - [anon_sym_base] = ACTIONS(4640), - [anon_sym_var] = ACTIONS(4640), - [sym_predefined_type] = ACTIONS(4640), - [anon_sym_unchecked] = ACTIONS(4640), - [anon_sym_yield] = ACTIONS(4640), - [anon_sym_default] = ACTIONS(4640), - [anon_sym_throw] = ACTIONS(4640), - [anon_sym_when] = ACTIONS(4640), - [anon_sym_await] = ACTIONS(4640), - [anon_sym_DOT_DOT] = ACTIONS(4642), - [anon_sym_from] = ACTIONS(4640), - [anon_sym_into] = ACTIONS(4640), - [anon_sym_join] = ACTIONS(4640), - [anon_sym_on] = ACTIONS(4640), - [anon_sym_equals] = ACTIONS(4640), - [anon_sym_let] = ACTIONS(4640), - [anon_sym_orderby] = ACTIONS(4640), - [anon_sym_ascending] = ACTIONS(4640), - [anon_sym_descending] = ACTIONS(4640), - [anon_sym_group] = ACTIONS(4640), - [anon_sym_by] = ACTIONS(4640), - [anon_sym_select] = ACTIONS(4640), - [anon_sym_stackalloc] = ACTIONS(4640), - [anon_sym_sizeof] = ACTIONS(4640), - [anon_sym_typeof] = ACTIONS(4640), - [anon_sym___makeref] = ACTIONS(4640), - [anon_sym___reftype] = ACTIONS(4640), - [anon_sym___refvalue] = ACTIONS(4640), - [sym_null_literal] = ACTIONS(4640), - [anon_sym_SQUOTE] = ACTIONS(4642), - [sym_integer_literal] = ACTIONS(4640), - [sym_real_literal] = ACTIONS(4642), - [anon_sym_DQUOTE] = ACTIONS(4642), - [sym_verbatim_string_literal] = ACTIONS(4642), - [sym_grit_metavariable] = ACTIONS(4642), - [aux_sym_preproc_if_token1] = ACTIONS(4642), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4642), - [sym_interpolation_verbatim_start] = ACTIONS(4642), - [sym_interpolation_raw_start] = ACTIONS(4642), - [sym_raw_string_start] = ACTIONS(4642), - }, - [2564] = { - [sym_preproc_region] = STATE(2564), - [sym_preproc_endregion] = STATE(2564), - [sym_preproc_line] = STATE(2564), - [sym_preproc_pragma] = STATE(2564), - [sym_preproc_nullable] = STATE(2564), - [sym_preproc_error] = STATE(2564), - [sym_preproc_warning] = STATE(2564), - [sym_preproc_define] = STATE(2564), - [sym_preproc_undef] = STATE(2564), - [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), - }, - [2565] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2675), - [sym_property_pattern_clause] = STATE(2919), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4988), - [sym__reserved_identifier] = STATE(4707), - [sym_preproc_region] = STATE(2565), - [sym_preproc_endregion] = STATE(2565), - [sym_preproc_line] = STATE(2565), - [sym_preproc_pragma] = STATE(2565), - [sym_preproc_nullable] = STATE(2565), - [sym_preproc_error] = STATE(2565), - [sym_preproc_warning] = STATE(2565), - [sym_preproc_define] = STATE(2565), - [sym_preproc_undef] = STATE(2565), - [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(4236), - [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(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_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(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), @@ -446159,54 +446062,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2566] = { - [sym_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(8061), - [sym__name] = STATE(6204), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6040), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(2566), - [sym_preproc_endregion] = STATE(2566), - [sym_preproc_line] = STATE(2566), - [sym_preproc_pragma] = STATE(2566), - [sym_preproc_nullable] = STATE(2566), - [sym_preproc_error] = STATE(2566), - [sym_preproc_warning] = STATE(2566), - [sym_preproc_define] = STATE(2566), - [sym_preproc_undef] = STATE(2566), - [aux_sym_using_directive_repeat1] = STATE(6026), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2605), + [2564] = { + [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), + [sym_preproc_pragma] = STATE(2564), + [sym_preproc_nullable] = STATE(2564), + [sym_preproc_error] = STATE(2564), + [sym_preproc_warning] = STATE(2564), + [sym_preproc_define] = STATE(2564), + [sym_preproc_undef] = STATE(2564), + [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(4648), - [anon_sym_static] = ACTIONS(4636), - [anon_sym_LPAREN] = ACTIONS(4650), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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(4282), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -446249,15 +446152,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2565] = { + [sym_preproc_region] = STATE(2565), + [sym_preproc_endregion] = STATE(2565), + [sym_preproc_line] = STATE(2565), + [sym_preproc_pragma] = STATE(2565), + [sym_preproc_nullable] = STATE(2565), + [sym_preproc_error] = STATE(2565), + [sym_preproc_warning] = STATE(2565), + [sym_preproc_define] = STATE(2565), + [sym_preproc_undef] = STATE(2565), + [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__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), + [sym_preproc_pragma] = STATE(2566), + [sym_preproc_nullable] = STATE(2566), + [sym_preproc_error] = STATE(2566), + [sym_preproc_warning] = STATE(2566), + [sym_preproc_define] = STATE(2566), + [sym_preproc_undef] = STATE(2566), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2567] = { - [sym_parameter_list] = STATE(7657), - [sym_positional_pattern_clause] = STATE(2668), - [sym_property_pattern_clause] = STATE(2906), - [sym__variable_designation] = STATE(5502), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(5482), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -446267,67 +446350,67 @@ 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(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(4568), - [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), + [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(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_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(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), + [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), @@ -446349,75 +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), - [anon_sym_SEMI] = ACTIONS(4560), - [anon_sym_EQ] = ACTIONS(4562), - [anon_sym_LBRACK] = ACTIONS(4560), - [anon_sym_COLON] = ACTIONS(4560), - [anon_sym_COMMA] = ACTIONS(4560), - [anon_sym_RBRACK] = ACTIONS(4560), - [anon_sym_LPAREN] = ACTIONS(4560), - [anon_sym_RPAREN] = ACTIONS(4560), - [anon_sym_RBRACE] = ACTIONS(4560), - [anon_sym_LT] = ACTIONS(4562), - [anon_sym_GT] = ACTIONS(4562), - [anon_sym_in] = ACTIONS(4560), - [anon_sym_where] = ACTIONS(4560), - [anon_sym_QMARK] = ACTIONS(4562), - [anon_sym_BANG] = ACTIONS(4562), - [anon_sym_PLUS_PLUS] = ACTIONS(4560), - [anon_sym_DASH_DASH] = ACTIONS(4560), - [anon_sym_PLUS] = ACTIONS(4562), - [anon_sym_DASH] = ACTIONS(4562), - [anon_sym_STAR] = ACTIONS(4562), - [anon_sym_SLASH] = ACTIONS(4562), - [anon_sym_PERCENT] = ACTIONS(4562), - [anon_sym_CARET] = ACTIONS(4562), - [anon_sym_PIPE] = ACTIONS(4562), - [anon_sym_AMP] = ACTIONS(4562), - [anon_sym_LT_LT] = ACTIONS(4562), - [anon_sym_GT_GT] = ACTIONS(4562), - [anon_sym_GT_GT_GT] = ACTIONS(4562), - [anon_sym_EQ_EQ] = ACTIONS(4560), - [anon_sym_BANG_EQ] = ACTIONS(4560), - [anon_sym_GT_EQ] = ACTIONS(4560), - [anon_sym_LT_EQ] = ACTIONS(4560), - [anon_sym_DOT] = ACTIONS(4562), - [anon_sym_EQ_GT] = ACTIONS(4560), - [anon_sym_switch] = ACTIONS(4560), - [anon_sym_DOT_DOT] = ACTIONS(4560), - [anon_sym_and] = ACTIONS(4560), - [anon_sym_or] = ACTIONS(4562), - [anon_sym_PLUS_EQ] = ACTIONS(4560), - [anon_sym_DASH_EQ] = ACTIONS(4560), - [anon_sym_STAR_EQ] = ACTIONS(4560), - [anon_sym_SLASH_EQ] = ACTIONS(4560), - [anon_sym_PERCENT_EQ] = ACTIONS(4560), - [anon_sym_AMP_EQ] = ACTIONS(4560), - [anon_sym_CARET_EQ] = ACTIONS(4560), - [anon_sym_PIPE_EQ] = ACTIONS(4560), - [anon_sym_LT_LT_EQ] = ACTIONS(4560), - [anon_sym_GT_GT_EQ] = ACTIONS(4560), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4560), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4560), - [anon_sym_AMP_AMP] = ACTIONS(4560), - [anon_sym_PIPE_PIPE] = ACTIONS(4560), - [sym_op_coalescing] = ACTIONS(4562), - [anon_sym_from] = ACTIONS(4560), - [anon_sym_join] = ACTIONS(4560), - [anon_sym_on] = ACTIONS(4560), - [anon_sym_equals] = ACTIONS(4560), - [anon_sym_let] = ACTIONS(4560), - [anon_sym_orderby] = ACTIONS(4560), - [anon_sym_group] = ACTIONS(4560), - [anon_sym_by] = ACTIONS(4560), - [anon_sym_select] = ACTIONS(4560), - [anon_sym_as] = ACTIONS(4560), - [anon_sym_is] = ACTIONS(4560), - [anon_sym_DASH_GT] = ACTIONS(4560), - [anon_sym_with] = ACTIONS(4560), - [aux_sym_preproc_if_token3] = ACTIONS(4560), - [aux_sym_preproc_else_token1] = ACTIONS(4560), - [aux_sym_preproc_elif_token1] = ACTIONS(4560), + [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), @@ -446439,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(2672), - [sym_property_pattern_clause] = STATE(2964), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4763), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -446537,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(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(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(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), @@ -446619,95 +446702,87 @@ 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(4526), - [anon_sym_EQ] = ACTIONS(4528), - [anon_sym_LBRACK] = ACTIONS(4526), - [anon_sym_COLON] = ACTIONS(4530), - [anon_sym_COMMA] = ACTIONS(4526), - [anon_sym_RBRACK] = ACTIONS(4526), - [anon_sym_LPAREN] = ACTIONS(4526), - [anon_sym_RPAREN] = ACTIONS(4526), - [anon_sym_RBRACE] = ACTIONS(4526), - [anon_sym_LT] = ACTIONS(4532), - [anon_sym_GT] = ACTIONS(4532), - [anon_sym_in] = ACTIONS(4526), - [anon_sym_where] = ACTIONS(4526), - [anon_sym_QMARK] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4526), - [anon_sym_DASH_DASH] = ACTIONS(4526), - [anon_sym_PLUS] = ACTIONS(4532), - [anon_sym_DASH] = ACTIONS(4532), - [anon_sym_STAR] = ACTIONS(4532), - [anon_sym_SLASH] = ACTIONS(4532), - [anon_sym_PERCENT] = ACTIONS(4532), - [anon_sym_CARET] = ACTIONS(4532), - [anon_sym_PIPE] = ACTIONS(4532), - [anon_sym_AMP] = ACTIONS(4532), - [anon_sym_LT_LT] = ACTIONS(4532), - [anon_sym_GT_GT] = ACTIONS(4532), - [anon_sym_GT_GT_GT] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4526), - [anon_sym_BANG_EQ] = ACTIONS(4526), - [anon_sym_GT_EQ] = ACTIONS(4526), - [anon_sym_LT_EQ] = ACTIONS(4526), - [anon_sym_DOT] = ACTIONS(4532), - [anon_sym_EQ_GT] = ACTIONS(4526), - [anon_sym_switch] = ACTIONS(4526), - [anon_sym_DOT_DOT] = ACTIONS(4526), - [anon_sym_and] = ACTIONS(4526), - [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_AMP_AMP] = ACTIONS(4526), - [anon_sym_PIPE_PIPE] = ACTIONS(4526), - [sym_op_coalescing] = ACTIONS(4532), - [anon_sym_from] = ACTIONS(4526), - [anon_sym_join] = ACTIONS(4526), - [anon_sym_on] = ACTIONS(4526), - [anon_sym_equals] = ACTIONS(4526), - [anon_sym_let] = ACTIONS(4526), - [anon_sym_orderby] = ACTIONS(4526), - [anon_sym_group] = ACTIONS(4526), - [anon_sym_by] = ACTIONS(4526), - [anon_sym_select] = ACTIONS(4526), - [anon_sym_as] = ACTIONS(4526), - [anon_sym_is] = ACTIONS(4526), - [anon_sym_DASH_GT] = ACTIONS(4526), - [anon_sym_with] = ACTIONS(4526), - [aux_sym_preproc_if_token3] = ACTIONS(4526), - [aux_sym_preproc_else_token1] = ACTIONS(4526), - [aux_sym_preproc_elif_token1] = ACTIONS(4526), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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(2656), - [sym_property_pattern_clause] = STATE(2805), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4988), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2572), [sym_preproc_endregion] = STATE(2572), [sym_preproc_line] = STATE(2572), @@ -446717,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(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(4236), - [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_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(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), @@ -446790,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(2664), - [sym_property_pattern_clause] = STATE(2875), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4988), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2573), [sym_preproc_endregion] = STATE(2573), [sym_preproc_line] = STATE(2573), @@ -446807,67 +446882,75 @@ 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(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(4236), - [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(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(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_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_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), @@ -446889,95 +446972,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2574), [sym_preproc_define] = STATE(2574), [sym_preproc_undef] = STATE(2574), - [anon_sym_SEMI] = ACTIONS(4564), - [anon_sym_EQ] = ACTIONS(4566), - [anon_sym_LBRACK] = ACTIONS(4564), - [anon_sym_COLON] = ACTIONS(4564), - [anon_sym_COMMA] = ACTIONS(4564), - [anon_sym_RBRACK] = ACTIONS(4564), - [anon_sym_LPAREN] = ACTIONS(4564), - [anon_sym_RPAREN] = ACTIONS(4564), - [anon_sym_RBRACE] = ACTIONS(4564), - [anon_sym_LT] = ACTIONS(4566), - [anon_sym_GT] = ACTIONS(4566), - [anon_sym_in] = ACTIONS(4564), - [anon_sym_where] = ACTIONS(4564), - [anon_sym_QMARK] = ACTIONS(4566), - [anon_sym_BANG] = ACTIONS(4566), - [anon_sym_PLUS_PLUS] = ACTIONS(4564), - [anon_sym_DASH_DASH] = ACTIONS(4564), - [anon_sym_PLUS] = ACTIONS(4566), - [anon_sym_DASH] = ACTIONS(4566), - [anon_sym_STAR] = ACTIONS(4566), - [anon_sym_SLASH] = ACTIONS(4566), - [anon_sym_PERCENT] = ACTIONS(4566), - [anon_sym_CARET] = ACTIONS(4566), - [anon_sym_PIPE] = ACTIONS(4566), - [anon_sym_AMP] = ACTIONS(4566), - [anon_sym_LT_LT] = ACTIONS(4566), - [anon_sym_GT_GT] = ACTIONS(4566), - [anon_sym_GT_GT_GT] = ACTIONS(4566), - [anon_sym_EQ_EQ] = ACTIONS(4564), - [anon_sym_BANG_EQ] = ACTIONS(4564), - [anon_sym_GT_EQ] = ACTIONS(4564), - [anon_sym_LT_EQ] = ACTIONS(4564), - [anon_sym_DOT] = ACTIONS(4566), - [anon_sym_EQ_GT] = ACTIONS(4564), - [anon_sym_switch] = ACTIONS(4564), - [anon_sym_DOT_DOT] = ACTIONS(4564), - [anon_sym_and] = ACTIONS(4564), - [anon_sym_or] = ACTIONS(4566), - [anon_sym_PLUS_EQ] = ACTIONS(4564), - [anon_sym_DASH_EQ] = ACTIONS(4564), - [anon_sym_STAR_EQ] = ACTIONS(4564), - [anon_sym_SLASH_EQ] = ACTIONS(4564), - [anon_sym_PERCENT_EQ] = ACTIONS(4564), - [anon_sym_AMP_EQ] = ACTIONS(4564), - [anon_sym_CARET_EQ] = ACTIONS(4564), - [anon_sym_PIPE_EQ] = ACTIONS(4564), - [anon_sym_LT_LT_EQ] = ACTIONS(4564), - [anon_sym_GT_GT_EQ] = ACTIONS(4564), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4564), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4564), - [anon_sym_AMP_AMP] = ACTIONS(4564), - [anon_sym_PIPE_PIPE] = ACTIONS(4564), - [sym_op_coalescing] = ACTIONS(4566), - [anon_sym_from] = ACTIONS(4564), - [anon_sym_join] = ACTIONS(4564), - [anon_sym_on] = ACTIONS(4564), - [anon_sym_equals] = ACTIONS(4564), - [anon_sym_let] = ACTIONS(4564), - [anon_sym_orderby] = ACTIONS(4564), - [anon_sym_group] = ACTIONS(4564), - [anon_sym_by] = ACTIONS(4564), - [anon_sym_select] = ACTIONS(4564), - [anon_sym_as] = ACTIONS(4564), - [anon_sym_is] = ACTIONS(4564), - [anon_sym_DASH_GT] = ACTIONS(4564), - [anon_sym_with] = ACTIONS(4564), - [aux_sym_preproc_if_token3] = ACTIONS(4564), - [aux_sym_preproc_else_token1] = ACTIONS(4564), - [aux_sym_preproc_elif_token1] = ACTIONS(4564), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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(7657), - [sym_positional_pattern_clause] = STATE(2675), - [sym_property_pattern_clause] = STATE(2919), - [sym__variable_designation] = STATE(4996), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4988), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -446987,67 +447070,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2575), [sym_preproc_define] = STATE(2575), [sym_preproc_undef] = STATE(2575), - [sym__identifier_token] = ACTIONS(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(4236), - [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_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(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), @@ -447060,6 +447143,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2576] = { + [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), @@ -447069,75 +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), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_EQ] = ACTIONS(4538), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_COLON] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(4536), - [anon_sym_RBRACK] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_RPAREN] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LT] = ACTIONS(4538), - [anon_sym_GT] = ACTIONS(4538), - [anon_sym_in] = ACTIONS(4536), - [anon_sym_where] = ACTIONS(4536), - [anon_sym_QMARK] = ACTIONS(4538), - [anon_sym_BANG] = ACTIONS(4538), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4538), - [anon_sym_DASH] = ACTIONS(4538), - [anon_sym_STAR] = ACTIONS(4538), - [anon_sym_SLASH] = ACTIONS(4538), - [anon_sym_PERCENT] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4538), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_AMP] = ACTIONS(4538), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [anon_sym_GT_GT_GT] = ACTIONS(4538), - [anon_sym_EQ_EQ] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_DOT] = ACTIONS(4538), - [anon_sym_EQ_GT] = ACTIONS(4536), - [anon_sym_switch] = ACTIONS(4536), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_and] = ACTIONS(4536), - [anon_sym_or] = ACTIONS(4538), - [anon_sym_PLUS_EQ] = ACTIONS(4536), - [anon_sym_DASH_EQ] = ACTIONS(4536), - [anon_sym_STAR_EQ] = ACTIONS(4536), - [anon_sym_SLASH_EQ] = ACTIONS(4536), - [anon_sym_PERCENT_EQ] = ACTIONS(4536), - [anon_sym_AMP_EQ] = ACTIONS(4536), - [anon_sym_CARET_EQ] = ACTIONS(4536), - [anon_sym_PIPE_EQ] = ACTIONS(4536), - [anon_sym_LT_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_GT_EQ] = ACTIONS(4536), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4536), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [sym_op_coalescing] = ACTIONS(4538), - [anon_sym_from] = ACTIONS(4536), - [anon_sym_join] = ACTIONS(4536), - [anon_sym_on] = ACTIONS(4536), - [anon_sym_equals] = ACTIONS(4536), - [anon_sym_let] = ACTIONS(4536), - [anon_sym_orderby] = ACTIONS(4536), - [anon_sym_group] = ACTIONS(4536), - [anon_sym_by] = ACTIONS(4536), - [anon_sym_select] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4536), - [anon_sym_DASH_GT] = ACTIONS(4536), - [anon_sym_with] = ACTIONS(4536), - [aux_sym_preproc_if_token3] = ACTIONS(4536), - [aux_sym_preproc_else_token1] = ACTIONS(4536), - [aux_sym_preproc_elif_token1] = ACTIONS(4536), + [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), @@ -447150,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(2695), - [sym_property_pattern_clause] = STATE(3048), - [sym__variable_designation] = STATE(4905), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(4763), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -447167,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(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), + [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), @@ -447240,6 +447322,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2578] = { + [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), @@ -447249,87 +447351,86 @@ 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(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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2579] = { + [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), @@ -447339,71 +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(4660), - [anon_sym_alias] = ACTIONS(4660), - [anon_sym_global] = ACTIONS(4660), - [anon_sym_static] = ACTIONS(4660), - [anon_sym_LBRACK] = ACTIONS(4662), - [anon_sym_LPAREN] = ACTIONS(4662), - [anon_sym_ref] = ACTIONS(4660), - [anon_sym_LBRACE] = ACTIONS(4662), - [anon_sym_delegate] = ACTIONS(4660), - [anon_sym_async] = ACTIONS(4660), - [anon_sym_file] = ACTIONS(4660), - [anon_sym_new] = ACTIONS(4660), - [anon_sym_where] = ACTIONS(4660), - [anon_sym_notnull] = ACTIONS(4660), - [anon_sym_unmanaged] = ACTIONS(4660), - [anon_sym_checked] = ACTIONS(4660), - [anon_sym_BANG] = ACTIONS(4662), - [anon_sym_TILDE] = ACTIONS(4662), - [anon_sym_PLUS_PLUS] = ACTIONS(4662), - [anon_sym_DASH_DASH] = ACTIONS(4662), - [anon_sym_true] = ACTIONS(4660), - [anon_sym_false] = ACTIONS(4660), - [anon_sym_PLUS] = ACTIONS(4660), - [anon_sym_DASH] = ACTIONS(4660), - [anon_sym_STAR] = ACTIONS(4662), - [anon_sym_CARET] = ACTIONS(4662), - [anon_sym_AMP] = ACTIONS(4662), - [anon_sym_this] = ACTIONS(4660), - [anon_sym_scoped] = ACTIONS(4660), - [anon_sym_base] = ACTIONS(4660), - [anon_sym_var] = ACTIONS(4660), - [sym_predefined_type] = ACTIONS(4660), - [anon_sym_unchecked] = ACTIONS(4660), - [anon_sym_yield] = ACTIONS(4660), - [anon_sym_default] = ACTIONS(4660), - [anon_sym_throw] = ACTIONS(4660), - [anon_sym_when] = ACTIONS(4660), - [anon_sym_await] = ACTIONS(4660), - [anon_sym_DOT_DOT] = ACTIONS(4662), - [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_ascending] = ACTIONS(4660), - [anon_sym_descending] = ACTIONS(4660), - [anon_sym_group] = ACTIONS(4660), - [anon_sym_by] = ACTIONS(4660), - [anon_sym_select] = ACTIONS(4660), - [anon_sym_stackalloc] = ACTIONS(4660), - [anon_sym_sizeof] = ACTIONS(4660), - [anon_sym_typeof] = ACTIONS(4660), - [anon_sym___makeref] = ACTIONS(4660), - [anon_sym___reftype] = ACTIONS(4660), - [anon_sym___refvalue] = ACTIONS(4660), - [sym_null_literal] = ACTIONS(4660), - [anon_sym_SQUOTE] = ACTIONS(4662), - [sym_integer_literal] = ACTIONS(4660), - [sym_real_literal] = ACTIONS(4662), - [anon_sym_DQUOTE] = ACTIONS(4662), - [sym_verbatim_string_literal] = ACTIONS(4662), - [sym_grit_metavariable] = ACTIONS(4662), - [aux_sym_preproc_if_token1] = ACTIONS(4662), + [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), @@ -447414,12 +447498,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4662), - [sym_interpolation_verbatim_start] = ACTIONS(4662), - [sym_interpolation_raw_start] = ACTIONS(4662), - [sym_raw_string_start] = ACTIONS(4662), }, [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), @@ -447429,313 +447529,23 @@ 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(4664), - [anon_sym_alias] = ACTIONS(4664), - [anon_sym_global] = ACTIONS(4664), - [anon_sym_static] = ACTIONS(4664), - [anon_sym_LBRACK] = ACTIONS(4666), - [anon_sym_LPAREN] = ACTIONS(4666), - [anon_sym_ref] = ACTIONS(4664), - [anon_sym_LBRACE] = ACTIONS(4666), - [anon_sym_delegate] = ACTIONS(4664), - [anon_sym_async] = ACTIONS(4664), - [anon_sym_file] = ACTIONS(4664), - [anon_sym_new] = ACTIONS(4664), - [anon_sym_where] = ACTIONS(4664), - [anon_sym_notnull] = ACTIONS(4664), - [anon_sym_unmanaged] = ACTIONS(4664), - [anon_sym_checked] = ACTIONS(4664), - [anon_sym_BANG] = ACTIONS(4666), - [anon_sym_TILDE] = ACTIONS(4666), - [anon_sym_PLUS_PLUS] = ACTIONS(4666), - [anon_sym_DASH_DASH] = ACTIONS(4666), - [anon_sym_true] = ACTIONS(4664), - [anon_sym_false] = ACTIONS(4664), - [anon_sym_PLUS] = ACTIONS(4664), - [anon_sym_DASH] = ACTIONS(4664), - [anon_sym_STAR] = ACTIONS(4666), - [anon_sym_CARET] = ACTIONS(4666), - [anon_sym_AMP] = ACTIONS(4666), - [anon_sym_this] = ACTIONS(4664), - [anon_sym_scoped] = ACTIONS(4664), - [anon_sym_base] = ACTIONS(4664), - [anon_sym_var] = ACTIONS(4664), - [sym_predefined_type] = ACTIONS(4664), - [anon_sym_unchecked] = ACTIONS(4664), - [anon_sym_yield] = ACTIONS(4664), - [anon_sym_default] = ACTIONS(4664), - [anon_sym_throw] = ACTIONS(4664), - [anon_sym_when] = ACTIONS(4664), - [anon_sym_await] = ACTIONS(4664), - [anon_sym_DOT_DOT] = ACTIONS(4666), - [anon_sym_from] = ACTIONS(4664), - [anon_sym_into] = ACTIONS(4664), - [anon_sym_join] = ACTIONS(4664), - [anon_sym_on] = ACTIONS(4664), - [anon_sym_equals] = ACTIONS(4664), - [anon_sym_let] = ACTIONS(4664), - [anon_sym_orderby] = ACTIONS(4664), - [anon_sym_ascending] = ACTIONS(4664), - [anon_sym_descending] = ACTIONS(4664), - [anon_sym_group] = ACTIONS(4664), - [anon_sym_by] = ACTIONS(4664), - [anon_sym_select] = ACTIONS(4664), - [anon_sym_stackalloc] = ACTIONS(4664), - [anon_sym_sizeof] = ACTIONS(4664), - [anon_sym_typeof] = ACTIONS(4664), - [anon_sym___makeref] = ACTIONS(4664), - [anon_sym___reftype] = ACTIONS(4664), - [anon_sym___refvalue] = ACTIONS(4664), - [sym_null_literal] = ACTIONS(4664), - [anon_sym_SQUOTE] = ACTIONS(4666), - [sym_integer_literal] = ACTIONS(4664), - [sym_real_literal] = ACTIONS(4666), - [anon_sym_DQUOTE] = ACTIONS(4666), - [sym_verbatim_string_literal] = ACTIONS(4666), - [sym_grit_metavariable] = ACTIONS(4666), - [aux_sym_preproc_if_token1] = ACTIONS(4666), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4666), - [sym_interpolation_verbatim_start] = ACTIONS(4666), - [sym_interpolation_raw_start] = ACTIONS(4666), - [sym_raw_string_start] = ACTIONS(4666), - }, - [2581] = { - [sym_preproc_region] = STATE(2581), - [sym_preproc_endregion] = STATE(2581), - [sym_preproc_line] = STATE(2581), - [sym_preproc_pragma] = STATE(2581), - [sym_preproc_nullable] = STATE(2581), - [sym_preproc_error] = STATE(2581), - [sym_preproc_warning] = STATE(2581), - [sym_preproc_define] = STATE(2581), - [sym_preproc_undef] = STATE(2581), - [sym__identifier_token] = ACTIONS(4668), - [anon_sym_alias] = ACTIONS(4668), - [anon_sym_global] = ACTIONS(4668), - [anon_sym_static] = ACTIONS(4668), - [anon_sym_LBRACK] = ACTIONS(4670), - [anon_sym_LPAREN] = ACTIONS(4670), - [anon_sym_ref] = ACTIONS(4668), - [anon_sym_LBRACE] = ACTIONS(4670), - [anon_sym_delegate] = ACTIONS(4668), - [anon_sym_async] = ACTIONS(4668), - [anon_sym_file] = ACTIONS(4668), - [anon_sym_new] = ACTIONS(4668), - [anon_sym_where] = ACTIONS(4668), - [anon_sym_notnull] = ACTIONS(4668), - [anon_sym_unmanaged] = ACTIONS(4668), - [anon_sym_checked] = ACTIONS(4668), - [anon_sym_BANG] = ACTIONS(4670), - [anon_sym_TILDE] = ACTIONS(4670), - [anon_sym_PLUS_PLUS] = ACTIONS(4670), - [anon_sym_DASH_DASH] = ACTIONS(4670), - [anon_sym_true] = ACTIONS(4668), - [anon_sym_false] = ACTIONS(4668), - [anon_sym_PLUS] = ACTIONS(4668), - [anon_sym_DASH] = ACTIONS(4668), - [anon_sym_STAR] = ACTIONS(4670), - [anon_sym_CARET] = ACTIONS(4670), - [anon_sym_AMP] = ACTIONS(4670), - [anon_sym_this] = ACTIONS(4668), - [anon_sym_scoped] = ACTIONS(4668), - [anon_sym_base] = ACTIONS(4668), - [anon_sym_var] = ACTIONS(4668), - [sym_predefined_type] = ACTIONS(4668), - [anon_sym_unchecked] = ACTIONS(4668), - [anon_sym_yield] = ACTIONS(4668), - [anon_sym_default] = ACTIONS(4668), - [anon_sym_throw] = ACTIONS(4668), - [anon_sym_when] = ACTIONS(4668), - [anon_sym_await] = ACTIONS(4668), - [anon_sym_DOT_DOT] = ACTIONS(4670), - [anon_sym_from] = ACTIONS(4668), - [anon_sym_into] = ACTIONS(4668), - [anon_sym_join] = ACTIONS(4668), - [anon_sym_on] = ACTIONS(4668), - [anon_sym_equals] = ACTIONS(4668), - [anon_sym_let] = ACTIONS(4668), - [anon_sym_orderby] = ACTIONS(4668), - [anon_sym_ascending] = ACTIONS(4668), - [anon_sym_descending] = ACTIONS(4668), - [anon_sym_group] = ACTIONS(4668), - [anon_sym_by] = ACTIONS(4668), - [anon_sym_select] = ACTIONS(4668), - [anon_sym_stackalloc] = ACTIONS(4668), - [anon_sym_sizeof] = ACTIONS(4668), - [anon_sym_typeof] = ACTIONS(4668), - [anon_sym___makeref] = ACTIONS(4668), - [anon_sym___reftype] = ACTIONS(4668), - [anon_sym___refvalue] = ACTIONS(4668), - [sym_null_literal] = ACTIONS(4668), - [anon_sym_SQUOTE] = ACTIONS(4670), - [sym_integer_literal] = ACTIONS(4668), - [sym_real_literal] = ACTIONS(4670), - [anon_sym_DQUOTE] = ACTIONS(4670), - [sym_verbatim_string_literal] = ACTIONS(4670), - [sym_grit_metavariable] = ACTIONS(4670), - [aux_sym_preproc_if_token1] = ACTIONS(4670), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_regular_start] = ACTIONS(4670), - [sym_interpolation_verbatim_start] = ACTIONS(4670), - [sym_interpolation_raw_start] = ACTIONS(4670), - [sym_raw_string_start] = ACTIONS(4670), - }, - [2582] = { - [sym_preproc_region] = STATE(2582), - [sym_preproc_endregion] = STATE(2582), - [sym_preproc_line] = STATE(2582), - [sym_preproc_pragma] = STATE(2582), - [sym_preproc_nullable] = STATE(2582), - [sym_preproc_error] = STATE(2582), - [sym_preproc_warning] = STATE(2582), - [sym_preproc_define] = STATE(2582), - [sym_preproc_undef] = STATE(2582), - [anon_sym_SEMI] = ACTIONS(4548), - [anon_sym_EQ] = ACTIONS(4550), - [anon_sym_LBRACK] = ACTIONS(4548), - [anon_sym_COLON] = ACTIONS(4548), - [anon_sym_COMMA] = ACTIONS(4548), - [anon_sym_RBRACK] = ACTIONS(4548), - [anon_sym_LPAREN] = ACTIONS(4548), - [anon_sym_RPAREN] = ACTIONS(4548), - [anon_sym_RBRACE] = ACTIONS(4548), - [anon_sym_LT] = ACTIONS(4550), - [anon_sym_GT] = ACTIONS(4550), - [anon_sym_in] = ACTIONS(4548), - [anon_sym_where] = ACTIONS(4548), - [anon_sym_QMARK] = ACTIONS(4550), - [anon_sym_BANG] = ACTIONS(4550), - [anon_sym_PLUS_PLUS] = ACTIONS(4548), - [anon_sym_DASH_DASH] = ACTIONS(4548), - [anon_sym_PLUS] = ACTIONS(4550), - [anon_sym_DASH] = ACTIONS(4550), - [anon_sym_STAR] = ACTIONS(4550), - [anon_sym_SLASH] = ACTIONS(4550), - [anon_sym_PERCENT] = ACTIONS(4550), - [anon_sym_CARET] = ACTIONS(4550), - [anon_sym_PIPE] = ACTIONS(4550), - [anon_sym_AMP] = ACTIONS(4550), - [anon_sym_LT_LT] = ACTIONS(4550), - [anon_sym_GT_GT] = ACTIONS(4550), - [anon_sym_GT_GT_GT] = ACTIONS(4550), - [anon_sym_EQ_EQ] = ACTIONS(4548), - [anon_sym_BANG_EQ] = ACTIONS(4548), - [anon_sym_GT_EQ] = ACTIONS(4548), - [anon_sym_LT_EQ] = ACTIONS(4548), - [anon_sym_DOT] = ACTIONS(4550), - [anon_sym_EQ_GT] = ACTIONS(4548), - [anon_sym_switch] = ACTIONS(4548), - [anon_sym_DOT_DOT] = ACTIONS(4548), - [anon_sym_and] = ACTIONS(4548), - [anon_sym_or] = ACTIONS(4550), - [anon_sym_PLUS_EQ] = ACTIONS(4548), - [anon_sym_DASH_EQ] = ACTIONS(4548), - [anon_sym_STAR_EQ] = ACTIONS(4548), - [anon_sym_SLASH_EQ] = ACTIONS(4548), - [anon_sym_PERCENT_EQ] = ACTIONS(4548), - [anon_sym_AMP_EQ] = ACTIONS(4548), - [anon_sym_CARET_EQ] = ACTIONS(4548), - [anon_sym_PIPE_EQ] = ACTIONS(4548), - [anon_sym_LT_LT_EQ] = ACTIONS(4548), - [anon_sym_GT_GT_EQ] = ACTIONS(4548), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4548), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4548), - [anon_sym_AMP_AMP] = ACTIONS(4548), - [anon_sym_PIPE_PIPE] = ACTIONS(4548), - [sym_op_coalescing] = ACTIONS(4550), - [anon_sym_from] = ACTIONS(4548), - [anon_sym_join] = ACTIONS(4548), - [anon_sym_on] = ACTIONS(4548), - [anon_sym_equals] = ACTIONS(4548), - [anon_sym_let] = ACTIONS(4548), - [anon_sym_orderby] = ACTIONS(4548), - [anon_sym_group] = ACTIONS(4548), - [anon_sym_by] = ACTIONS(4548), - [anon_sym_select] = ACTIONS(4548), - [anon_sym_as] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4548), - [anon_sym_DASH_GT] = ACTIONS(4548), - [anon_sym_with] = ACTIONS(4548), - [aux_sym_preproc_if_token3] = ACTIONS(4548), - [aux_sym_preproc_else_token1] = ACTIONS(4548), - [aux_sym_preproc_elif_token1] = ACTIONS(4548), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(7758), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(2583), - [sym_preproc_endregion] = STATE(2583), - [sym_preproc_line] = STATE(2583), - [sym_preproc_pragma] = STATE(2583), - [sym_preproc_nullable] = STATE(2583), - [sym_preproc_error] = STATE(2583), - [sym_preproc_warning] = STATE(2583), - [sym_preproc_define] = STATE(2583), - [sym_preproc_undef] = STATE(2583), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), + [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(3219), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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(4282), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -447778,53 +447588,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2584] = { - [sym_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(7795), + [2581] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7789), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(2584), - [sym_preproc_endregion] = STATE(2584), - [sym_preproc_line] = STATE(2584), - [sym_preproc_pragma] = STATE(2584), - [sym_preproc_nullable] = STATE(2584), - [sym_preproc_error] = STATE(2584), - [sym_preproc_warning] = STATE(2584), - [sym_preproc_define] = STATE(2584), - [sym_preproc_undef] = STATE(2584), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2583), + [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), + [sym_preproc_pragma] = STATE(2581), + [sym_preproc_nullable] = STATE(2581), + [sym_preproc_error] = STATE(2581), + [sym_preproc_warning] = STATE(2581), + [sym_preproc_define] = STATE(2581), + [sym_preproc_undef] = STATE(2581), + [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(4672), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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(4282), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -447867,126 +447677,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2585] = { - [sym_property_pattern_clause] = STATE(2686), - [sym__variable_designation] = STATE(4997), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), - [sym_preproc_region] = STATE(2585), - [sym_preproc_endregion] = STATE(2585), - [sym_preproc_line] = STATE(2585), - [sym_preproc_pragma] = STATE(2585), - [sym_preproc_nullable] = STATE(2585), - [sym_preproc_error] = STATE(2585), - [sym_preproc_warning] = STATE(2585), - [sym_preproc_define] = STATE(2585), - [sym_preproc_undef] = STATE(2585), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_COLON] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4246), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4248), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [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(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [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), - }, - [2586] = { - [sym_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(8072), + [2582] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7990), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(2586), - [sym_preproc_endregion] = STATE(2586), - [sym_preproc_line] = STATE(2586), - [sym_preproc_pragma] = STATE(2586), - [sym_preproc_nullable] = STATE(2586), - [sym_preproc_error] = STATE(2586), - [sym_preproc_warning] = STATE(2586), - [sym_preproc_define] = STATE(2586), - [sym_preproc_undef] = STATE(2586), - [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(2582), + [sym_preproc_endregion] = STATE(2582), + [sym_preproc_line] = STATE(2582), + [sym_preproc_pragma] = STATE(2582), + [sym_preproc_nullable] = STATE(2582), + [sym_preproc_error] = STATE(2582), + [sym_preproc_warning] = STATE(2582), + [sym_preproc_define] = STATE(2582), + [sym_preproc_undef] = STATE(2582), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4946), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(3211), @@ -447994,15 +447715,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(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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(4282), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -448045,84 +447766,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2587] = { - [sym_property_pattern_clause] = STATE(2687), - [sym__variable_designation] = STATE(4986), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), - [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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), + [2583] = { + [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), + [sym_preproc_pragma] = STATE(2583), + [sym_preproc_nullable] = STATE(2583), + [sym_preproc_error] = STATE(2583), + [sym_preproc_warning] = STATE(2583), + [sym_preproc_define] = STATE(2583), + [sym_preproc_undef] = STATE(2583), + [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_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), + [sym_preproc_pragma] = STATE(2584), + [sym_preproc_nullable] = STATE(2584), + [sym_preproc_error] = STATE(2584), + [sym_preproc_warning] = STATE(2584), + [sym_preproc_define] = STATE(2584), + [sym_preproc_undef] = STATE(2584), + [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_LBRACE] = ACTIONS(4222), + [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(4236), + [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), @@ -448134,53 +447944,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(5186), - [sym_variable_declaration] = STATE(8003), + [2585] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7859), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [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(2601), + [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), + [sym_preproc_pragma] = STATE(2585), + [sym_preproc_nullable] = STATE(2585), + [sym_preproc_error] = STATE(2585), + [sym_preproc_warning] = STATE(2585), + [sym_preproc_define] = STATE(2585), + [sym_preproc_undef] = STATE(2585), + [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(4674), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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(4282), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -448223,53 +448033,53 @@ 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(5186), - [sym_variable_declaration] = STATE(8095), + [2586] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7677), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [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(2598), + [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), + [sym_preproc_pragma] = STATE(2586), + [sym_preproc_nullable] = STATE(2586), + [sym_preproc_error] = STATE(2586), + [sym_preproc_warning] = STATE(2586), + [sym_preproc_define] = STATE(2586), + [sym_preproc_undef] = STATE(2586), + [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(4676), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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(4282), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -448312,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), }, - [2590] = { - [sym_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(7792), + [2587] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7796), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(2590), - [sym_preproc_endregion] = STATE(2590), - [sym_preproc_line] = STATE(2590), - [sym_preproc_pragma] = STATE(2590), - [sym_preproc_nullable] = STATE(2590), - [sym_preproc_error] = STATE(2590), - [sym_preproc_warning] = STATE(2590), - [sym_preproc_define] = STATE(2590), - [sym_preproc_undef] = STATE(2590), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2586), + [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(4678), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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(4282), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -448401,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), }, - [2591] = { - [sym_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(8052), + [2588] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7938), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(2591), - [sym_preproc_endregion] = STATE(2591), - [sym_preproc_line] = STATE(2591), - [sym_preproc_pragma] = STATE(2591), - [sym_preproc_nullable] = STATE(2591), - [sym_preproc_error] = STATE(2591), - [sym_preproc_warning] = STATE(2591), - [sym_preproc_define] = STATE(2591), - [sym_preproc_undef] = STATE(2591), - [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), @@ -448439,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(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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(4282), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -448490,84 +448300,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2592] = { - [sym_property_pattern_clause] = STATE(2651), - [sym__variable_designation] = STATE(4906), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), - [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(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), + [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), @@ -448579,65 +448389,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [2593] = { - [sym_preproc_region] = STATE(2593), - [sym_preproc_endregion] = STATE(2593), - [sym_preproc_line] = STATE(2593), - [sym_preproc_pragma] = STATE(2593), - [sym_preproc_nullable] = STATE(2593), - [sym_preproc_error] = STATE(2593), - [sym_preproc_warning] = STATE(2593), - [sym_preproc_define] = STATE(2593), - [sym_preproc_undef] = STATE(2593), + [2590] = { + [sym_preproc_region] = STATE(2590), + [sym_preproc_endregion] = STATE(2590), + [sym_preproc_line] = STATE(2590), + [sym_preproc_pragma] = STATE(2590), + [sym_preproc_nullable] = STATE(2590), + [sym_preproc_error] = STATE(2590), + [sym_preproc_warning] = STATE(2590), + [sym_preproc_define] = STATE(2590), + [sym_preproc_undef] = STATE(2590), [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_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(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_yield] = ACTIONS(4084), - [anon_sym_switch] = ACTIONS(3195), + [anon_sym_switch] = ACTIONS(3203), [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_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), @@ -448650,10 +448460,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), @@ -448666,55 +448476,233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_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), + [sym_interpolation_close_brace] = ACTIONS(3205), }, - [2594] = { - [sym_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(7717), + [2591] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7861), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(2594), - [sym_preproc_endregion] = STATE(2594), - [sym_preproc_line] = STATE(2594), - [sym_preproc_pragma] = STATE(2594), - [sym_preproc_nullable] = STATE(2594), - [sym_preproc_error] = STATE(2594), - [sym_preproc_warning] = STATE(2594), - [sym_preproc_define] = STATE(2594), - [sym_preproc_undef] = STATE(2594), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2599), + [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), + [sym_preproc_pragma] = STATE(2591), + [sym_preproc_nullable] = STATE(2591), + [sym_preproc_error] = STATE(2591), + [sym_preproc_warning] = STATE(2591), + [sym_preproc_define] = STATE(2591), + [sym_preproc_undef] = STATE(2591), + [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(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(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), + }, + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2593] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7854), + [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(2593), + [sym_preproc_endregion] = STATE(2593), + [sym_preproc_line] = STATE(2593), + [sym_preproc_pragma] = STATE(2593), + [sym_preproc_nullable] = STATE(2593), + [sym_preproc_error] = STATE(2593), + [sym_preproc_warning] = STATE(2593), + [sym_preproc_define] = STATE(2593), + [sym_preproc_undef] = STATE(2593), + [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(4680), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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(4282), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -448757,11 +448745,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [2594] = { + [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), + [sym_preproc_pragma] = STATE(2594), + [sym_preproc_nullable] = STATE(2594), + [sym_preproc_error] = STATE(2594), + [sym_preproc_warning] = STATE(2594), + [sym_preproc_define] = STATE(2594), + [sym_preproc_undef] = STATE(2594), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2595] = { - [sym_parameter_list] = STATE(7657), - [sym__lambda_parameters] = STATE(7988), - [sym_identifier] = STATE(7814), - [sym__reserved_identifier] = STATE(2206), + [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), @@ -448771,101 +448864,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2595), [sym_preproc_define] = STATE(2595), [sym_preproc_undef] = STATE(2595), - [sym__identifier_token] = ACTIONS(4288), - [anon_sym_alias] = ACTIONS(4288), - [anon_sym_global] = ACTIONS(4288), - [anon_sym_LBRACK] = ACTIONS(4290), - [anon_sym_COLON] = ACTIONS(4290), - [anon_sym_COMMA] = ACTIONS(4290), - [anon_sym_LPAREN] = ACTIONS(4290), - [anon_sym_LBRACE] = ACTIONS(4290), + [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_LT] = ACTIONS(4288), - [anon_sym_GT] = ACTIONS(4288), - [anon_sym_where] = ACTIONS(4288), - [anon_sym_QMARK] = ACTIONS(4288), - [anon_sym_notnull] = ACTIONS(4288), - [anon_sym_unmanaged] = ACTIONS(4288), - [anon_sym_BANG] = ACTIONS(4288), - [anon_sym_PLUS_PLUS] = ACTIONS(4290), - [anon_sym_DASH_DASH] = ACTIONS(4290), - [anon_sym_PLUS] = ACTIONS(4288), - [anon_sym_DASH] = ACTIONS(4288), - [anon_sym_STAR] = ACTIONS(4290), - [anon_sym_SLASH] = ACTIONS(4288), - [anon_sym_PERCENT] = ACTIONS(4290), - [anon_sym_CARET] = ACTIONS(4290), - [anon_sym_PIPE] = ACTIONS(4288), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_LT_LT] = ACTIONS(4290), - [anon_sym_GT_GT] = ACTIONS(4288), - [anon_sym_GT_GT_GT] = ACTIONS(4290), - [anon_sym_EQ_EQ] = ACTIONS(4290), - [anon_sym_BANG_EQ] = ACTIONS(4290), - [anon_sym_GT_EQ] = ACTIONS(4290), - [anon_sym_LT_EQ] = ACTIONS(4290), - [anon_sym_DOT] = ACTIONS(4288), - [anon_sym_scoped] = ACTIONS(4288), - [anon_sym_var] = ACTIONS(4288), - [anon_sym_yield] = ACTIONS(4288), - [anon_sym_switch] = ACTIONS(4288), - [anon_sym_when] = ACTIONS(4288), - [sym_discard] = ACTIONS(4288), - [anon_sym_DOT_DOT] = ACTIONS(4290), - [anon_sym_and] = ACTIONS(4288), - [anon_sym_or] = ACTIONS(4288), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_PIPE_PIPE] = ACTIONS(4290), - [sym_op_coalescing] = ACTIONS(4290), - [anon_sym_from] = ACTIONS(4288), - [anon_sym_into] = ACTIONS(4288), - [anon_sym_join] = ACTIONS(4288), - [anon_sym_on] = ACTIONS(4288), - [anon_sym_equals] = ACTIONS(4288), - [anon_sym_let] = ACTIONS(4288), - [anon_sym_orderby] = ACTIONS(4288), - [anon_sym_ascending] = ACTIONS(4288), - [anon_sym_descending] = ACTIONS(4288), - [anon_sym_group] = ACTIONS(4288), - [anon_sym_by] = ACTIONS(4288), - [anon_sym_select] = ACTIONS(4288), - [anon_sym_as] = ACTIONS(4288), - [anon_sym_is] = ACTIONS(4288), - [anon_sym_DASH_GT] = ACTIONS(4290), - [anon_sym_with] = ACTIONS(4288), - [sym_grit_metavariable] = ACTIONS(4290), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4290), + [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), }, [2596] = { - [sym_argument_list] = STATE(3651), - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4999), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(3718), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7733), + [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(2596), [sym_preproc_endregion] = STATE(2596), [sym_preproc_line] = STATE(2596), @@ -448875,55 +448953,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2596), [sym_preproc_define] = STATE(2596), [sym_preproc_undef] = STATE(2596), - [sym__identifier_token] = ACTIONS(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(4375), - [anon_sym_LPAREN] = ACTIONS(4377), - [anon_sym_ref] = ACTIONS(4230), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_delegate] = ACTIONS(4381), - [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(4383), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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__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), @@ -448936,11 +449013,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2597] = { - [sym_property_pattern_clause] = STATE(2679), - [sym__variable_designation] = STATE(4897), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -448951,53 +449042,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_define] = STATE(2597), [sym_preproc_undef] = STATE(2597), [sym__identifier_token] = ACTIONS(4208), + [anon_sym_extern] = ACTIONS(3738), [anon_sym_alias] = ACTIONS(4210), [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_COLON] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [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(4248), - [anon_sym_GT] = ACTIONS(4248), + [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(4248), [anon_sym_notnull] = ACTIONS(4210), [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4246), - [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(4248), - [anon_sym_when] = ACTIONS(4248), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), + [anon_sym_when] = ACTIONS(4210), [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4248), + [anon_sym_into] = ACTIONS(4210), [anon_sym_join] = ACTIONS(4210), [anon_sym_on] = ACTIONS(4210), [anon_sym_equals] = ACTIONS(4210), @@ -449008,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(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [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), @@ -449025,26 +449102,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2598] = { - [sym_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(8020), + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7775), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -449054,7 +449131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2598), [sym_preproc_define] = STATE(2598), [sym_preproc_undef] = STATE(2598), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4946), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(3211), @@ -449062,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(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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(4282), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -449114,26 +449191,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2599] = { - [sym_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(7682), + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7715), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -449143,7 +449220,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2599), [sym_preproc_define] = STATE(2599), [sym_preproc_undef] = STATE(2599), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4946), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(3211), @@ -449151,15 +449228,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(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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(4282), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -449203,26 +449280,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2600] = { - [sym_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(7761), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -449232,54 +449308,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2600), [sym_preproc_define] = STATE(2600), [sym_preproc_undef] = STATE(2600), - [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(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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(4282), - [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), + [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_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_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), @@ -449292,26 +449369,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2601] = { - [sym_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(7925), + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7851), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -449321,23 +449398,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2601), [sym_preproc_define] = STATE(2601), [sym_preproc_undef] = STATE(2601), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), + [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(3219), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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(4282), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -449381,26 +449458,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2602] = { - [sym_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(8061), + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7729), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -449410,23 +449487,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2602), [sym_preproc_define] = STATE(2602), [sym_preproc_undef] = STATE(2602), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2605), + [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(4650), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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(4282), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -449470,25 +449547,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2603] = { - [sym_argument_list] = STATE(3651), - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4999), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(5574), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(7752), + [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(2603), [sym_preproc_endregion] = STATE(2603), [sym_preproc_line] = STATE(2603), @@ -449498,113 +449576,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2603), [sym_preproc_define] = STATE(2603), [sym_preproc_undef] = STATE(2603), - [sym__identifier_token] = ACTIONS(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(4375), - [anon_sym_LPAREN] = ACTIONS(4377), - [anon_sym_ref] = ACTIONS(4230), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_delegate] = ACTIONS(4381), - [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(4383), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(7727), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [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(5102), + [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(3219), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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(4282), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -449647,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), }, - [2605] = { - [sym_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(7843), + [2604] = { + [sym_modifier] = STATE(5161), + [sym_variable_declaration] = STATE(8046), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [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), - [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), @@ -449685,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(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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(4282), + [anon_sym_file] = ACTIONS(4288), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -449736,27 +449724,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2606] = { - [sym_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(7745), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -449766,54 +449826,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2606), [sym_preproc_define] = STATE(2606), [sym_preproc_undef] = STATE(2606), - [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(4682), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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(4282), - [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), + [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), @@ -449824,28 +449898,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), }, [2607] = { - [sym_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(8056), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -449855,54 +449915,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2607), [sym_preproc_define] = STATE(2607), [sym_preproc_undef] = STATE(2607), - [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(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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(4282), - [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), + [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), @@ -449915,26 +449989,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2608] = { - [sym_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(8114), + [sym_modifier] = STATE(5161), [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -449944,7 +450017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2608), [sym_preproc_define] = STATE(2608), [sym_preproc_undef] = STATE(2608), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5102), + [aux_sym__class_declaration_initializer_repeat2] = STATE(4946), [sym__identifier_token] = ACTIONS(3207), [anon_sym_extern] = ACTIONS(657), [anon_sym_alias] = ACTIONS(3211), @@ -449952,15 +450025,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(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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(4282), + [anon_sym_file] = ACTIONS(4658), [anon_sym_fixed] = ACTIONS(657), [anon_sym_internal] = ACTIONS(657), [anon_sym_new] = ACTIONS(657), @@ -450004,26 +450077,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2609] = { - [sym_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(7884), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6210), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -450033,86 +450090,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2609), [sym_preproc_define] = STATE(2609), [sym_preproc_undef] = STATE(2609), - [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(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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(4282), - [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), + [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_modifier] = STATE(5186), - [sym_variable_declaration] = STATE(7680), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6213), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -450122,71 +450178,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2610), [sym_preproc_define] = STATE(2610), [sym_preproc_undef] = STATE(2610), - [aux_sym__class_declaration_initializer_repeat2] = STATE(2608), - [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(4638), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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(4282), - [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), + [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_property_pattern_clause] = STATE(2735), - [sym__variable_designation] = STATE(5292), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym_identifier] = STATE(5246), - [sym__reserved_identifier] = STATE(2400), + [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), @@ -450196,101 +450266,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2611), [sym_preproc_define] = STATE(2611), [sym_preproc_undef] = STATE(2611), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4252), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [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(4432), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4432), - [sym_discard] = ACTIONS(4534), - [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(4432), - [anon_sym_join] = ACTIONS(4252), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [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(4432), - [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(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__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_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [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), @@ -450300,85 +450354,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2612), [sym_preproc_define] = STATE(2612), [sym_preproc_undef] = STATE(2612), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4736), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [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), @@ -450388,85 +450442,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2613), [sym_preproc_define] = STATE(2613), [sym_preproc_undef] = STATE(2613), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4736), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2614] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [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), @@ -450476,85 +450530,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2614), [sym_preproc_define] = STATE(2614), [sym_preproc_undef] = STATE(2614), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4742), - [anon_sym_QMARK] = ACTIONS(4744), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4754), - [anon_sym_from] = ACTIONS(4742), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_join] = ACTIONS(4742), - [anon_sym_let] = ACTIONS(4742), - [anon_sym_orderby] = ACTIONS(4742), - [anon_sym_ascending] = ACTIONS(4742), - [anon_sym_descending] = ACTIONS(4742), - [anon_sym_group] = ACTIONS(4742), - [anon_sym_select] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4736), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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_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(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [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), @@ -450564,139 +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(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4736), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2616] = { - [sym__variable_designation] = STATE(5773), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym_identifier] = STATE(5768), - [sym__reserved_identifier] = STATE(5564), - [sym_preproc_region] = STATE(2616), - [sym_preproc_endregion] = STATE(2616), - [sym_preproc_line] = STATE(2616), - [sym_preproc_pragma] = STATE(2616), - [sym_preproc_nullable] = STATE(2616), - [sym_preproc_error] = STATE(2616), - [sym_preproc_warning] = STATE(2616), - [sym_preproc_define] = STATE(2616), - [sym_preproc_undef] = STATE(2616), - [sym__identifier_token] = ACTIONS(4404), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), + [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(4406), + [anon_sym_file] = ACTIONS(4415), [anon_sym_LT] = ACTIONS(4252), [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4406), + [anon_sym_where] = ACTIONS(4415), [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [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(4406), - [anon_sym_var] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), + [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(4406), - [sym_discard] = ACTIONS(4410), + [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(4406), + [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(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), + [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(4412), + [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), @@ -450709,28 +450692,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), [sym_interpolation_close_brace] = ACTIONS(4250), }, + [2616] = { + [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), + [sym_preproc_pragma] = STATE(2616), + [sym_preproc_nullable] = STATE(2616), + [sym_preproc_error] = STATE(2616), + [sym_preproc_warning] = STATE(2616), + [sym_preproc_define] = STATE(2616), + [sym_preproc_undef] = STATE(2616), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [2617] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [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), @@ -450740,52 +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(4684), - [anon_sym_COMMA] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4756), - [anon_sym_QMARK] = ACTIONS(4744), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4756), - [anon_sym_or] = ACTIONS(4758), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4754), - [anon_sym_from] = ACTIONS(4756), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_join] = ACTIONS(4756), - [anon_sym_let] = ACTIONS(4756), - [anon_sym_orderby] = ACTIONS(4756), - [anon_sym_ascending] = ACTIONS(4756), - [anon_sym_descending] = ACTIONS(4756), - [anon_sym_group] = ACTIONS(4756), - [anon_sym_select] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4736), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -450798,10 +450869,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2618] = { - [sym__variable_designation] = STATE(5779), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym_identifier] = STATE(5768), - [sym__reserved_identifier] = STATE(5564), + [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), @@ -450811,102 +450883,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2618), [sym_preproc_define] = STATE(2618), [sym_preproc_undef] = STATE(2618), - [sym__identifier_token] = ACTIONS(4404), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_COLON] = ACTIONS(4246), - [anon_sym_COMMA] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4406), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4406), - [anon_sym_var] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4406), - [sym_discard] = ACTIONS(4410), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4406), - [anon_sym_into] = ACTIONS(4248), - [anon_sym_join] = ACTIONS(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4412), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4246), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2619] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [sym_type_argument_list] = STATE(2417), [sym_preproc_region] = STATE(2619), [sym_preproc_endregion] = STATE(2619), [sym_preproc_line] = STATE(2619), @@ -450916,52 +450967,72 @@ 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(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4736), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -450974,10 +451045,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2620] = { - [sym__variable_designation] = STATE(5786), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym_identifier] = STATE(5768), - [sym__reserved_identifier] = STATE(5564), + [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), @@ -450987,102 +451059,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2620), [sym_preproc_define] = STATE(2620), [sym_preproc_undef] = STATE(2620), - [sym__identifier_token] = ACTIONS(4404), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4296), - [anon_sym_COLON] = ACTIONS(4296), - [anon_sym_COMMA] = ACTIONS(4296), - [anon_sym_LPAREN] = ACTIONS(4296), - [anon_sym_file] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4298), - [anon_sym_GT] = ACTIONS(4298), - [anon_sym_where] = ACTIONS(4406), - [anon_sym_QMARK] = ACTIONS(4298), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [anon_sym_BANG] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_SLASH] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4298), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4298), - [anon_sym_GT_GT_GT] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4296), - [anon_sym_BANG_EQ] = ACTIONS(4296), - [anon_sym_GT_EQ] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4296), - [anon_sym_DOT] = ACTIONS(4298), - [anon_sym_scoped] = ACTIONS(4406), - [anon_sym_var] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), - [anon_sym_switch] = ACTIONS(4298), - [anon_sym_when] = ACTIONS(4406), - [sym_discard] = ACTIONS(4410), - [anon_sym_DOT_DOT] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4298), - [anon_sym_or] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4296), - [sym_op_coalescing] = ACTIONS(4296), - [anon_sym_from] = ACTIONS(4406), - [anon_sym_into] = ACTIONS(4298), - [anon_sym_join] = ACTIONS(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4296), - [anon_sym_with] = ACTIONS(4298), - [sym_grit_metavariable] = ACTIONS(4412), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4296), + [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_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [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), @@ -451092,52 +451147,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2621), [sym_preproc_define] = STATE(2621), [sym_preproc_undef] = STATE(2621), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_where] = ACTIONS(4760), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4762), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [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(4762), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -451150,10 +451220,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2622] = { - [sym__variable_designation] = STATE(5791), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym_identifier] = STATE(5768), - [sym__reserved_identifier] = STATE(5564), + [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), @@ -451163,86 +451233,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2622), [sym_preproc_define] = STATE(2622), [sym_preproc_undef] = STATE(2622), - [sym__identifier_token] = ACTIONS(4404), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4300), - [anon_sym_COLON] = ACTIONS(4300), - [anon_sym_COMMA] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_file] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4302), - [anon_sym_where] = ACTIONS(4406), - [anon_sym_QMARK] = ACTIONS(4302), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_PLUS_PLUS] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4302), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4302), - [anon_sym_LT_LT] = ACTIONS(4300), - [anon_sym_GT_GT] = ACTIONS(4302), - [anon_sym_GT_GT_GT] = ACTIONS(4300), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_GT_EQ] = ACTIONS(4300), - [anon_sym_LT_EQ] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_scoped] = ACTIONS(4406), - [anon_sym_var] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), - [anon_sym_switch] = ACTIONS(4302), - [anon_sym_when] = ACTIONS(4406), - [sym_discard] = ACTIONS(4410), - [anon_sym_DOT_DOT] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4302), - [anon_sym_or] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4300), - [sym_op_coalescing] = ACTIONS(4300), - [anon_sym_from] = ACTIONS(4406), - [anon_sym_into] = ACTIONS(4302), - [anon_sym_join] = ACTIONS(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4302), - [anon_sym_is] = ACTIONS(4302), - [anon_sym_DASH_GT] = ACTIONS(4300), - [anon_sym_with] = ACTIONS(4302), - [sym_grit_metavariable] = ACTIONS(4412), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4300), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2623] = { - [sym_property_pattern_clause] = STATE(2774), - [sym__variable_designation] = STATE(5446), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym_identifier] = STATE(5246), - [sym__reserved_identifier] = STATE(2400), + [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), @@ -451252,68 +451321,67 @@ 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(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_COMMA] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4432), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4432), - [sym_discard] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4248), - [anon_sym_into] = ACTIONS(4248), - [anon_sym_join] = ACTIONS(4248), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4248), - [anon_sym_orderby] = ACTIONS(4248), - [anon_sym_ascending] = ACTIONS(4248), - [anon_sym_descending] = ACTIONS(4248), - [anon_sym_group] = ACTIONS(4248), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4248), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -451326,11 +451394,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2624] = { - [sym_property_pattern_clause] = STATE(2770), - [sym__variable_designation] = STATE(5292), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym_identifier] = STATE(5246), - [sym__reserved_identifier] = STATE(2400), + [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), @@ -451340,68 +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), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), + [sym__identifier_token] = ACTIONS(4216), + [anon_sym_alias] = ACTIONS(4218), + [anon_sym_global] = ACTIONS(4218), [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4432), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4218), [anon_sym_LT] = ACTIONS(4252), [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4252), + [anon_sym_where] = ACTIONS(4218), [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [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(4432), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), + [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(4432), - [sym_discard] = ACTIONS(4534), + [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(4252), + [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(4252), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [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(4432), - [anon_sym_select] = 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(4436), + [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), @@ -451414,27 +451481,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2625] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), [sym_preproc_region] = STATE(2625), [sym_preproc_endregion] = STATE(2625), [sym_preproc_line] = STATE(2625), @@ -451444,52 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4736), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -451502,27 +451568,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2626] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [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), @@ -451532,52 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4764), - [anon_sym_QMARK] = ACTIONS(4744), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4754), - [anon_sym_from] = ACTIONS(4764), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_join] = ACTIONS(4764), - [anon_sym_let] = ACTIONS(4764), - [anon_sym_orderby] = ACTIONS(4764), - [anon_sym_ascending] = ACTIONS(4764), - [anon_sym_descending] = ACTIONS(4764), - [anon_sym_group] = ACTIONS(4764), - [anon_sym_select] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4736), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -451590,27 +451655,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2627] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), [sym_preproc_region] = STATE(2627), [sym_preproc_endregion] = STATE(2627), [sym_preproc_line] = STATE(2627), @@ -451620,52 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_where] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_from] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_join] = ACTIONS(4768), - [anon_sym_let] = ACTIONS(4768), - [anon_sym_orderby] = ACTIONS(4768), - [anon_sym_ascending] = ACTIONS(4768), - [anon_sym_descending] = ACTIONS(4768), - [anon_sym_group] = ACTIONS(4768), - [anon_sym_select] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4770), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -451678,27 +451742,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2628] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [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), @@ -451708,52 +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(4684), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_QMARK] = ACTIONS(4744), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4754), - [anon_sym_from] = ACTIONS(4772), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_join] = ACTIONS(4772), - [anon_sym_let] = ACTIONS(4772), - [anon_sym_orderby] = ACTIONS(4772), - [anon_sym_ascending] = ACTIONS(4772), - [anon_sym_descending] = ACTIONS(4772), - [anon_sym_group] = ACTIONS(4772), - [anon_sym_select] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4736), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -451766,27 +451829,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2629] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), [sym_preproc_region] = STATE(2629), [sym_preproc_endregion] = STATE(2629), [sym_preproc_line] = STATE(2629), @@ -451796,52 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4776), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4744), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4776), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4754), - [anon_sym_from] = ACTIONS(4776), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_join] = ACTIONS(4776), - [anon_sym_let] = ACTIONS(4776), - [anon_sym_orderby] = ACTIONS(4776), - [anon_sym_ascending] = ACTIONS(4776), - [anon_sym_descending] = ACTIONS(4776), - [anon_sym_group] = ACTIONS(4776), - [anon_sym_select] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4736), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -451854,27 +451916,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2630] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [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), @@ -451884,52 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4780), - [anon_sym_QMARK] = ACTIONS(4744), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4754), - [anon_sym_from] = ACTIONS(4780), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_join] = ACTIONS(4780), - [anon_sym_let] = ACTIONS(4780), - [anon_sym_orderby] = ACTIONS(4780), - [anon_sym_ascending] = ACTIONS(4780), - [anon_sym_descending] = ACTIONS(4780), - [anon_sym_group] = ACTIONS(4780), - [anon_sym_select] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4736), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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_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), @@ -451942,25 +452003,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2631] = { - [sym_modifier] = STATE(5186), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6422), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -451970,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(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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(4784), - [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), + [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), @@ -452030,27 +452090,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2632] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [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), @@ -452060,52 +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(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4754), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4736), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -452118,27 +452177,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2633] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [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), @@ -452148,52 +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(4684), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [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(4728), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [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(4738), - [anon_sym_with] = 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(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), @@ -452206,27 +452264,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2634] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [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), @@ -452236,52 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_where] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [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(4788), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -452294,27 +452351,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2635] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [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), @@ -452324,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(4684), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [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(4792), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = 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(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), @@ -452382,7 +452438,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2636] = { - [sym_type_argument_list] = STATE(2423), + [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), @@ -452392,72 +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), - [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(4365), - [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(4147), - [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(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), @@ -452470,11 +452525,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2637] = { - [sym_property_pattern_clause] = STATE(2723), - [sym__variable_designation] = STATE(4997), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -452484,68 +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), - [sym__identifier_token] = ACTIONS(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_in] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4105), - [anon_sym_var] = ACTIONS(4105), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4105), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [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(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -452558,10 +452612,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2638] = { - [sym__variable_designation] = STATE(5791), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym_identifier] = STATE(5768), - [sym__reserved_identifier] = STATE(5564), + [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), @@ -452571,85 +452626,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2638), [sym_preproc_define] = STATE(2638), [sym_preproc_undef] = STATE(2638), - [sym__identifier_token] = ACTIONS(4404), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4300), - [anon_sym_COLON] = ACTIONS(4300), - [anon_sym_COMMA] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_file] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4302), - [anon_sym_where] = ACTIONS(4406), - [anon_sym_QMARK] = ACTIONS(4302), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_PLUS_PLUS] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4302), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4302), - [anon_sym_LT_LT] = ACTIONS(4300), - [anon_sym_GT_GT] = ACTIONS(4302), - [anon_sym_GT_GT_GT] = ACTIONS(4300), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_GT_EQ] = ACTIONS(4300), - [anon_sym_LT_EQ] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_scoped] = ACTIONS(4406), - [anon_sym_var] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), - [anon_sym_switch] = ACTIONS(4302), - [anon_sym_when] = ACTIONS(4406), - [sym_discard] = ACTIONS(4410), - [anon_sym_DOT_DOT] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4302), - [anon_sym_or] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4300), - [sym_op_coalescing] = ACTIONS(4300), - [anon_sym_from] = ACTIONS(4406), - [anon_sym_into] = ACTIONS(4406), - [anon_sym_join] = ACTIONS(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4302), - [anon_sym_is] = ACTIONS(4302), - [anon_sym_DASH_GT] = ACTIONS(4300), - [anon_sym_with] = ACTIONS(4302), - [sym_grit_metavariable] = ACTIONS(4412), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4300), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2639] = { - [sym__variable_designation] = STATE(5786), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym_identifier] = STATE(5768), - [sym__reserved_identifier] = STATE(5564), + [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), @@ -452659,102 +452712,80 @@ 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(4404), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4296), - [anon_sym_COLON] = ACTIONS(4296), - [anon_sym_COMMA] = ACTIONS(4296), - [anon_sym_LPAREN] = ACTIONS(4296), - [anon_sym_file] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4298), - [anon_sym_GT] = ACTIONS(4298), - [anon_sym_where] = ACTIONS(4406), - [anon_sym_QMARK] = ACTIONS(4298), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [anon_sym_BANG] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_SLASH] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4298), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4298), - [anon_sym_GT_GT_GT] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4296), - [anon_sym_BANG_EQ] = ACTIONS(4296), - [anon_sym_GT_EQ] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4296), - [anon_sym_DOT] = ACTIONS(4298), - [anon_sym_scoped] = ACTIONS(4406), - [anon_sym_var] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), - [anon_sym_switch] = ACTIONS(4298), - [anon_sym_when] = ACTIONS(4406), - [sym_discard] = ACTIONS(4410), - [anon_sym_DOT_DOT] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4298), - [anon_sym_or] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4296), - [sym_op_coalescing] = ACTIONS(4296), - [anon_sym_from] = ACTIONS(4406), - [anon_sym_into] = ACTIONS(4406), - [anon_sym_join] = ACTIONS(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4296), - [anon_sym_with] = ACTIONS(4298), - [sym_grit_metavariable] = ACTIONS(4412), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4296), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2640] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), [sym_preproc_region] = STATE(2640), [sym_preproc_endregion] = STATE(2640), [sym_preproc_line] = STATE(2640), @@ -452764,52 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4736), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -452822,27 +452873,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2641] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [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), @@ -452852,52 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4694), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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_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), @@ -452910,11 +452960,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2642] = { - [sym_property_pattern_clause] = STATE(2765), - [sym__variable_designation] = STATE(4986), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -452924,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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), + [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(4214), - [anon_sym_file] = ACTIONS(4105), + [anon_sym_LBRACE] = ACTIONS(4222), + [anon_sym_file] = ACTIONS(4188), [anon_sym_LT] = ACTIONS(4252), [anon_sym_GT] = ACTIONS(4252), - [anon_sym_in] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4105), + [anon_sym_where] = ACTIONS(4252), [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [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(4188), + [anon_sym_unmanaged] = ACTIONS(4188), [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_scoped] = ACTIONS(4105), - [anon_sym_var] = ACTIONS(4105), - [anon_sym_yield] = ACTIONS(4105), + [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(4105), - [sym_discard] = ACTIONS(4236), + [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_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_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(4109), + [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), @@ -452998,10 +453047,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2643] = { - [sym__variable_designation] = STATE(5779), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym_identifier] = STATE(5768), - [sym__reserved_identifier] = STATE(5564), + [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), @@ -453011,102 +453061,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2643), [sym_preproc_define] = STATE(2643), [sym_preproc_undef] = STATE(2643), - [sym__identifier_token] = ACTIONS(4404), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_COLON] = ACTIONS(4246), - [anon_sym_COMMA] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4406), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4406), - [anon_sym_var] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4406), - [sym_discard] = ACTIONS(4410), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4406), - [anon_sym_into] = ACTIONS(4406), - [anon_sym_join] = ACTIONS(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4412), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4246), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2644] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [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), @@ -453116,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(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4694), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -453174,10 +453221,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2645] = { - [sym__variable_designation] = STATE(5773), - [sym_parenthesized_variable_designation] = STATE(5765), - [sym_identifier] = STATE(5768), - [sym__reserved_identifier] = STATE(5564), [sym_preproc_region] = STATE(2645), [sym_preproc_endregion] = STATE(2645), [sym_preproc_line] = STATE(2645), @@ -453187,68 +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), - [sym__identifier_token] = ACTIONS(4404), - [anon_sym_alias] = ACTIONS(4406), - [anon_sym_global] = ACTIONS(4406), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_COLON] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4406), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4406), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4406), - [anon_sym_unmanaged] = ACTIONS(4406), - [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(4406), - [anon_sym_var] = ACTIONS(4406), - [anon_sym_yield] = ACTIONS(4406), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4406), - [sym_discard] = ACTIONS(4410), - [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(4406), - [anon_sym_into] = ACTIONS(4406), - [anon_sym_join] = ACTIONS(4406), - [anon_sym_on] = ACTIONS(4406), - [anon_sym_equals] = ACTIONS(4406), - [anon_sym_let] = ACTIONS(4406), - [anon_sym_orderby] = ACTIONS(4406), - [anon_sym_ascending] = ACTIONS(4406), - [anon_sym_descending] = ACTIONS(4406), - [anon_sym_group] = ACTIONS(4406), - [anon_sym_by] = ACTIONS(4406), - [anon_sym_select] = ACTIONS(4406), - [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(4412), + [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), @@ -453259,30 +453306,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(4250), }, [2646] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), [sym_preproc_region] = STATE(2646), [sym_preproc_endregion] = STATE(2646), [sym_preproc_line] = STATE(2646), @@ -453292,52 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4694), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -453350,27 +453395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2647] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [sym_type_argument_list] = STATE(2710), [sym_preproc_region] = STATE(2647), [sym_preproc_endregion] = STATE(2647), [sym_preproc_line] = STATE(2647), @@ -453380,85 +453405,88 @@ 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(4684), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4794), - [anon_sym_QMARK] = ACTIONS(4744), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4754), - [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(4734), - [anon_sym_is] = ACTIONS(4736), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2648] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [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), @@ -453468,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(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4694), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -453526,27 +453569,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2649] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [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), @@ -453556,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(4684), - [anon_sym_COMMA] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4798), - [anon_sym_QMARK] = ACTIONS(4744), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4732), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4800), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4754), - [anon_sym_from] = ACTIONS(4798), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_join] = ACTIONS(4798), - [anon_sym_let] = ACTIONS(4798), - [anon_sym_orderby] = ACTIONS(4798), - [anon_sym_ascending] = ACTIONS(4798), - [anon_sym_descending] = ACTIONS(4798), - [anon_sym_group] = ACTIONS(4798), - [anon_sym_select] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4736), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -453614,11 +453656,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2650] = { - [sym_property_pattern_clause] = STATE(2748), - [sym__variable_designation] = STATE(5446), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym_identifier] = STATE(5246), - [sym__reserved_identifier] = STATE(2400), + [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), @@ -453628,68 +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), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_COMMA] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4432), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4432), - [sym_discard] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4248), - [anon_sym_into] = ACTIONS(4432), - [anon_sym_join] = ACTIONS(4248), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4248), - [anon_sym_orderby] = ACTIONS(4248), - [anon_sym_ascending] = ACTIONS(4248), - [anon_sym_descending] = ACTIONS(4248), - [anon_sym_group] = ACTIONS(4248), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4248), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -453702,10 +453743,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2651] = { - [sym__variable_designation] = STATE(4887), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -453718,65 +453760,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(4296), - [anon_sym_COLON] = ACTIONS(4296), - [anon_sym_LPAREN] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [anon_sym_LBRACE] = ACTIONS(4222), [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4298), - [anon_sym_GT] = ACTIONS(4298), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4298), + [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(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_SLASH] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4298), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4298), - [anon_sym_GT_GT_GT] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4296), - [anon_sym_BANG_EQ] = ACTIONS(4296), - [anon_sym_GT_EQ] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4296), - [anon_sym_DOT] = ACTIONS(4298), + [anon_sym_DOT] = ACTIONS(4256), [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4296), [anon_sym_var] = ACTIONS(4210), + [anon_sym_STAR] = ACTIONS(4254), [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4298), - [anon_sym_when] = ACTIONS(4298), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4298), - [anon_sym_or] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4296), - [sym_op_coalescing] = ACTIONS(4296), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4298), - [anon_sym_join] = 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(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(4298), - [anon_sym_is] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4296), - [anon_sym_with] = ACTIONS(4298), - [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), @@ -453789,7 +453830,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2652] = { - [sym_type_argument_list] = STATE(3031), [sym_preproc_region] = STATE(2652), [sym_preproc_endregion] = STATE(2652), [sym_preproc_line] = STATE(2652), @@ -453799,70 +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), - [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_LBRACE] = ACTIONS(3953), - [anon_sym_file] = ACTIONS(3951), - [anon_sym_LT] = ACTIONS(4802), - [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(4200), - [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), + [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), @@ -453873,14 +453914,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(3953), }, [2653] = { - [sym_property_pattern_clause] = STATE(2808), - [sym__variable_designation] = STATE(4906), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2653), [sym_preproc_endregion] = STATE(2653), [sym_preproc_line] = STATE(2653), @@ -453890,67 +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), - [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(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), @@ -453972,72 +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), - [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), + [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), @@ -454050,11 +454088,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2655] = { - [sym_property_pattern_clause] = STATE(2801), - [sym__variable_designation] = STATE(4897), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2655), [sym_preproc_endregion] = STATE(2655), [sym_preproc_line] = STATE(2655), @@ -454064,67 +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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4248), - [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(4248), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -454137,11 +454174,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2656] = { - [sym_property_pattern_clause] = STATE(2844), - [sym__variable_designation] = STATE(4997), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -454151,67 +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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [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(4248), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -454224,11 +454260,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2657] = { - [sym_property_pattern_clause] = STATE(2797), - [sym__variable_designation] = STATE(4986), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2657), [sym_preproc_endregion] = STATE(2657), [sym_preproc_line] = STATE(2657), @@ -454238,154 +454269,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2657), [sym_preproc_define] = STATE(2657), [sym_preproc_undef] = STATE(2657), - [sym__identifier_token] = ACTIONS(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(4236), - [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(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), - }, - [2658] = { - [sym_property_pattern_clause] = STATE(2911), - [sym__variable_designation] = STATE(5521), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym_identifier] = STATE(5517), - [sym__reserved_identifier] = STATE(3741), - [sym_preproc_region] = STATE(2658), - [sym_preproc_endregion] = STATE(2658), - [sym_preproc_line] = STATE(2658), - [sym_preproc_pragma] = STATE(2658), - [sym_preproc_nullable] = STATE(2658), - [sym_preproc_error] = STATE(2658), - [sym_preproc_warning] = STATE(2658), - [sym_preproc_define] = STATE(2658), - [sym_preproc_undef] = STATE(2658), - [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(4568), - [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), + [aux_sym_preproc_line_token1] = ACTIONS(7), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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_preproc_region] = STATE(2658), + [sym_preproc_endregion] = STATE(2658), + [sym_preproc_line] = STATE(2658), + [sym_preproc_pragma] = STATE(2658), + [sym_preproc_nullable] = STATE(2658), + [sym_preproc_error] = STATE(2658), + [sym_preproc_warning] = STATE(2658), + [sym_preproc_define] = STATE(2658), + [sym_preproc_undef] = STATE(2658), + [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), @@ -454407,72 +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(4520), - [anon_sym_alias] = ACTIONS(4520), - [anon_sym_global] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_COLON] = ACTIONS(3205), - [anon_sym_COMMA] = ACTIONS(4522), - [anon_sym_RBRACK] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_RPAREN] = ACTIONS(4522), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_file] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_where] = ACTIONS(4520), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_notnull] = ACTIONS(4520), - [anon_sym_unmanaged] = ACTIONS(4520), - [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(4520), - [anon_sym_EQ_GT] = ACTIONS(4522), - [anon_sym_var] = ACTIONS(4520), - [anon_sym_yield] = ACTIONS(4520), - [anon_sym_switch] = ACTIONS(3203), - [anon_sym_when] = ACTIONS(4520), - [sym_discard] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(3205), - [anon_sym_and] = ACTIONS(4520), - [anon_sym_or] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_PIPE_PIPE] = ACTIONS(3205), - [sym_op_coalescing] = ACTIONS(3205), - [anon_sym_from] = ACTIONS(4520), - [anon_sym_into] = ACTIONS(4520), - [anon_sym_join] = ACTIONS(4520), - [anon_sym_on] = ACTIONS(4520), - [anon_sym_equals] = ACTIONS(4520), - [anon_sym_let] = ACTIONS(4520), - [anon_sym_orderby] = ACTIONS(4520), - [anon_sym_ascending] = ACTIONS(4520), - [anon_sym_descending] = ACTIONS(4520), - [anon_sym_group] = ACTIONS(4520), - [anon_sym_by] = ACTIONS(4520), - [anon_sym_select] = ACTIONS(4520), - [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(4522), + [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), @@ -454485,27 +454518,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2660] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), + [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), @@ -454515,51 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4809), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -454572,27 +454604,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2661] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), + [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), @@ -454602,51 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4809), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -454659,27 +454690,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2662] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), [sym_preproc_region] = STATE(2662), [sym_preproc_endregion] = STATE(2662), [sym_preproc_line] = STATE(2662), @@ -454689,51 +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(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4809), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -454746,27 +454776,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2663] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), [sym_preproc_region] = STATE(2663), [sym_preproc_endregion] = STATE(2663), [sym_preproc_line] = STATE(2663), @@ -454776,68 +454785,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2663), [sym_preproc_define] = STATE(2663), [sym_preproc_undef] = STATE(2663), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4809), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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), }, [2664] = { - [sym_property_pattern_clause] = STATE(2871), - [sym__variable_designation] = STATE(4997), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2664), [sym_preproc_endregion] = STATE(2664), [sym_preproc_line] = STATE(2664), @@ -454847,67 +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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4248), - [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(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [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(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), @@ -454920,27 +454948,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2665] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), + [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), @@ -454950,51 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4809), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -455007,27 +455034,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2666] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), + [sym_type_argument_list] = STATE(2710), [sym_preproc_region] = STATE(2666), [sym_preproc_endregion] = STATE(2666), [sym_preproc_line] = STATE(2666), @@ -455037,68 +455044,86 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4809), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2667] = { - [sym_property_pattern_clause] = STATE(2874), - [sym__variable_designation] = STATE(4986), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -455108,67 +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(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(4236), - [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(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), @@ -455181,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(2954), - [sym__variable_designation] = STATE(5510), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym_identifier] = STATE(5517), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -455195,67 +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(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4228), - [sym_discard] = ACTIONS(4568), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4248), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4248), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4248), - [anon_sym_orderby] = ACTIONS(4248), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4248), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4248), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4232), + [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), @@ -455268,27 +455292,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2669] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), + [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), @@ -455298,51 +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(4684), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_where] = ACTIONS(4760), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4762), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_from] = 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(4762), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -455355,10 +455378,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2670] = { - [sym__variable_designation] = STATE(4911), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2670), [sym_preproc_endregion] = STATE(2670), [sym_preproc_line] = STATE(2670), @@ -455368,68 +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), - [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(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), @@ -455442,27 +455464,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2671] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), [sym_preproc_region] = STATE(2671), [sym_preproc_endregion] = STATE(2671), [sym_preproc_line] = STATE(2671), @@ -455472,51 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4794), - [anon_sym_QMARK] = ACTIONS(4811), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4813), - [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(4807), - [anon_sym_is] = ACTIONS(4809), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -455529,11 +455550,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2672] = { - [sym_property_pattern_clause] = STATE(2960), - [sym__variable_designation] = STATE(4897), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -455543,67 +455563,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2672), [sym_preproc_define] = STATE(2672), [sym_preproc_undef] = STATE(2672), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4248), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4248), - [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(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4220), + [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(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), @@ -455625,105 +455645,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2673), [sym_preproc_define] = STATE(2673), [sym_preproc_undef] = STATE(2673), - [sym__identifier_token] = ACTIONS(4482), - [anon_sym_alias] = ACTIONS(4482), - [anon_sym_global] = ACTIONS(4482), - [anon_sym_LBRACK] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4484), - [anon_sym_RBRACK] = ACTIONS(4484), - [anon_sym_LPAREN] = ACTIONS(4484), - [anon_sym_RPAREN] = ACTIONS(4484), - [anon_sym_RBRACE] = ACTIONS(4484), - [anon_sym_file] = ACTIONS(4482), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_where] = ACTIONS(4482), - [anon_sym_QMARK] = ACTIONS(4817), - [anon_sym_notnull] = ACTIONS(4482), - [anon_sym_unmanaged] = ACTIONS(4482), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PLUS_PLUS] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_CARET] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_LT_LT] = ACTIONS(4815), - [anon_sym_GT_GT] = ACTIONS(4817), - [anon_sym_GT_GT_GT] = ACTIONS(4815), - [anon_sym_EQ_EQ] = ACTIONS(4815), - [anon_sym_BANG_EQ] = ACTIONS(4815), - [anon_sym_GT_EQ] = ACTIONS(4815), - [anon_sym_LT_EQ] = ACTIONS(4815), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_scoped] = ACTIONS(4482), - [anon_sym_EQ_GT] = ACTIONS(4484), - [anon_sym_var] = ACTIONS(4482), - [anon_sym_yield] = ACTIONS(4482), - [anon_sym_switch] = ACTIONS(4817), - [anon_sym_when] = ACTIONS(4482), - [sym_discard] = ACTIONS(4482), - [anon_sym_DOT_DOT] = ACTIONS(4815), - [anon_sym_and] = ACTIONS(4482), - [anon_sym_or] = ACTIONS(4482), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [sym_op_coalescing] = ACTIONS(4815), - [anon_sym_from] = ACTIONS(4482), - [anon_sym_into] = ACTIONS(4482), - [anon_sym_join] = ACTIONS(4482), - [anon_sym_on] = ACTIONS(4482), - [anon_sym_equals] = ACTIONS(4482), - [anon_sym_let] = ACTIONS(4482), - [anon_sym_orderby] = ACTIONS(4482), - [anon_sym_ascending] = ACTIONS(4482), - [anon_sym_descending] = ACTIONS(4482), - [anon_sym_group] = ACTIONS(4482), - [anon_sym_by] = ACTIONS(4482), - [anon_sym_select] = ACTIONS(4482), - [anon_sym_as] = ACTIONS(4817), - [anon_sym_is] = ACTIONS(4817), - [anon_sym_DASH_GT] = ACTIONS(4815), - [anon_sym_with] = ACTIONS(4817), - [sym_grit_metavariable] = ACTIONS(4484), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), [sym_preproc_region] = STATE(2674), [sym_preproc_endregion] = STATE(2674), [sym_preproc_line] = STATE(2674), @@ -455733,51 +455731,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2674), [sym_preproc_define] = STATE(2674), [sym_preproc_undef] = STATE(2674), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4764), - [anon_sym_QMARK] = ACTIONS(4811), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4813), - [anon_sym_from] = ACTIONS(4764), - [anon_sym_join] = ACTIONS(4764), - [anon_sym_let] = ACTIONS(4764), - [anon_sym_orderby] = ACTIONS(4764), - [anon_sym_ascending] = ACTIONS(4764), - [anon_sym_descending] = ACTIONS(4764), - [anon_sym_group] = ACTIONS(4764), - [anon_sym_select] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4809), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -455790,11 +455808,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2675] = { - [sym_property_pattern_clause] = STATE(2910), - [sym__variable_designation] = STATE(4997), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -455804,67 +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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4248), - [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(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -455877,10 +455894,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2676] = { - [sym__variable_designation] = STATE(4896), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -455890,68 +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(4246), - [anon_sym_COLON] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4246), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4248), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4248), - [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(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [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), @@ -455964,27 +455980,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2677] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), + [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), @@ -455994,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(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4694), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -456051,11 +456066,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2678] = { - [sym_property_pattern_clause] = STATE(2915), - [sym__variable_designation] = STATE(4986), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2678), [sym_preproc_endregion] = STATE(2678), [sym_preproc_line] = STATE(2678), @@ -456065,67 +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), - [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(4236), - [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(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), @@ -456136,12 +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__variable_designation] = STATE(4861), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2679), [sym_preproc_endregion] = STATE(2679), [sym_preproc_line] = STATE(2679), @@ -456151,68 +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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4300), - [anon_sym_COLON] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4302), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4302), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_PLUS_PLUS] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4302), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4302), - [anon_sym_LT_LT] = ACTIONS(4300), - [anon_sym_GT_GT] = ACTIONS(4302), - [anon_sym_GT_GT_GT] = ACTIONS(4300), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_GT_EQ] = ACTIONS(4300), - [anon_sym_LT_EQ] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4300), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4302), - [anon_sym_when] = ACTIONS(4302), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4302), - [anon_sym_or] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4300), - [sym_op_coalescing] = ACTIONS(4300), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4302), - [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(4302), - [anon_sym_is] = ACTIONS(4302), - [anon_sym_DASH_GT] = ACTIONS(4300), - [anon_sym_with] = ACTIONS(4302), - [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(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), @@ -456225,27 +456238,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2680] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), + [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), @@ -456255,51 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4694), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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_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), @@ -456312,11 +456324,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2681] = { - [sym_property_pattern_clause] = STATE(2941), - [sym__variable_designation] = STATE(5510), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym_identifier] = STATE(5517), - [sym__reserved_identifier] = STATE(3393), [sym_preproc_region] = STATE(2681), [sym_preproc_endregion] = STATE(2681), [sym_preproc_line] = STATE(2681), @@ -456326,67 +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), - [sym__identifier_token] = ACTIONS(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4151), - [anon_sym_var] = ACTIONS(4151), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4151), - [sym_discard] = ACTIONS(4568), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4248), - [anon_sym_into] = ACTIONS(4248), - [anon_sym_join] = ACTIONS(4248), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4248), - [anon_sym_orderby] = ACTIONS(4248), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4248), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4248), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -456399,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(2943), - [sym__variable_designation] = STATE(5521), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym_identifier] = STATE(5517), - [sym__reserved_identifier] = STATE(3393), [sym_preproc_region] = STATE(2682), [sym_preproc_endregion] = STATE(2682), [sym_preproc_line] = STATE(2682), @@ -456413,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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4252), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [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(4151), - [anon_sym_var] = ACTIONS(4151), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4151), - [sym_discard] = ACTIONS(4568), - [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(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4252), - [anon_sym_orderby] = ACTIONS(4252), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4252), - [anon_sym_by] = ACTIONS(4151), - [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(4158), + [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), @@ -456486,27 +456496,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2683] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), [sym_preproc_region] = STATE(2683), [sym_preproc_endregion] = STATE(2683), [sym_preproc_line] = STATE(2683), @@ -456516,68 +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(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4813), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4809), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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_property_pattern_clause] = STATE(2963), - [sym__variable_designation] = STATE(4906), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2684), [sym_preproc_endregion] = STATE(2684), [sym_preproc_line] = STATE(2684), @@ -456587,67 +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), - [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(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), @@ -456669,72 +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(3540), - [anon_sym_extern] = ACTIONS(3540), - [anon_sym_alias] = ACTIONS(3540), - [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3542), - [anon_sym_implicit] = ACTIONS(3540), - [anon_sym_explicit] = ACTIONS(3540), - [anon_sym_scoped] = ACTIONS(3540), - [anon_sym_var] = ACTIONS(3540), - [sym_predefined_type] = ACTIONS(3540), - [anon_sym_while] = ACTIONS(3540), - [anon_sym_yield] = ACTIONS(3540), - [anon_sym_when] = ACTIONS(3540), - [anon_sym_else] = 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), - [sym_grit_metavariable] = ACTIONS(3542), - [aux_sym_preproc_if_token1] = ACTIONS(3542), - [aux_sym_preproc_if_token3] = ACTIONS(3542), - [aux_sym_preproc_else_token1] = ACTIONS(3542), - [aux_sym_preproc_elif_token1] = ACTIONS(3542), + [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), @@ -456747,10 +456754,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2686] = { - [sym__variable_designation] = STATE(4980), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2686), [sym_preproc_endregion] = STATE(2686), [sym_preproc_line] = STATE(2686), @@ -456760,68 +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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4300), - [anon_sym_COLON] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4302), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4302), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_PLUS_PLUS] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4302), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4302), - [anon_sym_LT_LT] = ACTIONS(4300), - [anon_sym_GT_GT] = ACTIONS(4302), - [anon_sym_GT_GT_GT] = ACTIONS(4300), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_GT_EQ] = ACTIONS(4300), - [anon_sym_LT_EQ] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4300), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4302), - [anon_sym_when] = ACTIONS(4302), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4302), - [anon_sym_or] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4300), - [sym_op_coalescing] = ACTIONS(4300), - [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(4302), - [anon_sym_is] = ACTIONS(4302), - [anon_sym_DASH_GT] = ACTIONS(4300), - [anon_sym_with] = ACTIONS(4302), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -456834,10 +456840,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2687] = { - [sym__variable_designation] = STATE(4984), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2687), [sym_preproc_endregion] = STATE(2687), [sym_preproc_line] = STATE(2687), @@ -456847,68 +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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4296), - [anon_sym_COLON] = ACTIONS(4296), - [anon_sym_LPAREN] = ACTIONS(4296), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4298), - [anon_sym_GT] = ACTIONS(4298), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4298), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_SLASH] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4298), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4298), - [anon_sym_GT_GT_GT] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4296), - [anon_sym_BANG_EQ] = ACTIONS(4296), - [anon_sym_GT_EQ] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4296), - [anon_sym_DOT] = ACTIONS(4298), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4296), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4298), - [anon_sym_when] = ACTIONS(4298), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4298), - [anon_sym_or] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4296), - [sym_op_coalescing] = ACTIONS(4296), - [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(4298), - [anon_sym_is] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4296), - [anon_sym_with] = ACTIONS(4298), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -456921,10 +456926,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2688] = { - [sym__variable_designation] = STATE(4951), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), + [sym_type_argument_list] = STATE(2827), [sym_preproc_region] = STATE(2688), [sym_preproc_endregion] = STATE(2688), [sym_preproc_line] = STATE(2688), @@ -456934,68 +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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_COLON] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(4246), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4248), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [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(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -457008,27 +457012,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2689] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), [sym_preproc_region] = STATE(2689), [sym_preproc_endregion] = STATE(2689), [sym_preproc_line] = STATE(2689), @@ -457038,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(4684), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_where] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_from] = ACTIONS(4768), - [anon_sym_join] = ACTIONS(4768), - [anon_sym_let] = ACTIONS(4768), - [anon_sym_orderby] = ACTIONS(4768), - [anon_sym_ascending] = ACTIONS(4768), - [anon_sym_descending] = ACTIONS(4768), - [anon_sym_group] = ACTIONS(4768), - [anon_sym_select] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4770), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -457095,27 +457098,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2690] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), + [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), @@ -457125,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(4684), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4742), - [anon_sym_QMARK] = ACTIONS(4811), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4813), - [anon_sym_from] = ACTIONS(4742), - [anon_sym_join] = ACTIONS(4742), - [anon_sym_let] = ACTIONS(4742), - [anon_sym_orderby] = ACTIONS(4742), - [anon_sym_ascending] = ACTIONS(4742), - [anon_sym_descending] = ACTIONS(4742), - [anon_sym_group] = ACTIONS(4742), - [anon_sym_select] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4809), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -457182,10 +457183,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2691] = { - [sym__variable_designation] = STATE(4985), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2691), [sym_preproc_endregion] = STATE(2691), [sym_preproc_line] = STATE(2691), @@ -457195,68 +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_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(4236), - [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(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), @@ -457269,27 +457268,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2692] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), [sym_preproc_region] = STATE(2692), [sym_preproc_endregion] = STATE(2692), [sym_preproc_line] = STATE(2692), @@ -457299,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(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4694), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -457356,27 +457353,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2693] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), [sym_preproc_region] = STATE(2693), [sym_preproc_endregion] = STATE(2693), [sym_preproc_line] = STATE(2693), @@ -457386,84 +457362,82 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4694), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2694] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), [sym_preproc_region] = STATE(2694), [sym_preproc_endregion] = STATE(2694), [sym_preproc_line] = STATE(2694), @@ -457473,138 +457447,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2694), [sym_preproc_define] = STATE(2694), [sym_preproc_undef] = STATE(2694), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [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(4792), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4790), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(3046), - [sym__variable_designation] = STATE(4897), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), - [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(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4248), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4248), - [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(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -457615,29 +457520,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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), [sym_preproc_region] = STATE(2696), [sym_preproc_endregion] = STATE(2696), [sym_preproc_line] = STATE(2696), @@ -457647,84 +457617,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2696), [sym_preproc_define] = STATE(2696), [sym_preproc_undef] = STATE(2696), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_where] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [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(4788), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4786), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), + [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), @@ -457734,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(4684), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4780), - [anon_sym_QMARK] = ACTIONS(4811), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4813), - [anon_sym_from] = ACTIONS(4780), - [anon_sym_join] = ACTIONS(4780), - [anon_sym_let] = ACTIONS(4780), - [anon_sym_orderby] = ACTIONS(4780), - [anon_sym_ascending] = ACTIONS(4780), - [anon_sym_descending] = ACTIONS(4780), - [anon_sym_group] = ACTIONS(4780), - [anon_sym_select] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4809), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -457800,72 +457787,69 @@ 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(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), + [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_DOT] = ACTIONS(3951), + [anon_sym_scoped] = ACTIONS(3951), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -457876,29 +457860,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(3953), }, [2699] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), [sym_preproc_region] = STATE(2699), [sym_preproc_endregion] = STATE(2699), [sym_preproc_line] = STATE(2699), @@ -457908,51 +457872,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2699), [sym_preproc_define] = STATE(2699), [sym_preproc_undef] = STATE(2699), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [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(4728), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [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(4738), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -457965,27 +457948,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2700] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), [sym_preproc_region] = STATE(2700), [sym_preproc_endregion] = STATE(2700), [sym_preproc_line] = STATE(2700), @@ -457995,51 +457957,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2700), [sym_preproc_define] = STATE(2700), [sym_preproc_undef] = STATE(2700), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4798), - [anon_sym_QMARK] = ACTIONS(4811), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4800), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4813), - [anon_sym_from] = ACTIONS(4798), - [anon_sym_join] = ACTIONS(4798), - [anon_sym_let] = ACTIONS(4798), - [anon_sym_orderby] = ACTIONS(4798), - [anon_sym_ascending] = ACTIONS(4798), - [anon_sym_descending] = ACTIONS(4798), - [anon_sym_group] = ACTIONS(4798), - [anon_sym_select] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4809), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -458050,13 +458030,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(3982), }, [2701] = { - [sym_property_pattern_clause] = STATE(3047), - [sym__variable_designation] = STATE(4906), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2701), [sym_preproc_endregion] = STATE(2701), [sym_preproc_line] = STATE(2701), @@ -458066,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(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(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), @@ -458139,27 +458118,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2702] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), [sym_preproc_region] = STATE(2702), [sym_preproc_endregion] = STATE(2702), [sym_preproc_line] = STATE(2702), @@ -458169,61 +458127,80 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_QMARK] = ACTIONS(4811), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4805), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4813), - [anon_sym_from] = ACTIONS(4772), - [anon_sym_join] = ACTIONS(4772), - [anon_sym_let] = ACTIONS(4772), - [anon_sym_orderby] = ACTIONS(4772), - [anon_sym_ascending] = ACTIONS(4772), - [anon_sym_descending] = ACTIONS(4772), - [anon_sym_group] = ACTIONS(4772), - [anon_sym_select] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4809), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2703] = { [sym_preproc_region] = STATE(2703), @@ -458235,82 +458212,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2703), [sym_preproc_define] = STATE(2703), [sym_preproc_undef] = STATE(2703), - [sym__identifier_token] = ACTIONS(3422), - [anon_sym_extern] = ACTIONS(3422), - [anon_sym_alias] = ACTIONS(3422), - [anon_sym_global] = ACTIONS(3422), - [anon_sym_using] = ACTIONS(3422), - [anon_sym_unsafe] = ACTIONS(3422), - [anon_sym_static] = ACTIONS(3422), - [anon_sym_LBRACK] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(3424), - [anon_sym_event] = ACTIONS(3422), - [anon_sym_namespace] = ACTIONS(3422), - [anon_sym_class] = ACTIONS(3422), - [anon_sym_ref] = ACTIONS(3422), - [anon_sym_struct] = ACTIONS(3422), - [anon_sym_enum] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3424), - [anon_sym_interface] = ACTIONS(3422), - [anon_sym_delegate] = ACTIONS(3422), - [anon_sym_record] = ACTIONS(3422), - [anon_sym_public] = ACTIONS(3422), - [anon_sym_private] = ACTIONS(3422), - [anon_sym_readonly] = ACTIONS(3422), - [anon_sym_abstract] = ACTIONS(3422), - [anon_sym_async] = ACTIONS(3422), - [anon_sym_const] = ACTIONS(3422), - [anon_sym_file] = ACTIONS(3422), - [anon_sym_fixed] = ACTIONS(3422), - [anon_sym_internal] = ACTIONS(3422), - [anon_sym_new] = ACTIONS(3422), - [anon_sym_override] = ACTIONS(3422), - [anon_sym_partial] = ACTIONS(3422), - [anon_sym_protected] = ACTIONS(3422), - [anon_sym_required] = ACTIONS(3422), - [anon_sym_sealed] = ACTIONS(3422), - [anon_sym_virtual] = ACTIONS(3422), - [anon_sym_volatile] = ACTIONS(3422), - [anon_sym_where] = ACTIONS(3422), - [anon_sym_notnull] = ACTIONS(3422), - [anon_sym_unmanaged] = ACTIONS(3422), - [anon_sym_TILDE] = ACTIONS(3424), - [anon_sym_implicit] = ACTIONS(3422), - [anon_sym_explicit] = ACTIONS(3422), - [anon_sym_scoped] = ACTIONS(3422), - [anon_sym_var] = ACTIONS(3422), - [sym_predefined_type] = ACTIONS(3422), - [anon_sym_while] = ACTIONS(3422), - [anon_sym_yield] = ACTIONS(3422), - [anon_sym_when] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3422), - [anon_sym_from] = ACTIONS(3422), - [anon_sym_into] = ACTIONS(3422), - [anon_sym_join] = ACTIONS(3422), - [anon_sym_on] = ACTIONS(3422), - [anon_sym_equals] = ACTIONS(3422), - [anon_sym_let] = ACTIONS(3422), - [anon_sym_orderby] = ACTIONS(3422), - [anon_sym_ascending] = ACTIONS(3422), - [anon_sym_descending] = ACTIONS(3422), - [anon_sym_group] = ACTIONS(3422), - [anon_sym_by] = ACTIONS(3422), - [anon_sym_select] = ACTIONS(3422), - [sym_grit_metavariable] = ACTIONS(3424), - [aux_sym_preproc_if_token1] = ACTIONS(3424), - [aux_sym_preproc_if_token3] = ACTIONS(3424), - [aux_sym_preproc_else_token1] = ACTIONS(3424), - [aux_sym_preproc_elif_token1] = ACTIONS(3424), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2704] = { [sym_preproc_region] = STATE(2704), @@ -458322,104 +458297,82 @@ 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(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_EQ] = ACTIONS(4821), - [anon_sym_static] = ACTIONS(4819), - [anon_sym_LBRACK] = ACTIONS(4823), - [anon_sym_LPAREN] = ACTIONS(4823), - [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(4823), - [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_TILDE] = ACTIONS(4823), - [anon_sym_implicit] = ACTIONS(4819), - [anon_sym_explicit] = ACTIONS(4819), - [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(4823), - [aux_sym_preproc_if_token1] = ACTIONS(4823), - [aux_sym_preproc_if_token3] = ACTIONS(4823), - [aux_sym_preproc_else_token1] = ACTIONS(4823), - [aux_sym_preproc_elif_token1] = ACTIONS(4823), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2705] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2705), [sym_preproc_endregion] = STATE(2705), [sym_preproc_line] = STATE(2705), @@ -458429,50 +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), - [anon_sym_SEMI] = ACTIONS(4772), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_RBRACK] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4772), - [anon_sym_RBRACE] = ACTIONS(4772), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4839), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_if_token3] = ACTIONS(4772), - [aux_sym_preproc_else_token1] = ACTIONS(4772), - [aux_sym_preproc_elif_token1] = ACTIONS(4772), + [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), @@ -458485,27 +458458,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2706] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2706), [sym_preproc_endregion] = STATE(2706), [sym_preproc_line] = STATE(2706), @@ -458515,50 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4849), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -458571,10 +458543,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2707] = { - [sym__variable_designation] = STATE(5298), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym_identifier] = STATE(5246), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(2707), [sym_preproc_endregion] = STATE(2707), [sym_preproc_line] = STATE(2707), @@ -458584,67 +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), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4252), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [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(4432), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4432), - [sym_discard] = ACTIONS(4534), - [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(4432), - [anon_sym_join] = ACTIONS(4252), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [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(4432), - [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(4436), + [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), @@ -458666,81 +458637,80 @@ 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(4851), - [anon_sym_extern] = ACTIONS(4851), - [anon_sym_alias] = ACTIONS(4851), - [anon_sym_global] = ACTIONS(4851), - [anon_sym_using] = ACTIONS(4851), - [anon_sym_unsafe] = ACTIONS(4851), - [anon_sym_EQ] = ACTIONS(4853), - [anon_sym_static] = ACTIONS(4851), - [anon_sym_LBRACK] = ACTIONS(4855), - [anon_sym_LPAREN] = ACTIONS(4855), - [anon_sym_event] = ACTIONS(4851), - [anon_sym_namespace] = ACTIONS(4851), - [anon_sym_class] = ACTIONS(4851), - [anon_sym_ref] = ACTIONS(4851), - [anon_sym_struct] = ACTIONS(4851), - [anon_sym_enum] = ACTIONS(4851), - [anon_sym_RBRACE] = ACTIONS(4855), - [anon_sym_interface] = ACTIONS(4851), - [anon_sym_delegate] = ACTIONS(4851), - [anon_sym_record] = ACTIONS(4851), - [anon_sym_public] = ACTIONS(4851), - [anon_sym_private] = ACTIONS(4851), - [anon_sym_readonly] = ACTIONS(4851), - [anon_sym_abstract] = ACTIONS(4851), - [anon_sym_async] = ACTIONS(4851), - [anon_sym_const] = ACTIONS(4851), - [anon_sym_file] = ACTIONS(4851), - [anon_sym_fixed] = ACTIONS(4851), - [anon_sym_internal] = ACTIONS(4851), - [anon_sym_new] = ACTIONS(4851), - [anon_sym_override] = ACTIONS(4851), - [anon_sym_partial] = ACTIONS(4851), - [anon_sym_protected] = ACTIONS(4851), - [anon_sym_required] = ACTIONS(4851), - [anon_sym_sealed] = ACTIONS(4851), - [anon_sym_virtual] = ACTIONS(4851), - [anon_sym_volatile] = ACTIONS(4851), - [anon_sym_where] = ACTIONS(4851), - [anon_sym_notnull] = ACTIONS(4851), - [anon_sym_unmanaged] = ACTIONS(4851), - [anon_sym_TILDE] = ACTIONS(4855), - [anon_sym_implicit] = ACTIONS(4851), - [anon_sym_explicit] = ACTIONS(4851), - [anon_sym_scoped] = ACTIONS(4851), - [anon_sym_var] = ACTIONS(4851), - [sym_predefined_type] = ACTIONS(4851), - [anon_sym_yield] = ACTIONS(4851), - [anon_sym_when] = ACTIONS(4851), - [anon_sym_from] = ACTIONS(4851), - [anon_sym_into] = ACTIONS(4851), - [anon_sym_join] = ACTIONS(4851), - [anon_sym_on] = ACTIONS(4851), - [anon_sym_equals] = ACTIONS(4851), - [anon_sym_let] = ACTIONS(4851), - [anon_sym_orderby] = ACTIONS(4851), - [anon_sym_ascending] = ACTIONS(4851), - [anon_sym_descending] = ACTIONS(4851), - [anon_sym_group] = ACTIONS(4851), - [anon_sym_by] = ACTIONS(4851), - [anon_sym_select] = ACTIONS(4851), - [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), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2709] = { [sym_preproc_region] = STATE(2709), @@ -458752,71 +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), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4857), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -458829,27 +458798,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2710] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2710), [sym_preproc_endregion] = STATE(2710), [sym_preproc_line] = STATE(2710), @@ -458859,50 +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(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4849), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -458913,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(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2711), [sym_preproc_endregion] = STATE(2711), [sym_preproc_line] = STATE(2711), @@ -458945,50 +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_SEMI] = ACTIONS(4798), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4798), - [anon_sym_RBRACK] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4798), - [anon_sym_RBRACE] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4839), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_if_token3] = ACTIONS(4798), - [aux_sym_preproc_else_token1] = ACTIONS(4798), - [aux_sym_preproc_elif_token1] = ACTIONS(4798), + [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), @@ -459001,27 +458968,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2712] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2712), [sym_preproc_endregion] = STATE(2712), [sym_preproc_line] = STATE(2712), @@ -459031,50 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4849), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -459085,29 +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_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2713), [sym_preproc_endregion] = STATE(2713), [sym_preproc_line] = STATE(2713), @@ -459117,83 +459062,82 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4849), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2714] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2714), [sym_preproc_endregion] = STATE(2714), [sym_preproc_line] = STATE(2714), @@ -459203,83 +459147,82 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4776), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4859), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4861), - [anon_sym_from] = ACTIONS(4776), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_join] = ACTIONS(4776), - [anon_sym_let] = ACTIONS(4776), - [anon_sym_orderby] = ACTIONS(4776), - [anon_sym_ascending] = ACTIONS(4776), - [anon_sym_descending] = ACTIONS(4776), - [anon_sym_group] = ACTIONS(4776), - [anon_sym_select] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4849), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2715] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2715), [sym_preproc_endregion] = STATE(2715), [sym_preproc_line] = STATE(2715), @@ -459289,50 +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), - [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(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4786), - [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(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), @@ -459345,27 +459308,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2716] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2716), [sym_preproc_endregion] = STATE(2716), [sym_preproc_line] = STATE(2716), @@ -459375,50 +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), - [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(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [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(4400), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [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(4402), - [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(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), @@ -459431,27 +459393,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2717] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2717), [sym_preproc_endregion] = STATE(2717), [sym_preproc_line] = STATE(2717), @@ -459461,50 +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), - [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(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4790), - [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(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), @@ -459517,10 +459478,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2718] = { - [sym__variable_designation] = STATE(4951), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4715), [sym_preproc_region] = STATE(2718), [sym_preproc_endregion] = STATE(2718), [sym_preproc_line] = STATE(2718), @@ -459530,67 +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), - [sym__identifier_token] = ACTIONS(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_in] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4105), - [anon_sym_var] = ACTIONS(4105), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4105), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [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(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -459603,27 +459563,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2719] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2719), [sym_preproc_endregion] = STATE(2719), [sym_preproc_line] = STATE(2719), @@ -459633,50 +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), - [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(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4760), - [aux_sym_preproc_if_token3] = ACTIONS(4760), - [aux_sym_preproc_else_token1] = ACTIONS(4760), - [aux_sym_preproc_elif_token1] = ACTIONS(4760), + [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), @@ -459689,27 +459648,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2720] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2720), [sym_preproc_endregion] = STATE(2720), [sym_preproc_line] = STATE(2720), @@ -459719,50 +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), - [anon_sym_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4839), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -459784,71 +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(4863), - [anon_sym_extern] = ACTIONS(4863), - [anon_sym_alias] = ACTIONS(4863), - [anon_sym_global] = ACTIONS(4863), - [anon_sym_using] = ACTIONS(4863), - [anon_sym_unsafe] = ACTIONS(4863), - [anon_sym_EQ] = ACTIONS(4865), - [anon_sym_static] = ACTIONS(4863), - [anon_sym_LBRACK] = ACTIONS(4867), - [anon_sym_LPAREN] = ACTIONS(4867), - [anon_sym_event] = ACTIONS(4863), - [anon_sym_namespace] = ACTIONS(4863), - [anon_sym_class] = ACTIONS(4863), - [anon_sym_ref] = ACTIONS(4863), - [anon_sym_struct] = ACTIONS(4863), - [anon_sym_enum] = ACTIONS(4863), - [anon_sym_RBRACE] = ACTIONS(4867), - [anon_sym_interface] = ACTIONS(4863), - [anon_sym_delegate] = ACTIONS(4863), - [anon_sym_record] = ACTIONS(4863), - [anon_sym_public] = ACTIONS(4863), - [anon_sym_private] = ACTIONS(4863), - [anon_sym_readonly] = ACTIONS(4863), - [anon_sym_abstract] = ACTIONS(4863), - [anon_sym_async] = ACTIONS(4863), - [anon_sym_const] = ACTIONS(4863), - [anon_sym_file] = ACTIONS(4863), - [anon_sym_fixed] = ACTIONS(4863), - [anon_sym_internal] = ACTIONS(4863), - [anon_sym_new] = ACTIONS(4863), - [anon_sym_override] = ACTIONS(4863), - [anon_sym_partial] = ACTIONS(4863), - [anon_sym_protected] = ACTIONS(4863), - [anon_sym_required] = ACTIONS(4863), - [anon_sym_sealed] = ACTIONS(4863), - [anon_sym_virtual] = ACTIONS(4863), - [anon_sym_volatile] = ACTIONS(4863), - [anon_sym_where] = ACTIONS(4863), - [anon_sym_notnull] = ACTIONS(4863), - [anon_sym_unmanaged] = ACTIONS(4863), - [anon_sym_TILDE] = ACTIONS(4867), - [anon_sym_implicit] = ACTIONS(4863), - [anon_sym_explicit] = ACTIONS(4863), - [anon_sym_scoped] = ACTIONS(4863), - [anon_sym_var] = ACTIONS(4863), - [sym_predefined_type] = ACTIONS(4863), - [anon_sym_yield] = ACTIONS(4863), - [anon_sym_when] = ACTIONS(4863), - [anon_sym_from] = ACTIONS(4863), - [anon_sym_into] = ACTIONS(4863), - [anon_sym_join] = ACTIONS(4863), - [anon_sym_on] = ACTIONS(4863), - [anon_sym_equals] = ACTIONS(4863), - [anon_sym_let] = ACTIONS(4863), - [anon_sym_orderby] = ACTIONS(4863), - [anon_sym_ascending] = ACTIONS(4863), - [anon_sym_descending] = ACTIONS(4863), - [anon_sym_group] = ACTIONS(4863), - [anon_sym_by] = ACTIONS(4863), - [anon_sym_select] = ACTIONS(4863), - [sym_grit_metavariable] = ACTIONS(4867), - [aux_sym_preproc_if_token1] = ACTIONS(4867), - [aux_sym_preproc_if_token3] = ACTIONS(4867), - [aux_sym_preproc_else_token1] = ACTIONS(4867), - [aux_sym_preproc_elif_token1] = ACTIONS(4867), + [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), @@ -459870,71 +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(4869), - [anon_sym_extern] = ACTIONS(4869), - [anon_sym_alias] = ACTIONS(4869), - [anon_sym_global] = ACTIONS(4869), - [anon_sym_using] = ACTIONS(4869), - [anon_sym_unsafe] = ACTIONS(4869), - [anon_sym_EQ] = ACTIONS(4871), - [anon_sym_static] = ACTIONS(4869), - [anon_sym_LBRACK] = ACTIONS(4871), - [anon_sym_LPAREN] = ACTIONS(4871), - [anon_sym_event] = ACTIONS(4869), - [anon_sym_namespace] = ACTIONS(4869), - [anon_sym_class] = ACTIONS(4869), - [anon_sym_ref] = ACTIONS(4869), - [anon_sym_struct] = ACTIONS(4869), - [anon_sym_enum] = ACTIONS(4869), - [anon_sym_RBRACE] = ACTIONS(4871), - [anon_sym_interface] = ACTIONS(4869), - [anon_sym_delegate] = ACTIONS(4869), - [anon_sym_record] = ACTIONS(4869), - [anon_sym_public] = ACTIONS(4869), - [anon_sym_private] = ACTIONS(4869), - [anon_sym_readonly] = ACTIONS(4869), - [anon_sym_abstract] = ACTIONS(4869), - [anon_sym_async] = ACTIONS(4869), - [anon_sym_const] = ACTIONS(4869), - [anon_sym_file] = ACTIONS(4869), - [anon_sym_fixed] = ACTIONS(4869), - [anon_sym_internal] = ACTIONS(4869), - [anon_sym_new] = ACTIONS(4869), - [anon_sym_override] = ACTIONS(4869), - [anon_sym_partial] = ACTIONS(4869), - [anon_sym_protected] = ACTIONS(4869), - [anon_sym_required] = ACTIONS(4869), - [anon_sym_sealed] = ACTIONS(4869), - [anon_sym_virtual] = ACTIONS(4869), - [anon_sym_volatile] = ACTIONS(4869), - [anon_sym_where] = ACTIONS(4869), - [anon_sym_notnull] = ACTIONS(4869), - [anon_sym_unmanaged] = ACTIONS(4869), - [anon_sym_TILDE] = ACTIONS(4871), - [anon_sym_implicit] = ACTIONS(4869), - [anon_sym_explicit] = ACTIONS(4869), - [anon_sym_scoped] = ACTIONS(4869), - [anon_sym_var] = ACTIONS(4869), - [sym_predefined_type] = ACTIONS(4869), - [anon_sym_yield] = ACTIONS(4869), - [anon_sym_when] = ACTIONS(4869), - [anon_sym_from] = ACTIONS(4869), - [anon_sym_into] = ACTIONS(4869), - [anon_sym_join] = ACTIONS(4869), - [anon_sym_on] = ACTIONS(4869), - [anon_sym_equals] = ACTIONS(4869), - [anon_sym_let] = ACTIONS(4869), - [anon_sym_orderby] = ACTIONS(4869), - [anon_sym_ascending] = ACTIONS(4869), - [anon_sym_descending] = ACTIONS(4869), - [anon_sym_group] = ACTIONS(4869), - [anon_sym_by] = ACTIONS(4869), - [anon_sym_select] = ACTIONS(4869), - [sym_grit_metavariable] = ACTIONS(4871), - [aux_sym_preproc_if_token1] = ACTIONS(4871), - [aux_sym_preproc_if_token3] = ACTIONS(4871), - [aux_sym_preproc_else_token1] = ACTIONS(4871), - [aux_sym_preproc_elif_token1] = ACTIONS(4871), + [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), @@ -459947,10 +459903,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2723] = { - [sym__variable_designation] = STATE(4980), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4715), [sym_preproc_region] = STATE(2723), [sym_preproc_endregion] = STATE(2723), [sym_preproc_line] = STATE(2723), @@ -459960,67 +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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4302), - [anon_sym_in] = ACTIONS(4302), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_QMARK] = ACTIONS(4302), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_PLUS_PLUS] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4302), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4302), - [anon_sym_LT_LT] = ACTIONS(4300), - [anon_sym_GT_GT] = ACTIONS(4302), - [anon_sym_GT_GT_GT] = ACTIONS(4300), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_GT_EQ] = ACTIONS(4300), - [anon_sym_LT_EQ] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_scoped] = ACTIONS(4105), - [anon_sym_var] = ACTIONS(4105), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_switch] = ACTIONS(4302), - [anon_sym_when] = ACTIONS(4105), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4302), - [anon_sym_or] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4300), - [sym_op_coalescing] = ACTIONS(4300), - [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(4302), - [anon_sym_is] = ACTIONS(4302), - [anon_sym_DASH_GT] = ACTIONS(4300), - [anon_sym_with] = ACTIONS(4302), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -460033,27 +459988,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2724] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2724), [sym_preproc_endregion] = STATE(2724), [sym_preproc_line] = STATE(2724), @@ -460063,50 +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(4684), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_where] = ACTIONS(4760), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [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(4762), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -460119,27 +460073,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2725] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2725), [sym_preproc_endregion] = STATE(2725), [sym_preproc_line] = STATE(2725), @@ -460149,50 +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), - [anon_sym_SEMI] = ACTIONS(4768), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_RBRACK] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4768), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4768), - [aux_sym_preproc_if_token3] = ACTIONS(4768), - [aux_sym_preproc_else_token1] = ACTIONS(4768), - [aux_sym_preproc_elif_token1] = ACTIONS(4768), + [sym__identifier_token] = ACTIONS(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), @@ -460214,87 +460167,86 @@ 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(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_EQ_GT] = ACTIONS(4426), - [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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2727] = { - [sym__variable_designation] = STATE(4985), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -460304,67 +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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_in] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [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(4105), - [anon_sym_var] = ACTIONS(4105), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4105), - [sym_discard] = ACTIONS(4236), - [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(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(4252), - [anon_sym_is] = ACTIONS(4252), - [anon_sym_DASH_GT] = ACTIONS(4250), - [anon_sym_with] = ACTIONS(4252), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -460377,27 +460328,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2728] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2728), [sym_preproc_endregion] = STATE(2728), [sym_preproc_line] = STATE(2728), @@ -460407,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_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4849), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -460463,27 +460413,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2729] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2729), [sym_preproc_endregion] = STATE(2729), [sym_preproc_line] = STATE(2729), @@ -460493,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(4780), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_RBRACK] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_RBRACE] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4839), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_if_token3] = ACTIONS(4780), - [aux_sym_preproc_else_token1] = ACTIONS(4780), - [aux_sym_preproc_elif_token1] = ACTIONS(4780), + [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), @@ -460549,27 +460498,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2730] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2730), [sym_preproc_endregion] = STATE(2730), [sym_preproc_line] = STATE(2730), @@ -460579,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_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_where] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_from] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_join] = ACTIONS(4768), - [anon_sym_let] = ACTIONS(4768), - [anon_sym_orderby] = ACTIONS(4768), - [anon_sym_ascending] = ACTIONS(4768), - [anon_sym_descending] = ACTIONS(4768), - [anon_sym_group] = ACTIONS(4768), - [anon_sym_select] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4770), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4768), + [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_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), @@ -460635,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), @@ -460644,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(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_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_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(4873), - [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), + [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), @@ -460721,165 +460668,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2732] = { - [sym__variable_designation] = STATE(5416), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym_identifier] = STATE(5246), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(2732), [sym_preproc_endregion] = STATE(2732), [sym_preproc_line] = STATE(2732), [sym_preproc_pragma] = STATE(2732), [sym_preproc_nullable] = STATE(2732), [sym_preproc_error] = STATE(2732), - [sym_preproc_warning] = STATE(2732), - [sym_preproc_define] = STATE(2732), - [sym_preproc_undef] = STATE(2732), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_COMMA] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4432), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4432), - [sym_discard] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4248), - [anon_sym_into] = ACTIONS(4432), - [anon_sym_join] = ACTIONS(4248), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4248), - [anon_sym_orderby] = ACTIONS(4248), - [anon_sym_ascending] = ACTIONS(4248), - [anon_sym_descending] = ACTIONS(4248), - [anon_sym_group] = ACTIONS(4248), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4248), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [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), - }, - [2733] = { - [sym_type_argument_list] = STATE(3031), - [sym_preproc_region] = STATE(2733), - [sym_preproc_endregion] = STATE(2733), - [sym_preproc_line] = STATE(2733), - [sym_preproc_pragma] = STATE(2733), - [sym_preproc_nullable] = STATE(2733), - [sym_preproc_error] = STATE(2733), - [sym_preproc_warning] = STATE(2733), - [sym_preproc_define] = STATE(2733), - [sym_preproc_undef] = STATE(2733), - [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(4802), - [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_preproc_warning] = STATE(2732), + [sym_preproc_define] = STATE(2732), + [sym_preproc_undef] = STATE(2732), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [2733] = { + [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), + [sym_preproc_pragma] = STATE(2733), + [sym_preproc_nullable] = STATE(2733), + [sym_preproc_error] = STATE(2733), + [sym_preproc_warning] = STATE(2733), + [sym_preproc_define] = STATE(2733), + [sym_preproc_undef] = STATE(2733), + [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), @@ -460890,30 +460836,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(3953), }, [2734] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2734), [sym_preproc_endregion] = STATE(2734), [sym_preproc_line] = STATE(2734), @@ -460923,50 +460847,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2734), [sym_preproc_define] = STATE(2734), [sym_preproc_undef] = STATE(2734), - [anon_sym_SEMI] = ACTIONS(4756), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4756), - [anon_sym_RBRACK] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4756), - [anon_sym_RBRACE] = ACTIONS(4756), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4756), - [anon_sym_or] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4839), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_if_token3] = ACTIONS(4756), - [aux_sym_preproc_else_token1] = ACTIONS(4756), - [aux_sym_preproc_elif_token1] = ACTIONS(4756), + [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), @@ -460977,12 +460920,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(4361), }, [2735] = { - [sym__variable_designation] = STATE(5443), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym_identifier] = STATE(5246), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(2735), [sym_preproc_endregion] = STATE(2735), [sym_preproc_line] = STATE(2735), @@ -460992,67 +460932,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2735), [sym_preproc_define] = STATE(2735), [sym_preproc_undef] = STATE(2735), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4296), - [anon_sym_COMMA] = ACTIONS(4296), - [anon_sym_LPAREN] = ACTIONS(4296), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_LT] = ACTIONS(4298), - [anon_sym_GT] = ACTIONS(4298), - [anon_sym_where] = ACTIONS(4298), - [anon_sym_QMARK] = ACTIONS(4298), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_BANG] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_SLASH] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4298), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4298), - [anon_sym_GT_GT_GT] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4296), - [anon_sym_BANG_EQ] = ACTIONS(4296), - [anon_sym_GT_EQ] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4296), - [anon_sym_DOT] = ACTIONS(4298), - [anon_sym_scoped] = ACTIONS(4432), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_switch] = ACTIONS(4298), - [anon_sym_when] = ACTIONS(4432), - [sym_discard] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4298), - [anon_sym_or] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4296), - [sym_op_coalescing] = ACTIONS(4296), - [anon_sym_from] = ACTIONS(4298), - [anon_sym_into] = ACTIONS(4432), - [anon_sym_join] = ACTIONS(4298), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4298), - [anon_sym_orderby] = ACTIONS(4298), - [anon_sym_ascending] = ACTIONS(4298), - [anon_sym_descending] = ACTIONS(4298), - [anon_sym_group] = ACTIONS(4298), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4296), - [anon_sym_with] = ACTIONS(4298), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -461063,6 +461005,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(4361), }, [2736] = { [sym_preproc_region] = STATE(2736), @@ -461074,81 +461017,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2736), [sym_preproc_define] = STATE(2736), [sym_preproc_undef] = STATE(2736), - [sym__identifier_token] = ACTIONS(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), @@ -461160,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), - [sym__identifier_token] = ACTIONS(4875), - [anon_sym_extern] = ACTIONS(4875), - [anon_sym_alias] = ACTIONS(4875), - [anon_sym_global] = ACTIONS(4875), - [anon_sym_using] = ACTIONS(4875), - [anon_sym_unsafe] = ACTIONS(4875), - [anon_sym_EQ] = ACTIONS(4877), - [anon_sym_static] = ACTIONS(4875), - [anon_sym_LBRACK] = ACTIONS(4879), - [anon_sym_LPAREN] = ACTIONS(4879), - [anon_sym_event] = ACTIONS(4875), - [anon_sym_namespace] = ACTIONS(4875), - [anon_sym_class] = ACTIONS(4875), - [anon_sym_ref] = ACTIONS(4875), - [anon_sym_struct] = ACTIONS(4875), - [anon_sym_enum] = ACTIONS(4875), - [anon_sym_RBRACE] = ACTIONS(4879), - [anon_sym_interface] = ACTIONS(4875), - [anon_sym_delegate] = ACTIONS(4875), - [anon_sym_record] = ACTIONS(4875), - [anon_sym_public] = ACTIONS(4875), - [anon_sym_private] = ACTIONS(4875), - [anon_sym_readonly] = ACTIONS(4875), - [anon_sym_abstract] = ACTIONS(4875), - [anon_sym_async] = ACTIONS(4875), - [anon_sym_const] = ACTIONS(4875), - [anon_sym_file] = ACTIONS(4875), - [anon_sym_fixed] = ACTIONS(4875), - [anon_sym_internal] = ACTIONS(4875), - [anon_sym_new] = ACTIONS(4875), - [anon_sym_override] = ACTIONS(4875), - [anon_sym_partial] = ACTIONS(4875), - [anon_sym_protected] = ACTIONS(4875), - [anon_sym_required] = ACTIONS(4875), - [anon_sym_sealed] = ACTIONS(4875), - [anon_sym_virtual] = ACTIONS(4875), - [anon_sym_volatile] = ACTIONS(4875), - [anon_sym_where] = ACTIONS(4875), - [anon_sym_notnull] = ACTIONS(4875), - [anon_sym_unmanaged] = ACTIONS(4875), - [anon_sym_TILDE] = ACTIONS(4879), - [anon_sym_implicit] = ACTIONS(4875), - [anon_sym_explicit] = ACTIONS(4875), - [anon_sym_scoped] = ACTIONS(4875), - [anon_sym_var] = ACTIONS(4875), - [sym_predefined_type] = ACTIONS(4875), - [anon_sym_yield] = ACTIONS(4875), - [anon_sym_when] = ACTIONS(4875), - [anon_sym_from] = ACTIONS(4875), - [anon_sym_into] = ACTIONS(4875), - [anon_sym_join] = ACTIONS(4875), - [anon_sym_on] = ACTIONS(4875), - [anon_sym_equals] = ACTIONS(4875), - [anon_sym_let] = ACTIONS(4875), - [anon_sym_orderby] = ACTIONS(4875), - [anon_sym_ascending] = ACTIONS(4875), - [anon_sym_descending] = ACTIONS(4875), - [anon_sym_group] = ACTIONS(4875), - [anon_sym_by] = ACTIONS(4875), - [anon_sym_select] = ACTIONS(4875), - [sym_grit_metavariable] = ACTIONS(4879), - [aux_sym_preproc_if_token1] = ACTIONS(4879), - [aux_sym_preproc_if_token3] = ACTIONS(4879), - [aux_sym_preproc_else_token1] = ACTIONS(4879), - [aux_sym_preproc_elif_token1] = ACTIONS(4879), + [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), @@ -461237,27 +461178,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2738] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2738), [sym_preproc_endregion] = STATE(2738), [sym_preproc_line] = STATE(2738), @@ -461267,83 +461187,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2738), [sym_preproc_define] = STATE(2738), [sym_preproc_undef] = STATE(2738), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4742), - [anon_sym_QMARK] = ACTIONS(4859), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4861), - [anon_sym_from] = ACTIONS(4742), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_join] = ACTIONS(4742), - [anon_sym_let] = ACTIONS(4742), - [anon_sym_orderby] = ACTIONS(4742), - [anon_sym_ascending] = ACTIONS(4742), - [anon_sym_descending] = ACTIONS(4742), - [anon_sym_group] = ACTIONS(4742), - [anon_sym_select] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4849), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2739), [sym_preproc_endregion] = STATE(2739), [sym_preproc_line] = STATE(2739), @@ -461353,50 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4694), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -461418,81 +461357,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2740), [sym_preproc_define] = STATE(2740), [sym_preproc_undef] = STATE(2740), - [sym__identifier_token] = ACTIONS(3702), - [anon_sym_alias] = ACTIONS(3702), - [anon_sym_global] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3702), - [anon_sym_unmanaged] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3702), - [anon_sym_var] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3702), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3702), - [anon_sym_join] = ACTIONS(3702), - [anon_sym_on] = ACTIONS(3702), - [anon_sym_equals] = ACTIONS(3702), - [anon_sym_let] = ACTIONS(3702), - [anon_sym_orderby] = ACTIONS(3702), - [anon_sym_ascending] = ACTIONS(3702), - [anon_sym_descending] = ACTIONS(3702), - [anon_sym_group] = ACTIONS(3702), - [anon_sym_by] = ACTIONS(3702), - [anon_sym_select] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3700), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2741] = { [sym_preproc_region] = STATE(2741), @@ -461504,71 +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), - [sym__identifier_token] = ACTIONS(4881), - [anon_sym_extern] = ACTIONS(4881), - [anon_sym_alias] = ACTIONS(4881), - [anon_sym_global] = ACTIONS(4881), - [anon_sym_using] = ACTIONS(4881), - [anon_sym_unsafe] = ACTIONS(4881), - [anon_sym_EQ] = ACTIONS(4883), - [anon_sym_static] = ACTIONS(4881), - [anon_sym_LBRACK] = ACTIONS(4885), - [anon_sym_LPAREN] = ACTIONS(4885), - [anon_sym_event] = ACTIONS(4881), - [anon_sym_namespace] = ACTIONS(4881), - [anon_sym_class] = ACTIONS(4881), - [anon_sym_ref] = ACTIONS(4881), - [anon_sym_struct] = ACTIONS(4881), - [anon_sym_enum] = ACTIONS(4881), - [anon_sym_RBRACE] = ACTIONS(4885), - [anon_sym_interface] = ACTIONS(4881), - [anon_sym_delegate] = ACTIONS(4881), - [anon_sym_record] = ACTIONS(4881), - [anon_sym_public] = ACTIONS(4881), - [anon_sym_private] = ACTIONS(4881), - [anon_sym_readonly] = ACTIONS(4881), - [anon_sym_abstract] = ACTIONS(4881), - [anon_sym_async] = ACTIONS(4881), - [anon_sym_const] = ACTIONS(4881), - [anon_sym_file] = ACTIONS(4881), - [anon_sym_fixed] = ACTIONS(4881), - [anon_sym_internal] = ACTIONS(4881), - [anon_sym_new] = ACTIONS(4881), - [anon_sym_override] = ACTIONS(4881), - [anon_sym_partial] = ACTIONS(4881), - [anon_sym_protected] = ACTIONS(4881), - [anon_sym_required] = ACTIONS(4881), - [anon_sym_sealed] = ACTIONS(4881), - [anon_sym_virtual] = ACTIONS(4881), - [anon_sym_volatile] = ACTIONS(4881), - [anon_sym_where] = ACTIONS(4881), - [anon_sym_notnull] = ACTIONS(4881), - [anon_sym_unmanaged] = ACTIONS(4881), - [anon_sym_TILDE] = ACTIONS(4885), - [anon_sym_implicit] = ACTIONS(4881), - [anon_sym_explicit] = ACTIONS(4881), - [anon_sym_scoped] = ACTIONS(4881), - [anon_sym_var] = ACTIONS(4881), - [sym_predefined_type] = ACTIONS(4881), - [anon_sym_yield] = ACTIONS(4881), - [anon_sym_when] = ACTIONS(4881), - [anon_sym_from] = ACTIONS(4881), - [anon_sym_into] = ACTIONS(4881), - [anon_sym_join] = ACTIONS(4881), - [anon_sym_on] = ACTIONS(4881), - [anon_sym_equals] = ACTIONS(4881), - [anon_sym_let] = ACTIONS(4881), - [anon_sym_orderby] = ACTIONS(4881), - [anon_sym_ascending] = ACTIONS(4881), - [anon_sym_descending] = ACTIONS(4881), - [anon_sym_group] = ACTIONS(4881), - [anon_sym_by] = ACTIONS(4881), - [anon_sym_select] = ACTIONS(4881), - [sym_grit_metavariable] = ACTIONS(4885), - [aux_sym_preproc_if_token1] = ACTIONS(4885), - [aux_sym_preproc_if_token3] = ACTIONS(4885), - [aux_sym_preproc_else_token1] = ACTIONS(4885), - [aux_sym_preproc_elif_token1] = ACTIONS(4885), + [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), @@ -461581,27 +461518,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2742] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2742), [sym_preproc_endregion] = STATE(2742), [sym_preproc_line] = STATE(2742), @@ -461611,50 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4764), - [anon_sym_QMARK] = ACTIONS(4859), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4861), - [anon_sym_from] = ACTIONS(4764), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_join] = ACTIONS(4764), - [anon_sym_let] = ACTIONS(4764), - [anon_sym_orderby] = ACTIONS(4764), - [anon_sym_ascending] = ACTIONS(4764), - [anon_sym_descending] = ACTIONS(4764), - [anon_sym_group] = ACTIONS(4764), - [anon_sym_select] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4849), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -461676,71 +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), - [sym__identifier_token] = ACTIONS(4887), - [anon_sym_extern] = ACTIONS(4887), - [anon_sym_alias] = ACTIONS(4887), - [anon_sym_global] = ACTIONS(4887), - [anon_sym_using] = ACTIONS(4887), - [anon_sym_unsafe] = ACTIONS(4887), - [anon_sym_EQ] = ACTIONS(4889), - [anon_sym_static] = ACTIONS(4887), - [anon_sym_LBRACK] = ACTIONS(4891), - [anon_sym_LPAREN] = ACTIONS(4891), - [anon_sym_event] = ACTIONS(4887), - [anon_sym_namespace] = ACTIONS(4887), - [anon_sym_class] = ACTIONS(4887), - [anon_sym_ref] = ACTIONS(4887), - [anon_sym_struct] = ACTIONS(4887), - [anon_sym_enum] = ACTIONS(4887), - [anon_sym_RBRACE] = ACTIONS(4891), - [anon_sym_interface] = ACTIONS(4887), - [anon_sym_delegate] = ACTIONS(4887), - [anon_sym_record] = ACTIONS(4887), - [anon_sym_public] = ACTIONS(4887), - [anon_sym_private] = ACTIONS(4887), - [anon_sym_readonly] = ACTIONS(4887), - [anon_sym_abstract] = ACTIONS(4887), - [anon_sym_async] = ACTIONS(4887), - [anon_sym_const] = ACTIONS(4887), - [anon_sym_file] = ACTIONS(4887), - [anon_sym_fixed] = ACTIONS(4887), - [anon_sym_internal] = ACTIONS(4887), - [anon_sym_new] = ACTIONS(4887), - [anon_sym_override] = ACTIONS(4887), - [anon_sym_partial] = ACTIONS(4887), - [anon_sym_protected] = ACTIONS(4887), - [anon_sym_required] = ACTIONS(4887), - [anon_sym_sealed] = ACTIONS(4887), - [anon_sym_virtual] = ACTIONS(4887), - [anon_sym_volatile] = ACTIONS(4887), - [anon_sym_where] = ACTIONS(4887), - [anon_sym_notnull] = ACTIONS(4887), - [anon_sym_unmanaged] = ACTIONS(4887), - [anon_sym_TILDE] = ACTIONS(4891), - [anon_sym_implicit] = ACTIONS(4887), - [anon_sym_explicit] = ACTIONS(4887), - [anon_sym_scoped] = ACTIONS(4887), - [anon_sym_var] = ACTIONS(4887), - [sym_predefined_type] = ACTIONS(4887), - [anon_sym_yield] = ACTIONS(4887), - [anon_sym_when] = ACTIONS(4887), - [anon_sym_from] = ACTIONS(4887), - [anon_sym_into] = ACTIONS(4887), - [anon_sym_join] = ACTIONS(4887), - [anon_sym_on] = ACTIONS(4887), - [anon_sym_equals] = ACTIONS(4887), - [anon_sym_let] = ACTIONS(4887), - [anon_sym_orderby] = ACTIONS(4887), - [anon_sym_ascending] = ACTIONS(4887), - [anon_sym_descending] = ACTIONS(4887), - [anon_sym_group] = ACTIONS(4887), - [anon_sym_by] = ACTIONS(4887), - [anon_sym_select] = ACTIONS(4887), - [sym_grit_metavariable] = ACTIONS(4891), - [aux_sym_preproc_if_token1] = ACTIONS(4891), - [aux_sym_preproc_if_token3] = ACTIONS(4891), - [aux_sym_preproc_else_token1] = ACTIONS(4891), - [aux_sym_preproc_elif_token1] = ACTIONS(4891), + [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), @@ -461762,71 +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), - [sym__identifier_token] = ACTIONS(4893), - [anon_sym_extern] = ACTIONS(4893), - [anon_sym_alias] = ACTIONS(4893), - [anon_sym_global] = ACTIONS(4893), - [anon_sym_using] = ACTIONS(4893), - [anon_sym_unsafe] = ACTIONS(4893), - [anon_sym_EQ] = ACTIONS(4895), - [anon_sym_static] = ACTIONS(4893), - [anon_sym_LBRACK] = ACTIONS(4897), - [anon_sym_LPAREN] = ACTIONS(4897), - [anon_sym_event] = ACTIONS(4893), - [anon_sym_namespace] = ACTIONS(4893), - [anon_sym_class] = ACTIONS(4893), - [anon_sym_ref] = ACTIONS(4893), - [anon_sym_struct] = ACTIONS(4893), - [anon_sym_enum] = ACTIONS(4893), - [anon_sym_RBRACE] = ACTIONS(4897), - [anon_sym_interface] = ACTIONS(4893), - [anon_sym_delegate] = ACTIONS(4893), - [anon_sym_record] = ACTIONS(4893), - [anon_sym_public] = ACTIONS(4893), - [anon_sym_private] = ACTIONS(4893), - [anon_sym_readonly] = ACTIONS(4893), - [anon_sym_abstract] = ACTIONS(4893), - [anon_sym_async] = ACTIONS(4893), - [anon_sym_const] = ACTIONS(4893), - [anon_sym_file] = ACTIONS(4893), - [anon_sym_fixed] = ACTIONS(4893), - [anon_sym_internal] = ACTIONS(4893), - [anon_sym_new] = ACTIONS(4893), - [anon_sym_override] = ACTIONS(4893), - [anon_sym_partial] = ACTIONS(4893), - [anon_sym_protected] = ACTIONS(4893), - [anon_sym_required] = ACTIONS(4893), - [anon_sym_sealed] = ACTIONS(4893), - [anon_sym_virtual] = ACTIONS(4893), - [anon_sym_volatile] = ACTIONS(4893), - [anon_sym_where] = ACTIONS(4893), - [anon_sym_notnull] = ACTIONS(4893), - [anon_sym_unmanaged] = ACTIONS(4893), - [anon_sym_TILDE] = ACTIONS(4897), - [anon_sym_implicit] = ACTIONS(4893), - [anon_sym_explicit] = ACTIONS(4893), - [anon_sym_scoped] = ACTIONS(4893), - [anon_sym_var] = ACTIONS(4893), - [sym_predefined_type] = ACTIONS(4893), - [anon_sym_yield] = ACTIONS(4893), - [anon_sym_when] = ACTIONS(4893), - [anon_sym_from] = ACTIONS(4893), - [anon_sym_into] = ACTIONS(4893), - [anon_sym_join] = ACTIONS(4893), - [anon_sym_on] = ACTIONS(4893), - [anon_sym_equals] = ACTIONS(4893), - [anon_sym_let] = ACTIONS(4893), - [anon_sym_orderby] = ACTIONS(4893), - [anon_sym_ascending] = ACTIONS(4893), - [anon_sym_descending] = ACTIONS(4893), - [anon_sym_group] = ACTIONS(4893), - [anon_sym_by] = ACTIONS(4893), - [anon_sym_select] = ACTIONS(4893), - [sym_grit_metavariable] = ACTIONS(4897), - [aux_sym_preproc_if_token1] = ACTIONS(4897), - [aux_sym_preproc_if_token3] = ACTIONS(4897), - [aux_sym_preproc_else_token1] = ACTIONS(4897), - [aux_sym_preproc_elif_token1] = ACTIONS(4897), + [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), @@ -461839,27 +461773,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2745] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2745), [sym_preproc_endregion] = STATE(2745), [sym_preproc_line] = STATE(2745), @@ -461869,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_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_QMARK] = ACTIONS(4859), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4861), - [anon_sym_from] = ACTIONS(4772), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_join] = ACTIONS(4772), - [anon_sym_let] = ACTIONS(4772), - [anon_sym_orderby] = ACTIONS(4772), - [anon_sym_ascending] = ACTIONS(4772), - [anon_sym_descending] = ACTIONS(4772), - [anon_sym_group] = ACTIONS(4772), - [anon_sym_select] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4849), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -461925,6 +461858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2746] = { + [sym_type_argument_list] = STATE(2920), [sym_preproc_region] = STATE(2746), [sym_preproc_endregion] = STATE(2746), [sym_preproc_line] = STATE(2746), @@ -461934,71 +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(3700), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3700), - [anon_sym_where] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3700), - [anon_sym_when] = ACTIONS(3700), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3700), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_on] = ACTIONS(3700), - [anon_sym_equals] = ACTIONS(3700), - [anon_sym_by] = ACTIONS(3700), - [anon_sym_as] = ACTIONS(3700), - [anon_sym_is] = ACTIONS(3700), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3700), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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), @@ -462011,27 +461943,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2747] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2747), [sym_preproc_endregion] = STATE(2747), [sym_preproc_line] = STATE(2747), @@ -462041,50 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4798), - [anon_sym_QMARK] = ACTIONS(4859), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4861), - [anon_sym_from] = ACTIONS(4798), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_join] = ACTIONS(4798), - [anon_sym_let] = ACTIONS(4798), - [anon_sym_orderby] = ACTIONS(4798), - [anon_sym_ascending] = ACTIONS(4798), - [anon_sym_descending] = ACTIONS(4798), - [anon_sym_group] = ACTIONS(4798), - [anon_sym_select] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4849), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -462097,10 +462028,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2748] = { - [sym__variable_designation] = STATE(5366), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym_identifier] = STATE(5246), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(2748), [sym_preproc_endregion] = STATE(2748), [sym_preproc_line] = STATE(2748), @@ -462110,100 +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), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4300), - [anon_sym_COMMA] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4302), - [anon_sym_where] = ACTIONS(4302), - [anon_sym_QMARK] = ACTIONS(4302), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_PLUS_PLUS] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4302), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4302), - [anon_sym_LT_LT] = ACTIONS(4300), - [anon_sym_GT_GT] = ACTIONS(4302), - [anon_sym_GT_GT_GT] = ACTIONS(4300), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_GT_EQ] = ACTIONS(4300), - [anon_sym_LT_EQ] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_scoped] = ACTIONS(4432), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_switch] = ACTIONS(4302), - [anon_sym_when] = ACTIONS(4432), - [sym_discard] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4302), - [anon_sym_or] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4300), - [sym_op_coalescing] = ACTIONS(4300), - [anon_sym_from] = ACTIONS(4302), - [anon_sym_into] = ACTIONS(4432), - [anon_sym_join] = ACTIONS(4302), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4302), - [anon_sym_orderby] = ACTIONS(4302), - [anon_sym_ascending] = ACTIONS(4302), - [anon_sym_descending] = ACTIONS(4302), - [anon_sym_group] = ACTIONS(4302), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4302), - [anon_sym_as] = ACTIONS(4302), - [anon_sym_is] = ACTIONS(4302), - [anon_sym_DASH_GT] = ACTIONS(4300), - [anon_sym_with] = ACTIONS(4302), - [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__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(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2749), [sym_preproc_endregion] = STATE(2749), [sym_preproc_line] = STATE(2749), @@ -462213,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(4764), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_RBRACK] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4839), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_if_token3] = ACTIONS(4764), - [aux_sym_preproc_else_token1] = ACTIONS(4764), - [aux_sym_preproc_elif_token1] = ACTIONS(4764), + [anon_sym_SEMI] = ACTIONS(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), @@ -462269,27 +462198,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2750] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2750), [sym_preproc_endregion] = STATE(2750), [sym_preproc_line] = STATE(2750), @@ -462299,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(4742), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_RBRACK] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4839), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_if_token3] = ACTIONS(4742), - [aux_sym_preproc_else_token1] = ACTIONS(4742), - [aux_sym_preproc_elif_token1] = ACTIONS(4742), + [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), @@ -462355,27 +462283,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2751] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2751), [sym_preproc_endregion] = STATE(2751), [sym_preproc_line] = STATE(2751), @@ -462385,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(4686), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -462439,29 +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_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), + [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), @@ -462471,50 +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), - [anon_sym_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -462536,104 +462462,82 @@ 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(3702), - [anon_sym_alias] = ACTIONS(3702), - [anon_sym_global] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3702), - [anon_sym_unmanaged] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3702), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3702), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3702), - [anon_sym_join] = ACTIONS(3702), - [anon_sym_on] = ACTIONS(3702), - [anon_sym_equals] = ACTIONS(3702), - [anon_sym_let] = ACTIONS(3702), - [anon_sym_orderby] = ACTIONS(3702), - [anon_sym_ascending] = ACTIONS(3702), - [anon_sym_descending] = ACTIONS(3702), - [anon_sym_group] = ACTIONS(3702), - [anon_sym_by] = ACTIONS(3702), - [anon_sym_select] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3700), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3700), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2754] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2754), [sym_preproc_endregion] = STATE(2754), [sym_preproc_line] = STATE(2754), @@ -462643,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(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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4839), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [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(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), @@ -462708,70 +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(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_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_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(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), @@ -462782,30 +462706,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(3189), }, [2756] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2756), [sym_preproc_endregion] = STATE(2756), [sym_preproc_line] = STATE(2756), @@ -462815,50 +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(4686), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -462871,27 +462793,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2757] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2757), [sym_preproc_endregion] = STATE(2757), [sym_preproc_line] = STATE(2757), @@ -462901,50 +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), - [anon_sym_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -462957,27 +462878,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2758] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2758), [sym_preproc_endregion] = STATE(2758), [sym_preproc_line] = STATE(2758), @@ -462987,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(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4849), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -463043,27 +462963,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2759] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2759), [sym_preproc_endregion] = STATE(2759), [sym_preproc_line] = STATE(2759), @@ -463073,50 +462972,70 @@ 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(4684), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [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(4728), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [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(4738), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -463129,27 +463048,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2760] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2760), [sym_preproc_endregion] = STATE(2760), [sym_preproc_line] = STATE(2760), @@ -463159,50 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_where] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [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(4788), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -463224,70 +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(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_BANG] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3910), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3910), - [anon_sym_CARET] = ACTIONS(3910), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3910), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3910), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_GT_EQ] = ACTIONS(3910), - [anon_sym_LT_EQ] = ACTIONS(3910), - [anon_sym_DOT] = ACTIONS(3913), - [anon_sym_scoped] = ACTIONS(3913), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = 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_and] = ACTIONS(3913), - [anon_sym_or] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(3910), - [anon_sym_PIPE_PIPE] = ACTIONS(3910), - [sym_op_coalescing] = 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), + [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), @@ -463298,30 +463216,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(3910), }, [2762] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2762), [sym_preproc_endregion] = STATE(2762), [sym_preproc_line] = STATE(2762), @@ -463331,50 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [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(4792), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -463396,81 +463312,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2763), [sym_preproc_define] = STATE(2763), [sym_preproc_undef] = STATE(2763), - [sym__identifier_token] = ACTIONS(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_EQ_GT] = ACTIONS(4426), - [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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2764] = { [sym_preproc_region] = STATE(2764), @@ -463482,71 +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), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4899), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -463559,10 +463473,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2765] = { - [sym__variable_designation] = STATE(4984), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4715), [sym_preproc_region] = STATE(2765), [sym_preproc_endregion] = STATE(2765), [sym_preproc_line] = STATE(2765), @@ -463572,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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(4296), - [anon_sym_LPAREN] = ACTIONS(4296), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_LT] = ACTIONS(4298), - [anon_sym_GT] = ACTIONS(4298), - [anon_sym_in] = ACTIONS(4298), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_QMARK] = ACTIONS(4298), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_BANG] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_SLASH] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4298), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4298), - [anon_sym_GT_GT_GT] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4296), - [anon_sym_BANG_EQ] = ACTIONS(4296), - [anon_sym_GT_EQ] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4296), - [anon_sym_DOT] = ACTIONS(4298), - [anon_sym_scoped] = ACTIONS(4105), - [anon_sym_var] = ACTIONS(4105), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_switch] = ACTIONS(4298), - [anon_sym_when] = ACTIONS(4105), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4298), - [anon_sym_or] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4296), - [sym_op_coalescing] = ACTIONS(4296), - [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(4298), - [anon_sym_is] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4296), - [anon_sym_with] = ACTIONS(4298), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -463645,27 +463558,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2766] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2766), [sym_preproc_endregion] = STATE(2766), [sym_preproc_line] = STATE(2766), @@ -463675,50 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4861), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4849), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -463731,10 +463643,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2767] = { - [sym__variable_designation] = STATE(5298), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym_identifier] = STATE(5246), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(2767), [sym_preproc_endregion] = STATE(2767), [sym_preproc_line] = STATE(2767), @@ -463744,67 +463652,70 @@ 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(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_COMMA] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4252), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [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(4432), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4432), - [sym_discard] = ACTIONS(4534), - [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(4432), - [anon_sym_equals] = ACTIONS(4432), - [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(4432), - [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(4436), + [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), @@ -463817,27 +463728,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2768] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2768), [sym_preproc_endregion] = STATE(2768), [sym_preproc_line] = STATE(2768), @@ -463847,50 +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), - [anon_sym_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -463903,10 +463813,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2769] = { - [sym__variable_designation] = STATE(5416), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym_identifier] = STATE(5246), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(2769), [sym_preproc_endregion] = STATE(2769), [sym_preproc_line] = STATE(2769), @@ -463916,67 +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), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_COMMA] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4432), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4432), - [sym_discard] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4248), - [anon_sym_into] = ACTIONS(4248), - [anon_sym_join] = ACTIONS(4248), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4248), - [anon_sym_orderby] = ACTIONS(4248), - [anon_sym_ascending] = ACTIONS(4248), - [anon_sym_descending] = ACTIONS(4248), - [anon_sym_group] = ACTIONS(4248), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4248), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -463989,10 +463898,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2770] = { - [sym__variable_designation] = STATE(5443), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym_identifier] = STATE(5246), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(2770), [sym_preproc_endregion] = STATE(2770), [sym_preproc_line] = STATE(2770), @@ -464002,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(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4296), - [anon_sym_COMMA] = ACTIONS(4296), - [anon_sym_LPAREN] = ACTIONS(4296), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_LT] = ACTIONS(4298), - [anon_sym_GT] = ACTIONS(4298), - [anon_sym_where] = ACTIONS(4298), - [anon_sym_QMARK] = ACTIONS(4298), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_BANG] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_SLASH] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4298), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4298), - [anon_sym_GT_GT_GT] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4296), - [anon_sym_BANG_EQ] = ACTIONS(4296), - [anon_sym_GT_EQ] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4296), - [anon_sym_DOT] = ACTIONS(4298), - [anon_sym_scoped] = ACTIONS(4432), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_switch] = ACTIONS(4298), - [anon_sym_when] = ACTIONS(4432), - [sym_discard] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4298), - [anon_sym_or] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4296), - [sym_op_coalescing] = ACTIONS(4296), - [anon_sym_from] = ACTIONS(4298), - [anon_sym_into] = ACTIONS(4298), - [anon_sym_join] = ACTIONS(4298), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4298), - [anon_sym_orderby] = ACTIONS(4298), - [anon_sym_ascending] = ACTIONS(4298), - [anon_sym_descending] = ACTIONS(4298), - [anon_sym_group] = ACTIONS(4298), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4296), - [anon_sym_with] = ACTIONS(4298), - [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__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(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2771), [sym_preproc_endregion] = STATE(2771), [sym_preproc_line] = STATE(2771), @@ -464105,83 +463992,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2771), [sym_preproc_define] = STATE(2771), [sym_preproc_undef] = STATE(2771), - [anon_sym_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), + [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), @@ -464191,50 +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), - [anon_sym_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -464247,27 +464153,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2773] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2773), [sym_preproc_endregion] = STATE(2773), [sym_preproc_line] = STATE(2773), @@ -464277,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_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4694), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -464333,10 +464238,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2774] = { - [sym__variable_designation] = STATE(5366), - [sym_parenthesized_variable_designation] = STATE(5304), - [sym_identifier] = STATE(5246), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(2774), [sym_preproc_endregion] = STATE(2774), [sym_preproc_line] = STATE(2774), @@ -464346,67 +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(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(4300), - [anon_sym_COMMA] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4302), - [anon_sym_where] = ACTIONS(4302), - [anon_sym_QMARK] = ACTIONS(4302), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_PLUS_PLUS] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4302), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4302), - [anon_sym_LT_LT] = ACTIONS(4300), - [anon_sym_GT_GT] = ACTIONS(4302), - [anon_sym_GT_GT_GT] = ACTIONS(4300), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_GT_EQ] = ACTIONS(4300), - [anon_sym_LT_EQ] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_scoped] = ACTIONS(4432), - [anon_sym_var] = ACTIONS(4432), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_switch] = ACTIONS(4302), - [anon_sym_when] = ACTIONS(4432), - [sym_discard] = ACTIONS(4534), - [anon_sym_DOT_DOT] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4302), - [anon_sym_or] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4300), - [sym_op_coalescing] = ACTIONS(4300), - [anon_sym_from] = ACTIONS(4302), - [anon_sym_into] = ACTIONS(4302), - [anon_sym_join] = ACTIONS(4302), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4302), - [anon_sym_orderby] = ACTIONS(4302), - [anon_sym_ascending] = ACTIONS(4302), - [anon_sym_descending] = ACTIONS(4302), - [anon_sym_group] = ACTIONS(4302), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4302), - [anon_sym_as] = ACTIONS(4302), - [anon_sym_is] = ACTIONS(4302), - [anon_sym_DASH_GT] = ACTIONS(4300), - [anon_sym_with] = ACTIONS(4302), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -464419,27 +464323,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2775] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), + [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), @@ -464449,50 +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), - [anon_sym_SEMI] = ACTIONS(4776), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4776), - [anon_sym_RBRACK] = ACTIONS(4776), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4776), - [anon_sym_RBRACE] = ACTIONS(4776), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4829), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4776), - [anon_sym_or] = ACTIONS(4776), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4839), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_if_token3] = ACTIONS(4776), - [aux_sym_preproc_else_token1] = ACTIONS(4776), - [aux_sym_preproc_elif_token1] = ACTIONS(4776), + [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), @@ -464505,27 +464408,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2776] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), + [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), @@ -464535,50 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4694), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -464591,27 +464493,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2777] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2777), [sym_preproc_endregion] = STATE(2777), [sym_preproc_line] = STATE(2777), @@ -464621,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(4684), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4780), - [anon_sym_QMARK] = ACTIONS(4859), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4861), - [anon_sym_from] = ACTIONS(4780), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_join] = ACTIONS(4780), - [anon_sym_let] = ACTIONS(4780), - [anon_sym_orderby] = ACTIONS(4780), - [anon_sym_ascending] = ACTIONS(4780), - [anon_sym_descending] = ACTIONS(4780), - [anon_sym_group] = ACTIONS(4780), - [anon_sym_select] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4849), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -464677,27 +464578,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2778] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2778), [sym_preproc_endregion] = STATE(2778), [sym_preproc_line] = STATE(2778), @@ -464707,50 +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), - [anon_sym_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -464763,6 +464663,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2779] = { + [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), @@ -464772,71 +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), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4901), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -464849,27 +464748,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2780] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2780), [sym_preproc_endregion] = STATE(2780), [sym_preproc_line] = STATE(2780), @@ -464879,50 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4694), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -464935,27 +464833,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2781] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2781), [sym_preproc_endregion] = STATE(2781), [sym_preproc_line] = STATE(2781), @@ -464965,50 +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), - [anon_sym_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(4843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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_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_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), @@ -465021,6 +464918,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -465030,71 +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(4903), - [anon_sym_extern] = ACTIONS(4903), - [anon_sym_alias] = ACTIONS(4903), - [anon_sym_global] = ACTIONS(4903), - [anon_sym_using] = ACTIONS(4903), - [anon_sym_unsafe] = ACTIONS(4903), - [anon_sym_EQ] = ACTIONS(4905), - [anon_sym_static] = ACTIONS(4903), - [anon_sym_LBRACK] = ACTIONS(4907), - [anon_sym_LPAREN] = ACTIONS(4907), - [anon_sym_event] = ACTIONS(4903), - [anon_sym_namespace] = ACTIONS(4903), - [anon_sym_class] = ACTIONS(4903), - [anon_sym_ref] = ACTIONS(4903), - [anon_sym_struct] = ACTIONS(4903), - [anon_sym_enum] = ACTIONS(4903), - [anon_sym_RBRACE] = ACTIONS(4907), - [anon_sym_interface] = ACTIONS(4903), - [anon_sym_delegate] = ACTIONS(4903), - [anon_sym_record] = ACTIONS(4903), - [anon_sym_public] = ACTIONS(4903), - [anon_sym_private] = ACTIONS(4903), - [anon_sym_readonly] = ACTIONS(4903), - [anon_sym_abstract] = ACTIONS(4903), - [anon_sym_async] = ACTIONS(4903), - [anon_sym_const] = ACTIONS(4903), - [anon_sym_file] = ACTIONS(4903), - [anon_sym_fixed] = ACTIONS(4903), - [anon_sym_internal] = ACTIONS(4903), - [anon_sym_new] = ACTIONS(4903), - [anon_sym_override] = ACTIONS(4903), - [anon_sym_partial] = ACTIONS(4903), - [anon_sym_protected] = ACTIONS(4903), - [anon_sym_required] = ACTIONS(4903), - [anon_sym_sealed] = ACTIONS(4903), - [anon_sym_virtual] = ACTIONS(4903), - [anon_sym_volatile] = ACTIONS(4903), - [anon_sym_where] = ACTIONS(4903), - [anon_sym_notnull] = ACTIONS(4903), - [anon_sym_unmanaged] = ACTIONS(4903), - [anon_sym_TILDE] = ACTIONS(4907), - [anon_sym_implicit] = ACTIONS(4903), - [anon_sym_explicit] = ACTIONS(4903), - [anon_sym_scoped] = ACTIONS(4903), - [anon_sym_var] = ACTIONS(4903), - [sym_predefined_type] = ACTIONS(4903), - [anon_sym_yield] = ACTIONS(4903), - [anon_sym_when] = ACTIONS(4903), - [anon_sym_from] = ACTIONS(4903), - [anon_sym_into] = ACTIONS(4903), - [anon_sym_join] = ACTIONS(4903), - [anon_sym_on] = ACTIONS(4903), - [anon_sym_equals] = ACTIONS(4903), - [anon_sym_let] = ACTIONS(4903), - [anon_sym_orderby] = ACTIONS(4903), - [anon_sym_ascending] = ACTIONS(4903), - [anon_sym_descending] = ACTIONS(4903), - [anon_sym_group] = ACTIONS(4903), - [anon_sym_by] = ACTIONS(4903), - [anon_sym_select] = ACTIONS(4903), - [sym_grit_metavariable] = ACTIONS(4907), - [aux_sym_preproc_if_token1] = ACTIONS(4907), - [aux_sym_preproc_if_token3] = ACTIONS(4907), - [aux_sym_preproc_else_token1] = ACTIONS(4907), - [aux_sym_preproc_elif_token1] = ACTIONS(4907), + [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), @@ -465107,27 +465003,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2783] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(2783), [sym_preproc_endregion] = STATE(2783), [sym_preproc_line] = STATE(2783), @@ -465137,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(4686), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(4837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -465202,104 +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), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4873), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1206), - [sym_op_lte] = STATE(1206), - [sym_op_eq] = STATE(1222), - [sym_op_neq] = STATE(1222), - [sym_op_gt] = STATE(1206), - [sym_op_gte] = STATE(1206), - [sym_op_and] = STATE(1223), - [sym_op_or] = STATE(1226), - [sym_op_bitwise_and] = STATE(1228), - [sym_op_bitwise_or] = STATE(1229), - [sym_op_bitwise_xor] = STATE(1230), - [sym_op_left_shift] = STATE(1231), - [sym_op_right_shift] = STATE(1231), - [sym_op_unsigned_right_shift] = STATE(1231), - [sym_op_plus] = STATE(1232), - [sym_op_minus] = STATE(1232), - [sym_op_multiply] = STATE(1235), - [sym_op_divide] = STATE(1235), - [sym_op_modulo] = STATE(1235), [sym_preproc_region] = STATE(2785), [sym_preproc_endregion] = STATE(2785), [sym_preproc_line] = STATE(2785), @@ -465309,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_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4756), - [anon_sym_QMARK] = ACTIONS(4859), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4847), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4861), - [anon_sym_from] = ACTIONS(4756), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_join] = ACTIONS(4756), - [anon_sym_let] = ACTIONS(4756), - [anon_sym_orderby] = ACTIONS(4756), - [anon_sym_ascending] = ACTIONS(4756), - [anon_sym_descending] = ACTIONS(4756), - [anon_sym_group] = ACTIONS(4756), - [anon_sym_select] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(4734), - [anon_sym_is] = ACTIONS(4849), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -465374,81 +465267,80 @@ 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(4909), - [anon_sym_extern] = ACTIONS(4909), - [anon_sym_alias] = ACTIONS(4909), - [anon_sym_global] = ACTIONS(4909), - [anon_sym_using] = ACTIONS(4909), - [anon_sym_unsafe] = ACTIONS(4909), - [anon_sym_EQ] = ACTIONS(4911), - [anon_sym_static] = ACTIONS(4909), - [anon_sym_LBRACK] = ACTIONS(4911), - [anon_sym_LPAREN] = ACTIONS(4911), - [anon_sym_event] = ACTIONS(4909), - [anon_sym_namespace] = ACTIONS(4909), - [anon_sym_class] = ACTIONS(4909), - [anon_sym_ref] = ACTIONS(4909), - [anon_sym_struct] = ACTIONS(4909), - [anon_sym_enum] = ACTIONS(4909), - [anon_sym_RBRACE] = ACTIONS(4911), - [anon_sym_interface] = ACTIONS(4909), - [anon_sym_delegate] = ACTIONS(4909), - [anon_sym_record] = ACTIONS(4909), - [anon_sym_public] = ACTIONS(4909), - [anon_sym_private] = ACTIONS(4909), - [anon_sym_readonly] = ACTIONS(4909), - [anon_sym_abstract] = ACTIONS(4909), - [anon_sym_async] = ACTIONS(4909), - [anon_sym_const] = ACTIONS(4909), - [anon_sym_file] = ACTIONS(4909), - [anon_sym_fixed] = ACTIONS(4909), - [anon_sym_internal] = ACTIONS(4909), - [anon_sym_new] = ACTIONS(4909), - [anon_sym_override] = ACTIONS(4909), - [anon_sym_partial] = ACTIONS(4909), - [anon_sym_protected] = ACTIONS(4909), - [anon_sym_required] = ACTIONS(4909), - [anon_sym_sealed] = ACTIONS(4909), - [anon_sym_virtual] = ACTIONS(4909), - [anon_sym_volatile] = ACTIONS(4909), - [anon_sym_where] = ACTIONS(4909), - [anon_sym_notnull] = ACTIONS(4909), - [anon_sym_unmanaged] = ACTIONS(4909), - [anon_sym_TILDE] = ACTIONS(4911), - [anon_sym_implicit] = ACTIONS(4909), - [anon_sym_explicit] = ACTIONS(4909), - [anon_sym_scoped] = ACTIONS(4909), - [anon_sym_var] = ACTIONS(4909), - [sym_predefined_type] = ACTIONS(4909), - [anon_sym_yield] = ACTIONS(4909), - [anon_sym_when] = ACTIONS(4909), - [anon_sym_from] = ACTIONS(4909), - [anon_sym_into] = ACTIONS(4909), - [anon_sym_join] = ACTIONS(4909), - [anon_sym_on] = ACTIONS(4909), - [anon_sym_equals] = ACTIONS(4909), - [anon_sym_let] = ACTIONS(4909), - [anon_sym_orderby] = ACTIONS(4909), - [anon_sym_ascending] = ACTIONS(4909), - [anon_sym_descending] = ACTIONS(4909), - [anon_sym_group] = ACTIONS(4909), - [anon_sym_by] = ACTIONS(4909), - [anon_sym_select] = ACTIONS(4909), - [sym_grit_metavariable] = ACTIONS(4911), - [aux_sym_preproc_if_token1] = ACTIONS(4911), - [aux_sym_preproc_if_token3] = ACTIONS(4911), - [aux_sym_preproc_else_token1] = ACTIONS(4911), - [aux_sym_preproc_elif_token1] = ACTIONS(4911), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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_preproc_region] = STATE(2787), @@ -465460,84 +465352,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2787), [sym_preproc_define] = STATE(2787), [sym_preproc_undef] = STATE(2787), - [anon_sym_SEMI] = ACTIONS(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [sym__identifier_token] = ACTIONS(4008), + [anon_sym_alias] = ACTIONS(4008), + [anon_sym_global] = ACTIONS(4008), + [anon_sym_LBRACK] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(4015), }, [2788] = { - [sym_type_argument_list] = STATE(2818), [sym_preproc_region] = STATE(2788), [sym_preproc_endregion] = STATE(2788), [sym_preproc_line] = STATE(2788), @@ -465547,70 +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), - [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(4913), - [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(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), @@ -465632,70 +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), - [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), + [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), @@ -465708,6 +465598,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2790] = { + [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), @@ -465717,70 +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), - [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_TILDE] = ACTIONS(4918), - [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(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), + [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), @@ -465802,70 +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(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_TILDE] = ACTIONS(4922), - [anon_sym_implicit] = ACTIONS(4920), - [anon_sym_explicit] = ACTIONS(4920), - [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), + [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), @@ -465878,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), @@ -465887,70 +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), - [anon_sym_SEMI] = ACTIONS(4552), - [anon_sym_EQ] = ACTIONS(4554), - [anon_sym_LBRACK] = ACTIONS(4552), - [anon_sym_COLON] = ACTIONS(4552), - [anon_sym_COMMA] = ACTIONS(4552), - [anon_sym_RBRACK] = ACTIONS(4552), - [anon_sym_LPAREN] = ACTIONS(4552), - [anon_sym_RPAREN] = ACTIONS(4552), - [anon_sym_RBRACE] = ACTIONS(4552), - [anon_sym_LT] = ACTIONS(4554), - [anon_sym_GT] = ACTIONS(4554), - [anon_sym_in] = ACTIONS(4554), - [anon_sym_QMARK] = ACTIONS(4554), - [anon_sym_BANG] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(4552), - [anon_sym_DASH_DASH] = ACTIONS(4552), - [anon_sym_PLUS] = ACTIONS(4554), - [anon_sym_DASH] = ACTIONS(4554), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_CARET] = ACTIONS(4554), - [anon_sym_PIPE] = ACTIONS(4554), - [anon_sym_AMP] = ACTIONS(4554), - [anon_sym_LT_LT] = ACTIONS(4554), - [anon_sym_GT_GT] = ACTIONS(4554), - [anon_sym_GT_GT_GT] = ACTIONS(4554), - [anon_sym_EQ_EQ] = ACTIONS(4552), - [anon_sym_BANG_EQ] = ACTIONS(4552), - [anon_sym_GT_EQ] = ACTIONS(4552), - [anon_sym_LT_EQ] = ACTIONS(4552), - [anon_sym_DOT] = ACTIONS(4554), - [anon_sym_EQ_GT] = ACTIONS(4552), - [anon_sym_switch] = ACTIONS(4552), - [anon_sym_when] = ACTIONS(4552), - [anon_sym_DOT_DOT] = ACTIONS(4552), - [anon_sym_and] = ACTIONS(4552), - [anon_sym_or] = ACTIONS(4552), - [anon_sym_PLUS_EQ] = ACTIONS(4552), - [anon_sym_DASH_EQ] = ACTIONS(4552), - [anon_sym_STAR_EQ] = ACTIONS(4552), - [anon_sym_SLASH_EQ] = ACTIONS(4552), - [anon_sym_PERCENT_EQ] = ACTIONS(4552), - [anon_sym_AMP_EQ] = ACTIONS(4552), - [anon_sym_CARET_EQ] = ACTIONS(4552), - [anon_sym_PIPE_EQ] = ACTIONS(4552), - [anon_sym_LT_LT_EQ] = ACTIONS(4552), - [anon_sym_GT_GT_EQ] = ACTIONS(4552), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4552), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4552), - [anon_sym_AMP_AMP] = ACTIONS(4552), - [anon_sym_PIPE_PIPE] = ACTIONS(4552), - [sym_op_coalescing] = ACTIONS(4554), - [anon_sym_into] = ACTIONS(4552), - [anon_sym_on] = ACTIONS(4552), - [anon_sym_equals] = ACTIONS(4552), - [anon_sym_by] = ACTIONS(4552), - [anon_sym_as] = ACTIONS(4552), - [anon_sym_is] = ACTIONS(4552), - [anon_sym_DASH_GT] = ACTIONS(4552), - [anon_sym_with] = ACTIONS(4552), - [aux_sym_preproc_if_token3] = ACTIONS(4552), - [aux_sym_preproc_else_token1] = ACTIONS(4552), - [aux_sym_preproc_elif_token1] = ACTIONS(4552), + [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), @@ -465972,80 +465862,80 @@ 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(4357), - [anon_sym_alias] = ACTIONS(4357), - [anon_sym_global] = ACTIONS(4357), - [anon_sym_LBRACK] = ACTIONS(4359), - [anon_sym_COLON] = ACTIONS(4359), - [anon_sym_COMMA] = ACTIONS(4359), - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_LBRACE] = ACTIONS(4359), - [anon_sym_file] = ACTIONS(4357), - [anon_sym_LT] = ACTIONS(4357), - [anon_sym_GT] = ACTIONS(4357), - [anon_sym_where] = ACTIONS(4357), - [anon_sym_QMARK] = ACTIONS(4357), - [anon_sym_notnull] = ACTIONS(4357), - [anon_sym_unmanaged] = ACTIONS(4357), - [anon_sym_BANG] = ACTIONS(4357), - [anon_sym_PLUS_PLUS] = ACTIONS(4359), - [anon_sym_DASH_DASH] = ACTIONS(4359), - [anon_sym_PLUS] = ACTIONS(4357), - [anon_sym_DASH] = ACTIONS(4357), - [anon_sym_STAR] = ACTIONS(4359), - [anon_sym_SLASH] = ACTIONS(4357), - [anon_sym_PERCENT] = ACTIONS(4359), - [anon_sym_CARET] = ACTIONS(4359), - [anon_sym_PIPE] = ACTIONS(4357), - [anon_sym_AMP] = ACTIONS(4357), - [anon_sym_LT_LT] = ACTIONS(4359), - [anon_sym_GT_GT] = ACTIONS(4357), - [anon_sym_GT_GT_GT] = ACTIONS(4359), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_GT_EQ] = ACTIONS(4359), - [anon_sym_LT_EQ] = ACTIONS(4359), - [anon_sym_DOT] = ACTIONS(4357), - [anon_sym_scoped] = ACTIONS(4357), - [anon_sym_var] = ACTIONS(4357), - [anon_sym_yield] = ACTIONS(4357), - [anon_sym_switch] = ACTIONS(4357), - [anon_sym_when] = ACTIONS(4357), - [sym_discard] = ACTIONS(4357), - [anon_sym_DOT_DOT] = ACTIONS(4359), - [anon_sym_and] = ACTIONS(4357), - [anon_sym_or] = ACTIONS(4357), - [anon_sym_AMP_AMP] = ACTIONS(4359), - [anon_sym_PIPE_PIPE] = ACTIONS(4359), - [sym_op_coalescing] = ACTIONS(4359), - [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_ascending] = ACTIONS(4357), - [anon_sym_descending] = 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(4359), - [anon_sym_with] = ACTIONS(4357), - [sym_grit_metavariable] = ACTIONS(4359), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4359), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2794] = { [sym_preproc_region] = STATE(2794), @@ -466057,70 +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), - [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(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), @@ -466133,27 +466023,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2795] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2795), [sym_preproc_endregion] = STATE(2795), [sym_preproc_line] = STATE(2795), @@ -466163,49 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [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(4932), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [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(4936), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -466227,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(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(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), @@ -466301,12 +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(3189), }, [2797] = { - [sym__variable_designation] = STATE(4984), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2797), [sym_preproc_endregion] = STATE(2797), [sym_preproc_line] = STATE(2797), @@ -466316,151 +466202,155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2797), [sym_preproc_define] = STATE(2797), [sym_preproc_undef] = STATE(2797), + [sym__identifier_token] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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), + [sym_preproc_pragma] = STATE(2798), + [sym_preproc_nullable] = STATE(2798), + [sym_preproc_error] = STATE(2798), + [sym_preproc_warning] = STATE(2798), + [sym_preproc_define] = STATE(2798), + [sym_preproc_undef] = STATE(2798), [sym__identifier_token] = ACTIONS(4208), [anon_sym_alias] = ACTIONS(4210), [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4296), - [anon_sym_LPAREN] = ACTIONS(4296), + [anon_sym_LBRACK] = ACTIONS(4302), + [anon_sym_LPAREN] = ACTIONS(4302), [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4298), - [anon_sym_GT] = ACTIONS(4298), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4298), + [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_BANG] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_SLASH] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4298), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4298), - [anon_sym_GT_GT_GT] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4296), - [anon_sym_BANG_EQ] = ACTIONS(4296), - [anon_sym_GT_EQ] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4296), - [anon_sym_DOT] = ACTIONS(4298), + [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(4298), + [anon_sym_switch] = ACTIONS(4304), [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4298), - [anon_sym_or] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4296), - [sym_op_coalescing] = ACTIONS(4296), - [anon_sym_from] = 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(4210), + [anon_sym_join] = ACTIONS(4304), [anon_sym_on] = ACTIONS(4210), [anon_sym_equals] = ACTIONS(4210), - [anon_sym_let] = ACTIONS(4210), - [anon_sym_orderby] = 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(4210), - [anon_sym_by] = ACTIONS(4298), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4296), - [anon_sym_with] = ACTIONS(4298), - [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), - }, - [2798] = { - [sym_preproc_region] = STATE(2798), - [sym_preproc_endregion] = STATE(2798), - [sym_preproc_line] = STATE(2798), - [sym_preproc_pragma] = STATE(2798), - [sym_preproc_nullable] = STATE(2798), - [sym_preproc_error] = STATE(2798), - [sym_preproc_warning] = STATE(2798), - [sym_preproc_define] = STATE(2798), - [sym_preproc_undef] = STATE(2798), - [sym__identifier_token] = ACTIONS(4942), - [anon_sym_extern] = ACTIONS(4942), - [anon_sym_alias] = ACTIONS(4942), - [anon_sym_global] = ACTIONS(4942), - [anon_sym_using] = ACTIONS(4942), - [anon_sym_unsafe] = ACTIONS(4942), - [anon_sym_static] = ACTIONS(4942), - [anon_sym_LBRACK] = ACTIONS(4944), - [anon_sym_LPAREN] = ACTIONS(4944), - [anon_sym_event] = ACTIONS(4942), - [anon_sym_namespace] = ACTIONS(4942), - [anon_sym_class] = ACTIONS(4942), - [anon_sym_ref] = ACTIONS(4942), - [anon_sym_struct] = ACTIONS(4942), - [anon_sym_enum] = ACTIONS(4942), - [anon_sym_RBRACE] = ACTIONS(4944), - [anon_sym_interface] = ACTIONS(4942), - [anon_sym_delegate] = ACTIONS(4942), - [anon_sym_record] = ACTIONS(4942), - [anon_sym_public] = ACTIONS(4942), - [anon_sym_private] = ACTIONS(4942), - [anon_sym_readonly] = ACTIONS(4942), - [anon_sym_abstract] = ACTIONS(4942), - [anon_sym_async] = ACTIONS(4942), - [anon_sym_const] = ACTIONS(4942), - [anon_sym_file] = ACTIONS(4942), - [anon_sym_fixed] = ACTIONS(4942), - [anon_sym_internal] = ACTIONS(4942), - [anon_sym_new] = ACTIONS(4942), - [anon_sym_override] = ACTIONS(4942), - [anon_sym_partial] = ACTIONS(4942), - [anon_sym_protected] = ACTIONS(4942), - [anon_sym_required] = ACTIONS(4942), - [anon_sym_sealed] = ACTIONS(4942), - [anon_sym_virtual] = ACTIONS(4942), - [anon_sym_volatile] = ACTIONS(4942), - [anon_sym_where] = ACTIONS(4942), - [anon_sym_notnull] = ACTIONS(4942), - [anon_sym_unmanaged] = ACTIONS(4942), - [anon_sym_TILDE] = ACTIONS(4944), - [anon_sym_implicit] = ACTIONS(4942), - [anon_sym_explicit] = ACTIONS(4942), - [anon_sym_scoped] = ACTIONS(4942), - [anon_sym_var] = ACTIONS(4942), - [sym_predefined_type] = ACTIONS(4942), - [anon_sym_yield] = ACTIONS(4942), - [anon_sym_when] = ACTIONS(4942), - [anon_sym_from] = ACTIONS(4942), - [anon_sym_into] = ACTIONS(4942), - [anon_sym_join] = ACTIONS(4942), - [anon_sym_on] = ACTIONS(4942), - [anon_sym_equals] = ACTIONS(4942), - [anon_sym_let] = ACTIONS(4942), - [anon_sym_orderby] = ACTIONS(4942), - [anon_sym_ascending] = ACTIONS(4942), - [anon_sym_descending] = ACTIONS(4942), - [anon_sym_group] = ACTIONS(4942), - [anon_sym_by] = ACTIONS(4942), - [anon_sym_select] = ACTIONS(4942), - [sym_grit_metavariable] = ACTIONS(4944), - [aux_sym_preproc_if_token1] = ACTIONS(4944), - [aux_sym_preproc_if_token3] = ACTIONS(4944), - [aux_sym_preproc_else_token1] = ACTIONS(4944), - [aux_sym_preproc_elif_token1] = ACTIONS(4944), + [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), @@ -466482,70 +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_SEMI] = ACTIONS(3974), - [anon_sym_EQ] = ACTIONS(3972), - [anon_sym_LBRACK] = ACTIONS(3974), - [anon_sym_COLON] = ACTIONS(3974), - [anon_sym_COMMA] = ACTIONS(3974), - [anon_sym_RBRACK] = ACTIONS(3974), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_RPAREN] = ACTIONS(3974), - [anon_sym_RBRACE] = ACTIONS(3974), - [anon_sym_LT] = ACTIONS(3972), - [anon_sym_GT] = ACTIONS(3972), - [anon_sym_in] = ACTIONS(3972), - [anon_sym_QMARK] = ACTIONS(3972), - [anon_sym_BANG] = ACTIONS(3972), - [anon_sym_PLUS_PLUS] = ACTIONS(3974), - [anon_sym_DASH_DASH] = ACTIONS(3974), - [anon_sym_PLUS] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3972), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_SLASH] = ACTIONS(3972), - [anon_sym_PERCENT] = ACTIONS(3972), - [anon_sym_CARET] = ACTIONS(3972), - [anon_sym_PIPE] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3972), - [anon_sym_LT_LT] = ACTIONS(3972), - [anon_sym_GT_GT] = ACTIONS(3972), - [anon_sym_GT_GT_GT] = ACTIONS(3972), - [anon_sym_EQ_EQ] = ACTIONS(3974), - [anon_sym_BANG_EQ] = ACTIONS(3974), - [anon_sym_GT_EQ] = ACTIONS(3974), - [anon_sym_LT_EQ] = ACTIONS(3974), - [anon_sym_DOT] = ACTIONS(3972), - [anon_sym_EQ_GT] = ACTIONS(3974), - [anon_sym_switch] = ACTIONS(3974), - [anon_sym_when] = ACTIONS(3974), - [anon_sym_DOT_DOT] = ACTIONS(3974), - [anon_sym_and] = ACTIONS(3974), - [anon_sym_or] = ACTIONS(3974), - [anon_sym_PLUS_EQ] = ACTIONS(3974), - [anon_sym_DASH_EQ] = ACTIONS(3974), - [anon_sym_STAR_EQ] = ACTIONS(3974), - [anon_sym_SLASH_EQ] = ACTIONS(3974), - [anon_sym_PERCENT_EQ] = ACTIONS(3974), - [anon_sym_AMP_EQ] = ACTIONS(3974), - [anon_sym_CARET_EQ] = ACTIONS(3974), - [anon_sym_PIPE_EQ] = ACTIONS(3974), - [anon_sym_LT_LT_EQ] = ACTIONS(3974), - [anon_sym_GT_GT_EQ] = ACTIONS(3974), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3974), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3974), - [anon_sym_AMP_AMP] = ACTIONS(3974), - [anon_sym_PIPE_PIPE] = ACTIONS(3974), - [sym_op_coalescing] = ACTIONS(3972), - [anon_sym_into] = ACTIONS(3974), - [anon_sym_on] = ACTIONS(3974), - [anon_sym_equals] = ACTIONS(3974), - [anon_sym_by] = ACTIONS(3974), - [anon_sym_as] = ACTIONS(3974), - [anon_sym_is] = ACTIONS(3974), - [anon_sym_DASH_GT] = ACTIONS(3974), - [anon_sym_with] = ACTIONS(3974), - [aux_sym_preproc_if_token3] = ACTIONS(3974), - [aux_sym_preproc_else_token1] = ACTIONS(3974), - [aux_sym_preproc_elif_token1] = ACTIONS(3974), + [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), @@ -466558,27 +466448,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2800] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), [sym_preproc_region] = STATE(2800), [sym_preproc_endregion] = STATE(2800), [sym_preproc_line] = STATE(2800), @@ -466588,49 +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(4684), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_where] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [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(4788), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -466643,10 +466533,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2801] = { - [sym__variable_designation] = STATE(4861), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2801), [sym_preproc_endregion] = STATE(2801), [sym_preproc_line] = STATE(2801), @@ -466656,66 +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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4302), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4302), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_PLUS_PLUS] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4302), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4302), - [anon_sym_LT_LT] = ACTIONS(4300), - [anon_sym_GT_GT] = ACTIONS(4302), - [anon_sym_GT_GT_GT] = ACTIONS(4300), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_GT_EQ] = ACTIONS(4300), - [anon_sym_LT_EQ] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4302), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4302), - [anon_sym_or] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4300), - [sym_op_coalescing] = ACTIONS(4300), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4302), - [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(4302), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4302), - [anon_sym_is] = ACTIONS(4302), - [anon_sym_DASH_GT] = ACTIONS(4300), - [anon_sym_with] = ACTIONS(4302), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -466737,70 +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_SEMI] = ACTIONS(3978), - [anon_sym_EQ] = ACTIONS(3976), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_COLON] = ACTIONS(3978), - [anon_sym_COMMA] = ACTIONS(3978), - [anon_sym_RBRACK] = ACTIONS(3978), - [anon_sym_LPAREN] = ACTIONS(3978), - [anon_sym_RPAREN] = ACTIONS(3978), - [anon_sym_RBRACE] = ACTIONS(3978), - [anon_sym_LT] = ACTIONS(3976), - [anon_sym_GT] = ACTIONS(3976), - [anon_sym_in] = ACTIONS(3976), - [anon_sym_QMARK] = ACTIONS(3976), - [anon_sym_BANG] = ACTIONS(3976), - [anon_sym_PLUS_PLUS] = ACTIONS(3978), - [anon_sym_DASH_DASH] = ACTIONS(3978), - [anon_sym_PLUS] = ACTIONS(3976), - [anon_sym_DASH] = ACTIONS(3976), - [anon_sym_STAR] = ACTIONS(3976), - [anon_sym_SLASH] = ACTIONS(3976), - [anon_sym_PERCENT] = ACTIONS(3976), - [anon_sym_CARET] = ACTIONS(3976), - [anon_sym_PIPE] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), - [anon_sym_LT_LT] = ACTIONS(3976), - [anon_sym_GT_GT] = ACTIONS(3976), - [anon_sym_GT_GT_GT] = ACTIONS(3976), - [anon_sym_EQ_EQ] = ACTIONS(3978), - [anon_sym_BANG_EQ] = ACTIONS(3978), - [anon_sym_GT_EQ] = ACTIONS(3978), - [anon_sym_LT_EQ] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3976), - [anon_sym_EQ_GT] = ACTIONS(3978), - [anon_sym_switch] = ACTIONS(3978), - [anon_sym_when] = ACTIONS(3978), - [anon_sym_DOT_DOT] = ACTIONS(3978), - [anon_sym_and] = ACTIONS(3978), - [anon_sym_or] = ACTIONS(3978), - [anon_sym_PLUS_EQ] = ACTIONS(3978), - [anon_sym_DASH_EQ] = ACTIONS(3978), - [anon_sym_STAR_EQ] = ACTIONS(3978), - [anon_sym_SLASH_EQ] = ACTIONS(3978), - [anon_sym_PERCENT_EQ] = ACTIONS(3978), - [anon_sym_AMP_EQ] = ACTIONS(3978), - [anon_sym_CARET_EQ] = ACTIONS(3978), - [anon_sym_PIPE_EQ] = ACTIONS(3978), - [anon_sym_LT_LT_EQ] = ACTIONS(3978), - [anon_sym_GT_GT_EQ] = ACTIONS(3978), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3978), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3978), - [anon_sym_AMP_AMP] = ACTIONS(3978), - [anon_sym_PIPE_PIPE] = ACTIONS(3978), - [sym_op_coalescing] = ACTIONS(3976), - [anon_sym_into] = ACTIONS(3978), - [anon_sym_on] = ACTIONS(3978), - [anon_sym_equals] = ACTIONS(3978), - [anon_sym_by] = ACTIONS(3978), - [anon_sym_as] = ACTIONS(3978), - [anon_sym_is] = ACTIONS(3978), - [anon_sym_DASH_GT] = ACTIONS(3978), - [anon_sym_with] = ACTIONS(3978), - [aux_sym_preproc_if_token3] = ACTIONS(3978), - [aux_sym_preproc_else_token1] = ACTIONS(3978), - [aux_sym_preproc_elif_token1] = ACTIONS(3978), + [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), @@ -466811,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(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), [sym_preproc_region] = STATE(2803), [sym_preproc_endregion] = STATE(2803), [sym_preproc_line] = STATE(2803), @@ -466843,49 +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(4684), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [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(4728), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [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(4738), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -466907,70 +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_SEMI] = ACTIONS(3970), - [anon_sym_EQ] = ACTIONS(3968), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_COLON] = ACTIONS(3970), - [anon_sym_COMMA] = ACTIONS(3970), - [anon_sym_RBRACK] = ACTIONS(3970), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_RPAREN] = ACTIONS(3970), - [anon_sym_RBRACE] = ACTIONS(3970), - [anon_sym_LT] = ACTIONS(3968), - [anon_sym_GT] = ACTIONS(3968), - [anon_sym_in] = ACTIONS(3968), - [anon_sym_QMARK] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(3968), - [anon_sym_PLUS_PLUS] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(3970), - [anon_sym_PLUS] = ACTIONS(3968), - [anon_sym_DASH] = ACTIONS(3968), - [anon_sym_STAR] = ACTIONS(3968), - [anon_sym_SLASH] = ACTIONS(3968), - [anon_sym_PERCENT] = ACTIONS(3968), - [anon_sym_CARET] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(3968), - [anon_sym_AMP] = ACTIONS(3968), - [anon_sym_LT_LT] = ACTIONS(3968), - [anon_sym_GT_GT] = ACTIONS(3968), - [anon_sym_GT_GT_GT] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3970), - [anon_sym_BANG_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_DOT] = ACTIONS(3968), - [anon_sym_EQ_GT] = ACTIONS(3970), - [anon_sym_switch] = ACTIONS(3970), - [anon_sym_when] = ACTIONS(3970), - [anon_sym_DOT_DOT] = ACTIONS(3970), - [anon_sym_and] = ACTIONS(3970), - [anon_sym_or] = ACTIONS(3970), - [anon_sym_PLUS_EQ] = ACTIONS(3970), - [anon_sym_DASH_EQ] = ACTIONS(3970), - [anon_sym_STAR_EQ] = ACTIONS(3970), - [anon_sym_SLASH_EQ] = ACTIONS(3970), - [anon_sym_PERCENT_EQ] = ACTIONS(3970), - [anon_sym_AMP_EQ] = ACTIONS(3970), - [anon_sym_CARET_EQ] = ACTIONS(3970), - [anon_sym_PIPE_EQ] = ACTIONS(3970), - [anon_sym_LT_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_GT_EQ] = ACTIONS(3970), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3970), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3970), - [anon_sym_AMP_AMP] = ACTIONS(3970), - [anon_sym_PIPE_PIPE] = ACTIONS(3970), - [sym_op_coalescing] = ACTIONS(3968), - [anon_sym_into] = ACTIONS(3970), - [anon_sym_on] = ACTIONS(3970), - [anon_sym_equals] = ACTIONS(3970), - [anon_sym_by] = ACTIONS(3970), - [anon_sym_as] = ACTIONS(3970), - [anon_sym_is] = ACTIONS(3970), - [anon_sym_DASH_GT] = ACTIONS(3970), - [anon_sym_with] = ACTIONS(3970), - [aux_sym_preproc_if_token3] = ACTIONS(3970), - [aux_sym_preproc_else_token1] = ACTIONS(3970), - [aux_sym_preproc_elif_token1] = ACTIONS(3970), + [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), @@ -466983,10 +466873,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2805] = { - [sym__variable_designation] = STATE(4951), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2805), [sym_preproc_endregion] = STATE(2805), [sym_preproc_line] = STATE(2805), @@ -466996,66 +466882,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2805), [sym_preproc_define] = STATE(2805), [sym_preproc_undef] = STATE(2805), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [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(4248), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -467077,70 +466967,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2806), [sym_preproc_define] = STATE(2806), [sym_preproc_undef] = STATE(2806), - [sym__identifier_token] = ACTIONS(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_TILDE] = ACTIONS(4950), - [anon_sym_implicit] = ACTIONS(4948), - [anon_sym_explicit] = ACTIONS(4948), - [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), + [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), @@ -467153,27 +467043,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2807] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2807), [sym_preproc_endregion] = STATE(2807), [sym_preproc_line] = STATE(2807), @@ -467183,49 +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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4794), - [anon_sym_QMARK] = ACTIONS(4952), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4956), - [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(4958), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -467238,10 +467128,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2808] = { - [sym__variable_designation] = STATE(4887), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2808), [sym_preproc_endregion] = STATE(2808), [sym_preproc_line] = STATE(2808), @@ -467251,66 +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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4296), - [anon_sym_LPAREN] = ACTIONS(4296), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4298), - [anon_sym_GT] = ACTIONS(4298), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4298), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_SLASH] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4298), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4298), - [anon_sym_GT_GT_GT] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4296), - [anon_sym_BANG_EQ] = ACTIONS(4296), - [anon_sym_GT_EQ] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4296), - [anon_sym_DOT] = ACTIONS(4298), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4298), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4298), - [anon_sym_or] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4296), - [sym_op_coalescing] = ACTIONS(4296), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4298), - [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(4298), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4296), - [anon_sym_with] = ACTIONS(4298), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -467323,10 +467213,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2809] = { - [sym__variable_designation] = STATE(4896), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2809), [sym_preproc_endregion] = STATE(2809), [sym_preproc_line] = STATE(2809), @@ -467336,79 +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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4248), - [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(4248), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [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(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_type_argument_list] = STATE(3088), [sym_preproc_region] = STATE(2810), [sym_preproc_endregion] = STATE(2810), [sym_preproc_line] = STATE(2810), @@ -467418,69 +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_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(4964), - [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), + [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), @@ -467502,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), - [anon_sym_SEMI] = ACTIONS(3964), - [anon_sym_EQ] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_COLON] = ACTIONS(3964), - [anon_sym_COMMA] = ACTIONS(3964), - [anon_sym_RBRACK] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_RBRACE] = ACTIONS(3964), - [anon_sym_LT] = ACTIONS(3962), - [anon_sym_GT] = ACTIONS(3962), - [anon_sym_in] = ACTIONS(3962), - [anon_sym_QMARK] = ACTIONS(3962), - [anon_sym_BANG] = ACTIONS(3962), - [anon_sym_PLUS_PLUS] = ACTIONS(3964), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_PLUS] = ACTIONS(3962), - [anon_sym_DASH] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3962), - [anon_sym_SLASH] = ACTIONS(3962), - [anon_sym_PERCENT] = ACTIONS(3962), - [anon_sym_CARET] = ACTIONS(3962), - [anon_sym_PIPE] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_LT_LT] = ACTIONS(3962), - [anon_sym_GT_GT] = ACTIONS(3962), - [anon_sym_GT_GT_GT] = ACTIONS(3962), - [anon_sym_EQ_EQ] = ACTIONS(3964), - [anon_sym_BANG_EQ] = ACTIONS(3964), - [anon_sym_GT_EQ] = ACTIONS(3964), - [anon_sym_LT_EQ] = ACTIONS(3964), - [anon_sym_DOT] = ACTIONS(3962), - [anon_sym_EQ_GT] = ACTIONS(3964), - [anon_sym_switch] = ACTIONS(3964), - [anon_sym_when] = ACTIONS(3964), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_and] = ACTIONS(3964), - [anon_sym_or] = ACTIONS(3964), - [anon_sym_PLUS_EQ] = ACTIONS(3964), - [anon_sym_DASH_EQ] = ACTIONS(3964), - [anon_sym_STAR_EQ] = ACTIONS(3964), - [anon_sym_SLASH_EQ] = ACTIONS(3964), - [anon_sym_PERCENT_EQ] = ACTIONS(3964), - [anon_sym_AMP_EQ] = ACTIONS(3964), - [anon_sym_CARET_EQ] = ACTIONS(3964), - [anon_sym_PIPE_EQ] = ACTIONS(3964), - [anon_sym_LT_LT_EQ] = ACTIONS(3964), - [anon_sym_GT_GT_EQ] = ACTIONS(3964), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3964), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3964), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [sym_op_coalescing] = ACTIONS(3962), - [anon_sym_into] = ACTIONS(3964), - [anon_sym_on] = ACTIONS(3964), - [anon_sym_equals] = ACTIONS(3964), - [anon_sym_by] = ACTIONS(3964), - [anon_sym_as] = ACTIONS(3964), - [anon_sym_is] = ACTIONS(3964), - [anon_sym_DASH_GT] = ACTIONS(3964), - [anon_sym_with] = ACTIONS(3964), - [aux_sym_preproc_if_token3] = ACTIONS(3964), - [aux_sym_preproc_else_token1] = ACTIONS(3964), - [aux_sym_preproc_elif_token1] = ACTIONS(3964), + [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), @@ -467587,86 +467477,82 @@ 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(4967), - [anon_sym_extern] = ACTIONS(4967), - [anon_sym_alias] = ACTIONS(4967), - [anon_sym_global] = ACTIONS(4967), - [anon_sym_using] = ACTIONS(4967), - [anon_sym_unsafe] = ACTIONS(4967), - [anon_sym_static] = ACTIONS(4967), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_LPAREN] = ACTIONS(4969), - [anon_sym_event] = ACTIONS(4967), - [anon_sym_namespace] = ACTIONS(4967), - [anon_sym_class] = ACTIONS(4967), - [anon_sym_ref] = ACTIONS(4967), - [anon_sym_struct] = ACTIONS(4967), - [anon_sym_enum] = ACTIONS(4967), - [anon_sym_RBRACE] = ACTIONS(4969), - [anon_sym_interface] = ACTIONS(4967), - [anon_sym_delegate] = ACTIONS(4967), - [anon_sym_record] = ACTIONS(4967), - [anon_sym_public] = ACTIONS(4967), - [anon_sym_private] = ACTIONS(4967), - [anon_sym_readonly] = ACTIONS(4967), - [anon_sym_abstract] = ACTIONS(4967), - [anon_sym_async] = ACTIONS(4967), - [anon_sym_const] = ACTIONS(4967), - [anon_sym_file] = ACTIONS(4967), - [anon_sym_fixed] = ACTIONS(4967), - [anon_sym_internal] = ACTIONS(4967), - [anon_sym_new] = ACTIONS(4967), - [anon_sym_override] = ACTIONS(4967), - [anon_sym_partial] = ACTIONS(4967), - [anon_sym_protected] = ACTIONS(4967), - [anon_sym_required] = ACTIONS(4967), - [anon_sym_sealed] = ACTIONS(4967), - [anon_sym_virtual] = ACTIONS(4967), - [anon_sym_volatile] = ACTIONS(4967), - [anon_sym_where] = ACTIONS(4967), - [anon_sym_notnull] = ACTIONS(4967), - [anon_sym_unmanaged] = ACTIONS(4967), - [anon_sym_TILDE] = ACTIONS(4969), - [anon_sym_implicit] = ACTIONS(4967), - [anon_sym_explicit] = ACTIONS(4967), - [anon_sym_scoped] = ACTIONS(4967), - [anon_sym_var] = ACTIONS(4967), - [sym_predefined_type] = ACTIONS(4967), - [anon_sym_yield] = ACTIONS(4967), - [anon_sym_when] = ACTIONS(4967), - [anon_sym_from] = ACTIONS(4967), - [anon_sym_into] = ACTIONS(4967), - [anon_sym_join] = ACTIONS(4967), - [anon_sym_on] = ACTIONS(4967), - [anon_sym_equals] = ACTIONS(4967), - [anon_sym_let] = ACTIONS(4967), - [anon_sym_orderby] = ACTIONS(4967), - [anon_sym_ascending] = ACTIONS(4967), - [anon_sym_descending] = ACTIONS(4967), - [anon_sym_group] = ACTIONS(4967), - [anon_sym_by] = ACTIONS(4967), - [anon_sym_select] = ACTIONS(4967), - [sym_grit_metavariable] = ACTIONS(4969), - [aux_sym_preproc_if_token1] = ACTIONS(4969), - [aux_sym_preproc_if_token3] = ACTIONS(4969), - [aux_sym_preproc_else_token1] = ACTIONS(4969), - [aux_sym_preproc_elif_token1] = ACTIONS(4969), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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__variable_designation] = STATE(4911), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2813), [sym_preproc_endregion] = STATE(2813), [sym_preproc_line] = STATE(2813), @@ -467676,66 +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(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(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), @@ -467757,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(4971), - [anon_sym_extern] = ACTIONS(4971), - [anon_sym_alias] = ACTIONS(4971), - [anon_sym_global] = ACTIONS(4971), - [anon_sym_using] = ACTIONS(4971), - [anon_sym_unsafe] = ACTIONS(4971), - [anon_sym_static] = ACTIONS(4971), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_event] = ACTIONS(4971), - [anon_sym_namespace] = ACTIONS(4971), - [anon_sym_class] = ACTIONS(4971), - [anon_sym_ref] = ACTIONS(4971), - [anon_sym_struct] = ACTIONS(4971), - [anon_sym_enum] = ACTIONS(4971), - [anon_sym_RBRACE] = ACTIONS(4973), - [anon_sym_interface] = ACTIONS(4971), - [anon_sym_delegate] = ACTIONS(4971), - [anon_sym_record] = ACTIONS(4971), - [anon_sym_public] = ACTIONS(4971), - [anon_sym_private] = ACTIONS(4971), - [anon_sym_readonly] = ACTIONS(4971), - [anon_sym_abstract] = ACTIONS(4971), - [anon_sym_async] = ACTIONS(4971), - [anon_sym_const] = ACTIONS(4971), - [anon_sym_file] = ACTIONS(4971), - [anon_sym_fixed] = ACTIONS(4971), - [anon_sym_internal] = ACTIONS(4971), - [anon_sym_new] = ACTIONS(4971), - [anon_sym_override] = ACTIONS(4971), - [anon_sym_partial] = ACTIONS(4971), - [anon_sym_protected] = ACTIONS(4971), - [anon_sym_required] = ACTIONS(4971), - [anon_sym_sealed] = ACTIONS(4971), - [anon_sym_virtual] = ACTIONS(4971), - [anon_sym_volatile] = ACTIONS(4971), - [anon_sym_where] = ACTIONS(4971), - [anon_sym_notnull] = ACTIONS(4971), - [anon_sym_unmanaged] = ACTIONS(4971), - [anon_sym_TILDE] = ACTIONS(4973), - [anon_sym_implicit] = ACTIONS(4971), - [anon_sym_explicit] = ACTIONS(4971), - [anon_sym_scoped] = ACTIONS(4971), - [anon_sym_var] = ACTIONS(4971), - [sym_predefined_type] = ACTIONS(4971), - [anon_sym_yield] = ACTIONS(4971), - [anon_sym_when] = ACTIONS(4971), - [anon_sym_from] = ACTIONS(4971), - [anon_sym_into] = ACTIONS(4971), - [anon_sym_join] = ACTIONS(4971), - [anon_sym_on] = ACTIONS(4971), - [anon_sym_equals] = ACTIONS(4971), - [anon_sym_let] = ACTIONS(4971), - [anon_sym_orderby] = ACTIONS(4971), - [anon_sym_ascending] = ACTIONS(4971), - [anon_sym_descending] = ACTIONS(4971), - [anon_sym_group] = ACTIONS(4971), - [anon_sym_by] = ACTIONS(4971), - [anon_sym_select] = ACTIONS(4971), - [sym_grit_metavariable] = ACTIONS(4973), - [aux_sym_preproc_if_token1] = ACTIONS(4973), - [aux_sym_preproc_if_token3] = ACTIONS(4973), - [aux_sym_preproc_else_token1] = ACTIONS(4973), - [aux_sym_preproc_elif_token1] = ACTIONS(4973), + [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), @@ -467842,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(4975), - [anon_sym_extern] = ACTIONS(4975), - [anon_sym_alias] = ACTIONS(4975), - [anon_sym_global] = ACTIONS(4975), - [anon_sym_using] = ACTIONS(4975), - [anon_sym_unsafe] = ACTIONS(4975), - [anon_sym_static] = ACTIONS(4975), - [anon_sym_LBRACK] = ACTIONS(4977), - [anon_sym_LPAREN] = ACTIONS(4977), - [anon_sym_event] = ACTIONS(4975), - [anon_sym_namespace] = ACTIONS(4975), - [anon_sym_class] = ACTIONS(4975), - [anon_sym_ref] = ACTIONS(4975), - [anon_sym_struct] = ACTIONS(4975), - [anon_sym_enum] = ACTIONS(4975), - [anon_sym_RBRACE] = ACTIONS(4977), - [anon_sym_interface] = ACTIONS(4975), - [anon_sym_delegate] = ACTIONS(4975), - [anon_sym_record] = ACTIONS(4975), - [anon_sym_public] = ACTIONS(4975), - [anon_sym_private] = ACTIONS(4975), - [anon_sym_readonly] = ACTIONS(4975), - [anon_sym_abstract] = ACTIONS(4975), - [anon_sym_async] = ACTIONS(4975), - [anon_sym_const] = ACTIONS(4975), - [anon_sym_file] = ACTIONS(4975), - [anon_sym_fixed] = ACTIONS(4975), - [anon_sym_internal] = ACTIONS(4975), - [anon_sym_new] = ACTIONS(4975), - [anon_sym_override] = ACTIONS(4975), - [anon_sym_partial] = ACTIONS(4975), - [anon_sym_protected] = ACTIONS(4975), - [anon_sym_required] = ACTIONS(4975), - [anon_sym_sealed] = ACTIONS(4975), - [anon_sym_virtual] = ACTIONS(4975), - [anon_sym_volatile] = ACTIONS(4975), - [anon_sym_where] = ACTIONS(4975), - [anon_sym_notnull] = ACTIONS(4975), - [anon_sym_unmanaged] = ACTIONS(4975), - [anon_sym_TILDE] = ACTIONS(4977), - [anon_sym_implicit] = ACTIONS(4975), - [anon_sym_explicit] = ACTIONS(4975), - [anon_sym_scoped] = ACTIONS(4975), - [anon_sym_var] = ACTIONS(4975), - [sym_predefined_type] = ACTIONS(4975), - [anon_sym_yield] = ACTIONS(4975), - [anon_sym_when] = ACTIONS(4975), - [anon_sym_from] = ACTIONS(4975), - [anon_sym_into] = ACTIONS(4975), - [anon_sym_join] = ACTIONS(4975), - [anon_sym_on] = ACTIONS(4975), - [anon_sym_equals] = ACTIONS(4975), - [anon_sym_let] = ACTIONS(4975), - [anon_sym_orderby] = ACTIONS(4975), - [anon_sym_ascending] = ACTIONS(4975), - [anon_sym_descending] = ACTIONS(4975), - [anon_sym_group] = ACTIONS(4975), - [anon_sym_by] = ACTIONS(4975), - [anon_sym_select] = ACTIONS(4975), - [sym_grit_metavariable] = ACTIONS(4977), - [aux_sym_preproc_if_token1] = ACTIONS(4977), - [aux_sym_preproc_if_token3] = ACTIONS(4977), - [aux_sym_preproc_else_token1] = ACTIONS(4977), - [aux_sym_preproc_elif_token1] = ACTIONS(4977), + [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), @@ -467927,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), - [anon_sym_SEMI] = ACTIONS(4560), - [anon_sym_EQ] = ACTIONS(4562), - [anon_sym_LBRACK] = ACTIONS(4560), - [anon_sym_COLON] = ACTIONS(4560), - [anon_sym_COMMA] = ACTIONS(4560), - [anon_sym_RBRACK] = ACTIONS(4560), - [anon_sym_LPAREN] = ACTIONS(4560), - [anon_sym_RPAREN] = ACTIONS(4560), - [anon_sym_RBRACE] = ACTIONS(4560), - [anon_sym_LT] = ACTIONS(4562), - [anon_sym_GT] = ACTIONS(4562), - [anon_sym_in] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4562), - [anon_sym_BANG] = ACTIONS(4562), - [anon_sym_PLUS_PLUS] = ACTIONS(4560), - [anon_sym_DASH_DASH] = ACTIONS(4560), - [anon_sym_PLUS] = ACTIONS(4562), - [anon_sym_DASH] = ACTIONS(4562), - [anon_sym_STAR] = ACTIONS(4562), - [anon_sym_SLASH] = ACTIONS(4562), - [anon_sym_PERCENT] = ACTIONS(4562), - [anon_sym_CARET] = ACTIONS(4562), - [anon_sym_PIPE] = ACTIONS(4562), - [anon_sym_AMP] = ACTIONS(4562), - [anon_sym_LT_LT] = ACTIONS(4562), - [anon_sym_GT_GT] = ACTIONS(4562), - [anon_sym_GT_GT_GT] = ACTIONS(4562), - [anon_sym_EQ_EQ] = ACTIONS(4560), - [anon_sym_BANG_EQ] = ACTIONS(4560), - [anon_sym_GT_EQ] = ACTIONS(4560), - [anon_sym_LT_EQ] = ACTIONS(4560), - [anon_sym_DOT] = ACTIONS(4562), - [anon_sym_EQ_GT] = ACTIONS(4560), - [anon_sym_switch] = ACTIONS(4560), - [anon_sym_when] = ACTIONS(4560), - [anon_sym_DOT_DOT] = ACTIONS(4560), - [anon_sym_and] = ACTIONS(4560), - [anon_sym_or] = ACTIONS(4560), - [anon_sym_PLUS_EQ] = ACTIONS(4560), - [anon_sym_DASH_EQ] = ACTIONS(4560), - [anon_sym_STAR_EQ] = ACTIONS(4560), - [anon_sym_SLASH_EQ] = ACTIONS(4560), - [anon_sym_PERCENT_EQ] = ACTIONS(4560), - [anon_sym_AMP_EQ] = ACTIONS(4560), - [anon_sym_CARET_EQ] = ACTIONS(4560), - [anon_sym_PIPE_EQ] = ACTIONS(4560), - [anon_sym_LT_LT_EQ] = ACTIONS(4560), - [anon_sym_GT_GT_EQ] = ACTIONS(4560), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4560), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4560), - [anon_sym_AMP_AMP] = ACTIONS(4560), - [anon_sym_PIPE_PIPE] = ACTIONS(4560), - [sym_op_coalescing] = ACTIONS(4562), - [anon_sym_into] = ACTIONS(4560), - [anon_sym_on] = ACTIONS(4560), - [anon_sym_equals] = ACTIONS(4560), - [anon_sym_by] = ACTIONS(4560), - [anon_sym_as] = ACTIONS(4560), - [anon_sym_is] = ACTIONS(4560), - [anon_sym_DASH_GT] = ACTIONS(4560), - [anon_sym_with] = ACTIONS(4560), - [aux_sym_preproc_if_token3] = ACTIONS(4560), - [aux_sym_preproc_else_token1] = ACTIONS(4560), - [aux_sym_preproc_elif_token1] = ACTIONS(4560), + [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), @@ -468003,27 +467893,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2817] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), [sym_preproc_region] = STATE(2817), [sym_preproc_endregion] = STATE(2817), [sym_preproc_line] = STATE(2817), @@ -468033,49 +467902,70 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4979), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -468097,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), - [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_BANG] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3982), - [anon_sym_DASH_DASH] = ACTIONS(3982), - [anon_sym_PLUS] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_SLASH] = ACTIONS(3980), - [anon_sym_PERCENT] = ACTIONS(3980), - [anon_sym_CARET] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3980), - [anon_sym_LT_LT] = ACTIONS(3980), - [anon_sym_GT_GT] = ACTIONS(3980), - [anon_sym_GT_GT_GT] = ACTIONS(3980), - [anon_sym_EQ_EQ] = ACTIONS(3982), - [anon_sym_BANG_EQ] = ACTIONS(3982), - [anon_sym_GT_EQ] = ACTIONS(3982), - [anon_sym_LT_EQ] = ACTIONS(3982), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_EQ_GT] = ACTIONS(3982), - [anon_sym_switch] = ACTIONS(3982), - [anon_sym_when] = ACTIONS(3982), - [anon_sym_DOT_DOT] = 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_AMP_AMP] = ACTIONS(3982), - [anon_sym_PIPE_PIPE] = ACTIONS(3982), - [sym_op_coalescing] = ACTIONS(3980), - [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), + [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), @@ -468182,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), - [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(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), @@ -468267,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), - [sym__identifier_token] = ACTIONS(4983), - [anon_sym_extern] = ACTIONS(4983), - [anon_sym_alias] = ACTIONS(4983), - [anon_sym_global] = ACTIONS(4983), - [anon_sym_using] = ACTIONS(4983), - [anon_sym_unsafe] = ACTIONS(4983), - [anon_sym_static] = ACTIONS(4983), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_event] = ACTIONS(4983), - [anon_sym_namespace] = ACTIONS(4983), - [anon_sym_class] = ACTIONS(4983), - [anon_sym_ref] = ACTIONS(4983), - [anon_sym_struct] = ACTIONS(4983), - [anon_sym_enum] = ACTIONS(4983), - [anon_sym_RBRACE] = ACTIONS(4985), - [anon_sym_interface] = ACTIONS(4983), - [anon_sym_delegate] = ACTIONS(4983), - [anon_sym_record] = ACTIONS(4983), - [anon_sym_public] = ACTIONS(4983), - [anon_sym_private] = ACTIONS(4983), - [anon_sym_readonly] = ACTIONS(4983), - [anon_sym_abstract] = ACTIONS(4983), - [anon_sym_async] = ACTIONS(4983), - [anon_sym_const] = ACTIONS(4983), - [anon_sym_file] = ACTIONS(4983), - [anon_sym_fixed] = ACTIONS(4983), - [anon_sym_internal] = ACTIONS(4983), - [anon_sym_new] = ACTIONS(4983), - [anon_sym_override] = ACTIONS(4983), - [anon_sym_partial] = ACTIONS(4983), - [anon_sym_protected] = ACTIONS(4983), - [anon_sym_required] = ACTIONS(4983), - [anon_sym_sealed] = ACTIONS(4983), - [anon_sym_virtual] = ACTIONS(4983), - [anon_sym_volatile] = ACTIONS(4983), - [anon_sym_where] = ACTIONS(4983), - [anon_sym_notnull] = ACTIONS(4983), - [anon_sym_unmanaged] = ACTIONS(4983), - [anon_sym_TILDE] = ACTIONS(4985), - [anon_sym_implicit] = ACTIONS(4983), - [anon_sym_explicit] = ACTIONS(4983), - [anon_sym_scoped] = ACTIONS(4983), - [anon_sym_var] = ACTIONS(4983), - [sym_predefined_type] = ACTIONS(4983), - [anon_sym_yield] = ACTIONS(4983), - [anon_sym_when] = ACTIONS(4983), - [anon_sym_from] = ACTIONS(4983), - [anon_sym_into] = ACTIONS(4983), - [anon_sym_join] = ACTIONS(4983), - [anon_sym_on] = ACTIONS(4983), - [anon_sym_equals] = ACTIONS(4983), - [anon_sym_let] = ACTIONS(4983), - [anon_sym_orderby] = ACTIONS(4983), - [anon_sym_ascending] = ACTIONS(4983), - [anon_sym_descending] = ACTIONS(4983), - [anon_sym_group] = ACTIONS(4983), - [anon_sym_by] = ACTIONS(4983), - [anon_sym_select] = ACTIONS(4983), - [sym_grit_metavariable] = ACTIONS(4985), - [aux_sym_preproc_if_token1] = ACTIONS(4985), - [aux_sym_preproc_if_token3] = ACTIONS(4985), - [aux_sym_preproc_else_token1] = ACTIONS(4985), - [aux_sym_preproc_elif_token1] = ACTIONS(4985), + [sym__identifier_token] = ACTIONS(4988), + [anon_sym_extern] = ACTIONS(4988), + [anon_sym_alias] = ACTIONS(4988), + [anon_sym_global] = ACTIONS(4988), + [anon_sym_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), @@ -468343,27 +468233,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2821] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2821), [sym_preproc_endregion] = STATE(2821), [sym_preproc_line] = STATE(2821), @@ -468373,49 +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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -468437,70 +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), - [anon_sym_SEMI] = ACTIONS(4564), - [anon_sym_EQ] = ACTIONS(4566), - [anon_sym_LBRACK] = ACTIONS(4564), - [anon_sym_COLON] = ACTIONS(4564), - [anon_sym_COMMA] = ACTIONS(4564), - [anon_sym_RBRACK] = ACTIONS(4564), - [anon_sym_LPAREN] = ACTIONS(4564), - [anon_sym_RPAREN] = ACTIONS(4564), - [anon_sym_RBRACE] = ACTIONS(4564), - [anon_sym_LT] = ACTIONS(4566), - [anon_sym_GT] = ACTIONS(4566), - [anon_sym_in] = ACTIONS(4566), - [anon_sym_QMARK] = ACTIONS(4566), - [anon_sym_BANG] = ACTIONS(4566), - [anon_sym_PLUS_PLUS] = ACTIONS(4564), - [anon_sym_DASH_DASH] = ACTIONS(4564), - [anon_sym_PLUS] = ACTIONS(4566), - [anon_sym_DASH] = ACTIONS(4566), - [anon_sym_STAR] = ACTIONS(4566), - [anon_sym_SLASH] = ACTIONS(4566), - [anon_sym_PERCENT] = ACTIONS(4566), - [anon_sym_CARET] = ACTIONS(4566), - [anon_sym_PIPE] = ACTIONS(4566), - [anon_sym_AMP] = ACTIONS(4566), - [anon_sym_LT_LT] = ACTIONS(4566), - [anon_sym_GT_GT] = ACTIONS(4566), - [anon_sym_GT_GT_GT] = ACTIONS(4566), - [anon_sym_EQ_EQ] = ACTIONS(4564), - [anon_sym_BANG_EQ] = ACTIONS(4564), - [anon_sym_GT_EQ] = ACTIONS(4564), - [anon_sym_LT_EQ] = ACTIONS(4564), - [anon_sym_DOT] = ACTIONS(4566), - [anon_sym_EQ_GT] = ACTIONS(4564), - [anon_sym_switch] = ACTIONS(4564), - [anon_sym_when] = ACTIONS(4564), - [anon_sym_DOT_DOT] = ACTIONS(4564), - [anon_sym_and] = ACTIONS(4564), - [anon_sym_or] = ACTIONS(4564), - [anon_sym_PLUS_EQ] = ACTIONS(4564), - [anon_sym_DASH_EQ] = ACTIONS(4564), - [anon_sym_STAR_EQ] = ACTIONS(4564), - [anon_sym_SLASH_EQ] = ACTIONS(4564), - [anon_sym_PERCENT_EQ] = ACTIONS(4564), - [anon_sym_AMP_EQ] = ACTIONS(4564), - [anon_sym_CARET_EQ] = ACTIONS(4564), - [anon_sym_PIPE_EQ] = ACTIONS(4564), - [anon_sym_LT_LT_EQ] = ACTIONS(4564), - [anon_sym_GT_GT_EQ] = ACTIONS(4564), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4564), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4564), - [anon_sym_AMP_AMP] = ACTIONS(4564), - [anon_sym_PIPE_PIPE] = ACTIONS(4564), - [sym_op_coalescing] = ACTIONS(4566), - [anon_sym_into] = ACTIONS(4564), - [anon_sym_on] = ACTIONS(4564), - [anon_sym_equals] = ACTIONS(4564), - [anon_sym_by] = ACTIONS(4564), - [anon_sym_as] = ACTIONS(4564), - [anon_sym_is] = ACTIONS(4564), - [anon_sym_DASH_GT] = ACTIONS(4564), - [anon_sym_with] = ACTIONS(4564), - [aux_sym_preproc_if_token3] = ACTIONS(4564), - [aux_sym_preproc_else_token1] = ACTIONS(4564), - [aux_sym_preproc_elif_token1] = ACTIONS(4564), + [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), @@ -468513,27 +468403,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2823] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2823), [sym_preproc_endregion] = STATE(2823), [sym_preproc_line] = STATE(2823), @@ -468543,49 +468412,70 @@ 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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -468607,70 +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(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(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), @@ -468692,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(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(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), @@ -468768,10 +468658,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2826] = { - [sym__variable_designation] = STATE(5522), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym_identifier] = STATE(5517), - [sym__reserved_identifier] = STATE(3741), [sym_preproc_region] = STATE(2826), [sym_preproc_endregion] = STATE(2826), [sym_preproc_line] = STATE(2826), @@ -468781,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(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(4568), - [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(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), @@ -468862,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(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), + [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), @@ -468947,70 +468837,70 @@ 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(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(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), @@ -469032,70 +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), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_RBRACK] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_RPAREN] = ACTIONS(5003), - [anon_sym_RBRACE] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_in] = ACTIONS(5011), - [anon_sym_QMARK] = ACTIONS(5008), - [anon_sym_BANG] = ACTIONS(5008), - [anon_sym_PLUS_PLUS] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5008), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5008), - [anon_sym_CARET] = ACTIONS(5008), - [anon_sym_PIPE] = ACTIONS(5008), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym_LT_LT] = ACTIONS(5008), - [anon_sym_GT_GT] = ACTIONS(5008), - [anon_sym_GT_GT_GT] = ACTIONS(5008), - [anon_sym_EQ_EQ] = ACTIONS(5005), - [anon_sym_BANG_EQ] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(5005), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_EQ_GT] = ACTIONS(5003), - [anon_sym_switch] = ACTIONS(5005), - [anon_sym_when] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(5005), - [anon_sym_and] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(5003), - [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(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(5005), - [sym_op_coalescing] = ACTIONS(5008), - [anon_sym_into] = ACTIONS(5003), - [anon_sym_on] = ACTIONS(5003), - [anon_sym_equals] = ACTIONS(5003), - [anon_sym_by] = ACTIONS(5003), - [anon_sym_as] = ACTIONS(5005), - [anon_sym_is] = ACTIONS(5005), - [anon_sym_DASH_GT] = ACTIONS(5005), - [anon_sym_with] = ACTIONS(5005), - [aux_sym_preproc_if_token3] = ACTIONS(5003), - [aux_sym_preproc_else_token1] = ACTIONS(5003), - [aux_sym_preproc_elif_token1] = ACTIONS(5003), + [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), @@ -469108,10 +468998,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2830] = { - [sym__variable_designation] = STATE(4985), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -469121,66 +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(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_LPAREN] = ACTIONS(4250), - [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_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), + [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(4210), - [sym_discard] = ACTIONS(4236), + [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_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_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(4210), + [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), @@ -469193,27 +469083,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2831] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), [sym_preproc_region] = STATE(2831), [sym_preproc_endregion] = STATE(2831), [sym_preproc_line] = STATE(2831), @@ -469223,49 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4694), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -469278,27 +469168,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2832] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), [sym_preproc_region] = STATE(2832), [sym_preproc_endregion] = STATE(2832), [sym_preproc_line] = STATE(2832), @@ -469308,49 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -469363,27 +469253,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2833] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), [sym_preproc_region] = STATE(2833), [sym_preproc_endregion] = STATE(2833), [sym_preproc_line] = STATE(2833), @@ -469393,49 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -469448,27 +469338,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2834] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), [sym_preproc_region] = STATE(2834), [sym_preproc_endregion] = STATE(2834), [sym_preproc_line] = STATE(2834), @@ -469478,49 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -469533,27 +469423,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2835] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), [sym_preproc_region] = STATE(2835), [sym_preproc_endregion] = STATE(2835), [sym_preproc_line] = STATE(2835), @@ -469563,49 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -469618,27 +469508,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2836] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), + [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), @@ -469648,49 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -469703,27 +469593,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2837] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), [sym_preproc_region] = STATE(2837), [sym_preproc_endregion] = STATE(2837), [sym_preproc_line] = STATE(2837), @@ -469733,49 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -469788,27 +469678,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2838] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), [sym_preproc_region] = STATE(2838), [sym_preproc_endregion] = STATE(2838), [sym_preproc_line] = STATE(2838), @@ -469818,49 +469687,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2838), [sym_preproc_define] = STATE(2838), [sym_preproc_undef] = STATE(2838), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4694), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -469873,27 +469763,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2839] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), + [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), @@ -469903,49 +469776,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2839), [sym_preproc_define] = STATE(2839), [sym_preproc_undef] = STATE(2839), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4694), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -469958,27 +469848,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2840] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), [sym_preproc_region] = STATE(2840), [sym_preproc_endregion] = STATE(2840), [sym_preproc_line] = STATE(2840), @@ -469988,49 +469857,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2840), [sym_preproc_define] = STATE(2840), [sym_preproc_undef] = STATE(2840), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_ascending] = ACTIONS(4686), - [anon_sym_descending] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4694), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -470052,70 +469942,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2841), [sym_preproc_define] = STATE(2841), [sym_preproc_undef] = STATE(2841), - [sym__identifier_token] = ACTIONS(5013), - [anon_sym_extern] = ACTIONS(5013), - [anon_sym_alias] = ACTIONS(5013), - [anon_sym_global] = ACTIONS(5013), - [anon_sym_using] = ACTIONS(5013), - [anon_sym_unsafe] = ACTIONS(5013), - [anon_sym_static] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5015), - [anon_sym_event] = ACTIONS(5013), - [anon_sym_namespace] = ACTIONS(5013), - [anon_sym_class] = ACTIONS(5013), - [anon_sym_ref] = ACTIONS(5013), - [anon_sym_struct] = ACTIONS(5013), - [anon_sym_enum] = ACTIONS(5013), - [anon_sym_RBRACE] = ACTIONS(5015), - [anon_sym_interface] = ACTIONS(5013), - [anon_sym_delegate] = ACTIONS(5013), - [anon_sym_record] = ACTIONS(5013), - [anon_sym_public] = ACTIONS(5013), - [anon_sym_private] = ACTIONS(5013), - [anon_sym_readonly] = ACTIONS(5013), - [anon_sym_abstract] = ACTIONS(5013), - [anon_sym_async] = ACTIONS(5013), - [anon_sym_const] = ACTIONS(5013), - [anon_sym_file] = ACTIONS(5013), - [anon_sym_fixed] = ACTIONS(5013), - [anon_sym_internal] = ACTIONS(5013), - [anon_sym_new] = ACTIONS(5013), - [anon_sym_override] = ACTIONS(5013), - [anon_sym_partial] = ACTIONS(5013), - [anon_sym_protected] = ACTIONS(5013), - [anon_sym_required] = ACTIONS(5013), - [anon_sym_sealed] = ACTIONS(5013), - [anon_sym_virtual] = ACTIONS(5013), - [anon_sym_volatile] = ACTIONS(5013), - [anon_sym_where] = ACTIONS(5013), - [anon_sym_notnull] = ACTIONS(5013), - [anon_sym_unmanaged] = ACTIONS(5013), - [anon_sym_TILDE] = ACTIONS(5015), - [anon_sym_implicit] = ACTIONS(5013), - [anon_sym_explicit] = ACTIONS(5013), - [anon_sym_scoped] = ACTIONS(5013), - [anon_sym_var] = ACTIONS(5013), - [sym_predefined_type] = ACTIONS(5013), - [anon_sym_yield] = ACTIONS(5013), - [anon_sym_when] = ACTIONS(5013), - [anon_sym_from] = ACTIONS(5013), - [anon_sym_into] = ACTIONS(5013), - [anon_sym_join] = ACTIONS(5013), - [anon_sym_on] = ACTIONS(5013), - [anon_sym_equals] = ACTIONS(5013), - [anon_sym_let] = ACTIONS(5013), - [anon_sym_orderby] = ACTIONS(5013), - [anon_sym_ascending] = ACTIONS(5013), - [anon_sym_descending] = ACTIONS(5013), - [anon_sym_group] = ACTIONS(5013), - [anon_sym_by] = ACTIONS(5013), - [anon_sym_select] = ACTIONS(5013), - [sym_grit_metavariable] = ACTIONS(5015), - [aux_sym_preproc_if_token1] = ACTIONS(5015), - [aux_sym_preproc_if_token3] = ACTIONS(5015), - [aux_sym_preproc_else_token1] = ACTIONS(5015), - [aux_sym_preproc_elif_token1] = ACTIONS(5015), + [anon_sym_SEMI] = ACTIONS(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), @@ -470128,6 +470018,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -470137,155 +470031,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2842), [sym_preproc_define] = STATE(2842), [sym_preproc_undef] = STATE(2842), - [sym__identifier_token] = ACTIONS(5017), - [anon_sym_extern] = ACTIONS(5017), - [anon_sym_alias] = ACTIONS(5017), - [anon_sym_global] = ACTIONS(5017), - [anon_sym_using] = ACTIONS(5017), - [anon_sym_unsafe] = ACTIONS(5017), - [anon_sym_static] = ACTIONS(5017), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_event] = ACTIONS(5017), - [anon_sym_namespace] = ACTIONS(5017), - [anon_sym_class] = ACTIONS(5017), - [anon_sym_ref] = ACTIONS(5017), - [anon_sym_struct] = ACTIONS(5017), - [anon_sym_enum] = ACTIONS(5017), - [anon_sym_RBRACE] = ACTIONS(5019), - [anon_sym_interface] = ACTIONS(5017), - [anon_sym_delegate] = ACTIONS(5017), - [anon_sym_record] = ACTIONS(5017), - [anon_sym_public] = ACTIONS(5017), - [anon_sym_private] = ACTIONS(5017), - [anon_sym_readonly] = ACTIONS(5017), - [anon_sym_abstract] = ACTIONS(5017), - [anon_sym_async] = ACTIONS(5017), - [anon_sym_const] = ACTIONS(5017), - [anon_sym_file] = ACTIONS(5017), - [anon_sym_fixed] = ACTIONS(5017), - [anon_sym_internal] = ACTIONS(5017), - [anon_sym_new] = ACTIONS(5017), - [anon_sym_override] = ACTIONS(5017), - [anon_sym_partial] = ACTIONS(5017), - [anon_sym_protected] = ACTIONS(5017), - [anon_sym_required] = ACTIONS(5017), - [anon_sym_sealed] = ACTIONS(5017), - [anon_sym_virtual] = ACTIONS(5017), - [anon_sym_volatile] = ACTIONS(5017), - [anon_sym_where] = ACTIONS(5017), - [anon_sym_notnull] = ACTIONS(5017), - [anon_sym_unmanaged] = ACTIONS(5017), - [anon_sym_TILDE] = ACTIONS(5019), - [anon_sym_implicit] = ACTIONS(5017), - [anon_sym_explicit] = ACTIONS(5017), - [anon_sym_scoped] = ACTIONS(5017), - [anon_sym_var] = ACTIONS(5017), - [sym_predefined_type] = ACTIONS(5017), - [anon_sym_yield] = ACTIONS(5017), - [anon_sym_when] = ACTIONS(5017), - [anon_sym_from] = ACTIONS(5017), - [anon_sym_into] = ACTIONS(5017), - [anon_sym_join] = ACTIONS(5017), - [anon_sym_on] = ACTIONS(5017), - [anon_sym_equals] = ACTIONS(5017), - [anon_sym_let] = ACTIONS(5017), - [anon_sym_orderby] = ACTIONS(5017), - [anon_sym_ascending] = ACTIONS(5017), - [anon_sym_descending] = ACTIONS(5017), - [anon_sym_group] = ACTIONS(5017), - [anon_sym_by] = ACTIONS(5017), - [anon_sym_select] = ACTIONS(5017), - [sym_grit_metavariable] = ACTIONS(5019), - [aux_sym_preproc_if_token1] = ACTIONS(5019), - [aux_sym_preproc_if_token3] = ACTIONS(5019), - [aux_sym_preproc_else_token1] = ACTIONS(5019), - [aux_sym_preproc_elif_token1] = ACTIONS(5019), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [2843] = { - [sym_preproc_region] = STATE(2843), - [sym_preproc_endregion] = STATE(2843), - [sym_preproc_line] = STATE(2843), - [sym_preproc_pragma] = STATE(2843), - [sym_preproc_nullable] = STATE(2843), - [sym_preproc_error] = STATE(2843), - [sym_preproc_warning] = STATE(2843), - [sym_preproc_define] = STATE(2843), - [sym_preproc_undef] = STATE(2843), - [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), + [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(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), + }, + [2843] = { + [sym_preproc_region] = STATE(2843), + [sym_preproc_endregion] = STATE(2843), + [sym_preproc_line] = STATE(2843), + [sym_preproc_pragma] = STATE(2843), + [sym_preproc_nullable] = STATE(2843), + [sym_preproc_error] = STATE(2843), + [sym_preproc_warning] = STATE(2843), + [sym_preproc_define] = STATE(2843), + [sym_preproc_undef] = STATE(2843), + [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), @@ -470298,10 +470188,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2844] = { - [sym__variable_designation] = STATE(4980), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2844), [sym_preproc_endregion] = STATE(2844), [sym_preproc_line] = STATE(2844), @@ -470311,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(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4302), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4302), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_PLUS_PLUS] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4302), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4302), - [anon_sym_LT_LT] = ACTIONS(4300), - [anon_sym_GT_GT] = ACTIONS(4302), - [anon_sym_GT_GT_GT] = ACTIONS(4300), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_GT_EQ] = ACTIONS(4300), - [anon_sym_LT_EQ] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4302), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4302), - [anon_sym_or] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4300), - [sym_op_coalescing] = ACTIONS(4300), - [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(4302), - [anon_sym_select] = ACTIONS(4210), - [anon_sym_as] = ACTIONS(4302), - [anon_sym_is] = ACTIONS(4302), - [anon_sym_DASH_GT] = ACTIONS(4300), - [anon_sym_with] = ACTIONS(4302), - [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), @@ -470392,80 +470282,80 @@ 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(4288), - [anon_sym_alias] = ACTIONS(4288), - [anon_sym_global] = ACTIONS(4288), - [anon_sym_LBRACK] = ACTIONS(4290), - [anon_sym_COLON] = ACTIONS(4290), - [anon_sym_COMMA] = ACTIONS(4290), - [anon_sym_LPAREN] = ACTIONS(4290), - [anon_sym_LBRACE] = ACTIONS(4290), - [anon_sym_file] = ACTIONS(4288), - [anon_sym_LT] = ACTIONS(4288), - [anon_sym_GT] = ACTIONS(4288), - [anon_sym_where] = ACTIONS(4288), - [anon_sym_QMARK] = ACTIONS(4288), - [anon_sym_notnull] = ACTIONS(4288), - [anon_sym_unmanaged] = ACTIONS(4288), - [anon_sym_BANG] = ACTIONS(4288), - [anon_sym_PLUS_PLUS] = ACTIONS(4290), - [anon_sym_DASH_DASH] = ACTIONS(4290), - [anon_sym_PLUS] = ACTIONS(4288), - [anon_sym_DASH] = ACTIONS(4288), - [anon_sym_STAR] = ACTIONS(4290), - [anon_sym_SLASH] = ACTIONS(4288), - [anon_sym_PERCENT] = ACTIONS(4290), - [anon_sym_CARET] = ACTIONS(4290), - [anon_sym_PIPE] = ACTIONS(4288), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_LT_LT] = ACTIONS(4290), - [anon_sym_GT_GT] = ACTIONS(4288), - [anon_sym_GT_GT_GT] = ACTIONS(4290), - [anon_sym_EQ_EQ] = ACTIONS(4290), - [anon_sym_BANG_EQ] = ACTIONS(4290), - [anon_sym_GT_EQ] = ACTIONS(4290), - [anon_sym_LT_EQ] = ACTIONS(4290), - [anon_sym_DOT] = ACTIONS(4288), - [anon_sym_scoped] = ACTIONS(4288), - [anon_sym_var] = ACTIONS(4288), - [anon_sym_yield] = ACTIONS(4288), - [anon_sym_switch] = ACTIONS(4288), - [anon_sym_when] = ACTIONS(4288), - [sym_discard] = ACTIONS(4288), - [anon_sym_DOT_DOT] = ACTIONS(4290), - [anon_sym_and] = ACTIONS(4288), - [anon_sym_or] = ACTIONS(4288), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_PIPE_PIPE] = ACTIONS(4290), - [sym_op_coalescing] = ACTIONS(4290), - [anon_sym_from] = ACTIONS(4288), - [anon_sym_into] = ACTIONS(4288), - [anon_sym_join] = ACTIONS(4288), - [anon_sym_on] = ACTIONS(4288), - [anon_sym_equals] = ACTIONS(4288), - [anon_sym_let] = ACTIONS(4288), - [anon_sym_orderby] = ACTIONS(4288), - [anon_sym_ascending] = ACTIONS(4288), - [anon_sym_descending] = ACTIONS(4288), - [anon_sym_group] = ACTIONS(4288), - [anon_sym_by] = ACTIONS(4288), - [anon_sym_select] = ACTIONS(4288), - [anon_sym_as] = ACTIONS(4288), - [anon_sym_is] = ACTIONS(4288), - [anon_sym_DASH_GT] = ACTIONS(4290), - [anon_sym_with] = ACTIONS(4288), - [sym_grit_metavariable] = ACTIONS(4290), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4290), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2846] = { [sym_preproc_region] = STATE(2846), @@ -470477,70 +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(5021), - [anon_sym_extern] = ACTIONS(5021), - [anon_sym_alias] = ACTIONS(5021), - [anon_sym_global] = ACTIONS(5021), - [anon_sym_using] = ACTIONS(5021), - [anon_sym_unsafe] = ACTIONS(5021), - [anon_sym_static] = ACTIONS(5021), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_event] = ACTIONS(5021), - [anon_sym_namespace] = ACTIONS(5021), - [anon_sym_class] = ACTIONS(5021), - [anon_sym_ref] = ACTIONS(5021), - [anon_sym_struct] = ACTIONS(5021), - [anon_sym_enum] = ACTIONS(5021), - [anon_sym_RBRACE] = ACTIONS(5023), - [anon_sym_interface] = ACTIONS(5021), - [anon_sym_delegate] = ACTIONS(5021), - [anon_sym_record] = ACTIONS(5021), - [anon_sym_public] = ACTIONS(5021), - [anon_sym_private] = ACTIONS(5021), - [anon_sym_readonly] = ACTIONS(5021), - [anon_sym_abstract] = ACTIONS(5021), - [anon_sym_async] = ACTIONS(5021), - [anon_sym_const] = ACTIONS(5021), - [anon_sym_file] = ACTIONS(5021), - [anon_sym_fixed] = ACTIONS(5021), - [anon_sym_internal] = ACTIONS(5021), - [anon_sym_new] = ACTIONS(5021), - [anon_sym_override] = ACTIONS(5021), - [anon_sym_partial] = ACTIONS(5021), - [anon_sym_protected] = ACTIONS(5021), - [anon_sym_required] = ACTIONS(5021), - [anon_sym_sealed] = ACTIONS(5021), - [anon_sym_virtual] = ACTIONS(5021), - [anon_sym_volatile] = ACTIONS(5021), - [anon_sym_where] = ACTIONS(5021), - [anon_sym_notnull] = ACTIONS(5021), - [anon_sym_unmanaged] = ACTIONS(5021), - [anon_sym_TILDE] = ACTIONS(5023), - [anon_sym_implicit] = ACTIONS(5021), - [anon_sym_explicit] = ACTIONS(5021), - [anon_sym_scoped] = ACTIONS(5021), - [anon_sym_var] = ACTIONS(5021), - [sym_predefined_type] = ACTIONS(5021), - [anon_sym_yield] = ACTIONS(5021), - [anon_sym_when] = ACTIONS(5021), - [anon_sym_from] = ACTIONS(5021), - [anon_sym_into] = ACTIONS(5021), - [anon_sym_join] = ACTIONS(5021), - [anon_sym_on] = ACTIONS(5021), - [anon_sym_equals] = ACTIONS(5021), - [anon_sym_let] = ACTIONS(5021), - [anon_sym_orderby] = ACTIONS(5021), - [anon_sym_ascending] = ACTIONS(5021), - [anon_sym_descending] = ACTIONS(5021), - [anon_sym_group] = ACTIONS(5021), - [anon_sym_by] = ACTIONS(5021), - [anon_sym_select] = ACTIONS(5021), - [sym_grit_metavariable] = ACTIONS(5023), - [aux_sym_preproc_if_token1] = ACTIONS(5023), - [aux_sym_preproc_if_token3] = ACTIONS(5023), - [aux_sym_preproc_else_token1] = ACTIONS(5023), - [aux_sym_preproc_elif_token1] = ACTIONS(5023), + [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), @@ -470562,70 +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(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_TILDE] = ACTIONS(3654), - [anon_sym_implicit] = ACTIONS(3652), - [anon_sym_explicit] = ACTIONS(3652), - [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), + [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), @@ -470638,6 +470528,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2848] = { + [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), @@ -470647,70 +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(5025), - [anon_sym_extern] = ACTIONS(5025), - [anon_sym_alias] = ACTIONS(5025), - [anon_sym_global] = ACTIONS(5025), - [anon_sym_using] = ACTIONS(5025), - [anon_sym_unsafe] = ACTIONS(5025), - [anon_sym_static] = ACTIONS(5025), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_event] = ACTIONS(5025), - [anon_sym_namespace] = ACTIONS(5025), - [anon_sym_class] = ACTIONS(5025), - [anon_sym_ref] = ACTIONS(5025), - [anon_sym_struct] = ACTIONS(5025), - [anon_sym_enum] = ACTIONS(5025), - [anon_sym_RBRACE] = ACTIONS(5027), - [anon_sym_interface] = ACTIONS(5025), - [anon_sym_delegate] = ACTIONS(5025), - [anon_sym_record] = ACTIONS(5025), - [anon_sym_public] = ACTIONS(5025), - [anon_sym_private] = ACTIONS(5025), - [anon_sym_readonly] = ACTIONS(5025), - [anon_sym_abstract] = ACTIONS(5025), - [anon_sym_async] = ACTIONS(5025), - [anon_sym_const] = ACTIONS(5025), - [anon_sym_file] = ACTIONS(5025), - [anon_sym_fixed] = ACTIONS(5025), - [anon_sym_internal] = ACTIONS(5025), - [anon_sym_new] = ACTIONS(5025), - [anon_sym_override] = ACTIONS(5025), - [anon_sym_partial] = ACTIONS(5025), - [anon_sym_protected] = ACTIONS(5025), - [anon_sym_required] = ACTIONS(5025), - [anon_sym_sealed] = ACTIONS(5025), - [anon_sym_virtual] = ACTIONS(5025), - [anon_sym_volatile] = ACTIONS(5025), - [anon_sym_where] = ACTIONS(5025), - [anon_sym_notnull] = ACTIONS(5025), - [anon_sym_unmanaged] = ACTIONS(5025), - [anon_sym_TILDE] = ACTIONS(5027), - [anon_sym_implicit] = ACTIONS(5025), - [anon_sym_explicit] = ACTIONS(5025), - [anon_sym_scoped] = ACTIONS(5025), - [anon_sym_var] = ACTIONS(5025), - [sym_predefined_type] = ACTIONS(5025), - [anon_sym_yield] = ACTIONS(5025), - [anon_sym_when] = ACTIONS(5025), - [anon_sym_from] = ACTIONS(5025), - [anon_sym_into] = ACTIONS(5025), - [anon_sym_join] = ACTIONS(5025), - [anon_sym_on] = ACTIONS(5025), - [anon_sym_equals] = ACTIONS(5025), - [anon_sym_let] = ACTIONS(5025), - [anon_sym_orderby] = ACTIONS(5025), - [anon_sym_ascending] = ACTIONS(5025), - [anon_sym_descending] = ACTIONS(5025), - [anon_sym_group] = ACTIONS(5025), - [anon_sym_by] = ACTIONS(5025), - [anon_sym_select] = ACTIONS(5025), - [sym_grit_metavariable] = ACTIONS(5027), - [aux_sym_preproc_if_token1] = ACTIONS(5027), - [aux_sym_preproc_if_token3] = ACTIONS(5027), - [aux_sym_preproc_else_token1] = ACTIONS(5027), - [aux_sym_preproc_elif_token1] = ACTIONS(5027), + [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(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), @@ -470732,70 +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(5029), - [anon_sym_extern] = ACTIONS(5029), - [anon_sym_alias] = ACTIONS(5029), - [anon_sym_global] = ACTIONS(5029), - [anon_sym_using] = ACTIONS(5029), - [anon_sym_unsafe] = ACTIONS(5029), - [anon_sym_static] = ACTIONS(5029), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_event] = ACTIONS(5029), - [anon_sym_namespace] = ACTIONS(5029), - [anon_sym_class] = ACTIONS(5029), - [anon_sym_ref] = ACTIONS(5029), - [anon_sym_struct] = ACTIONS(5029), - [anon_sym_enum] = ACTIONS(5029), - [anon_sym_RBRACE] = ACTIONS(5031), - [anon_sym_interface] = ACTIONS(5029), - [anon_sym_delegate] = ACTIONS(5029), - [anon_sym_record] = ACTIONS(5029), - [anon_sym_public] = ACTIONS(5029), - [anon_sym_private] = ACTIONS(5029), - [anon_sym_readonly] = ACTIONS(5029), - [anon_sym_abstract] = ACTIONS(5029), - [anon_sym_async] = ACTIONS(5029), - [anon_sym_const] = ACTIONS(5029), - [anon_sym_file] = ACTIONS(5029), - [anon_sym_fixed] = ACTIONS(5029), - [anon_sym_internal] = ACTIONS(5029), - [anon_sym_new] = ACTIONS(5029), - [anon_sym_override] = ACTIONS(5029), - [anon_sym_partial] = ACTIONS(5029), - [anon_sym_protected] = ACTIONS(5029), - [anon_sym_required] = ACTIONS(5029), - [anon_sym_sealed] = ACTIONS(5029), - [anon_sym_virtual] = ACTIONS(5029), - [anon_sym_volatile] = ACTIONS(5029), - [anon_sym_where] = ACTIONS(5029), - [anon_sym_notnull] = ACTIONS(5029), - [anon_sym_unmanaged] = ACTIONS(5029), - [anon_sym_TILDE] = ACTIONS(5031), - [anon_sym_implicit] = ACTIONS(5029), - [anon_sym_explicit] = ACTIONS(5029), - [anon_sym_scoped] = ACTIONS(5029), - [anon_sym_var] = ACTIONS(5029), - [sym_predefined_type] = ACTIONS(5029), - [anon_sym_yield] = ACTIONS(5029), - [anon_sym_when] = ACTIONS(5029), - [anon_sym_from] = ACTIONS(5029), - [anon_sym_into] = ACTIONS(5029), - [anon_sym_join] = ACTIONS(5029), - [anon_sym_on] = ACTIONS(5029), - [anon_sym_equals] = ACTIONS(5029), - [anon_sym_let] = ACTIONS(5029), - [anon_sym_orderby] = ACTIONS(5029), - [anon_sym_ascending] = ACTIONS(5029), - [anon_sym_descending] = ACTIONS(5029), - [anon_sym_group] = ACTIONS(5029), - [anon_sym_by] = ACTIONS(5029), - [anon_sym_select] = ACTIONS(5029), - [sym_grit_metavariable] = ACTIONS(5031), - [aux_sym_preproc_if_token1] = ACTIONS(5031), - [aux_sym_preproc_if_token3] = ACTIONS(5031), - [aux_sym_preproc_else_token1] = ACTIONS(5031), - [aux_sym_preproc_elif_token1] = ACTIONS(5031), + [anon_sym_SEMI] = ACTIONS(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), @@ -470817,70 +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(5033), - [anon_sym_extern] = ACTIONS(5033), - [anon_sym_alias] = ACTIONS(5033), - [anon_sym_global] = ACTIONS(5033), - [anon_sym_using] = ACTIONS(5033), - [anon_sym_unsafe] = ACTIONS(5033), - [anon_sym_static] = ACTIONS(5033), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_event] = ACTIONS(5033), - [anon_sym_namespace] = ACTIONS(5033), - [anon_sym_class] = ACTIONS(5033), - [anon_sym_ref] = ACTIONS(5033), - [anon_sym_struct] = ACTIONS(5033), - [anon_sym_enum] = ACTIONS(5033), - [anon_sym_RBRACE] = ACTIONS(5035), - [anon_sym_interface] = ACTIONS(5033), - [anon_sym_delegate] = ACTIONS(5033), - [anon_sym_record] = ACTIONS(5033), - [anon_sym_public] = ACTIONS(5033), - [anon_sym_private] = ACTIONS(5033), - [anon_sym_readonly] = ACTIONS(5033), - [anon_sym_abstract] = ACTIONS(5033), - [anon_sym_async] = ACTIONS(5033), - [anon_sym_const] = ACTIONS(5033), - [anon_sym_file] = ACTIONS(5033), - [anon_sym_fixed] = ACTIONS(5033), - [anon_sym_internal] = ACTIONS(5033), - [anon_sym_new] = ACTIONS(5033), - [anon_sym_override] = ACTIONS(5033), - [anon_sym_partial] = ACTIONS(5033), - [anon_sym_protected] = ACTIONS(5033), - [anon_sym_required] = ACTIONS(5033), - [anon_sym_sealed] = ACTIONS(5033), - [anon_sym_virtual] = ACTIONS(5033), - [anon_sym_volatile] = ACTIONS(5033), - [anon_sym_where] = ACTIONS(5033), - [anon_sym_notnull] = ACTIONS(5033), - [anon_sym_unmanaged] = ACTIONS(5033), - [anon_sym_TILDE] = ACTIONS(5035), - [anon_sym_implicit] = ACTIONS(5033), - [anon_sym_explicit] = ACTIONS(5033), - [anon_sym_scoped] = ACTIONS(5033), - [anon_sym_var] = ACTIONS(5033), - [sym_predefined_type] = ACTIONS(5033), - [anon_sym_yield] = ACTIONS(5033), - [anon_sym_when] = ACTIONS(5033), - [anon_sym_from] = ACTIONS(5033), - [anon_sym_into] = ACTIONS(5033), - [anon_sym_join] = ACTIONS(5033), - [anon_sym_on] = ACTIONS(5033), - [anon_sym_equals] = ACTIONS(5033), - [anon_sym_let] = ACTIONS(5033), - [anon_sym_orderby] = ACTIONS(5033), - [anon_sym_ascending] = ACTIONS(5033), - [anon_sym_descending] = ACTIONS(5033), - [anon_sym_group] = ACTIONS(5033), - [anon_sym_by] = ACTIONS(5033), - [anon_sym_select] = ACTIONS(5033), - [sym_grit_metavariable] = ACTIONS(5035), - [aux_sym_preproc_if_token1] = ACTIONS(5035), - [aux_sym_preproc_if_token3] = ACTIONS(5035), - [aux_sym_preproc_else_token1] = ACTIONS(5035), - [aux_sym_preproc_elif_token1] = ACTIONS(5035), + [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), @@ -470902,69 +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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(5037), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5040), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -470975,30 +470866,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(4318), }, [2852] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), + [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), @@ -471008,49 +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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_where] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [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(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4786), + [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(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), @@ -471063,27 +470953,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2853] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), [sym_preproc_region] = STATE(2853), [sym_preproc_endregion] = STATE(2853), [sym_preproc_line] = STATE(2853), @@ -471093,49 +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_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_where] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_from] = ACTIONS(4768), - [anon_sym_join] = ACTIONS(4768), - [anon_sym_let] = ACTIONS(4768), - [anon_sym_orderby] = ACTIONS(4768), - [anon_sym_ascending] = ACTIONS(4768), - [anon_sym_descending] = ACTIONS(4768), - [anon_sym_group] = ACTIONS(4768), - [anon_sym_select] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4770), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -471148,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), @@ -471157,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), - [sym__identifier_token] = ACTIONS(5042), - [anon_sym_extern] = ACTIONS(5042), - [anon_sym_alias] = ACTIONS(5042), - [anon_sym_global] = ACTIONS(5042), - [anon_sym_using] = ACTIONS(5042), - [anon_sym_unsafe] = ACTIONS(5042), - [anon_sym_static] = ACTIONS(5042), - [anon_sym_LBRACK] = ACTIONS(5044), - [anon_sym_LPAREN] = ACTIONS(5044), - [anon_sym_event] = ACTIONS(5042), - [anon_sym_namespace] = ACTIONS(5042), - [anon_sym_class] = ACTIONS(5042), - [anon_sym_ref] = ACTIONS(5042), - [anon_sym_struct] = ACTIONS(5042), - [anon_sym_enum] = ACTIONS(5042), - [anon_sym_RBRACE] = ACTIONS(5044), - [anon_sym_interface] = ACTIONS(5042), - [anon_sym_delegate] = ACTIONS(5042), - [anon_sym_record] = ACTIONS(5042), - [anon_sym_public] = ACTIONS(5042), - [anon_sym_private] = ACTIONS(5042), - [anon_sym_readonly] = ACTIONS(5042), - [anon_sym_abstract] = ACTIONS(5042), - [anon_sym_async] = ACTIONS(5042), - [anon_sym_const] = ACTIONS(5042), - [anon_sym_file] = ACTIONS(5042), - [anon_sym_fixed] = ACTIONS(5042), - [anon_sym_internal] = ACTIONS(5042), - [anon_sym_new] = ACTIONS(5042), - [anon_sym_override] = ACTIONS(5042), - [anon_sym_partial] = ACTIONS(5042), - [anon_sym_protected] = ACTIONS(5042), - [anon_sym_required] = ACTIONS(5042), - [anon_sym_sealed] = ACTIONS(5042), - [anon_sym_virtual] = ACTIONS(5042), - [anon_sym_volatile] = ACTIONS(5042), - [anon_sym_where] = ACTIONS(5042), - [anon_sym_notnull] = ACTIONS(5042), - [anon_sym_unmanaged] = ACTIONS(5042), - [anon_sym_TILDE] = ACTIONS(5044), - [anon_sym_implicit] = ACTIONS(5042), - [anon_sym_explicit] = ACTIONS(5042), - [anon_sym_scoped] = ACTIONS(5042), - [anon_sym_var] = ACTIONS(5042), - [sym_predefined_type] = ACTIONS(5042), - [anon_sym_yield] = ACTIONS(5042), - [anon_sym_when] = ACTIONS(5042), - [anon_sym_from] = ACTIONS(5042), - [anon_sym_into] = ACTIONS(5042), - [anon_sym_join] = ACTIONS(5042), - [anon_sym_on] = ACTIONS(5042), - [anon_sym_equals] = ACTIONS(5042), - [anon_sym_let] = ACTIONS(5042), - [anon_sym_orderby] = ACTIONS(5042), - [anon_sym_ascending] = ACTIONS(5042), - [anon_sym_descending] = ACTIONS(5042), - [anon_sym_group] = ACTIONS(5042), - [anon_sym_by] = ACTIONS(5042), - [anon_sym_select] = ACTIONS(5042), - [sym_grit_metavariable] = ACTIONS(5044), - [aux_sym_preproc_if_token1] = ACTIONS(5044), - [aux_sym_preproc_if_token3] = ACTIONS(5044), - [aux_sym_preproc_else_token1] = ACTIONS(5044), - [aux_sym_preproc_elif_token1] = ACTIONS(5044), + [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), @@ -471233,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), @@ -471242,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), - [sym__identifier_token] = ACTIONS(5046), - [anon_sym_extern] = ACTIONS(5046), - [anon_sym_alias] = ACTIONS(5046), - [anon_sym_global] = ACTIONS(5046), - [anon_sym_using] = ACTIONS(5046), - [anon_sym_unsafe] = ACTIONS(5046), - [anon_sym_static] = ACTIONS(5046), - [anon_sym_LBRACK] = ACTIONS(5048), - [anon_sym_LPAREN] = ACTIONS(5048), - [anon_sym_event] = ACTIONS(5046), - [anon_sym_namespace] = ACTIONS(5046), - [anon_sym_class] = ACTIONS(5046), - [anon_sym_ref] = ACTIONS(5046), - [anon_sym_struct] = ACTIONS(5046), - [anon_sym_enum] = ACTIONS(5046), - [anon_sym_RBRACE] = ACTIONS(5048), - [anon_sym_interface] = ACTIONS(5046), - [anon_sym_delegate] = ACTIONS(5046), - [anon_sym_record] = ACTIONS(5046), - [anon_sym_public] = ACTIONS(5046), - [anon_sym_private] = ACTIONS(5046), - [anon_sym_readonly] = ACTIONS(5046), - [anon_sym_abstract] = ACTIONS(5046), - [anon_sym_async] = ACTIONS(5046), - [anon_sym_const] = ACTIONS(5046), - [anon_sym_file] = ACTIONS(5046), - [anon_sym_fixed] = ACTIONS(5046), - [anon_sym_internal] = ACTIONS(5046), - [anon_sym_new] = ACTIONS(5046), - [anon_sym_override] = ACTIONS(5046), - [anon_sym_partial] = ACTIONS(5046), - [anon_sym_protected] = ACTIONS(5046), - [anon_sym_required] = ACTIONS(5046), - [anon_sym_sealed] = ACTIONS(5046), - [anon_sym_virtual] = ACTIONS(5046), - [anon_sym_volatile] = ACTIONS(5046), - [anon_sym_where] = ACTIONS(5046), - [anon_sym_notnull] = ACTIONS(5046), - [anon_sym_unmanaged] = ACTIONS(5046), - [anon_sym_TILDE] = ACTIONS(5048), - [anon_sym_implicit] = ACTIONS(5046), - [anon_sym_explicit] = ACTIONS(5046), - [anon_sym_scoped] = ACTIONS(5046), - [anon_sym_var] = ACTIONS(5046), - [sym_predefined_type] = ACTIONS(5046), - [anon_sym_yield] = ACTIONS(5046), - [anon_sym_when] = ACTIONS(5046), - [anon_sym_from] = ACTIONS(5046), - [anon_sym_into] = ACTIONS(5046), - [anon_sym_join] = ACTIONS(5046), - [anon_sym_on] = ACTIONS(5046), - [anon_sym_equals] = ACTIONS(5046), - [anon_sym_let] = ACTIONS(5046), - [anon_sym_orderby] = ACTIONS(5046), - [anon_sym_ascending] = ACTIONS(5046), - [anon_sym_descending] = ACTIONS(5046), - [anon_sym_group] = ACTIONS(5046), - [anon_sym_by] = ACTIONS(5046), - [anon_sym_select] = ACTIONS(5046), - [sym_grit_metavariable] = ACTIONS(5048), - [aux_sym_preproc_if_token1] = ACTIONS(5048), - [aux_sym_preproc_if_token3] = ACTIONS(5048), - [aux_sym_preproc_else_token1] = ACTIONS(5048), - [aux_sym_preproc_elif_token1] = ACTIONS(5048), + [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), @@ -471327,70 +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(5050), - [anon_sym_extern] = ACTIONS(5050), - [anon_sym_alias] = ACTIONS(5050), - [anon_sym_global] = ACTIONS(5050), - [anon_sym_using] = ACTIONS(5050), - [anon_sym_unsafe] = ACTIONS(5050), - [anon_sym_static] = ACTIONS(5050), - [anon_sym_LBRACK] = ACTIONS(5052), - [anon_sym_LPAREN] = ACTIONS(5052), - [anon_sym_event] = ACTIONS(5050), - [anon_sym_namespace] = ACTIONS(5050), - [anon_sym_class] = ACTIONS(5050), - [anon_sym_ref] = ACTIONS(5050), - [anon_sym_struct] = ACTIONS(5050), - [anon_sym_enum] = ACTIONS(5050), - [anon_sym_RBRACE] = ACTIONS(5052), - [anon_sym_interface] = ACTIONS(5050), - [anon_sym_delegate] = ACTIONS(5050), - [anon_sym_record] = ACTIONS(5050), - [anon_sym_public] = ACTIONS(5050), - [anon_sym_private] = ACTIONS(5050), - [anon_sym_readonly] = ACTIONS(5050), - [anon_sym_abstract] = ACTIONS(5050), - [anon_sym_async] = ACTIONS(5050), - [anon_sym_const] = ACTIONS(5050), - [anon_sym_file] = ACTIONS(5050), - [anon_sym_fixed] = ACTIONS(5050), - [anon_sym_internal] = ACTIONS(5050), - [anon_sym_new] = ACTIONS(5050), - [anon_sym_override] = ACTIONS(5050), - [anon_sym_partial] = ACTIONS(5050), - [anon_sym_protected] = ACTIONS(5050), - [anon_sym_required] = ACTIONS(5050), - [anon_sym_sealed] = ACTIONS(5050), - [anon_sym_virtual] = ACTIONS(5050), - [anon_sym_volatile] = ACTIONS(5050), - [anon_sym_where] = ACTIONS(5050), - [anon_sym_notnull] = ACTIONS(5050), - [anon_sym_unmanaged] = ACTIONS(5050), - [anon_sym_TILDE] = ACTIONS(5052), - [anon_sym_implicit] = ACTIONS(5050), - [anon_sym_explicit] = ACTIONS(5050), - [anon_sym_scoped] = ACTIONS(5050), - [anon_sym_var] = ACTIONS(5050), - [sym_predefined_type] = ACTIONS(5050), - [anon_sym_yield] = ACTIONS(5050), - [anon_sym_when] = ACTIONS(5050), - [anon_sym_from] = ACTIONS(5050), - [anon_sym_into] = ACTIONS(5050), - [anon_sym_join] = ACTIONS(5050), - [anon_sym_on] = ACTIONS(5050), - [anon_sym_equals] = ACTIONS(5050), - [anon_sym_let] = ACTIONS(5050), - [anon_sym_orderby] = ACTIONS(5050), - [anon_sym_ascending] = ACTIONS(5050), - [anon_sym_descending] = ACTIONS(5050), - [anon_sym_group] = ACTIONS(5050), - [anon_sym_by] = ACTIONS(5050), - [anon_sym_select] = ACTIONS(5050), - [sym_grit_metavariable] = ACTIONS(5052), - [aux_sym_preproc_if_token1] = ACTIONS(5052), - [aux_sym_preproc_if_token3] = ACTIONS(5052), - [aux_sym_preproc_else_token1] = ACTIONS(5052), - [aux_sym_preproc_elif_token1] = ACTIONS(5052), + [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), @@ -471401,29 +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_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2857), [sym_preproc_endregion] = STATE(2857), [sym_preproc_line] = STATE(2857), @@ -471433,82 +471302,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2857), [sym_preproc_define] = STATE(2857), [sym_preproc_undef] = STATE(2857), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [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(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4790), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [2858] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2858), [sym_preproc_endregion] = STATE(2858), [sym_preproc_line] = STATE(2858), @@ -471518,82 +471387,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2858), [sym_preproc_define] = STATE(2858), [sym_preproc_undef] = STATE(2858), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [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_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2859), [sym_preproc_endregion] = STATE(2859), [sym_preproc_line] = STATE(2859), @@ -471603,49 +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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_where] = ACTIONS(4760), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4762), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [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(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -471658,6 +471548,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2860] = { + [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), @@ -471667,70 +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(3620), - [anon_sym_extern] = ACTIONS(3620), - [anon_sym_alias] = ACTIONS(3620), - [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3622), - [anon_sym_implicit] = ACTIONS(3620), - [anon_sym_explicit] = ACTIONS(3620), - [anon_sym_scoped] = ACTIONS(3620), - [anon_sym_var] = ACTIONS(3620), - [sym_predefined_type] = ACTIONS(3620), - [anon_sym_yield] = ACTIONS(3620), - [anon_sym_when] = ACTIONS(3620), - [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), - [sym_grit_metavariable] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token3] = ACTIONS(3622), - [aux_sym_preproc_else_token1] = ACTIONS(3622), - [aux_sym_preproc_elif_token1] = ACTIONS(3622), + [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), @@ -471743,6 +471633,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2861] = { + [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), @@ -471752,70 +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(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(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), @@ -471837,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(5054), - [anon_sym_extern] = ACTIONS(5054), - [anon_sym_alias] = ACTIONS(5054), - [anon_sym_global] = ACTIONS(5054), - [anon_sym_using] = ACTIONS(5054), - [anon_sym_unsafe] = ACTIONS(5054), - [anon_sym_static] = ACTIONS(5054), - [anon_sym_LBRACK] = ACTIONS(5056), - [anon_sym_LPAREN] = ACTIONS(5056), - [anon_sym_event] = ACTIONS(5054), - [anon_sym_namespace] = ACTIONS(5054), - [anon_sym_class] = ACTIONS(5054), - [anon_sym_ref] = ACTIONS(5054), - [anon_sym_struct] = ACTIONS(5054), - [anon_sym_enum] = ACTIONS(5054), - [anon_sym_RBRACE] = ACTIONS(5056), - [anon_sym_interface] = ACTIONS(5054), - [anon_sym_delegate] = ACTIONS(5054), - [anon_sym_record] = ACTIONS(5054), - [anon_sym_public] = ACTIONS(5054), - [anon_sym_private] = ACTIONS(5054), - [anon_sym_readonly] = ACTIONS(5054), - [anon_sym_abstract] = ACTIONS(5054), - [anon_sym_async] = ACTIONS(5054), - [anon_sym_const] = ACTIONS(5054), - [anon_sym_file] = ACTIONS(5054), - [anon_sym_fixed] = ACTIONS(5054), - [anon_sym_internal] = ACTIONS(5054), - [anon_sym_new] = ACTIONS(5054), - [anon_sym_override] = ACTIONS(5054), - [anon_sym_partial] = ACTIONS(5054), - [anon_sym_protected] = ACTIONS(5054), - [anon_sym_required] = ACTIONS(5054), - [anon_sym_sealed] = ACTIONS(5054), - [anon_sym_virtual] = ACTIONS(5054), - [anon_sym_volatile] = ACTIONS(5054), - [anon_sym_where] = ACTIONS(5054), - [anon_sym_notnull] = ACTIONS(5054), - [anon_sym_unmanaged] = ACTIONS(5054), - [anon_sym_TILDE] = ACTIONS(5056), - [anon_sym_implicit] = ACTIONS(5054), - [anon_sym_explicit] = ACTIONS(5054), - [anon_sym_scoped] = ACTIONS(5054), - [anon_sym_var] = ACTIONS(5054), - [sym_predefined_type] = ACTIONS(5054), - [anon_sym_yield] = ACTIONS(5054), - [anon_sym_when] = ACTIONS(5054), - [anon_sym_from] = ACTIONS(5054), - [anon_sym_into] = ACTIONS(5054), - [anon_sym_join] = ACTIONS(5054), - [anon_sym_on] = ACTIONS(5054), - [anon_sym_equals] = ACTIONS(5054), - [anon_sym_let] = ACTIONS(5054), - [anon_sym_orderby] = ACTIONS(5054), - [anon_sym_ascending] = ACTIONS(5054), - [anon_sym_descending] = ACTIONS(5054), - [anon_sym_group] = ACTIONS(5054), - [anon_sym_by] = ACTIONS(5054), - [anon_sym_select] = ACTIONS(5054), - [sym_grit_metavariable] = ACTIONS(5056), - [aux_sym_preproc_if_token1] = ACTIONS(5056), - [aux_sym_preproc_if_token3] = ACTIONS(5056), - [aux_sym_preproc_else_token1] = ACTIONS(5056), - [aux_sym_preproc_elif_token1] = ACTIONS(5056), + [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), @@ -471913,27 +471803,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2863] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2863), [sym_preproc_endregion] = STATE(2863), [sym_preproc_line] = STATE(2863), @@ -471943,49 +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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -471998,27 +471888,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2864] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), + [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), @@ -472028,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -472092,70 +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), - [sym__identifier_token] = ACTIONS(5058), - [anon_sym_extern] = ACTIONS(5058), - [anon_sym_alias] = ACTIONS(5058), - [anon_sym_global] = ACTIONS(5058), - [anon_sym_using] = ACTIONS(5058), - [anon_sym_unsafe] = ACTIONS(5058), - [anon_sym_static] = ACTIONS(5058), - [anon_sym_LBRACK] = ACTIONS(5060), - [anon_sym_LPAREN] = ACTIONS(5060), - [anon_sym_event] = ACTIONS(5058), - [anon_sym_namespace] = ACTIONS(5058), - [anon_sym_class] = ACTIONS(5058), - [anon_sym_ref] = ACTIONS(5058), - [anon_sym_struct] = ACTIONS(5058), - [anon_sym_enum] = ACTIONS(5058), - [anon_sym_RBRACE] = ACTIONS(5060), - [anon_sym_interface] = ACTIONS(5058), - [anon_sym_delegate] = ACTIONS(5058), - [anon_sym_record] = ACTIONS(5058), - [anon_sym_public] = ACTIONS(5058), - [anon_sym_private] = ACTIONS(5058), - [anon_sym_readonly] = ACTIONS(5058), - [anon_sym_abstract] = ACTIONS(5058), - [anon_sym_async] = ACTIONS(5058), - [anon_sym_const] = ACTIONS(5058), - [anon_sym_file] = ACTIONS(5058), - [anon_sym_fixed] = ACTIONS(5058), - [anon_sym_internal] = ACTIONS(5058), - [anon_sym_new] = ACTIONS(5058), - [anon_sym_override] = ACTIONS(5058), - [anon_sym_partial] = ACTIONS(5058), - [anon_sym_protected] = ACTIONS(5058), - [anon_sym_required] = ACTIONS(5058), - [anon_sym_sealed] = ACTIONS(5058), - [anon_sym_virtual] = ACTIONS(5058), - [anon_sym_volatile] = ACTIONS(5058), - [anon_sym_where] = ACTIONS(5058), - [anon_sym_notnull] = ACTIONS(5058), - [anon_sym_unmanaged] = ACTIONS(5058), - [anon_sym_TILDE] = ACTIONS(5060), - [anon_sym_implicit] = ACTIONS(5058), - [anon_sym_explicit] = ACTIONS(5058), - [anon_sym_scoped] = ACTIONS(5058), - [anon_sym_var] = ACTIONS(5058), - [sym_predefined_type] = ACTIONS(5058), - [anon_sym_yield] = ACTIONS(5058), - [anon_sym_when] = ACTIONS(5058), - [anon_sym_from] = ACTIONS(5058), - [anon_sym_into] = ACTIONS(5058), - [anon_sym_join] = ACTIONS(5058), - [anon_sym_on] = ACTIONS(5058), - [anon_sym_equals] = ACTIONS(5058), - [anon_sym_let] = ACTIONS(5058), - [anon_sym_orderby] = ACTIONS(5058), - [anon_sym_ascending] = ACTIONS(5058), - [anon_sym_descending] = ACTIONS(5058), - [anon_sym_group] = ACTIONS(5058), - [anon_sym_by] = ACTIONS(5058), - [anon_sym_select] = ACTIONS(5058), - [sym_grit_metavariable] = ACTIONS(5060), - [aux_sym_preproc_if_token1] = ACTIONS(5060), - [aux_sym_preproc_if_token3] = ACTIONS(5060), - [aux_sym_preproc_else_token1] = ACTIONS(5060), - [aux_sym_preproc_elif_token1] = ACTIONS(5060), + [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), @@ -472168,6 +472058,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2866] = { + [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), @@ -472177,69 +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), - [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(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), @@ -472250,30 +472141,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(3189), }, [2867] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), [sym_preproc_region] = STATE(2867), [sym_preproc_endregion] = STATE(2867), [sym_preproc_line] = STATE(2867), @@ -472283,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(4684), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [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(4792), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -472347,70 +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(5062), - [anon_sym_extern] = ACTIONS(5062), - [anon_sym_alias] = ACTIONS(5062), - [anon_sym_global] = ACTIONS(5062), - [anon_sym_using] = ACTIONS(5062), - [anon_sym_unsafe] = ACTIONS(5062), - [anon_sym_static] = ACTIONS(5062), - [anon_sym_LBRACK] = ACTIONS(5064), - [anon_sym_LPAREN] = ACTIONS(5064), - [anon_sym_event] = ACTIONS(5062), - [anon_sym_namespace] = ACTIONS(5062), - [anon_sym_class] = ACTIONS(5062), - [anon_sym_ref] = ACTIONS(5062), - [anon_sym_struct] = ACTIONS(5062), - [anon_sym_enum] = ACTIONS(5062), - [anon_sym_RBRACE] = ACTIONS(5064), - [anon_sym_interface] = ACTIONS(5062), - [anon_sym_delegate] = ACTIONS(5062), - [anon_sym_record] = ACTIONS(5062), - [anon_sym_public] = ACTIONS(5062), - [anon_sym_private] = ACTIONS(5062), - [anon_sym_readonly] = ACTIONS(5062), - [anon_sym_abstract] = ACTIONS(5062), - [anon_sym_async] = ACTIONS(5062), - [anon_sym_const] = ACTIONS(5062), - [anon_sym_file] = ACTIONS(5062), - [anon_sym_fixed] = ACTIONS(5062), - [anon_sym_internal] = ACTIONS(5062), - [anon_sym_new] = ACTIONS(5062), - [anon_sym_override] = ACTIONS(5062), - [anon_sym_partial] = ACTIONS(5062), - [anon_sym_protected] = ACTIONS(5062), - [anon_sym_required] = ACTIONS(5062), - [anon_sym_sealed] = ACTIONS(5062), - [anon_sym_virtual] = ACTIONS(5062), - [anon_sym_volatile] = ACTIONS(5062), - [anon_sym_where] = ACTIONS(5062), - [anon_sym_notnull] = ACTIONS(5062), - [anon_sym_unmanaged] = ACTIONS(5062), - [anon_sym_TILDE] = ACTIONS(5064), - [anon_sym_implicit] = ACTIONS(5062), - [anon_sym_explicit] = ACTIONS(5062), - [anon_sym_scoped] = ACTIONS(5062), - [anon_sym_var] = ACTIONS(5062), - [sym_predefined_type] = ACTIONS(5062), - [anon_sym_yield] = ACTIONS(5062), - [anon_sym_when] = ACTIONS(5062), - [anon_sym_from] = ACTIONS(5062), - [anon_sym_into] = ACTIONS(5062), - [anon_sym_join] = ACTIONS(5062), - [anon_sym_on] = ACTIONS(5062), - [anon_sym_equals] = ACTIONS(5062), - [anon_sym_let] = ACTIONS(5062), - [anon_sym_orderby] = ACTIONS(5062), - [anon_sym_ascending] = ACTIONS(5062), - [anon_sym_descending] = ACTIONS(5062), - [anon_sym_group] = ACTIONS(5062), - [anon_sym_by] = ACTIONS(5062), - [anon_sym_select] = ACTIONS(5062), - [sym_grit_metavariable] = ACTIONS(5064), - [aux_sym_preproc_if_token1] = ACTIONS(5064), - [aux_sym_preproc_if_token3] = ACTIONS(5064), - [aux_sym_preproc_else_token1] = ACTIONS(5064), - [aux_sym_preproc_elif_token1] = ACTIONS(5064), + [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), @@ -472432,80 +472322,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2869), [sym_preproc_define] = STATE(2869), [sym_preproc_undef] = STATE(2869), - [sym__identifier_token] = ACTIONS(3702), - [anon_sym_alias] = ACTIONS(3702), - [anon_sym_global] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_notnull] = ACTIONS(3702), - [anon_sym_unmanaged] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_scoped] = ACTIONS(3702), - [anon_sym_var] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3702), - [sym_discard] = ACTIONS(3702), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3702), - [anon_sym_join] = ACTIONS(3702), - [anon_sym_on] = ACTIONS(3702), - [anon_sym_equals] = ACTIONS(3702), - [anon_sym_let] = ACTIONS(3702), - [anon_sym_orderby] = ACTIONS(3702), - [anon_sym_ascending] = ACTIONS(3702), - [anon_sym_descending] = ACTIONS(3702), - [anon_sym_group] = ACTIONS(3702), - [anon_sym_by] = ACTIONS(3702), - [anon_sym_select] = ACTIONS(3702), - [anon_sym_as] = ACTIONS(3702), - [anon_sym_is] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3702), - [sym_grit_metavariable] = ACTIONS(3700), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3700), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2870] = { [sym_preproc_region] = STATE(2870), @@ -472517,86 +472407,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2870), [sym_preproc_define] = STATE(2870), [sym_preproc_undef] = STATE(2870), - [sym__identifier_token] = ACTIONS(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_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_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [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__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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2871] = { - [sym__variable_designation] = STATE(4980), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2871), [sym_preproc_endregion] = STATE(2871), [sym_preproc_line] = STATE(2871), @@ -472606,66 +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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4302), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4302), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_PLUS_PLUS] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4302), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4302), - [anon_sym_LT_LT] = ACTIONS(4300), - [anon_sym_GT_GT] = ACTIONS(4302), - [anon_sym_GT_GT_GT] = ACTIONS(4300), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_GT_EQ] = ACTIONS(4300), - [anon_sym_LT_EQ] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4302), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4302), - [anon_sym_or] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4300), - [sym_op_coalescing] = ACTIONS(4300), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4302), - [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(4302), - [anon_sym_is] = ACTIONS(4302), - [anon_sym_DASH_GT] = ACTIONS(4300), - [anon_sym_with] = ACTIONS(4302), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -472687,70 +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), - [sym__identifier_token] = ACTIONS(5066), - [anon_sym_extern] = ACTIONS(5066), - [anon_sym_alias] = ACTIONS(5066), - [anon_sym_global] = ACTIONS(5066), - [anon_sym_using] = ACTIONS(5066), - [anon_sym_unsafe] = ACTIONS(5066), - [anon_sym_static] = ACTIONS(5066), - [anon_sym_LBRACK] = ACTIONS(5068), - [anon_sym_LPAREN] = ACTIONS(5068), - [anon_sym_event] = ACTIONS(5066), - [anon_sym_namespace] = ACTIONS(5066), - [anon_sym_class] = ACTIONS(5066), - [anon_sym_ref] = ACTIONS(5066), - [anon_sym_struct] = ACTIONS(5066), - [anon_sym_enum] = ACTIONS(5066), - [anon_sym_RBRACE] = ACTIONS(5068), - [anon_sym_interface] = ACTIONS(5066), - [anon_sym_delegate] = ACTIONS(5066), - [anon_sym_record] = ACTIONS(5066), - [anon_sym_public] = ACTIONS(5066), - [anon_sym_private] = ACTIONS(5066), - [anon_sym_readonly] = ACTIONS(5066), - [anon_sym_abstract] = ACTIONS(5066), - [anon_sym_async] = ACTIONS(5066), - [anon_sym_const] = ACTIONS(5066), - [anon_sym_file] = ACTIONS(5066), - [anon_sym_fixed] = ACTIONS(5066), - [anon_sym_internal] = ACTIONS(5066), - [anon_sym_new] = ACTIONS(5066), - [anon_sym_override] = ACTIONS(5066), - [anon_sym_partial] = ACTIONS(5066), - [anon_sym_protected] = ACTIONS(5066), - [anon_sym_required] = ACTIONS(5066), - [anon_sym_sealed] = ACTIONS(5066), - [anon_sym_virtual] = ACTIONS(5066), - [anon_sym_volatile] = ACTIONS(5066), - [anon_sym_where] = ACTIONS(5066), - [anon_sym_notnull] = ACTIONS(5066), - [anon_sym_unmanaged] = ACTIONS(5066), - [anon_sym_TILDE] = ACTIONS(5068), - [anon_sym_implicit] = ACTIONS(5066), - [anon_sym_explicit] = ACTIONS(5066), - [anon_sym_scoped] = ACTIONS(5066), - [anon_sym_var] = ACTIONS(5066), - [sym_predefined_type] = ACTIONS(5066), - [anon_sym_yield] = ACTIONS(5066), - [anon_sym_when] = ACTIONS(5066), - [anon_sym_from] = ACTIONS(5066), - [anon_sym_into] = ACTIONS(5066), - [anon_sym_join] = ACTIONS(5066), - [anon_sym_on] = ACTIONS(5066), - [anon_sym_equals] = ACTIONS(5066), - [anon_sym_let] = ACTIONS(5066), - [anon_sym_orderby] = ACTIONS(5066), - [anon_sym_ascending] = ACTIONS(5066), - [anon_sym_descending] = ACTIONS(5066), - [anon_sym_group] = ACTIONS(5066), - [anon_sym_by] = ACTIONS(5066), - [anon_sym_select] = ACTIONS(5066), - [sym_grit_metavariable] = ACTIONS(5068), - [aux_sym_preproc_if_token1] = ACTIONS(5068), - [aux_sym_preproc_if_token3] = ACTIONS(5068), - [aux_sym_preproc_else_token1] = ACTIONS(5068), - [aux_sym_preproc_elif_token1] = ACTIONS(5068), + [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), @@ -472763,27 +472653,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2873] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2873), [sym_preproc_endregion] = STATE(2873), [sym_preproc_line] = STATE(2873), @@ -472793,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -472848,10 +472738,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2874] = { - [sym__variable_designation] = STATE(4984), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2874), [sym_preproc_endregion] = STATE(2874), [sym_preproc_line] = STATE(2874), @@ -472861,66 +472747,70 @@ 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(4296), - [anon_sym_LPAREN] = ACTIONS(4296), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4298), - [anon_sym_GT] = ACTIONS(4298), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4298), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_SLASH] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4298), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4298), - [anon_sym_GT_GT_GT] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4296), - [anon_sym_BANG_EQ] = ACTIONS(4296), - [anon_sym_GT_EQ] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4296), - [anon_sym_DOT] = ACTIONS(4298), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4298), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4298), - [anon_sym_or] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4296), - [sym_op_coalescing] = ACTIONS(4296), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4298), - [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(4298), - [anon_sym_is] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4296), - [anon_sym_with] = ACTIONS(4298), - [sym_grit_metavariable] = ACTIONS(4220), + [sym__identifier_token] = ACTIONS(3604), + [anon_sym_extern] = ACTIONS(3604), + [anon_sym_alias] = ACTIONS(3604), + [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_event] = 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_RBRACE] = 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_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), + [anon_sym_yield] = ACTIONS(3604), + [anon_sym_when] = 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), + [sym_grit_metavariable] = ACTIONS(3606), + [aux_sym_preproc_if_token1] = ACTIONS(3606), + [aux_sym_preproc_if_token3] = ACTIONS(3606), + [aux_sym_preproc_else_token1] = ACTIONS(3606), + [aux_sym_preproc_elif_token1] = ACTIONS(3606), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -472933,10 +472823,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2875] = { - [sym__variable_designation] = STATE(4951), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2875), [sym_preproc_endregion] = STATE(2875), [sym_preproc_line] = STATE(2875), @@ -472946,66 +472832,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2875), [sym_preproc_define] = STATE(2875), [sym_preproc_undef] = STATE(2875), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4248), - [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(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -473018,27 +472908,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2876] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2876), [sym_preproc_endregion] = STATE(2876), [sym_preproc_line] = STATE(2876), @@ -473048,49 +472917,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2876), [sym_preproc_define] = STATE(2876), [sym_preproc_undef] = STATE(2876), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -473112,70 +473002,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2877), [sym_preproc_define] = STATE(2877), [sym_preproc_undef] = STATE(2877), - [sym__identifier_token] = ACTIONS(5070), - [anon_sym_extern] = ACTIONS(5070), - [anon_sym_alias] = ACTIONS(5070), - [anon_sym_global] = ACTIONS(5070), - [anon_sym_using] = ACTIONS(5070), - [anon_sym_unsafe] = ACTIONS(5070), - [anon_sym_static] = ACTIONS(5070), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_LPAREN] = ACTIONS(5072), - [anon_sym_event] = ACTIONS(5070), - [anon_sym_namespace] = ACTIONS(5070), - [anon_sym_class] = ACTIONS(5070), - [anon_sym_ref] = ACTIONS(5070), - [anon_sym_struct] = ACTIONS(5070), - [anon_sym_enum] = ACTIONS(5070), - [anon_sym_RBRACE] = ACTIONS(5072), - [anon_sym_interface] = ACTIONS(5070), - [anon_sym_delegate] = ACTIONS(5070), - [anon_sym_record] = ACTIONS(5070), - [anon_sym_public] = ACTIONS(5070), - [anon_sym_private] = ACTIONS(5070), - [anon_sym_readonly] = ACTIONS(5070), - [anon_sym_abstract] = ACTIONS(5070), - [anon_sym_async] = ACTIONS(5070), - [anon_sym_const] = ACTIONS(5070), - [anon_sym_file] = ACTIONS(5070), - [anon_sym_fixed] = ACTIONS(5070), - [anon_sym_internal] = ACTIONS(5070), - [anon_sym_new] = ACTIONS(5070), - [anon_sym_override] = ACTIONS(5070), - [anon_sym_partial] = ACTIONS(5070), - [anon_sym_protected] = ACTIONS(5070), - [anon_sym_required] = ACTIONS(5070), - [anon_sym_sealed] = ACTIONS(5070), - [anon_sym_virtual] = ACTIONS(5070), - [anon_sym_volatile] = ACTIONS(5070), - [anon_sym_where] = ACTIONS(5070), - [anon_sym_notnull] = ACTIONS(5070), - [anon_sym_unmanaged] = ACTIONS(5070), - [anon_sym_TILDE] = ACTIONS(5072), - [anon_sym_implicit] = ACTIONS(5070), - [anon_sym_explicit] = ACTIONS(5070), - [anon_sym_scoped] = ACTIONS(5070), - [anon_sym_var] = ACTIONS(5070), - [sym_predefined_type] = ACTIONS(5070), - [anon_sym_yield] = ACTIONS(5070), - [anon_sym_when] = ACTIONS(5070), - [anon_sym_from] = ACTIONS(5070), - [anon_sym_into] = ACTIONS(5070), - [anon_sym_join] = ACTIONS(5070), - [anon_sym_on] = ACTIONS(5070), - [anon_sym_equals] = ACTIONS(5070), - [anon_sym_let] = ACTIONS(5070), - [anon_sym_orderby] = ACTIONS(5070), - [anon_sym_ascending] = ACTIONS(5070), - [anon_sym_descending] = ACTIONS(5070), - [anon_sym_group] = ACTIONS(5070), - [anon_sym_by] = ACTIONS(5070), - [anon_sym_select] = ACTIONS(5070), - [sym_grit_metavariable] = ACTIONS(5072), - [aux_sym_preproc_if_token1] = ACTIONS(5072), - [aux_sym_preproc_if_token3] = ACTIONS(5072), - [aux_sym_preproc_else_token1] = ACTIONS(5072), - [aux_sym_preproc_elif_token1] = ACTIONS(5072), + [sym__identifier_token] = ACTIONS(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), @@ -473197,70 +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), - [sym__identifier_token] = ACTIONS(5074), - [anon_sym_extern] = ACTIONS(5074), - [anon_sym_alias] = ACTIONS(5074), - [anon_sym_global] = ACTIONS(5074), - [anon_sym_using] = ACTIONS(5074), - [anon_sym_unsafe] = ACTIONS(5074), - [anon_sym_static] = ACTIONS(5074), - [anon_sym_LBRACK] = ACTIONS(5076), - [anon_sym_LPAREN] = ACTIONS(5076), - [anon_sym_event] = ACTIONS(5074), - [anon_sym_namespace] = ACTIONS(5074), - [anon_sym_class] = ACTIONS(5074), - [anon_sym_ref] = ACTIONS(5074), - [anon_sym_struct] = ACTIONS(5074), - [anon_sym_enum] = ACTIONS(5074), - [anon_sym_RBRACE] = ACTIONS(5076), - [anon_sym_interface] = ACTIONS(5074), - [anon_sym_delegate] = ACTIONS(5074), - [anon_sym_record] = ACTIONS(5074), - [anon_sym_public] = ACTIONS(5074), - [anon_sym_private] = ACTIONS(5074), - [anon_sym_readonly] = ACTIONS(5074), - [anon_sym_abstract] = ACTIONS(5074), - [anon_sym_async] = ACTIONS(5074), - [anon_sym_const] = ACTIONS(5074), - [anon_sym_file] = ACTIONS(5074), - [anon_sym_fixed] = ACTIONS(5074), - [anon_sym_internal] = ACTIONS(5074), - [anon_sym_new] = ACTIONS(5074), - [anon_sym_override] = ACTIONS(5074), - [anon_sym_partial] = ACTIONS(5074), - [anon_sym_protected] = ACTIONS(5074), - [anon_sym_required] = ACTIONS(5074), - [anon_sym_sealed] = ACTIONS(5074), - [anon_sym_virtual] = ACTIONS(5074), - [anon_sym_volatile] = ACTIONS(5074), - [anon_sym_where] = ACTIONS(5074), - [anon_sym_notnull] = ACTIONS(5074), - [anon_sym_unmanaged] = ACTIONS(5074), - [anon_sym_TILDE] = ACTIONS(5076), - [anon_sym_implicit] = ACTIONS(5074), - [anon_sym_explicit] = ACTIONS(5074), - [anon_sym_scoped] = ACTIONS(5074), - [anon_sym_var] = ACTIONS(5074), - [sym_predefined_type] = ACTIONS(5074), - [anon_sym_yield] = ACTIONS(5074), - [anon_sym_when] = ACTIONS(5074), - [anon_sym_from] = ACTIONS(5074), - [anon_sym_into] = ACTIONS(5074), - [anon_sym_join] = ACTIONS(5074), - [anon_sym_on] = ACTIONS(5074), - [anon_sym_equals] = ACTIONS(5074), - [anon_sym_let] = ACTIONS(5074), - [anon_sym_orderby] = ACTIONS(5074), - [anon_sym_ascending] = ACTIONS(5074), - [anon_sym_descending] = ACTIONS(5074), - [anon_sym_group] = ACTIONS(5074), - [anon_sym_by] = ACTIONS(5074), - [anon_sym_select] = ACTIONS(5074), - [sym_grit_metavariable] = ACTIONS(5076), - [aux_sym_preproc_if_token1] = ACTIONS(5076), - [aux_sym_preproc_if_token3] = ACTIONS(5076), - [aux_sym_preproc_else_token1] = ACTIONS(5076), - [aux_sym_preproc_elif_token1] = ACTIONS(5076), + [anon_sym_SEMI] = ACTIONS(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), @@ -473282,70 +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(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_TILDE] = ACTIONS(5080), - [anon_sym_implicit] = ACTIONS(5078), - [anon_sym_explicit] = ACTIONS(5078), - [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), + [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), @@ -473358,27 +473248,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2880] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), [sym_preproc_region] = STATE(2880), [sym_preproc_endregion] = STATE(2880), [sym_preproc_line] = STATE(2880), @@ -473388,49 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4764), - [anon_sym_QMARK] = ACTIONS(5082), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4979), - [anon_sym_from] = ACTIONS(4764), - [anon_sym_join] = ACTIONS(4764), - [anon_sym_let] = ACTIONS(4764), - [anon_sym_orderby] = ACTIONS(4764), - [anon_sym_ascending] = ACTIONS(4764), - [anon_sym_descending] = ACTIONS(4764), - [anon_sym_group] = ACTIONS(4764), - [anon_sym_select] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -473443,27 +473333,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2881] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2881), [sym_preproc_endregion] = STATE(2881), [sym_preproc_line] = STATE(2881), @@ -473473,49 +473342,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2881), [sym_preproc_define] = STATE(2881), [sym_preproc_undef] = STATE(2881), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4956), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -473537,70 +473427,70 @@ 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(5084), - [anon_sym_extern] = ACTIONS(5084), - [anon_sym_alias] = ACTIONS(5084), - [anon_sym_global] = ACTIONS(5084), - [anon_sym_using] = ACTIONS(5084), - [anon_sym_unsafe] = ACTIONS(5084), - [anon_sym_static] = ACTIONS(5084), - [anon_sym_LBRACK] = ACTIONS(5086), - [anon_sym_LPAREN] = ACTIONS(5086), - [anon_sym_event] = ACTIONS(5084), - [anon_sym_namespace] = ACTIONS(5084), - [anon_sym_class] = ACTIONS(5084), - [anon_sym_ref] = ACTIONS(5084), - [anon_sym_struct] = ACTIONS(5084), - [anon_sym_enum] = ACTIONS(5084), - [anon_sym_RBRACE] = ACTIONS(5086), - [anon_sym_interface] = ACTIONS(5084), - [anon_sym_delegate] = ACTIONS(5084), - [anon_sym_record] = ACTIONS(5084), - [anon_sym_public] = ACTIONS(5084), - [anon_sym_private] = ACTIONS(5084), - [anon_sym_readonly] = ACTIONS(5084), - [anon_sym_abstract] = ACTIONS(5084), - [anon_sym_async] = ACTIONS(5084), - [anon_sym_const] = ACTIONS(5084), - [anon_sym_file] = ACTIONS(5084), - [anon_sym_fixed] = ACTIONS(5084), - [anon_sym_internal] = ACTIONS(5084), - [anon_sym_new] = ACTIONS(5084), - [anon_sym_override] = ACTIONS(5084), - [anon_sym_partial] = ACTIONS(5084), - [anon_sym_protected] = ACTIONS(5084), - [anon_sym_required] = ACTIONS(5084), - [anon_sym_sealed] = ACTIONS(5084), - [anon_sym_virtual] = ACTIONS(5084), - [anon_sym_volatile] = ACTIONS(5084), - [anon_sym_where] = ACTIONS(5084), - [anon_sym_notnull] = ACTIONS(5084), - [anon_sym_unmanaged] = ACTIONS(5084), - [anon_sym_TILDE] = ACTIONS(5086), - [anon_sym_implicit] = ACTIONS(5084), - [anon_sym_explicit] = ACTIONS(5084), - [anon_sym_scoped] = ACTIONS(5084), - [anon_sym_var] = ACTIONS(5084), - [sym_predefined_type] = ACTIONS(5084), - [anon_sym_yield] = ACTIONS(5084), - [anon_sym_when] = ACTIONS(5084), - [anon_sym_from] = ACTIONS(5084), - [anon_sym_into] = ACTIONS(5084), - [anon_sym_join] = ACTIONS(5084), - [anon_sym_on] = ACTIONS(5084), - [anon_sym_equals] = ACTIONS(5084), - [anon_sym_let] = ACTIONS(5084), - [anon_sym_orderby] = ACTIONS(5084), - [anon_sym_ascending] = ACTIONS(5084), - [anon_sym_descending] = ACTIONS(5084), - [anon_sym_group] = ACTIONS(5084), - [anon_sym_by] = ACTIONS(5084), - [anon_sym_select] = ACTIONS(5084), - [sym_grit_metavariable] = ACTIONS(5086), - [aux_sym_preproc_if_token1] = ACTIONS(5086), - [aux_sym_preproc_if_token3] = ACTIONS(5086), - [aux_sym_preproc_else_token1] = ACTIONS(5086), - [aux_sym_preproc_elif_token1] = ACTIONS(5086), + [sym__identifier_token] = ACTIONS(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), @@ -473622,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(5088), - [anon_sym_extern] = ACTIONS(5088), - [anon_sym_alias] = ACTIONS(5088), - [anon_sym_global] = ACTIONS(5088), - [anon_sym_using] = ACTIONS(5088), - [anon_sym_unsafe] = ACTIONS(5088), - [anon_sym_static] = ACTIONS(5088), - [anon_sym_LBRACK] = ACTIONS(5090), - [anon_sym_LPAREN] = ACTIONS(5090), - [anon_sym_event] = ACTIONS(5088), - [anon_sym_namespace] = ACTIONS(5088), - [anon_sym_class] = ACTIONS(5088), - [anon_sym_ref] = ACTIONS(5088), - [anon_sym_struct] = ACTIONS(5088), - [anon_sym_enum] = ACTIONS(5088), - [anon_sym_RBRACE] = ACTIONS(5090), - [anon_sym_interface] = ACTIONS(5088), - [anon_sym_delegate] = ACTIONS(5088), - [anon_sym_record] = ACTIONS(5088), - [anon_sym_public] = ACTIONS(5088), - [anon_sym_private] = ACTIONS(5088), - [anon_sym_readonly] = ACTIONS(5088), - [anon_sym_abstract] = ACTIONS(5088), - [anon_sym_async] = ACTIONS(5088), - [anon_sym_const] = ACTIONS(5088), - [anon_sym_file] = ACTIONS(5088), - [anon_sym_fixed] = ACTIONS(5088), - [anon_sym_internal] = ACTIONS(5088), - [anon_sym_new] = ACTIONS(5088), - [anon_sym_override] = ACTIONS(5088), - [anon_sym_partial] = ACTIONS(5088), - [anon_sym_protected] = ACTIONS(5088), - [anon_sym_required] = ACTIONS(5088), - [anon_sym_sealed] = ACTIONS(5088), - [anon_sym_virtual] = ACTIONS(5088), - [anon_sym_volatile] = ACTIONS(5088), - [anon_sym_where] = ACTIONS(5088), - [anon_sym_notnull] = ACTIONS(5088), - [anon_sym_unmanaged] = ACTIONS(5088), - [anon_sym_TILDE] = ACTIONS(5090), - [anon_sym_implicit] = ACTIONS(5088), - [anon_sym_explicit] = ACTIONS(5088), - [anon_sym_scoped] = ACTIONS(5088), - [anon_sym_var] = ACTIONS(5088), - [sym_predefined_type] = ACTIONS(5088), - [anon_sym_yield] = ACTIONS(5088), - [anon_sym_when] = ACTIONS(5088), - [anon_sym_from] = ACTIONS(5088), - [anon_sym_into] = ACTIONS(5088), - [anon_sym_join] = ACTIONS(5088), - [anon_sym_on] = ACTIONS(5088), - [anon_sym_equals] = ACTIONS(5088), - [anon_sym_let] = ACTIONS(5088), - [anon_sym_orderby] = ACTIONS(5088), - [anon_sym_ascending] = ACTIONS(5088), - [anon_sym_descending] = ACTIONS(5088), - [anon_sym_group] = ACTIONS(5088), - [anon_sym_by] = ACTIONS(5088), - [anon_sym_select] = ACTIONS(5088), - [sym_grit_metavariable] = ACTIONS(5090), - [aux_sym_preproc_if_token1] = ACTIONS(5090), - [aux_sym_preproc_if_token3] = ACTIONS(5090), - [aux_sym_preproc_else_token1] = ACTIONS(5090), - [aux_sym_preproc_elif_token1] = ACTIONS(5090), + [anon_sym_SEMI] = ACTIONS(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), @@ -473707,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), - [anon_sym_SEMI] = ACTIONS(4548), - [anon_sym_EQ] = ACTIONS(4550), - [anon_sym_LBRACK] = ACTIONS(4548), - [anon_sym_COLON] = ACTIONS(4548), - [anon_sym_COMMA] = ACTIONS(4548), - [anon_sym_RBRACK] = ACTIONS(4548), - [anon_sym_LPAREN] = ACTIONS(4548), - [anon_sym_RPAREN] = ACTIONS(4548), - [anon_sym_RBRACE] = ACTIONS(4548), - [anon_sym_LT] = ACTIONS(4550), - [anon_sym_GT] = ACTIONS(4550), - [anon_sym_in] = ACTIONS(4550), - [anon_sym_QMARK] = ACTIONS(4550), - [anon_sym_BANG] = ACTIONS(4550), - [anon_sym_PLUS_PLUS] = ACTIONS(4548), - [anon_sym_DASH_DASH] = ACTIONS(4548), - [anon_sym_PLUS] = ACTIONS(4550), - [anon_sym_DASH] = ACTIONS(4550), - [anon_sym_STAR] = ACTIONS(4550), - [anon_sym_SLASH] = ACTIONS(4550), - [anon_sym_PERCENT] = ACTIONS(4550), - [anon_sym_CARET] = ACTIONS(4550), - [anon_sym_PIPE] = ACTIONS(4550), - [anon_sym_AMP] = ACTIONS(4550), - [anon_sym_LT_LT] = ACTIONS(4550), - [anon_sym_GT_GT] = ACTIONS(4550), - [anon_sym_GT_GT_GT] = ACTIONS(4550), - [anon_sym_EQ_EQ] = ACTIONS(4548), - [anon_sym_BANG_EQ] = ACTIONS(4548), - [anon_sym_GT_EQ] = ACTIONS(4548), - [anon_sym_LT_EQ] = ACTIONS(4548), - [anon_sym_DOT] = ACTIONS(4550), - [anon_sym_EQ_GT] = ACTIONS(4548), - [anon_sym_switch] = ACTIONS(4548), - [anon_sym_when] = ACTIONS(4548), - [anon_sym_DOT_DOT] = ACTIONS(4548), - [anon_sym_and] = ACTIONS(4548), - [anon_sym_or] = ACTIONS(4548), - [anon_sym_PLUS_EQ] = ACTIONS(4548), - [anon_sym_DASH_EQ] = ACTIONS(4548), - [anon_sym_STAR_EQ] = ACTIONS(4548), - [anon_sym_SLASH_EQ] = ACTIONS(4548), - [anon_sym_PERCENT_EQ] = ACTIONS(4548), - [anon_sym_AMP_EQ] = ACTIONS(4548), - [anon_sym_CARET_EQ] = ACTIONS(4548), - [anon_sym_PIPE_EQ] = ACTIONS(4548), - [anon_sym_LT_LT_EQ] = ACTIONS(4548), - [anon_sym_GT_GT_EQ] = ACTIONS(4548), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4548), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4548), - [anon_sym_AMP_AMP] = ACTIONS(4548), - [anon_sym_PIPE_PIPE] = ACTIONS(4548), - [sym_op_coalescing] = ACTIONS(4550), - [anon_sym_into] = ACTIONS(4548), - [anon_sym_on] = ACTIONS(4548), - [anon_sym_equals] = ACTIONS(4548), - [anon_sym_by] = ACTIONS(4548), - [anon_sym_as] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4548), - [anon_sym_DASH_GT] = ACTIONS(4548), - [anon_sym_with] = ACTIONS(4548), - [aux_sym_preproc_if_token3] = ACTIONS(4548), - [aux_sym_preproc_else_token1] = ACTIONS(4548), - [aux_sym_preproc_elif_token1] = ACTIONS(4548), + [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), @@ -473792,70 +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_SEMI] = ACTIONS(4544), - [anon_sym_EQ] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(4544), - [anon_sym_COLON] = ACTIONS(4544), - [anon_sym_COMMA] = ACTIONS(4544), - [anon_sym_RBRACK] = ACTIONS(4544), - [anon_sym_LPAREN] = ACTIONS(4544), - [anon_sym_RPAREN] = ACTIONS(4544), - [anon_sym_RBRACE] = ACTIONS(4544), - [anon_sym_LT] = ACTIONS(4546), - [anon_sym_GT] = ACTIONS(4546), - [anon_sym_in] = ACTIONS(4546), - [anon_sym_QMARK] = ACTIONS(4546), - [anon_sym_BANG] = ACTIONS(4546), - [anon_sym_PLUS_PLUS] = ACTIONS(4544), - [anon_sym_DASH_DASH] = ACTIONS(4544), - [anon_sym_PLUS] = ACTIONS(4546), - [anon_sym_DASH] = ACTIONS(4546), - [anon_sym_STAR] = ACTIONS(4546), - [anon_sym_SLASH] = ACTIONS(4546), - [anon_sym_PERCENT] = ACTIONS(4546), - [anon_sym_CARET] = ACTIONS(4546), - [anon_sym_PIPE] = ACTIONS(4546), - [anon_sym_AMP] = ACTIONS(4546), - [anon_sym_LT_LT] = ACTIONS(4546), - [anon_sym_GT_GT] = ACTIONS(4546), - [anon_sym_GT_GT_GT] = ACTIONS(4546), - [anon_sym_EQ_EQ] = ACTIONS(4544), - [anon_sym_BANG_EQ] = ACTIONS(4544), - [anon_sym_GT_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4544), - [anon_sym_DOT] = ACTIONS(4546), - [anon_sym_EQ_GT] = ACTIONS(4544), - [anon_sym_switch] = ACTIONS(4544), - [anon_sym_when] = ACTIONS(4544), - [anon_sym_DOT_DOT] = ACTIONS(4544), - [anon_sym_and] = ACTIONS(4544), - [anon_sym_or] = ACTIONS(4544), - [anon_sym_PLUS_EQ] = ACTIONS(4544), - [anon_sym_DASH_EQ] = ACTIONS(4544), - [anon_sym_STAR_EQ] = ACTIONS(4544), - [anon_sym_SLASH_EQ] = ACTIONS(4544), - [anon_sym_PERCENT_EQ] = ACTIONS(4544), - [anon_sym_AMP_EQ] = ACTIONS(4544), - [anon_sym_CARET_EQ] = ACTIONS(4544), - [anon_sym_PIPE_EQ] = ACTIONS(4544), - [anon_sym_LT_LT_EQ] = ACTIONS(4544), - [anon_sym_GT_GT_EQ] = ACTIONS(4544), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4544), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4544), - [anon_sym_AMP_AMP] = ACTIONS(4544), - [anon_sym_PIPE_PIPE] = ACTIONS(4544), - [sym_op_coalescing] = ACTIONS(4546), - [anon_sym_into] = ACTIONS(4544), - [anon_sym_on] = ACTIONS(4544), - [anon_sym_equals] = ACTIONS(4544), - [anon_sym_by] = ACTIONS(4544), - [anon_sym_as] = ACTIONS(4544), - [anon_sym_is] = ACTIONS(4544), - [anon_sym_DASH_GT] = ACTIONS(4544), - [anon_sym_with] = ACTIONS(4544), - [aux_sym_preproc_if_token3] = ACTIONS(4544), - [aux_sym_preproc_else_token1] = ACTIONS(4544), - [aux_sym_preproc_elif_token1] = ACTIONS(4544), + [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), @@ -473868,27 +473758,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2886] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), [sym_preproc_region] = STATE(2886), [sym_preproc_endregion] = STATE(2886), [sym_preproc_line] = STATE(2886), @@ -473898,49 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4742), - [anon_sym_QMARK] = ACTIONS(5082), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4979), - [anon_sym_from] = ACTIONS(4742), - [anon_sym_join] = ACTIONS(4742), - [anon_sym_let] = ACTIONS(4742), - [anon_sym_orderby] = ACTIONS(4742), - [anon_sym_ascending] = ACTIONS(4742), - [anon_sym_descending] = ACTIONS(4742), - [anon_sym_group] = ACTIONS(4742), - [anon_sym_select] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -473953,10 +473843,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2887] = { - [sym__variable_designation] = STATE(4985), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2887), [sym_preproc_endregion] = STATE(2887), [sym_preproc_line] = STATE(2887), @@ -473966,66 +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), - [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(4236), - [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(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), @@ -474038,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), @@ -474047,70 +473941,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2888), [sym_preproc_define] = STATE(2888), [sym_preproc_undef] = STATE(2888), - [sym__identifier_token] = ACTIONS(5092), - [anon_sym_extern] = ACTIONS(5092), - [anon_sym_alias] = ACTIONS(5092), - [anon_sym_global] = ACTIONS(5092), - [anon_sym_using] = ACTIONS(5092), - [anon_sym_unsafe] = ACTIONS(5092), - [anon_sym_static] = ACTIONS(5092), - [anon_sym_LBRACK] = ACTIONS(5094), - [anon_sym_LPAREN] = ACTIONS(5094), - [anon_sym_event] = ACTIONS(5092), - [anon_sym_namespace] = ACTIONS(5092), - [anon_sym_class] = ACTIONS(5092), - [anon_sym_ref] = ACTIONS(5092), - [anon_sym_struct] = ACTIONS(5092), - [anon_sym_enum] = ACTIONS(5092), - [anon_sym_RBRACE] = ACTIONS(5094), - [anon_sym_interface] = ACTIONS(5092), - [anon_sym_delegate] = ACTIONS(5092), - [anon_sym_record] = ACTIONS(5092), - [anon_sym_public] = ACTIONS(5092), - [anon_sym_private] = ACTIONS(5092), - [anon_sym_readonly] = ACTIONS(5092), - [anon_sym_abstract] = ACTIONS(5092), - [anon_sym_async] = ACTIONS(5092), - [anon_sym_const] = ACTIONS(5092), - [anon_sym_file] = ACTIONS(5092), - [anon_sym_fixed] = ACTIONS(5092), - [anon_sym_internal] = ACTIONS(5092), - [anon_sym_new] = ACTIONS(5092), - [anon_sym_override] = ACTIONS(5092), - [anon_sym_partial] = ACTIONS(5092), - [anon_sym_protected] = ACTIONS(5092), - [anon_sym_required] = ACTIONS(5092), - [anon_sym_sealed] = ACTIONS(5092), - [anon_sym_virtual] = ACTIONS(5092), - [anon_sym_volatile] = ACTIONS(5092), - [anon_sym_where] = ACTIONS(5092), - [anon_sym_notnull] = ACTIONS(5092), - [anon_sym_unmanaged] = ACTIONS(5092), - [anon_sym_TILDE] = ACTIONS(5094), - [anon_sym_implicit] = ACTIONS(5092), - [anon_sym_explicit] = ACTIONS(5092), - [anon_sym_scoped] = ACTIONS(5092), - [anon_sym_var] = ACTIONS(5092), - [sym_predefined_type] = ACTIONS(5092), - [anon_sym_yield] = ACTIONS(5092), - [anon_sym_when] = ACTIONS(5092), - [anon_sym_from] = ACTIONS(5092), - [anon_sym_into] = ACTIONS(5092), - [anon_sym_join] = ACTIONS(5092), - [anon_sym_on] = ACTIONS(5092), - [anon_sym_equals] = ACTIONS(5092), - [anon_sym_let] = ACTIONS(5092), - [anon_sym_orderby] = ACTIONS(5092), - [anon_sym_ascending] = ACTIONS(5092), - [anon_sym_descending] = ACTIONS(5092), - [anon_sym_group] = ACTIONS(5092), - [anon_sym_by] = ACTIONS(5092), - [anon_sym_select] = ACTIONS(5092), - [sym_grit_metavariable] = ACTIONS(5094), - [aux_sym_preproc_if_token1] = ACTIONS(5094), - [aux_sym_preproc_if_token3] = ACTIONS(5094), - [aux_sym_preproc_else_token1] = ACTIONS(5094), - [aux_sym_preproc_elif_token1] = ACTIONS(5094), + [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), @@ -474132,70 +474022,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2889), [sym_preproc_define] = STATE(2889), [sym_preproc_undef] = STATE(2889), - [sym__identifier_token] = ACTIONS(5096), - [anon_sym_extern] = ACTIONS(5096), - [anon_sym_alias] = ACTIONS(5096), - [anon_sym_global] = ACTIONS(5096), - [anon_sym_using] = ACTIONS(5096), - [anon_sym_unsafe] = ACTIONS(5096), - [anon_sym_static] = ACTIONS(5096), - [anon_sym_LBRACK] = ACTIONS(5098), - [anon_sym_LPAREN] = ACTIONS(5098), - [anon_sym_event] = ACTIONS(5096), - [anon_sym_namespace] = ACTIONS(5096), - [anon_sym_class] = ACTIONS(5096), - [anon_sym_ref] = ACTIONS(5096), - [anon_sym_struct] = ACTIONS(5096), - [anon_sym_enum] = ACTIONS(5096), - [anon_sym_RBRACE] = ACTIONS(5098), - [anon_sym_interface] = ACTIONS(5096), - [anon_sym_delegate] = ACTIONS(5096), - [anon_sym_record] = ACTIONS(5096), - [anon_sym_public] = ACTIONS(5096), - [anon_sym_private] = ACTIONS(5096), - [anon_sym_readonly] = ACTIONS(5096), - [anon_sym_abstract] = ACTIONS(5096), - [anon_sym_async] = ACTIONS(5096), - [anon_sym_const] = ACTIONS(5096), - [anon_sym_file] = ACTIONS(5096), - [anon_sym_fixed] = ACTIONS(5096), - [anon_sym_internal] = ACTIONS(5096), - [anon_sym_new] = ACTIONS(5096), - [anon_sym_override] = ACTIONS(5096), - [anon_sym_partial] = ACTIONS(5096), - [anon_sym_protected] = ACTIONS(5096), - [anon_sym_required] = ACTIONS(5096), - [anon_sym_sealed] = ACTIONS(5096), - [anon_sym_virtual] = ACTIONS(5096), - [anon_sym_volatile] = ACTIONS(5096), - [anon_sym_where] = ACTIONS(5096), - [anon_sym_notnull] = ACTIONS(5096), - [anon_sym_unmanaged] = ACTIONS(5096), - [anon_sym_TILDE] = ACTIONS(5098), - [anon_sym_implicit] = ACTIONS(5096), - [anon_sym_explicit] = ACTIONS(5096), - [anon_sym_scoped] = ACTIONS(5096), - [anon_sym_var] = ACTIONS(5096), - [sym_predefined_type] = ACTIONS(5096), - [anon_sym_yield] = ACTIONS(5096), - [anon_sym_when] = ACTIONS(5096), - [anon_sym_from] = ACTIONS(5096), - [anon_sym_into] = ACTIONS(5096), - [anon_sym_join] = ACTIONS(5096), - [anon_sym_on] = ACTIONS(5096), - [anon_sym_equals] = ACTIONS(5096), - [anon_sym_let] = ACTIONS(5096), - [anon_sym_orderby] = ACTIONS(5096), - [anon_sym_ascending] = ACTIONS(5096), - [anon_sym_descending] = ACTIONS(5096), - [anon_sym_group] = ACTIONS(5096), - [anon_sym_by] = ACTIONS(5096), - [anon_sym_select] = ACTIONS(5096), - [sym_grit_metavariable] = ACTIONS(5098), - [aux_sym_preproc_if_token1] = ACTIONS(5098), - [aux_sym_preproc_if_token3] = ACTIONS(5098), - [aux_sym_preproc_else_token1] = ACTIONS(5098), - [aux_sym_preproc_elif_token1] = ACTIONS(5098), + [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), @@ -474217,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(5100), - [anon_sym_extern] = ACTIONS(5100), - [anon_sym_alias] = ACTIONS(5100), - [anon_sym_global] = ACTIONS(5100), - [anon_sym_using] = ACTIONS(5100), - [anon_sym_unsafe] = ACTIONS(5100), - [anon_sym_static] = ACTIONS(5100), - [anon_sym_LBRACK] = ACTIONS(5102), - [anon_sym_LPAREN] = ACTIONS(5102), - [anon_sym_event] = ACTIONS(5100), - [anon_sym_namespace] = ACTIONS(5100), - [anon_sym_class] = ACTIONS(5100), - [anon_sym_ref] = ACTIONS(5100), - [anon_sym_struct] = ACTIONS(5100), - [anon_sym_enum] = ACTIONS(5100), - [anon_sym_RBRACE] = ACTIONS(5102), - [anon_sym_interface] = ACTIONS(5100), - [anon_sym_delegate] = ACTIONS(5100), - [anon_sym_record] = ACTIONS(5100), - [anon_sym_public] = ACTIONS(5100), - [anon_sym_private] = ACTIONS(5100), - [anon_sym_readonly] = ACTIONS(5100), - [anon_sym_abstract] = ACTIONS(5100), - [anon_sym_async] = ACTIONS(5100), - [anon_sym_const] = ACTIONS(5100), - [anon_sym_file] = ACTIONS(5100), - [anon_sym_fixed] = ACTIONS(5100), - [anon_sym_internal] = ACTIONS(5100), - [anon_sym_new] = ACTIONS(5100), - [anon_sym_override] = ACTIONS(5100), - [anon_sym_partial] = ACTIONS(5100), - [anon_sym_protected] = ACTIONS(5100), - [anon_sym_required] = ACTIONS(5100), - [anon_sym_sealed] = ACTIONS(5100), - [anon_sym_virtual] = ACTIONS(5100), - [anon_sym_volatile] = ACTIONS(5100), - [anon_sym_where] = ACTIONS(5100), - [anon_sym_notnull] = ACTIONS(5100), - [anon_sym_unmanaged] = ACTIONS(5100), - [anon_sym_TILDE] = ACTIONS(5102), - [anon_sym_implicit] = ACTIONS(5100), - [anon_sym_explicit] = ACTIONS(5100), - [anon_sym_scoped] = ACTIONS(5100), - [anon_sym_var] = ACTIONS(5100), - [sym_predefined_type] = ACTIONS(5100), - [anon_sym_yield] = ACTIONS(5100), - [anon_sym_when] = ACTIONS(5100), - [anon_sym_from] = ACTIONS(5100), - [anon_sym_into] = ACTIONS(5100), - [anon_sym_join] = ACTIONS(5100), - [anon_sym_on] = ACTIONS(5100), - [anon_sym_equals] = ACTIONS(5100), - [anon_sym_let] = ACTIONS(5100), - [anon_sym_orderby] = ACTIONS(5100), - [anon_sym_ascending] = ACTIONS(5100), - [anon_sym_descending] = ACTIONS(5100), - [anon_sym_group] = ACTIONS(5100), - [anon_sym_by] = ACTIONS(5100), - [anon_sym_select] = ACTIONS(5100), - [sym_grit_metavariable] = ACTIONS(5102), - [aux_sym_preproc_if_token1] = ACTIONS(5102), - [aux_sym_preproc_if_token3] = ACTIONS(5102), - [aux_sym_preproc_else_token1] = ACTIONS(5102), - [aux_sym_preproc_elif_token1] = ACTIONS(5102), + [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), @@ -474302,70 +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(5104), - [anon_sym_extern] = ACTIONS(5104), - [anon_sym_alias] = ACTIONS(5104), - [anon_sym_global] = ACTIONS(5104), - [anon_sym_using] = ACTIONS(5104), - [anon_sym_unsafe] = ACTIONS(5104), - [anon_sym_static] = ACTIONS(5104), - [anon_sym_LBRACK] = ACTIONS(5106), - [anon_sym_LPAREN] = ACTIONS(5106), - [anon_sym_event] = ACTIONS(5104), - [anon_sym_namespace] = ACTIONS(5104), - [anon_sym_class] = ACTIONS(5104), - [anon_sym_ref] = ACTIONS(5104), - [anon_sym_struct] = ACTIONS(5104), - [anon_sym_enum] = ACTIONS(5104), - [anon_sym_RBRACE] = ACTIONS(5106), - [anon_sym_interface] = ACTIONS(5104), - [anon_sym_delegate] = ACTIONS(5104), - [anon_sym_record] = ACTIONS(5104), - [anon_sym_public] = ACTIONS(5104), - [anon_sym_private] = ACTIONS(5104), - [anon_sym_readonly] = ACTIONS(5104), - [anon_sym_abstract] = ACTIONS(5104), - [anon_sym_async] = ACTIONS(5104), - [anon_sym_const] = ACTIONS(5104), - [anon_sym_file] = ACTIONS(5104), - [anon_sym_fixed] = ACTIONS(5104), - [anon_sym_internal] = ACTIONS(5104), - [anon_sym_new] = ACTIONS(5104), - [anon_sym_override] = ACTIONS(5104), - [anon_sym_partial] = ACTIONS(5104), - [anon_sym_protected] = ACTIONS(5104), - [anon_sym_required] = ACTIONS(5104), - [anon_sym_sealed] = ACTIONS(5104), - [anon_sym_virtual] = ACTIONS(5104), - [anon_sym_volatile] = ACTIONS(5104), - [anon_sym_where] = ACTIONS(5104), - [anon_sym_notnull] = ACTIONS(5104), - [anon_sym_unmanaged] = ACTIONS(5104), - [anon_sym_TILDE] = ACTIONS(5106), - [anon_sym_implicit] = ACTIONS(5104), - [anon_sym_explicit] = ACTIONS(5104), - [anon_sym_scoped] = ACTIONS(5104), - [anon_sym_var] = ACTIONS(5104), - [sym_predefined_type] = ACTIONS(5104), - [anon_sym_yield] = ACTIONS(5104), - [anon_sym_when] = ACTIONS(5104), - [anon_sym_from] = ACTIONS(5104), - [anon_sym_into] = ACTIONS(5104), - [anon_sym_join] = ACTIONS(5104), - [anon_sym_on] = ACTIONS(5104), - [anon_sym_equals] = ACTIONS(5104), - [anon_sym_let] = ACTIONS(5104), - [anon_sym_orderby] = ACTIONS(5104), - [anon_sym_ascending] = ACTIONS(5104), - [anon_sym_descending] = ACTIONS(5104), - [anon_sym_group] = ACTIONS(5104), - [anon_sym_by] = ACTIONS(5104), - [anon_sym_select] = ACTIONS(5104), - [sym_grit_metavariable] = ACTIONS(5106), - [aux_sym_preproc_if_token1] = ACTIONS(5106), - [aux_sym_preproc_if_token3] = ACTIONS(5106), - [aux_sym_preproc_else_token1] = ACTIONS(5106), - [aux_sym_preproc_elif_token1] = ACTIONS(5106), + [sym__identifier_token] = ACTIONS(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), @@ -474387,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(5108), - [anon_sym_extern] = ACTIONS(5108), - [anon_sym_alias] = ACTIONS(5108), - [anon_sym_global] = ACTIONS(5108), - [anon_sym_using] = ACTIONS(5108), - [anon_sym_unsafe] = ACTIONS(5108), - [anon_sym_static] = ACTIONS(5108), - [anon_sym_LBRACK] = ACTIONS(5110), - [anon_sym_LPAREN] = ACTIONS(5110), - [anon_sym_event] = ACTIONS(5108), - [anon_sym_namespace] = ACTIONS(5108), - [anon_sym_class] = ACTIONS(5108), - [anon_sym_ref] = ACTIONS(5108), - [anon_sym_struct] = ACTIONS(5108), - [anon_sym_enum] = ACTIONS(5108), - [anon_sym_RBRACE] = ACTIONS(5110), - [anon_sym_interface] = ACTIONS(5108), - [anon_sym_delegate] = ACTIONS(5108), - [anon_sym_record] = ACTIONS(5108), - [anon_sym_public] = ACTIONS(5108), - [anon_sym_private] = ACTIONS(5108), - [anon_sym_readonly] = ACTIONS(5108), - [anon_sym_abstract] = ACTIONS(5108), - [anon_sym_async] = ACTIONS(5108), - [anon_sym_const] = ACTIONS(5108), - [anon_sym_file] = ACTIONS(5108), - [anon_sym_fixed] = ACTIONS(5108), - [anon_sym_internal] = ACTIONS(5108), - [anon_sym_new] = ACTIONS(5108), - [anon_sym_override] = ACTIONS(5108), - [anon_sym_partial] = ACTIONS(5108), - [anon_sym_protected] = ACTIONS(5108), - [anon_sym_required] = ACTIONS(5108), - [anon_sym_sealed] = ACTIONS(5108), - [anon_sym_virtual] = ACTIONS(5108), - [anon_sym_volatile] = ACTIONS(5108), - [anon_sym_where] = ACTIONS(5108), - [anon_sym_notnull] = ACTIONS(5108), - [anon_sym_unmanaged] = ACTIONS(5108), - [anon_sym_TILDE] = ACTIONS(5110), - [anon_sym_implicit] = ACTIONS(5108), - [anon_sym_explicit] = ACTIONS(5108), - [anon_sym_scoped] = ACTIONS(5108), - [anon_sym_var] = ACTIONS(5108), - [sym_predefined_type] = ACTIONS(5108), - [anon_sym_yield] = ACTIONS(5108), - [anon_sym_when] = ACTIONS(5108), - [anon_sym_from] = ACTIONS(5108), - [anon_sym_into] = ACTIONS(5108), - [anon_sym_join] = ACTIONS(5108), - [anon_sym_on] = ACTIONS(5108), - [anon_sym_equals] = ACTIONS(5108), - [anon_sym_let] = ACTIONS(5108), - [anon_sym_orderby] = ACTIONS(5108), - [anon_sym_ascending] = ACTIONS(5108), - [anon_sym_descending] = ACTIONS(5108), - [anon_sym_group] = ACTIONS(5108), - [anon_sym_by] = ACTIONS(5108), - [anon_sym_select] = ACTIONS(5108), - [sym_grit_metavariable] = ACTIONS(5110), - [aux_sym_preproc_if_token1] = ACTIONS(5110), - [aux_sym_preproc_if_token3] = ACTIONS(5110), - [aux_sym_preproc_else_token1] = ACTIONS(5110), - [aux_sym_preproc_elif_token1] = ACTIONS(5110), + [sym__identifier_token] = ACTIONS(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), @@ -474472,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), - [sym__identifier_token] = ACTIONS(5112), - [anon_sym_extern] = ACTIONS(5112), - [anon_sym_alias] = ACTIONS(5112), - [anon_sym_global] = ACTIONS(5112), - [anon_sym_using] = ACTIONS(5112), - [anon_sym_unsafe] = ACTIONS(5112), - [anon_sym_static] = ACTIONS(5112), - [anon_sym_LBRACK] = ACTIONS(5114), - [anon_sym_LPAREN] = ACTIONS(5114), - [anon_sym_event] = ACTIONS(5112), - [anon_sym_namespace] = ACTIONS(5112), - [anon_sym_class] = ACTIONS(5112), - [anon_sym_ref] = ACTIONS(5112), - [anon_sym_struct] = ACTIONS(5112), - [anon_sym_enum] = ACTIONS(5112), - [anon_sym_RBRACE] = ACTIONS(5114), - [anon_sym_interface] = ACTIONS(5112), - [anon_sym_delegate] = ACTIONS(5112), - [anon_sym_record] = ACTIONS(5112), - [anon_sym_public] = ACTIONS(5112), - [anon_sym_private] = ACTIONS(5112), - [anon_sym_readonly] = ACTIONS(5112), - [anon_sym_abstract] = ACTIONS(5112), - [anon_sym_async] = ACTIONS(5112), - [anon_sym_const] = ACTIONS(5112), - [anon_sym_file] = ACTIONS(5112), - [anon_sym_fixed] = ACTIONS(5112), - [anon_sym_internal] = ACTIONS(5112), - [anon_sym_new] = ACTIONS(5112), - [anon_sym_override] = ACTIONS(5112), - [anon_sym_partial] = ACTIONS(5112), - [anon_sym_protected] = ACTIONS(5112), - [anon_sym_required] = ACTIONS(5112), - [anon_sym_sealed] = ACTIONS(5112), - [anon_sym_virtual] = ACTIONS(5112), - [anon_sym_volatile] = ACTIONS(5112), - [anon_sym_where] = ACTIONS(5112), - [anon_sym_notnull] = ACTIONS(5112), - [anon_sym_unmanaged] = ACTIONS(5112), - [anon_sym_TILDE] = ACTIONS(5114), - [anon_sym_implicit] = ACTIONS(5112), - [anon_sym_explicit] = ACTIONS(5112), - [anon_sym_scoped] = ACTIONS(5112), - [anon_sym_var] = ACTIONS(5112), - [sym_predefined_type] = ACTIONS(5112), - [anon_sym_yield] = ACTIONS(5112), - [anon_sym_when] = ACTIONS(5112), - [anon_sym_from] = ACTIONS(5112), - [anon_sym_into] = ACTIONS(5112), - [anon_sym_join] = ACTIONS(5112), - [anon_sym_on] = ACTIONS(5112), - [anon_sym_equals] = ACTIONS(5112), - [anon_sym_let] = ACTIONS(5112), - [anon_sym_orderby] = ACTIONS(5112), - [anon_sym_ascending] = ACTIONS(5112), - [anon_sym_descending] = ACTIONS(5112), - [anon_sym_group] = ACTIONS(5112), - [anon_sym_by] = ACTIONS(5112), - [anon_sym_select] = ACTIONS(5112), - [sym_grit_metavariable] = ACTIONS(5114), - [aux_sym_preproc_if_token1] = ACTIONS(5114), - [aux_sym_preproc_if_token3] = ACTIONS(5114), - [aux_sym_preproc_else_token1] = ACTIONS(5114), - [aux_sym_preproc_elif_token1] = ACTIONS(5114), + [sym__identifier_token] = ACTIONS(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), @@ -474548,6 +474438,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2894] = { + [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), @@ -474557,70 +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(5116), - [anon_sym_extern] = ACTIONS(5116), - [anon_sym_alias] = ACTIONS(5116), - [anon_sym_global] = ACTIONS(5116), - [anon_sym_using] = ACTIONS(5116), - [anon_sym_unsafe] = ACTIONS(5116), - [anon_sym_static] = ACTIONS(5116), - [anon_sym_LBRACK] = ACTIONS(5118), - [anon_sym_LPAREN] = ACTIONS(5118), - [anon_sym_event] = ACTIONS(5116), - [anon_sym_namespace] = ACTIONS(5116), - [anon_sym_class] = ACTIONS(5116), - [anon_sym_ref] = ACTIONS(5116), - [anon_sym_struct] = ACTIONS(5116), - [anon_sym_enum] = ACTIONS(5116), - [anon_sym_RBRACE] = ACTIONS(5118), - [anon_sym_interface] = ACTIONS(5116), - [anon_sym_delegate] = ACTIONS(5116), - [anon_sym_record] = ACTIONS(5116), - [anon_sym_public] = ACTIONS(5116), - [anon_sym_private] = ACTIONS(5116), - [anon_sym_readonly] = ACTIONS(5116), - [anon_sym_abstract] = ACTIONS(5116), - [anon_sym_async] = ACTIONS(5116), - [anon_sym_const] = ACTIONS(5116), - [anon_sym_file] = ACTIONS(5116), - [anon_sym_fixed] = ACTIONS(5116), - [anon_sym_internal] = ACTIONS(5116), - [anon_sym_new] = ACTIONS(5116), - [anon_sym_override] = ACTIONS(5116), - [anon_sym_partial] = ACTIONS(5116), - [anon_sym_protected] = ACTIONS(5116), - [anon_sym_required] = ACTIONS(5116), - [anon_sym_sealed] = ACTIONS(5116), - [anon_sym_virtual] = ACTIONS(5116), - [anon_sym_volatile] = ACTIONS(5116), - [anon_sym_where] = ACTIONS(5116), - [anon_sym_notnull] = ACTIONS(5116), - [anon_sym_unmanaged] = ACTIONS(5116), - [anon_sym_TILDE] = ACTIONS(5118), - [anon_sym_implicit] = ACTIONS(5116), - [anon_sym_explicit] = ACTIONS(5116), - [anon_sym_scoped] = ACTIONS(5116), - [anon_sym_var] = ACTIONS(5116), - [sym_predefined_type] = ACTIONS(5116), - [anon_sym_yield] = ACTIONS(5116), - [anon_sym_when] = ACTIONS(5116), - [anon_sym_from] = ACTIONS(5116), - [anon_sym_into] = ACTIONS(5116), - [anon_sym_join] = ACTIONS(5116), - [anon_sym_on] = ACTIONS(5116), - [anon_sym_equals] = ACTIONS(5116), - [anon_sym_let] = ACTIONS(5116), - [anon_sym_orderby] = ACTIONS(5116), - [anon_sym_ascending] = ACTIONS(5116), - [anon_sym_descending] = ACTIONS(5116), - [anon_sym_group] = ACTIONS(5116), - [anon_sym_by] = ACTIONS(5116), - [anon_sym_select] = ACTIONS(5116), - [sym_grit_metavariable] = ACTIONS(5118), - [aux_sym_preproc_if_token1] = ACTIONS(5118), - [aux_sym_preproc_if_token3] = ACTIONS(5118), - [aux_sym_preproc_else_token1] = ACTIONS(5118), - [aux_sym_preproc_elif_token1] = ACTIONS(5118), + [sym__identifier_token] = ACTIONS(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), @@ -474642,70 +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(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(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), @@ -474718,27 +474608,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2896] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), [sym_preproc_region] = STATE(2896), [sym_preproc_endregion] = STATE(2896), [sym_preproc_line] = STATE(2896), @@ -474748,49 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_QMARK] = ACTIONS(5082), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4979), - [anon_sym_from] = ACTIONS(4772), - [anon_sym_join] = ACTIONS(4772), - [anon_sym_let] = ACTIONS(4772), - [anon_sym_orderby] = ACTIONS(4772), - [anon_sym_ascending] = ACTIONS(4772), - [anon_sym_descending] = ACTIONS(4772), - [anon_sym_group] = ACTIONS(4772), - [anon_sym_select] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -474812,70 +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), - [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(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), @@ -474888,27 +474778,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2898] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), [sym_preproc_region] = STATE(2898), [sym_preproc_endregion] = STATE(2898), [sym_preproc_line] = STATE(2898), @@ -474918,49 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4780), - [anon_sym_QMARK] = ACTIONS(5082), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4979), - [anon_sym_from] = ACTIONS(4780), - [anon_sym_join] = ACTIONS(4780), - [anon_sym_let] = ACTIONS(4780), - [anon_sym_orderby] = ACTIONS(4780), - [anon_sym_ascending] = ACTIONS(4780), - [anon_sym_descending] = ACTIONS(4780), - [anon_sym_group] = ACTIONS(4780), - [anon_sym_select] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -474982,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(5120), - [anon_sym_extern] = ACTIONS(5120), - [anon_sym_alias] = ACTIONS(5120), - [anon_sym_global] = ACTIONS(5120), - [anon_sym_using] = ACTIONS(5120), - [anon_sym_unsafe] = ACTIONS(5120), - [anon_sym_static] = ACTIONS(5120), - [anon_sym_LBRACK] = ACTIONS(5122), - [anon_sym_LPAREN] = ACTIONS(5122), - [anon_sym_event] = ACTIONS(5120), - [anon_sym_namespace] = ACTIONS(5120), - [anon_sym_class] = ACTIONS(5120), - [anon_sym_ref] = ACTIONS(5120), - [anon_sym_struct] = ACTIONS(5120), - [anon_sym_enum] = ACTIONS(5120), - [anon_sym_RBRACE] = ACTIONS(5122), - [anon_sym_interface] = ACTIONS(5120), - [anon_sym_delegate] = ACTIONS(5120), - [anon_sym_record] = ACTIONS(5120), - [anon_sym_public] = ACTIONS(5120), - [anon_sym_private] = ACTIONS(5120), - [anon_sym_readonly] = ACTIONS(5120), - [anon_sym_abstract] = ACTIONS(5120), - [anon_sym_async] = ACTIONS(5120), - [anon_sym_const] = ACTIONS(5120), - [anon_sym_file] = ACTIONS(5120), - [anon_sym_fixed] = ACTIONS(5120), - [anon_sym_internal] = ACTIONS(5120), - [anon_sym_new] = ACTIONS(5120), - [anon_sym_override] = ACTIONS(5120), - [anon_sym_partial] = ACTIONS(5120), - [anon_sym_protected] = ACTIONS(5120), - [anon_sym_required] = ACTIONS(5120), - [anon_sym_sealed] = ACTIONS(5120), - [anon_sym_virtual] = ACTIONS(5120), - [anon_sym_volatile] = ACTIONS(5120), - [anon_sym_where] = ACTIONS(5120), - [anon_sym_notnull] = ACTIONS(5120), - [anon_sym_unmanaged] = ACTIONS(5120), - [anon_sym_TILDE] = ACTIONS(5122), - [anon_sym_implicit] = ACTIONS(5120), - [anon_sym_explicit] = ACTIONS(5120), - [anon_sym_scoped] = ACTIONS(5120), - [anon_sym_var] = ACTIONS(5120), - [sym_predefined_type] = ACTIONS(5120), - [anon_sym_yield] = ACTIONS(5120), - [anon_sym_when] = ACTIONS(5120), - [anon_sym_from] = ACTIONS(5120), - [anon_sym_into] = ACTIONS(5120), - [anon_sym_join] = ACTIONS(5120), - [anon_sym_on] = ACTIONS(5120), - [anon_sym_equals] = ACTIONS(5120), - [anon_sym_let] = ACTIONS(5120), - [anon_sym_orderby] = ACTIONS(5120), - [anon_sym_ascending] = ACTIONS(5120), - [anon_sym_descending] = ACTIONS(5120), - [anon_sym_group] = ACTIONS(5120), - [anon_sym_by] = ACTIONS(5120), - [anon_sym_select] = ACTIONS(5120), - [sym_grit_metavariable] = ACTIONS(5122), - [aux_sym_preproc_if_token1] = ACTIONS(5122), - [aux_sym_preproc_if_token3] = ACTIONS(5122), - [aux_sym_preproc_else_token1] = ACTIONS(5122), - [aux_sym_preproc_elif_token1] = ACTIONS(5122), + [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), @@ -475058,6 +474948,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2900] = { + [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), @@ -475067,70 +474961,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2900), [sym_preproc_define] = STATE(2900), [sym_preproc_undef] = STATE(2900), - [sym__identifier_token] = ACTIONS(3660), - [anon_sym_extern] = ACTIONS(3660), - [anon_sym_alias] = ACTIONS(3660), - [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_event] = 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_RBRACE] = 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_TILDE] = ACTIONS(3662), - [anon_sym_implicit] = ACTIONS(3660), - [anon_sym_explicit] = ACTIONS(3660), - [anon_sym_scoped] = ACTIONS(3660), - [anon_sym_var] = ACTIONS(3660), - [sym_predefined_type] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_when] = 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), - [sym_grit_metavariable] = ACTIONS(3662), - [aux_sym_preproc_if_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token3] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), + [sym__identifier_token] = ACTIONS(4208), + [anon_sym_alias] = ACTIONS(4210), + [anon_sym_global] = ACTIONS(4210), + [anon_sym_LBRACK] = ACTIONS(4254), + [anon_sym_LPAREN] = ACTIONS(4254), + [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), @@ -475143,6 +475033,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2901] = { + [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), @@ -475152,70 +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), - [anon_sym_SEMI] = ACTIONS(4540), - [anon_sym_EQ] = ACTIONS(4542), - [anon_sym_LBRACK] = ACTIONS(4540), - [anon_sym_COLON] = ACTIONS(4540), - [anon_sym_COMMA] = ACTIONS(4540), - [anon_sym_RBRACK] = ACTIONS(4540), - [anon_sym_LPAREN] = ACTIONS(4540), - [anon_sym_RPAREN] = ACTIONS(4540), - [anon_sym_RBRACE] = ACTIONS(4540), - [anon_sym_LT] = ACTIONS(4542), - [anon_sym_GT] = ACTIONS(4542), - [anon_sym_in] = ACTIONS(4542), - [anon_sym_QMARK] = ACTIONS(4542), - [anon_sym_BANG] = ACTIONS(4542), - [anon_sym_PLUS_PLUS] = ACTIONS(4540), - [anon_sym_DASH_DASH] = ACTIONS(4540), - [anon_sym_PLUS] = ACTIONS(4542), - [anon_sym_DASH] = ACTIONS(4542), - [anon_sym_STAR] = ACTIONS(4542), - [anon_sym_SLASH] = ACTIONS(4542), - [anon_sym_PERCENT] = ACTIONS(4542), - [anon_sym_CARET] = ACTIONS(4542), - [anon_sym_PIPE] = ACTIONS(4542), - [anon_sym_AMP] = ACTIONS(4542), - [anon_sym_LT_LT] = ACTIONS(4542), - [anon_sym_GT_GT] = ACTIONS(4542), - [anon_sym_GT_GT_GT] = ACTIONS(4542), - [anon_sym_EQ_EQ] = ACTIONS(4540), - [anon_sym_BANG_EQ] = ACTIONS(4540), - [anon_sym_GT_EQ] = ACTIONS(4540), - [anon_sym_LT_EQ] = ACTIONS(4540), - [anon_sym_DOT] = ACTIONS(4542), - [anon_sym_EQ_GT] = ACTIONS(4540), - [anon_sym_switch] = ACTIONS(4540), - [anon_sym_when] = ACTIONS(4540), - [anon_sym_DOT_DOT] = ACTIONS(4540), - [anon_sym_and] = ACTIONS(4540), - [anon_sym_or] = ACTIONS(4540), - [anon_sym_PLUS_EQ] = ACTIONS(4540), - [anon_sym_DASH_EQ] = ACTIONS(4540), - [anon_sym_STAR_EQ] = ACTIONS(4540), - [anon_sym_SLASH_EQ] = ACTIONS(4540), - [anon_sym_PERCENT_EQ] = ACTIONS(4540), - [anon_sym_AMP_EQ] = ACTIONS(4540), - [anon_sym_CARET_EQ] = ACTIONS(4540), - [anon_sym_PIPE_EQ] = ACTIONS(4540), - [anon_sym_LT_LT_EQ] = ACTIONS(4540), - [anon_sym_GT_GT_EQ] = ACTIONS(4540), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4540), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4540), - [anon_sym_AMP_AMP] = ACTIONS(4540), - [anon_sym_PIPE_PIPE] = ACTIONS(4540), - [sym_op_coalescing] = ACTIONS(4542), - [anon_sym_into] = ACTIONS(4540), - [anon_sym_on] = ACTIONS(4540), - [anon_sym_equals] = ACTIONS(4540), - [anon_sym_by] = ACTIONS(4540), - [anon_sym_as] = ACTIONS(4540), - [anon_sym_is] = ACTIONS(4540), - [anon_sym_DASH_GT] = ACTIONS(4540), - [anon_sym_with] = ACTIONS(4540), - [aux_sym_preproc_if_token3] = ACTIONS(4540), - [aux_sym_preproc_else_token1] = ACTIONS(4540), - [aux_sym_preproc_elif_token1] = ACTIONS(4540), + [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), @@ -475237,70 +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(5124), - [anon_sym_extern] = ACTIONS(5124), - [anon_sym_alias] = ACTIONS(5124), - [anon_sym_global] = ACTIONS(5124), - [anon_sym_using] = ACTIONS(5124), - [anon_sym_unsafe] = ACTIONS(5124), - [anon_sym_static] = ACTIONS(5124), - [anon_sym_LBRACK] = ACTIONS(5126), - [anon_sym_LPAREN] = ACTIONS(5126), - [anon_sym_event] = ACTIONS(5124), - [anon_sym_namespace] = ACTIONS(5124), - [anon_sym_class] = ACTIONS(5124), - [anon_sym_ref] = ACTIONS(5124), - [anon_sym_struct] = ACTIONS(5124), - [anon_sym_enum] = ACTIONS(5124), - [anon_sym_RBRACE] = ACTIONS(5126), - [anon_sym_interface] = ACTIONS(5124), - [anon_sym_delegate] = ACTIONS(5124), - [anon_sym_record] = ACTIONS(5124), - [anon_sym_public] = ACTIONS(5124), - [anon_sym_private] = ACTIONS(5124), - [anon_sym_readonly] = ACTIONS(5124), - [anon_sym_abstract] = ACTIONS(5124), - [anon_sym_async] = ACTIONS(5124), - [anon_sym_const] = ACTIONS(5124), - [anon_sym_file] = ACTIONS(5124), - [anon_sym_fixed] = ACTIONS(5124), - [anon_sym_internal] = ACTIONS(5124), - [anon_sym_new] = ACTIONS(5124), - [anon_sym_override] = ACTIONS(5124), - [anon_sym_partial] = ACTIONS(5124), - [anon_sym_protected] = ACTIONS(5124), - [anon_sym_required] = ACTIONS(5124), - [anon_sym_sealed] = ACTIONS(5124), - [anon_sym_virtual] = ACTIONS(5124), - [anon_sym_volatile] = ACTIONS(5124), - [anon_sym_where] = ACTIONS(5124), - [anon_sym_notnull] = ACTIONS(5124), - [anon_sym_unmanaged] = ACTIONS(5124), - [anon_sym_TILDE] = ACTIONS(5126), - [anon_sym_implicit] = ACTIONS(5124), - [anon_sym_explicit] = ACTIONS(5124), - [anon_sym_scoped] = ACTIONS(5124), - [anon_sym_var] = ACTIONS(5124), - [sym_predefined_type] = ACTIONS(5124), - [anon_sym_yield] = ACTIONS(5124), - [anon_sym_when] = ACTIONS(5124), - [anon_sym_from] = ACTIONS(5124), - [anon_sym_into] = ACTIONS(5124), - [anon_sym_join] = ACTIONS(5124), - [anon_sym_on] = ACTIONS(5124), - [anon_sym_equals] = ACTIONS(5124), - [anon_sym_let] = ACTIONS(5124), - [anon_sym_orderby] = ACTIONS(5124), - [anon_sym_ascending] = ACTIONS(5124), - [anon_sym_descending] = ACTIONS(5124), - [anon_sym_group] = ACTIONS(5124), - [anon_sym_by] = ACTIONS(5124), - [anon_sym_select] = ACTIONS(5124), - [sym_grit_metavariable] = ACTIONS(5126), - [aux_sym_preproc_if_token1] = ACTIONS(5126), - [aux_sym_preproc_if_token3] = ACTIONS(5126), - [aux_sym_preproc_else_token1] = ACTIONS(5126), - [aux_sym_preproc_elif_token1] = ACTIONS(5126), + [sym__identifier_token] = ACTIONS(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), @@ -475313,27 +475203,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2903] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2903), [sym_preproc_endregion] = STATE(2903), [sym_preproc_line] = STATE(2903), @@ -475343,49 +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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4780), - [anon_sym_QMARK] = ACTIONS(4952), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4956), - [anon_sym_from] = ACTIONS(4780), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_join] = ACTIONS(4780), - [anon_sym_let] = ACTIONS(4780), - [anon_sym_orderby] = ACTIONS(4780), - [anon_sym_group] = ACTIONS(4780), - [anon_sym_select] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -475398,27 +475288,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2904] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2904), [sym_preproc_endregion] = STATE(2904), [sym_preproc_line] = STATE(2904), @@ -475428,49 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -475483,27 +475373,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2905] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2905), [sym_preproc_endregion] = STATE(2905), [sym_preproc_line] = STATE(2905), @@ -475513,49 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4756), - [anon_sym_QMARK] = ACTIONS(4952), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4756), - [anon_sym_or] = ACTIONS(4758), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4956), - [anon_sym_from] = ACTIONS(4756), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_join] = ACTIONS(4756), - [anon_sym_let] = ACTIONS(4756), - [anon_sym_orderby] = ACTIONS(4756), - [anon_sym_group] = ACTIONS(4756), - [anon_sym_select] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -475568,10 +475458,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2906] = { - [sym__variable_designation] = STATE(5509), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym_identifier] = STATE(5517), - [sym__reserved_identifier] = STATE(3741), [sym_preproc_region] = STATE(2906), [sym_preproc_endregion] = STATE(2906), [sym_preproc_line] = STATE(2906), @@ -475581,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(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4228), - [sym_discard] = ACTIONS(4568), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4248), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4248), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4248), - [anon_sym_orderby] = ACTIONS(4248), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4248), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4248), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [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), @@ -475662,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), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3700), - [anon_sym_when] = ACTIONS(3700), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3700), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3700), - [anon_sym_on] = ACTIONS(3700), - [anon_sym_equals] = ACTIONS(3700), - [anon_sym_by] = ACTIONS(3700), - [anon_sym_as] = ACTIONS(3700), - [anon_sym_is] = ACTIONS(3700), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3700), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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), @@ -475747,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(5128), - [anon_sym_extern] = ACTIONS(5128), - [anon_sym_alias] = ACTIONS(5128), - [anon_sym_global] = ACTIONS(5128), - [anon_sym_using] = ACTIONS(5128), - [anon_sym_unsafe] = ACTIONS(5128), - [anon_sym_static] = ACTIONS(5128), - [anon_sym_LBRACK] = ACTIONS(5130), - [anon_sym_LPAREN] = ACTIONS(5130), - [anon_sym_event] = ACTIONS(5128), - [anon_sym_namespace] = ACTIONS(5128), - [anon_sym_class] = ACTIONS(5128), - [anon_sym_ref] = ACTIONS(5128), - [anon_sym_struct] = ACTIONS(5128), - [anon_sym_enum] = ACTIONS(5128), - [anon_sym_RBRACE] = ACTIONS(5130), - [anon_sym_interface] = ACTIONS(5128), - [anon_sym_delegate] = ACTIONS(5128), - [anon_sym_record] = ACTIONS(5128), - [anon_sym_public] = ACTIONS(5128), - [anon_sym_private] = ACTIONS(5128), - [anon_sym_readonly] = ACTIONS(5128), - [anon_sym_abstract] = ACTIONS(5128), - [anon_sym_async] = ACTIONS(5128), - [anon_sym_const] = ACTIONS(5128), - [anon_sym_file] = ACTIONS(5128), - [anon_sym_fixed] = ACTIONS(5128), - [anon_sym_internal] = ACTIONS(5128), - [anon_sym_new] = ACTIONS(5128), - [anon_sym_override] = ACTIONS(5128), - [anon_sym_partial] = ACTIONS(5128), - [anon_sym_protected] = ACTIONS(5128), - [anon_sym_required] = ACTIONS(5128), - [anon_sym_sealed] = ACTIONS(5128), - [anon_sym_virtual] = ACTIONS(5128), - [anon_sym_volatile] = ACTIONS(5128), - [anon_sym_where] = ACTIONS(5128), - [anon_sym_notnull] = ACTIONS(5128), - [anon_sym_unmanaged] = ACTIONS(5128), - [anon_sym_TILDE] = ACTIONS(5130), - [anon_sym_implicit] = ACTIONS(5128), - [anon_sym_explicit] = ACTIONS(5128), - [anon_sym_scoped] = ACTIONS(5128), - [anon_sym_var] = ACTIONS(5128), - [sym_predefined_type] = ACTIONS(5128), - [anon_sym_yield] = ACTIONS(5128), - [anon_sym_when] = ACTIONS(5128), - [anon_sym_from] = ACTIONS(5128), - [anon_sym_into] = ACTIONS(5128), - [anon_sym_join] = ACTIONS(5128), - [anon_sym_on] = ACTIONS(5128), - [anon_sym_equals] = ACTIONS(5128), - [anon_sym_let] = ACTIONS(5128), - [anon_sym_orderby] = ACTIONS(5128), - [anon_sym_ascending] = ACTIONS(5128), - [anon_sym_descending] = ACTIONS(5128), - [anon_sym_group] = ACTIONS(5128), - [anon_sym_by] = ACTIONS(5128), - [anon_sym_select] = ACTIONS(5128), - [sym_grit_metavariable] = ACTIONS(5130), - [aux_sym_preproc_if_token1] = ACTIONS(5130), - [aux_sym_preproc_if_token3] = ACTIONS(5130), - [aux_sym_preproc_else_token1] = ACTIONS(5130), - [aux_sym_preproc_elif_token1] = ACTIONS(5130), + [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), @@ -475832,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(5132), - [anon_sym_extern] = ACTIONS(5132), - [anon_sym_alias] = ACTIONS(5132), - [anon_sym_global] = ACTIONS(5132), - [anon_sym_using] = ACTIONS(5132), - [anon_sym_unsafe] = ACTIONS(5132), - [anon_sym_static] = ACTIONS(5132), - [anon_sym_LBRACK] = ACTIONS(5134), - [anon_sym_LPAREN] = ACTIONS(5134), - [anon_sym_event] = ACTIONS(5132), - [anon_sym_namespace] = ACTIONS(5132), - [anon_sym_class] = ACTIONS(5132), - [anon_sym_ref] = ACTIONS(5132), - [anon_sym_struct] = ACTIONS(5132), - [anon_sym_enum] = ACTIONS(5132), - [anon_sym_RBRACE] = ACTIONS(5134), - [anon_sym_interface] = ACTIONS(5132), - [anon_sym_delegate] = ACTIONS(5132), - [anon_sym_record] = ACTIONS(5132), - [anon_sym_public] = ACTIONS(5132), - [anon_sym_private] = ACTIONS(5132), - [anon_sym_readonly] = ACTIONS(5132), - [anon_sym_abstract] = ACTIONS(5132), - [anon_sym_async] = ACTIONS(5132), - [anon_sym_const] = ACTIONS(5132), - [anon_sym_file] = ACTIONS(5132), - [anon_sym_fixed] = ACTIONS(5132), - [anon_sym_internal] = ACTIONS(5132), - [anon_sym_new] = ACTIONS(5132), - [anon_sym_override] = ACTIONS(5132), - [anon_sym_partial] = ACTIONS(5132), - [anon_sym_protected] = ACTIONS(5132), - [anon_sym_required] = ACTIONS(5132), - [anon_sym_sealed] = ACTIONS(5132), - [anon_sym_virtual] = ACTIONS(5132), - [anon_sym_volatile] = ACTIONS(5132), - [anon_sym_where] = ACTIONS(5132), - [anon_sym_notnull] = ACTIONS(5132), - [anon_sym_unmanaged] = ACTIONS(5132), - [anon_sym_TILDE] = ACTIONS(5134), - [anon_sym_implicit] = ACTIONS(5132), - [anon_sym_explicit] = ACTIONS(5132), - [anon_sym_scoped] = ACTIONS(5132), - [anon_sym_var] = ACTIONS(5132), - [sym_predefined_type] = ACTIONS(5132), - [anon_sym_yield] = ACTIONS(5132), - [anon_sym_when] = ACTIONS(5132), - [anon_sym_from] = ACTIONS(5132), - [anon_sym_into] = ACTIONS(5132), - [anon_sym_join] = ACTIONS(5132), - [anon_sym_on] = ACTIONS(5132), - [anon_sym_equals] = ACTIONS(5132), - [anon_sym_let] = ACTIONS(5132), - [anon_sym_orderby] = ACTIONS(5132), - [anon_sym_ascending] = ACTIONS(5132), - [anon_sym_descending] = ACTIONS(5132), - [anon_sym_group] = ACTIONS(5132), - [anon_sym_by] = ACTIONS(5132), - [anon_sym_select] = ACTIONS(5132), - [sym_grit_metavariable] = ACTIONS(5134), - [aux_sym_preproc_if_token1] = ACTIONS(5134), - [aux_sym_preproc_if_token3] = ACTIONS(5134), - [aux_sym_preproc_else_token1] = ACTIONS(5134), - [aux_sym_preproc_elif_token1] = ACTIONS(5134), + [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), @@ -475908,10 +475798,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2910] = { - [sym__variable_designation] = STATE(4980), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2910), [sym_preproc_endregion] = STATE(2910), [sym_preproc_line] = STATE(2910), @@ -475921,66 +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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4302), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4302), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_PLUS_PLUS] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4302), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4302), - [anon_sym_LT_LT] = ACTIONS(4300), - [anon_sym_GT_GT] = ACTIONS(4302), - [anon_sym_GT_GT_GT] = ACTIONS(4300), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_GT_EQ] = ACTIONS(4300), - [anon_sym_LT_EQ] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4302), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4302), - [anon_sym_or] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4300), - [sym_op_coalescing] = ACTIONS(4300), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4302), - [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(4302), - [anon_sym_is] = ACTIONS(4302), - [anon_sym_DASH_GT] = ACTIONS(4300), - [anon_sym_with] = ACTIONS(4302), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -475993,10 +475883,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2911] = { - [sym__variable_designation] = STATE(5503), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym_identifier] = STATE(5517), - [sym__reserved_identifier] = STATE(3741), [sym_preproc_region] = STATE(2911), [sym_preproc_endregion] = STATE(2911), [sym_preproc_line] = STATE(2911), @@ -476006,78 +475892,86 @@ 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(4296), - [anon_sym_LPAREN] = ACTIONS(4296), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(4298), - [anon_sym_GT] = ACTIONS(4298), - [anon_sym_where] = ACTIONS(4298), - [anon_sym_QMARK] = ACTIONS(4298), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_SLASH] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4298), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4298), - [anon_sym_GT_GT_GT] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4296), - [anon_sym_BANG_EQ] = ACTIONS(4296), - [anon_sym_GT_EQ] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4296), - [anon_sym_DOT] = ACTIONS(4298), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(4298), - [anon_sym_when] = ACTIONS(4228), - [sym_discard] = ACTIONS(4568), - [anon_sym_DOT_DOT] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4298), - [anon_sym_or] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4296), - [sym_op_coalescing] = ACTIONS(4296), - [anon_sym_from] = ACTIONS(4298), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4298), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4298), - [anon_sym_orderby] = ACTIONS(4298), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4298), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4296), - [anon_sym_with] = ACTIONS(4298), - [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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [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), @@ -476087,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(5136), - [anon_sym_extern] = ACTIONS(5136), - [anon_sym_alias] = ACTIONS(5136), - [anon_sym_global] = ACTIONS(5136), - [anon_sym_using] = ACTIONS(5136), - [anon_sym_unsafe] = ACTIONS(5136), - [anon_sym_static] = ACTIONS(5136), - [anon_sym_LBRACK] = ACTIONS(5138), - [anon_sym_LPAREN] = ACTIONS(5138), - [anon_sym_event] = ACTIONS(5136), - [anon_sym_namespace] = ACTIONS(5136), - [anon_sym_class] = ACTIONS(5136), - [anon_sym_ref] = ACTIONS(5136), - [anon_sym_struct] = ACTIONS(5136), - [anon_sym_enum] = ACTIONS(5136), - [anon_sym_RBRACE] = ACTIONS(5138), - [anon_sym_interface] = ACTIONS(5136), - [anon_sym_delegate] = ACTIONS(5136), - [anon_sym_record] = ACTIONS(5136), - [anon_sym_public] = ACTIONS(5136), - [anon_sym_private] = ACTIONS(5136), - [anon_sym_readonly] = ACTIONS(5136), - [anon_sym_abstract] = ACTIONS(5136), - [anon_sym_async] = ACTIONS(5136), - [anon_sym_const] = ACTIONS(5136), - [anon_sym_file] = ACTIONS(5136), - [anon_sym_fixed] = ACTIONS(5136), - [anon_sym_internal] = ACTIONS(5136), - [anon_sym_new] = ACTIONS(5136), - [anon_sym_override] = ACTIONS(5136), - [anon_sym_partial] = ACTIONS(5136), - [anon_sym_protected] = ACTIONS(5136), - [anon_sym_required] = ACTIONS(5136), - [anon_sym_sealed] = ACTIONS(5136), - [anon_sym_virtual] = ACTIONS(5136), - [anon_sym_volatile] = ACTIONS(5136), - [anon_sym_where] = ACTIONS(5136), - [anon_sym_notnull] = ACTIONS(5136), - [anon_sym_unmanaged] = ACTIONS(5136), - [anon_sym_TILDE] = ACTIONS(5138), - [anon_sym_implicit] = ACTIONS(5136), - [anon_sym_explicit] = ACTIONS(5136), - [anon_sym_scoped] = ACTIONS(5136), - [anon_sym_var] = ACTIONS(5136), - [sym_predefined_type] = ACTIONS(5136), - [anon_sym_yield] = ACTIONS(5136), - [anon_sym_when] = ACTIONS(5136), - [anon_sym_from] = ACTIONS(5136), - [anon_sym_into] = ACTIONS(5136), - [anon_sym_join] = ACTIONS(5136), - [anon_sym_on] = ACTIONS(5136), - [anon_sym_equals] = ACTIONS(5136), - [anon_sym_let] = ACTIONS(5136), - [anon_sym_orderby] = ACTIONS(5136), - [anon_sym_ascending] = ACTIONS(5136), - [anon_sym_descending] = ACTIONS(5136), - [anon_sym_group] = ACTIONS(5136), - [anon_sym_by] = ACTIONS(5136), - [anon_sym_select] = ACTIONS(5136), - [sym_grit_metavariable] = ACTIONS(5138), - [aux_sym_preproc_if_token1] = ACTIONS(5138), - [aux_sym_preproc_if_token3] = ACTIONS(5138), - [aux_sym_preproc_else_token1] = ACTIONS(5138), - [aux_sym_preproc_elif_token1] = ACTIONS(5138), + [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), @@ -476163,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), @@ -476172,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), - [sym__identifier_token] = ACTIONS(5140), - [anon_sym_extern] = ACTIONS(5140), - [anon_sym_alias] = ACTIONS(5140), - [anon_sym_global] = ACTIONS(5140), - [anon_sym_using] = ACTIONS(5140), - [anon_sym_unsafe] = ACTIONS(5140), - [anon_sym_static] = ACTIONS(5140), - [anon_sym_LBRACK] = ACTIONS(5142), - [anon_sym_LPAREN] = ACTIONS(5142), - [anon_sym_event] = ACTIONS(5140), - [anon_sym_namespace] = ACTIONS(5140), - [anon_sym_class] = ACTIONS(5140), - [anon_sym_ref] = ACTIONS(5140), - [anon_sym_struct] = ACTIONS(5140), - [anon_sym_enum] = ACTIONS(5140), - [anon_sym_RBRACE] = ACTIONS(5142), - [anon_sym_interface] = ACTIONS(5140), - [anon_sym_delegate] = ACTIONS(5140), - [anon_sym_record] = ACTIONS(5140), - [anon_sym_public] = ACTIONS(5140), - [anon_sym_private] = ACTIONS(5140), - [anon_sym_readonly] = ACTIONS(5140), - [anon_sym_abstract] = ACTIONS(5140), - [anon_sym_async] = ACTIONS(5140), - [anon_sym_const] = ACTIONS(5140), - [anon_sym_file] = ACTIONS(5140), - [anon_sym_fixed] = ACTIONS(5140), - [anon_sym_internal] = ACTIONS(5140), - [anon_sym_new] = ACTIONS(5140), - [anon_sym_override] = ACTIONS(5140), - [anon_sym_partial] = ACTIONS(5140), - [anon_sym_protected] = ACTIONS(5140), - [anon_sym_required] = ACTIONS(5140), - [anon_sym_sealed] = ACTIONS(5140), - [anon_sym_virtual] = ACTIONS(5140), - [anon_sym_volatile] = ACTIONS(5140), - [anon_sym_where] = ACTIONS(5140), - [anon_sym_notnull] = ACTIONS(5140), - [anon_sym_unmanaged] = ACTIONS(5140), - [anon_sym_TILDE] = ACTIONS(5142), - [anon_sym_implicit] = ACTIONS(5140), - [anon_sym_explicit] = ACTIONS(5140), - [anon_sym_scoped] = ACTIONS(5140), - [anon_sym_var] = ACTIONS(5140), - [sym_predefined_type] = ACTIONS(5140), - [anon_sym_yield] = ACTIONS(5140), - [anon_sym_when] = ACTIONS(5140), - [anon_sym_from] = ACTIONS(5140), - [anon_sym_into] = ACTIONS(5140), - [anon_sym_join] = ACTIONS(5140), - [anon_sym_on] = ACTIONS(5140), - [anon_sym_equals] = ACTIONS(5140), - [anon_sym_let] = ACTIONS(5140), - [anon_sym_orderby] = ACTIONS(5140), - [anon_sym_ascending] = ACTIONS(5140), - [anon_sym_descending] = ACTIONS(5140), - [anon_sym_group] = ACTIONS(5140), - [anon_sym_by] = ACTIONS(5140), - [anon_sym_select] = ACTIONS(5140), - [sym_grit_metavariable] = ACTIONS(5142), - [aux_sym_preproc_if_token1] = ACTIONS(5142), - [aux_sym_preproc_if_token3] = ACTIONS(5142), - [aux_sym_preproc_else_token1] = ACTIONS(5142), - [aux_sym_preproc_elif_token1] = ACTIONS(5142), + [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), @@ -476257,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(5144), - [anon_sym_extern] = ACTIONS(5144), - [anon_sym_alias] = ACTIONS(5144), - [anon_sym_global] = ACTIONS(5144), - [anon_sym_using] = ACTIONS(5144), - [anon_sym_unsafe] = ACTIONS(5144), - [anon_sym_static] = ACTIONS(5144), - [anon_sym_LBRACK] = ACTIONS(5146), - [anon_sym_LPAREN] = ACTIONS(5146), - [anon_sym_event] = ACTIONS(5144), - [anon_sym_namespace] = ACTIONS(5144), - [anon_sym_class] = ACTIONS(5144), - [anon_sym_ref] = ACTIONS(5144), - [anon_sym_struct] = ACTIONS(5144), - [anon_sym_enum] = ACTIONS(5144), - [anon_sym_RBRACE] = ACTIONS(5146), - [anon_sym_interface] = ACTIONS(5144), - [anon_sym_delegate] = ACTIONS(5144), - [anon_sym_record] = ACTIONS(5144), - [anon_sym_public] = ACTIONS(5144), - [anon_sym_private] = ACTIONS(5144), - [anon_sym_readonly] = ACTIONS(5144), - [anon_sym_abstract] = ACTIONS(5144), - [anon_sym_async] = ACTIONS(5144), - [anon_sym_const] = ACTIONS(5144), - [anon_sym_file] = ACTIONS(5144), - [anon_sym_fixed] = ACTIONS(5144), - [anon_sym_internal] = ACTIONS(5144), - [anon_sym_new] = ACTIONS(5144), - [anon_sym_override] = ACTIONS(5144), - [anon_sym_partial] = ACTIONS(5144), - [anon_sym_protected] = ACTIONS(5144), - [anon_sym_required] = ACTIONS(5144), - [anon_sym_sealed] = ACTIONS(5144), - [anon_sym_virtual] = ACTIONS(5144), - [anon_sym_volatile] = ACTIONS(5144), - [anon_sym_where] = ACTIONS(5144), - [anon_sym_notnull] = ACTIONS(5144), - [anon_sym_unmanaged] = ACTIONS(5144), - [anon_sym_TILDE] = ACTIONS(5146), - [anon_sym_implicit] = ACTIONS(5144), - [anon_sym_explicit] = ACTIONS(5144), - [anon_sym_scoped] = ACTIONS(5144), - [anon_sym_var] = ACTIONS(5144), - [sym_predefined_type] = ACTIONS(5144), - [anon_sym_yield] = ACTIONS(5144), - [anon_sym_when] = ACTIONS(5144), - [anon_sym_from] = ACTIONS(5144), - [anon_sym_into] = ACTIONS(5144), - [anon_sym_join] = ACTIONS(5144), - [anon_sym_on] = ACTIONS(5144), - [anon_sym_equals] = ACTIONS(5144), - [anon_sym_let] = ACTIONS(5144), - [anon_sym_orderby] = ACTIONS(5144), - [anon_sym_ascending] = ACTIONS(5144), - [anon_sym_descending] = ACTIONS(5144), - [anon_sym_group] = ACTIONS(5144), - [anon_sym_by] = ACTIONS(5144), - [anon_sym_select] = ACTIONS(5144), - [sym_grit_metavariable] = ACTIONS(5146), - [aux_sym_preproc_if_token1] = ACTIONS(5146), - [aux_sym_preproc_if_token3] = ACTIONS(5146), - [aux_sym_preproc_else_token1] = ACTIONS(5146), - [aux_sym_preproc_elif_token1] = ACTIONS(5146), + [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), @@ -476331,12 +476220,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), }, [2915] = { - [sym__variable_designation] = STATE(4984), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2915), [sym_preproc_endregion] = STATE(2915), [sym_preproc_line] = STATE(2915), @@ -476346,66 +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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4296), - [anon_sym_LPAREN] = ACTIONS(4296), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4298), - [anon_sym_GT] = ACTIONS(4298), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4298), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_SLASH] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4298), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4298), - [anon_sym_GT_GT_GT] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4296), - [anon_sym_BANG_EQ] = ACTIONS(4296), - [anon_sym_GT_EQ] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4296), - [anon_sym_DOT] = ACTIONS(4298), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4298), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4298), - [anon_sym_or] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4296), - [sym_op_coalescing] = ACTIONS(4296), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4298), - [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(4298), - [anon_sym_is] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4296), - [anon_sym_with] = ACTIONS(4298), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -476427,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(5148), - [anon_sym_extern] = ACTIONS(5148), - [anon_sym_alias] = ACTIONS(5148), - [anon_sym_global] = ACTIONS(5148), - [anon_sym_using] = ACTIONS(5148), - [anon_sym_unsafe] = ACTIONS(5148), - [anon_sym_static] = ACTIONS(5148), - [anon_sym_LBRACK] = ACTIONS(5150), - [anon_sym_LPAREN] = ACTIONS(5150), - [anon_sym_event] = ACTIONS(5148), - [anon_sym_namespace] = ACTIONS(5148), - [anon_sym_class] = ACTIONS(5148), - [anon_sym_ref] = ACTIONS(5148), - [anon_sym_struct] = ACTIONS(5148), - [anon_sym_enum] = ACTIONS(5148), - [anon_sym_RBRACE] = ACTIONS(5150), - [anon_sym_interface] = ACTIONS(5148), - [anon_sym_delegate] = ACTIONS(5148), - [anon_sym_record] = ACTIONS(5148), - [anon_sym_public] = ACTIONS(5148), - [anon_sym_private] = ACTIONS(5148), - [anon_sym_readonly] = ACTIONS(5148), - [anon_sym_abstract] = ACTIONS(5148), - [anon_sym_async] = ACTIONS(5148), - [anon_sym_const] = ACTIONS(5148), - [anon_sym_file] = ACTIONS(5148), - [anon_sym_fixed] = ACTIONS(5148), - [anon_sym_internal] = ACTIONS(5148), - [anon_sym_new] = ACTIONS(5148), - [anon_sym_override] = ACTIONS(5148), - [anon_sym_partial] = ACTIONS(5148), - [anon_sym_protected] = ACTIONS(5148), - [anon_sym_required] = ACTIONS(5148), - [anon_sym_sealed] = ACTIONS(5148), - [anon_sym_virtual] = ACTIONS(5148), - [anon_sym_volatile] = ACTIONS(5148), - [anon_sym_where] = ACTIONS(5148), - [anon_sym_notnull] = ACTIONS(5148), - [anon_sym_unmanaged] = ACTIONS(5148), - [anon_sym_TILDE] = ACTIONS(5150), - [anon_sym_implicit] = ACTIONS(5148), - [anon_sym_explicit] = ACTIONS(5148), - [anon_sym_scoped] = ACTIONS(5148), - [anon_sym_var] = ACTIONS(5148), - [sym_predefined_type] = ACTIONS(5148), - [anon_sym_yield] = ACTIONS(5148), - [anon_sym_when] = ACTIONS(5148), - [anon_sym_from] = ACTIONS(5148), - [anon_sym_into] = ACTIONS(5148), - [anon_sym_join] = ACTIONS(5148), - [anon_sym_on] = ACTIONS(5148), - [anon_sym_equals] = ACTIONS(5148), - [anon_sym_let] = ACTIONS(5148), - [anon_sym_orderby] = ACTIONS(5148), - [anon_sym_ascending] = ACTIONS(5148), - [anon_sym_descending] = ACTIONS(5148), - [anon_sym_group] = ACTIONS(5148), - [anon_sym_by] = ACTIONS(5148), - [anon_sym_select] = ACTIONS(5148), - [sym_grit_metavariable] = ACTIONS(5150), - [aux_sym_preproc_if_token1] = ACTIONS(5150), - [aux_sym_preproc_if_token3] = ACTIONS(5150), - [aux_sym_preproc_else_token1] = ACTIONS(5150), - [aux_sym_preproc_elif_token1] = ACTIONS(5150), + [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), @@ -476503,27 +476392,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2917] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2917), [sym_preproc_endregion] = STATE(2917), [sym_preproc_line] = STATE(2917), @@ -476533,49 +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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(4952), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4776), - [anon_sym_or] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4956), - [anon_sym_from] = ACTIONS(4776), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_join] = ACTIONS(4776), - [anon_sym_let] = ACTIONS(4776), - [anon_sym_orderby] = ACTIONS(4776), - [anon_sym_group] = ACTIONS(4776), - [anon_sym_select] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -476597,86 +476485,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2918), [sym_preproc_define] = STATE(2918), [sym_preproc_undef] = STATE(2918), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym_EQ] = ACTIONS(4538), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_COLON] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(4536), - [anon_sym_RBRACK] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_RPAREN] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LT] = ACTIONS(4538), - [anon_sym_GT] = ACTIONS(4538), - [anon_sym_in] = ACTIONS(4538), - [anon_sym_QMARK] = ACTIONS(4538), - [anon_sym_BANG] = ACTIONS(4538), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4538), - [anon_sym_DASH] = ACTIONS(4538), - [anon_sym_STAR] = ACTIONS(4538), - [anon_sym_SLASH] = ACTIONS(4538), - [anon_sym_PERCENT] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4538), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_AMP] = ACTIONS(4538), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [anon_sym_GT_GT_GT] = ACTIONS(4538), - [anon_sym_EQ_EQ] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_DOT] = ACTIONS(4538), - [anon_sym_EQ_GT] = ACTIONS(4536), - [anon_sym_switch] = ACTIONS(4536), - [anon_sym_when] = ACTIONS(4536), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_and] = ACTIONS(4536), - [anon_sym_or] = ACTIONS(4536), - [anon_sym_PLUS_EQ] = ACTIONS(4536), - [anon_sym_DASH_EQ] = ACTIONS(4536), - [anon_sym_STAR_EQ] = ACTIONS(4536), - [anon_sym_SLASH_EQ] = ACTIONS(4536), - [anon_sym_PERCENT_EQ] = ACTIONS(4536), - [anon_sym_AMP_EQ] = ACTIONS(4536), - [anon_sym_CARET_EQ] = ACTIONS(4536), - [anon_sym_PIPE_EQ] = ACTIONS(4536), - [anon_sym_LT_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_GT_EQ] = ACTIONS(4536), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4536), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [sym_op_coalescing] = ACTIONS(4538), - [anon_sym_into] = ACTIONS(4536), - [anon_sym_on] = ACTIONS(4536), - [anon_sym_equals] = ACTIONS(4536), - [anon_sym_by] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4536), - [anon_sym_DASH_GT] = ACTIONS(4536), - [anon_sym_with] = ACTIONS(4536), - [aux_sym_preproc_if_token3] = ACTIONS(4536), - [aux_sym_preproc_else_token1] = ACTIONS(4536), - [aux_sym_preproc_elif_token1] = ACTIONS(4536), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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__variable_designation] = STATE(4951), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2919), [sym_preproc_endregion] = STATE(2919), [sym_preproc_line] = STATE(2919), @@ -476686,66 +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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4236), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4210), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4248), - [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(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -476767,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(5152), - [anon_sym_extern] = ACTIONS(5152), - [anon_sym_alias] = ACTIONS(5152), - [anon_sym_global] = ACTIONS(5152), - [anon_sym_using] = ACTIONS(5152), - [anon_sym_unsafe] = ACTIONS(5152), - [anon_sym_static] = ACTIONS(5152), - [anon_sym_LBRACK] = ACTIONS(5154), - [anon_sym_LPAREN] = ACTIONS(5154), - [anon_sym_event] = ACTIONS(5152), - [anon_sym_namespace] = ACTIONS(5152), - [anon_sym_class] = ACTIONS(5152), - [anon_sym_ref] = ACTIONS(5152), - [anon_sym_struct] = ACTIONS(5152), - [anon_sym_enum] = ACTIONS(5152), - [anon_sym_RBRACE] = ACTIONS(5154), - [anon_sym_interface] = ACTIONS(5152), - [anon_sym_delegate] = ACTIONS(5152), - [anon_sym_record] = ACTIONS(5152), - [anon_sym_public] = ACTIONS(5152), - [anon_sym_private] = ACTIONS(5152), - [anon_sym_readonly] = ACTIONS(5152), - [anon_sym_abstract] = ACTIONS(5152), - [anon_sym_async] = ACTIONS(5152), - [anon_sym_const] = ACTIONS(5152), - [anon_sym_file] = ACTIONS(5152), - [anon_sym_fixed] = ACTIONS(5152), - [anon_sym_internal] = ACTIONS(5152), - [anon_sym_new] = ACTIONS(5152), - [anon_sym_override] = ACTIONS(5152), - [anon_sym_partial] = ACTIONS(5152), - [anon_sym_protected] = ACTIONS(5152), - [anon_sym_required] = ACTIONS(5152), - [anon_sym_sealed] = ACTIONS(5152), - [anon_sym_virtual] = ACTIONS(5152), - [anon_sym_volatile] = ACTIONS(5152), - [anon_sym_where] = ACTIONS(5152), - [anon_sym_notnull] = ACTIONS(5152), - [anon_sym_unmanaged] = ACTIONS(5152), - [anon_sym_TILDE] = ACTIONS(5154), - [anon_sym_implicit] = ACTIONS(5152), - [anon_sym_explicit] = ACTIONS(5152), - [anon_sym_scoped] = ACTIONS(5152), - [anon_sym_var] = ACTIONS(5152), - [sym_predefined_type] = ACTIONS(5152), - [anon_sym_yield] = ACTIONS(5152), - [anon_sym_when] = ACTIONS(5152), - [anon_sym_from] = ACTIONS(5152), - [anon_sym_into] = ACTIONS(5152), - [anon_sym_join] = ACTIONS(5152), - [anon_sym_on] = ACTIONS(5152), - [anon_sym_equals] = ACTIONS(5152), - [anon_sym_let] = ACTIONS(5152), - [anon_sym_orderby] = ACTIONS(5152), - [anon_sym_ascending] = ACTIONS(5152), - [anon_sym_descending] = ACTIONS(5152), - [anon_sym_group] = ACTIONS(5152), - [anon_sym_by] = ACTIONS(5152), - [anon_sym_select] = ACTIONS(5152), - [sym_grit_metavariable] = ACTIONS(5154), - [aux_sym_preproc_if_token1] = ACTIONS(5154), - [aux_sym_preproc_if_token3] = ACTIONS(5154), - [aux_sym_preproc_else_token1] = ACTIONS(5154), - [aux_sym_preproc_elif_token1] = ACTIONS(5154), + [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), @@ -476843,27 +476728,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2921] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), + [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), @@ -476873,49 +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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -476928,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), @@ -476937,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(5156), - [anon_sym_extern] = ACTIONS(5156), - [anon_sym_alias] = ACTIONS(5156), - [anon_sym_global] = ACTIONS(5156), - [anon_sym_using] = ACTIONS(5156), - [anon_sym_unsafe] = ACTIONS(5156), - [anon_sym_static] = ACTIONS(5156), - [anon_sym_LBRACK] = ACTIONS(5158), - [anon_sym_LPAREN] = ACTIONS(5158), - [anon_sym_event] = ACTIONS(5156), - [anon_sym_namespace] = ACTIONS(5156), - [anon_sym_class] = ACTIONS(5156), - [anon_sym_ref] = ACTIONS(5156), - [anon_sym_struct] = ACTIONS(5156), - [anon_sym_enum] = ACTIONS(5156), - [anon_sym_RBRACE] = ACTIONS(5158), - [anon_sym_interface] = ACTIONS(5156), - [anon_sym_delegate] = ACTIONS(5156), - [anon_sym_record] = ACTIONS(5156), - [anon_sym_public] = ACTIONS(5156), - [anon_sym_private] = ACTIONS(5156), - [anon_sym_readonly] = ACTIONS(5156), - [anon_sym_abstract] = ACTIONS(5156), - [anon_sym_async] = ACTIONS(5156), - [anon_sym_const] = ACTIONS(5156), - [anon_sym_file] = ACTIONS(5156), - [anon_sym_fixed] = ACTIONS(5156), - [anon_sym_internal] = ACTIONS(5156), - [anon_sym_new] = ACTIONS(5156), - [anon_sym_override] = ACTIONS(5156), - [anon_sym_partial] = ACTIONS(5156), - [anon_sym_protected] = ACTIONS(5156), - [anon_sym_required] = ACTIONS(5156), - [anon_sym_sealed] = ACTIONS(5156), - [anon_sym_virtual] = ACTIONS(5156), - [anon_sym_volatile] = ACTIONS(5156), - [anon_sym_where] = ACTIONS(5156), - [anon_sym_notnull] = ACTIONS(5156), - [anon_sym_unmanaged] = ACTIONS(5156), - [anon_sym_TILDE] = ACTIONS(5158), - [anon_sym_implicit] = ACTIONS(5156), - [anon_sym_explicit] = ACTIONS(5156), - [anon_sym_scoped] = ACTIONS(5156), - [anon_sym_var] = ACTIONS(5156), - [sym_predefined_type] = ACTIONS(5156), - [anon_sym_yield] = ACTIONS(5156), - [anon_sym_when] = ACTIONS(5156), - [anon_sym_from] = ACTIONS(5156), - [anon_sym_into] = ACTIONS(5156), - [anon_sym_join] = ACTIONS(5156), - [anon_sym_on] = ACTIONS(5156), - [anon_sym_equals] = ACTIONS(5156), - [anon_sym_let] = ACTIONS(5156), - [anon_sym_orderby] = ACTIONS(5156), - [anon_sym_ascending] = ACTIONS(5156), - [anon_sym_descending] = ACTIONS(5156), - [anon_sym_group] = ACTIONS(5156), - [anon_sym_by] = ACTIONS(5156), - [anon_sym_select] = ACTIONS(5156), - [sym_grit_metavariable] = ACTIONS(5158), - [aux_sym_preproc_if_token1] = ACTIONS(5158), - [aux_sym_preproc_if_token3] = ACTIONS(5158), - [aux_sym_preproc_else_token1] = ACTIONS(5158), - [aux_sym_preproc_elif_token1] = ACTIONS(5158), + [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), @@ -477022,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(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_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), @@ -477107,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(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), + [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), @@ -477183,10 +477064,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2925] = { - [sym__variable_designation] = STATE(4985), - [sym_parenthesized_variable_designation] = STATE(5014), - [sym_identifier] = STATE(5004), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2925), [sym_preproc_endregion] = STATE(2925), [sym_preproc_line] = STATE(2925), @@ -477196,66 +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(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(4236), - [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), + [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), @@ -477277,82 +477157,104 @@ 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(4340), - [anon_sym_alias] = ACTIONS(4340), - [anon_sym_global] = ACTIONS(4340), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_COLON] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4342), - [anon_sym_file] = ACTIONS(4340), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4340), - [anon_sym_QMARK] = ACTIONS(4340), - [anon_sym_notnull] = ACTIONS(4340), - [anon_sym_unmanaged] = ACTIONS(4340), - [anon_sym_BANG] = ACTIONS(4340), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4342), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4342), - [anon_sym_CARET] = ACTIONS(4342), - [anon_sym_PIPE] = ACTIONS(4340), - [anon_sym_AMP] = ACTIONS(4340), - [anon_sym_LT_LT] = ACTIONS(4342), - [anon_sym_GT_GT] = ACTIONS(4340), - [anon_sym_GT_GT_GT] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_scoped] = ACTIONS(4340), - [anon_sym_var] = ACTIONS(4340), - [anon_sym_yield] = ACTIONS(4340), - [anon_sym_switch] = ACTIONS(4340), - [anon_sym_when] = ACTIONS(4340), - [sym_discard] = ACTIONS(4340), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_and] = ACTIONS(4340), - [anon_sym_or] = ACTIONS(4340), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [sym_op_coalescing] = ACTIONS(4342), - [anon_sym_from] = ACTIONS(4340), - [anon_sym_into] = ACTIONS(4340), - [anon_sym_join] = ACTIONS(4340), - [anon_sym_on] = ACTIONS(4340), - [anon_sym_equals] = ACTIONS(4340), - [anon_sym_let] = ACTIONS(4340), - [anon_sym_orderby] = ACTIONS(4340), - [anon_sym_ascending] = ACTIONS(4340), - [anon_sym_descending] = ACTIONS(4340), - [anon_sym_group] = ACTIONS(4340), - [anon_sym_by] = ACTIONS(4340), - [anon_sym_select] = ACTIONS(4340), - [anon_sym_as] = ACTIONS(4340), - [anon_sym_is] = ACTIONS(4340), - [anon_sym_DASH_GT] = ACTIONS(4342), - [anon_sym_with] = ACTIONS(4340), - [sym_grit_metavariable] = ACTIONS(4342), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4342), + [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_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_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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [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), @@ -477362,70 +477264,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2927), [sym_preproc_define] = STATE(2927), [sym_preproc_undef] = STATE(2927), - [sym__identifier_token] = ACTIONS(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), + [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), @@ -477447,103 +477325,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2928), [sym_preproc_define] = STATE(2928), [sym_preproc_undef] = STATE(2928), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2929), [sym_preproc_endregion] = STATE(2929), [sym_preproc_line] = STATE(2929), @@ -477553,49 +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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_QMARK] = ACTIONS(4952), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4956), - [anon_sym_from] = ACTIONS(4772), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_join] = ACTIONS(4772), - [anon_sym_let] = ACTIONS(4772), - [anon_sym_orderby] = ACTIONS(4772), - [anon_sym_group] = ACTIONS(4772), - [anon_sym_select] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -477608,27 +477484,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2930] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2930), [sym_preproc_endregion] = STATE(2930), [sym_preproc_line] = STATE(2930), @@ -477638,49 +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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4764), - [anon_sym_QMARK] = ACTIONS(4952), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4956), - [anon_sym_from] = ACTIONS(4764), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_join] = ACTIONS(4764), - [anon_sym_let] = ACTIONS(4764), - [anon_sym_orderby] = ACTIONS(4764), - [anon_sym_group] = ACTIONS(4764), - [anon_sym_select] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -477693,27 +477568,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2931] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2931), [sym_preproc_endregion] = STATE(2931), [sym_preproc_line] = STATE(2931), @@ -477723,82 +477577,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2931), [sym_preproc_define] = STATE(2931), [sym_preproc_undef] = STATE(2931), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [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_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2932), [sym_preproc_endregion] = STATE(2932), [sym_preproc_line] = STATE(2932), @@ -477808,49 +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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_where] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_from] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_join] = ACTIONS(4768), - [anon_sym_let] = ACTIONS(4768), - [anon_sym_orderby] = ACTIONS(4768), - [anon_sym_group] = ACTIONS(4768), - [anon_sym_select] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -477872,69 +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(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), + [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), @@ -477945,7 +477818,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(4312), }, [2934] = { [sym_preproc_region] = STATE(2934), @@ -477957,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(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_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), @@ -478042,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), - [anon_sym_SEMI] = ACTIONS(4526), - [anon_sym_EQ] = ACTIONS(4528), - [anon_sym_LBRACK] = ACTIONS(4526), - [anon_sym_COLON] = ACTIONS(4530), - [anon_sym_COMMA] = ACTIONS(4526), - [anon_sym_RBRACK] = ACTIONS(4526), - [anon_sym_LPAREN] = ACTIONS(4526), - [anon_sym_RPAREN] = ACTIONS(4526), - [anon_sym_RBRACE] = ACTIONS(4526), - [anon_sym_LT] = ACTIONS(4532), - [anon_sym_GT] = ACTIONS(4532), - [anon_sym_in] = ACTIONS(4532), - [anon_sym_QMARK] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4526), - [anon_sym_DASH_DASH] = ACTIONS(4526), - [anon_sym_PLUS] = ACTIONS(4532), - [anon_sym_DASH] = ACTIONS(4532), - [anon_sym_STAR] = ACTIONS(4532), - [anon_sym_SLASH] = ACTIONS(4532), - [anon_sym_PERCENT] = ACTIONS(4532), - [anon_sym_CARET] = ACTIONS(4532), - [anon_sym_PIPE] = ACTIONS(4532), - [anon_sym_AMP] = ACTIONS(4532), - [anon_sym_LT_LT] = ACTIONS(4532), - [anon_sym_GT_GT] = ACTIONS(4532), - [anon_sym_GT_GT_GT] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4526), - [anon_sym_BANG_EQ] = ACTIONS(4526), - [anon_sym_GT_EQ] = ACTIONS(4526), - [anon_sym_LT_EQ] = ACTIONS(4526), - [anon_sym_DOT] = ACTIONS(4532), - [anon_sym_EQ_GT] = ACTIONS(4526), - [anon_sym_switch] = ACTIONS(4526), - [anon_sym_when] = ACTIONS(4526), - [anon_sym_DOT_DOT] = ACTIONS(4526), - [anon_sym_and] = ACTIONS(4526), - [anon_sym_or] = ACTIONS(4526), - [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_AMP_AMP] = ACTIONS(4526), - [anon_sym_PIPE_PIPE] = ACTIONS(4526), - [sym_op_coalescing] = ACTIONS(4532), - [anon_sym_into] = ACTIONS(4526), - [anon_sym_on] = ACTIONS(4526), - [anon_sym_equals] = ACTIONS(4526), - [anon_sym_by] = ACTIONS(4526), - [anon_sym_as] = ACTIONS(4526), - [anon_sym_is] = ACTIONS(4526), - [anon_sym_DASH_GT] = ACTIONS(4526), - [anon_sym_with] = ACTIONS(4526), - [aux_sym_preproc_if_token3] = ACTIONS(4526), - [aux_sym_preproc_else_token1] = ACTIONS(4526), - [aux_sym_preproc_elif_token1] = ACTIONS(4526), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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(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), @@ -478127,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(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_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), @@ -478203,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), @@ -478212,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(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), + [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), @@ -478288,27 +478156,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2938] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), [sym_preproc_region] = STATE(2938), [sym_preproc_endregion] = STATE(2938), [sym_preproc_line] = STATE(2938), @@ -478318,49 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4742), - [anon_sym_QMARK] = ACTIONS(4952), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4956), - [anon_sym_from] = ACTIONS(4742), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_join] = ACTIONS(4742), - [anon_sym_let] = ACTIONS(4742), - [anon_sym_orderby] = ACTIONS(4742), - [anon_sym_group] = ACTIONS(4742), - [anon_sym_select] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -478382,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(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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_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), @@ -478467,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(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), + [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), @@ -478543,10 +478408,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2941] = { - [sym__variable_designation] = STATE(5493), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym_identifier] = STATE(5517), - [sym__reserved_identifier] = STATE(3393), [sym_preproc_region] = STATE(2941), [sym_preproc_endregion] = STATE(2941), [sym_preproc_line] = STATE(2941), @@ -478556,66 +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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4302), - [anon_sym_where] = ACTIONS(4302), - [anon_sym_QMARK] = ACTIONS(4302), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_PLUS_PLUS] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4302), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4302), - [anon_sym_LT_LT] = ACTIONS(4300), - [anon_sym_GT_GT] = ACTIONS(4302), - [anon_sym_GT_GT_GT] = ACTIONS(4300), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_GT_EQ] = ACTIONS(4300), - [anon_sym_LT_EQ] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_scoped] = ACTIONS(4151), - [anon_sym_var] = ACTIONS(4151), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_switch] = ACTIONS(4302), - [anon_sym_when] = ACTIONS(4151), - [sym_discard] = ACTIONS(4568), - [anon_sym_DOT_DOT] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4302), - [anon_sym_or] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4300), - [sym_op_coalescing] = ACTIONS(4300), - [anon_sym_from] = ACTIONS(4302), - [anon_sym_into] = ACTIONS(4302), - [anon_sym_join] = ACTIONS(4302), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4302), - [anon_sym_orderby] = ACTIONS(4302), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4302), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4302), - [anon_sym_as] = ACTIONS(4302), - [anon_sym_is] = ACTIONS(4302), - [anon_sym_DASH_GT] = ACTIONS(4300), - [anon_sym_with] = ACTIONS(4302), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -478637,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(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(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), @@ -478713,10 +478576,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2943] = { - [sym__variable_designation] = STATE(5503), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym_identifier] = STATE(5517), - [sym__reserved_identifier] = STATE(3393), [sym_preproc_region] = STATE(2943), [sym_preproc_endregion] = STATE(2943), [sym_preproc_line] = STATE(2943), @@ -478726,78 +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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(4296), - [anon_sym_LPAREN] = ACTIONS(4296), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_LT] = ACTIONS(4298), - [anon_sym_GT] = ACTIONS(4298), - [anon_sym_where] = ACTIONS(4298), - [anon_sym_QMARK] = ACTIONS(4298), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_BANG] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_SLASH] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4298), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4298), - [anon_sym_GT_GT_GT] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4296), - [anon_sym_BANG_EQ] = ACTIONS(4296), - [anon_sym_GT_EQ] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4296), - [anon_sym_DOT] = ACTIONS(4298), - [anon_sym_scoped] = ACTIONS(4151), - [anon_sym_var] = ACTIONS(4151), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_switch] = ACTIONS(4298), - [anon_sym_when] = ACTIONS(4151), - [sym_discard] = ACTIONS(4568), - [anon_sym_DOT_DOT] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4298), - [anon_sym_or] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4296), - [sym_op_coalescing] = ACTIONS(4296), - [anon_sym_from] = ACTIONS(4298), - [anon_sym_into] = ACTIONS(4298), - [anon_sym_join] = ACTIONS(4298), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4298), - [anon_sym_orderby] = ACTIONS(4298), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4298), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4298), - [anon_sym_as] = ACTIONS(4298), - [anon_sym_is] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4296), - [anon_sym_with] = ACTIONS(4298), - [sym_grit_metavariable] = ACTIONS(4158), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [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), @@ -478807,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(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), + [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), @@ -478883,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), @@ -478892,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(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), + [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), @@ -478968,10 +478826,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2946] = { - [sym__variable_designation] = STATE(5509), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym_identifier] = STATE(5517), - [sym__reserved_identifier] = STATE(3393), + [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), @@ -478981,66 +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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4248), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4151), - [anon_sym_var] = ACTIONS(4151), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4151), - [sym_discard] = ACTIONS(4568), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4248), - [anon_sym_into] = ACTIONS(4248), - [anon_sym_join] = ACTIONS(4248), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4248), - [anon_sym_orderby] = ACTIONS(4248), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4248), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4248), - [anon_sym_as] = ACTIONS(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -479053,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), @@ -479062,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), - [anon_sym_SEMI] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(4528), - [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(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_in] = ACTIONS(4528), - [anon_sym_QMARK] = ACTIONS(4528), - [anon_sym_BANG] = ACTIONS(4528), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4528), - [anon_sym_CARET] = ACTIONS(4528), - [anon_sym_PIPE] = ACTIONS(4528), - [anon_sym_AMP] = ACTIONS(4528), - [anon_sym_LT_LT] = ACTIONS(4528), - [anon_sym_GT_GT] = ACTIONS(4528), - [anon_sym_GT_GT_GT] = ACTIONS(4528), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_EQ_GT] = ACTIONS(4530), - [anon_sym_switch] = ACTIONS(4530), - [anon_sym_when] = ACTIONS(4530), - [anon_sym_DOT_DOT] = 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_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [sym_op_coalescing] = ACTIONS(4528), - [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), + [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), @@ -479138,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), @@ -479147,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(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(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), @@ -479232,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(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), + [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), @@ -479308,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), @@ -479317,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(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), + [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), @@ -479393,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), @@ -479402,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), - [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), + [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), @@ -479487,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), - [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), + [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), @@ -479563,10 +479407,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2953] = { - [sym__variable_designation] = STATE(5522), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym_identifier] = STATE(5517), - [sym__reserved_identifier] = STATE(3393), + [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), @@ -479576,66 +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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(4250), - [anon_sym_LPAREN] = ACTIONS(4250), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_LT] = ACTIONS(4252), - [anon_sym_GT] = ACTIONS(4252), - [anon_sym_where] = ACTIONS(4252), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [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(4151), - [anon_sym_var] = ACTIONS(4151), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_switch] = ACTIONS(4252), - [anon_sym_when] = ACTIONS(4151), - [sym_discard] = ACTIONS(4568), - [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(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4252), - [anon_sym_orderby] = ACTIONS(4252), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4252), - [anon_sym_by] = ACTIONS(4151), - [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(4158), + [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), @@ -479648,10 +479490,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2954] = { - [sym__variable_designation] = STATE(5493), - [sym_parenthesized_variable_designation] = STATE(5506), - [sym_identifier] = STATE(5517), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -479661,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(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4302), - [anon_sym_where] = ACTIONS(4302), - [anon_sym_QMARK] = ACTIONS(4302), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_PLUS_PLUS] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4302), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4302), - [anon_sym_LT_LT] = ACTIONS(4300), - [anon_sym_GT_GT] = ACTIONS(4302), - [anon_sym_GT_GT_GT] = ACTIONS(4300), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_GT_EQ] = ACTIONS(4300), - [anon_sym_LT_EQ] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_scoped] = ACTIONS(4228), - [anon_sym_var] = ACTIONS(4228), - [anon_sym_yield] = ACTIONS(4228), - [anon_sym_switch] = ACTIONS(4302), - [anon_sym_when] = ACTIONS(4228), - [sym_discard] = ACTIONS(4568), - [anon_sym_DOT_DOT] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4302), - [anon_sym_or] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4300), - [sym_op_coalescing] = ACTIONS(4300), - [anon_sym_from] = ACTIONS(4302), - [anon_sym_into] = ACTIONS(4228), - [anon_sym_join] = ACTIONS(4302), - [anon_sym_on] = ACTIONS(4228), - [anon_sym_equals] = ACTIONS(4228), - [anon_sym_let] = ACTIONS(4302), - [anon_sym_orderby] = ACTIONS(4302), - [anon_sym_ascending] = ACTIONS(4228), - [anon_sym_descending] = ACTIONS(4228), - [anon_sym_group] = ACTIONS(4302), - [anon_sym_by] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4302), - [anon_sym_as] = ACTIONS(4302), - [anon_sym_is] = ACTIONS(4302), - [anon_sym_DASH_GT] = ACTIONS(4300), - [anon_sym_with] = ACTIONS(4302), - [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), @@ -479733,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), @@ -479742,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(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), + [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_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_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), @@ -479827,70 +479665,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2956), [sym_preproc_define] = STATE(2956), [sym_preproc_undef] = STATE(2956), - [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), + [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(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), + [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), @@ -479903,6 +479739,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -479912,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(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), + [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), @@ -479997,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(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), + [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), @@ -480082,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), - [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_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), + [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), @@ -480158,10 +479988,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2960] = { - [sym__variable_designation] = STATE(4861), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -480171,66 +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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4302), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4302), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_PLUS_PLUS] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4302), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4302), - [anon_sym_LT_LT] = ACTIONS(4300), - [anon_sym_GT_GT] = ACTIONS(4302), - [anon_sym_GT_GT_GT] = ACTIONS(4300), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_GT_EQ] = ACTIONS(4300), - [anon_sym_LT_EQ] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4302), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4302), - [anon_sym_or] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4300), - [sym_op_coalescing] = ACTIONS(4300), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4302), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4302), - [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(4302), - [anon_sym_is] = ACTIONS(4302), - [anon_sym_DASH_GT] = ACTIONS(4300), - [anon_sym_with] = ACTIONS(4302), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -480243,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), @@ -480252,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(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), + [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), @@ -480337,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(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), + [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), @@ -480413,10 +480237,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2963] = { - [sym__variable_designation] = STATE(4887), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -480426,66 +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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4296), - [anon_sym_LPAREN] = ACTIONS(4296), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4298), - [anon_sym_GT] = ACTIONS(4298), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4298), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_SLASH] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4298), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4298), - [anon_sym_GT_GT_GT] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4296), - [anon_sym_BANG_EQ] = ACTIONS(4296), - [anon_sym_GT_EQ] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4296), - [anon_sym_DOT] = ACTIONS(4298), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4298), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4298), - [anon_sym_or] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4296), - [sym_op_coalescing] = ACTIONS(4296), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4298), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4298), - [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(4298), - [anon_sym_is] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4296), - [anon_sym_with] = ACTIONS(4298), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -480498,10 +480320,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2964] = { - [sym__variable_designation] = STATE(4896), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -480511,66 +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), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4248), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4248), - [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(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -480583,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), @@ -480592,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(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), + [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), @@ -480668,6 +480486,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2966] = { + [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), @@ -480677,70 +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), - [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), + [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), @@ -480753,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), @@ -480762,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(4353), - [anon_sym_alias] = ACTIONS(4353), - [anon_sym_global] = ACTIONS(4353), - [anon_sym_LBRACK] = ACTIONS(4355), - [anon_sym_COLON] = ACTIONS(4355), - [anon_sym_COMMA] = ACTIONS(4355), - [anon_sym_LPAREN] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4355), - [anon_sym_file] = ACTIONS(4353), - [anon_sym_LT] = ACTIONS(4353), - [anon_sym_GT] = ACTIONS(4353), - [anon_sym_where] = ACTIONS(4353), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_notnull] = ACTIONS(4353), - [anon_sym_unmanaged] = ACTIONS(4353), - [anon_sym_BANG] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4355), - [anon_sym_DASH_DASH] = ACTIONS(4355), - [anon_sym_PLUS] = ACTIONS(4353), - [anon_sym_DASH] = ACTIONS(4353), - [anon_sym_STAR] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4353), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_CARET] = ACTIONS(4355), - [anon_sym_PIPE] = ACTIONS(4353), - [anon_sym_AMP] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4355), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_GT_GT_GT] = ACTIONS(4355), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_GT_EQ] = ACTIONS(4355), - [anon_sym_LT_EQ] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4353), - [anon_sym_scoped] = ACTIONS(4353), - [anon_sym_var] = ACTIONS(4353), - [anon_sym_yield] = ACTIONS(4353), - [anon_sym_switch] = ACTIONS(4353), - [anon_sym_when] = ACTIONS(4353), - [sym_discard] = ACTIONS(4353), - [anon_sym_DOT_DOT] = ACTIONS(4355), - [anon_sym_and] = ACTIONS(4353), - [anon_sym_or] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4355), - [sym_op_coalescing] = ACTIONS(4355), - [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_ascending] = ACTIONS(4353), - [anon_sym_descending] = 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(4355), - [anon_sym_with] = ACTIONS(4353), - [sym_grit_metavariable] = ACTIONS(4355), + [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), @@ -480835,30 +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(4355), }, [2968] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), + [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), @@ -480868,49 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4798), - [anon_sym_QMARK] = ACTIONS(5082), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4979), - [anon_sym_from] = ACTIONS(4798), - [anon_sym_join] = ACTIONS(4798), - [anon_sym_let] = ACTIONS(4798), - [anon_sym_orderby] = ACTIONS(4798), - [anon_sym_ascending] = ACTIONS(4798), - [anon_sym_descending] = ACTIONS(4798), - [anon_sym_group] = ACTIONS(4798), - [anon_sym_select] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -480923,6 +480735,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2969] = { + [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), @@ -480932,70 +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), - [sym__identifier_token] = ACTIONS(4503), - [anon_sym_extern] = ACTIONS(4503), - [anon_sym_alias] = ACTIONS(4503), - [anon_sym_global] = ACTIONS(4503), - [anon_sym_using] = ACTIONS(4503), - [anon_sym_unsafe] = ACTIONS(4503), - [anon_sym_static] = ACTIONS(4503), - [anon_sym_LBRACK] = ACTIONS(4508), - [anon_sym_LPAREN] = ACTIONS(4508), - [anon_sym_event] = ACTIONS(4503), - [anon_sym_namespace] = ACTIONS(4503), - [anon_sym_class] = ACTIONS(4503), - [anon_sym_ref] = ACTIONS(4503), - [anon_sym_struct] = ACTIONS(4503), - [anon_sym_enum] = ACTIONS(4503), - [anon_sym_RBRACE] = ACTIONS(4508), - [anon_sym_interface] = ACTIONS(4503), - [anon_sym_delegate] = ACTIONS(4503), - [anon_sym_record] = ACTIONS(4503), - [anon_sym_public] = ACTIONS(4503), - [anon_sym_private] = ACTIONS(4503), - [anon_sym_readonly] = ACTIONS(4503), - [anon_sym_abstract] = ACTIONS(4503), - [anon_sym_async] = ACTIONS(4503), - [anon_sym_const] = ACTIONS(4503), - [anon_sym_file] = ACTIONS(4503), - [anon_sym_fixed] = ACTIONS(4503), - [anon_sym_internal] = ACTIONS(4503), - [anon_sym_new] = ACTIONS(4503), - [anon_sym_override] = ACTIONS(4503), - [anon_sym_partial] = ACTIONS(4503), - [anon_sym_protected] = ACTIONS(4503), - [anon_sym_required] = ACTIONS(4503), - [anon_sym_sealed] = ACTIONS(4503), - [anon_sym_virtual] = ACTIONS(4503), - [anon_sym_volatile] = ACTIONS(4503), - [anon_sym_where] = ACTIONS(4503), - [anon_sym_notnull] = ACTIONS(4503), - [anon_sym_unmanaged] = ACTIONS(4503), - [anon_sym_TILDE] = ACTIONS(4508), - [anon_sym_implicit] = ACTIONS(4503), - [anon_sym_explicit] = ACTIONS(4503), - [anon_sym_scoped] = ACTIONS(4503), - [anon_sym_var] = ACTIONS(4503), - [sym_predefined_type] = ACTIONS(4503), - [anon_sym_yield] = ACTIONS(4503), - [anon_sym_when] = ACTIONS(4503), - [anon_sym_from] = ACTIONS(4503), - [anon_sym_into] = ACTIONS(4503), - [anon_sym_join] = ACTIONS(4503), - [anon_sym_on] = ACTIONS(4503), - [anon_sym_equals] = ACTIONS(4503), - [anon_sym_let] = ACTIONS(4503), - [anon_sym_orderby] = ACTIONS(4503), - [anon_sym_ascending] = ACTIONS(4503), - [anon_sym_descending] = ACTIONS(4503), - [anon_sym_group] = ACTIONS(4503), - [anon_sym_by] = ACTIONS(4503), - [anon_sym_select] = ACTIONS(4503), - [sym_grit_metavariable] = ACTIONS(4508), - [aux_sym_preproc_if_token1] = ACTIONS(4508), - [aux_sym_preproc_if_token3] = ACTIONS(4508), - [aux_sym_preproc_else_token1] = ACTIONS(4508), - [aux_sym_preproc_elif_token1] = ACTIONS(4508), + [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), @@ -481017,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(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), + [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), @@ -481093,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), @@ -481102,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(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), + [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), @@ -481187,70 +480993,68 @@ 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(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(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), @@ -481263,6 +481067,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -481272,70 +481091,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2973), [sym_preproc_define] = STATE(2973), [sym_preproc_undef] = STATE(2973), - [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(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), @@ -481348,6 +481150,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -481357,70 +481174,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(2974), [sym_preproc_define] = STATE(2974), [sym_preproc_undef] = STATE(2974), - [sym__identifier_token] = ACTIONS(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), + [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), @@ -481433,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), @@ -481442,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), - [anon_sym_SEMI] = ACTIONS(4556), - [anon_sym_EQ] = ACTIONS(4558), - [anon_sym_LBRACK] = ACTIONS(4556), - [anon_sym_COLON] = ACTIONS(4556), - [anon_sym_COMMA] = ACTIONS(4556), - [anon_sym_RBRACK] = ACTIONS(4556), - [anon_sym_LPAREN] = ACTIONS(4556), - [anon_sym_RPAREN] = ACTIONS(4556), - [anon_sym_LBRACE] = ACTIONS(4556), - [anon_sym_RBRACE] = ACTIONS(4556), - [anon_sym_LT] = ACTIONS(4558), - [anon_sym_GT] = ACTIONS(4558), - [anon_sym_in] = ACTIONS(4556), - [anon_sym_QMARK] = ACTIONS(4558), - [anon_sym_BANG] = ACTIONS(4558), - [anon_sym_PLUS_PLUS] = ACTIONS(4556), - [anon_sym_DASH_DASH] = ACTIONS(4556), - [anon_sym_PLUS] = ACTIONS(4558), - [anon_sym_DASH] = ACTIONS(4558), - [anon_sym_STAR] = ACTIONS(4558), - [anon_sym_SLASH] = ACTIONS(4558), - [anon_sym_PERCENT] = ACTIONS(4558), - [anon_sym_CARET] = ACTIONS(4558), - [anon_sym_PIPE] = ACTIONS(4558), - [anon_sym_AMP] = ACTIONS(4558), - [anon_sym_LT_LT] = ACTIONS(4558), - [anon_sym_GT_GT] = ACTIONS(4558), - [anon_sym_GT_GT_GT] = ACTIONS(4558), - [anon_sym_EQ_EQ] = ACTIONS(4556), - [anon_sym_BANG_EQ] = ACTIONS(4556), - [anon_sym_GT_EQ] = ACTIONS(4556), - [anon_sym_LT_EQ] = ACTIONS(4556), - [anon_sym_DOT] = ACTIONS(4558), - [anon_sym_EQ_GT] = ACTIONS(4556), - [anon_sym_switch] = ACTIONS(4556), - [anon_sym_when] = ACTIONS(4556), - [anon_sym_DOT_DOT] = ACTIONS(4556), - [anon_sym_and] = ACTIONS(4556), - [anon_sym_or] = ACTIONS(4556), - [anon_sym_PLUS_EQ] = ACTIONS(4556), - [anon_sym_DASH_EQ] = ACTIONS(4556), - [anon_sym_STAR_EQ] = ACTIONS(4556), - [anon_sym_SLASH_EQ] = ACTIONS(4556), - [anon_sym_PERCENT_EQ] = ACTIONS(4556), - [anon_sym_AMP_EQ] = ACTIONS(4556), - [anon_sym_CARET_EQ] = ACTIONS(4556), - [anon_sym_PIPE_EQ] = ACTIONS(4556), - [anon_sym_LT_LT_EQ] = ACTIONS(4556), - [anon_sym_GT_GT_EQ] = ACTIONS(4556), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4556), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4556), - [anon_sym_AMP_AMP] = ACTIONS(4556), - [anon_sym_PIPE_PIPE] = ACTIONS(4556), - [sym_op_coalescing] = ACTIONS(4558), - [anon_sym_on] = ACTIONS(4556), - [anon_sym_equals] = ACTIONS(4556), - [anon_sym_by] = ACTIONS(4556), - [anon_sym_as] = ACTIONS(4556), - [anon_sym_is] = ACTIONS(4556), - [anon_sym_DASH_GT] = ACTIONS(4556), - [anon_sym_with] = ACTIONS(4556), - [aux_sym_preproc_if_token3] = ACTIONS(4556), - [aux_sym_preproc_else_token1] = ACTIONS(4556), - [aux_sym_preproc_elif_token1] = ACTIONS(4556), + [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), @@ -481518,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), @@ -481527,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(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_TILDE] = ACTIONS(3682), - [anon_sym_implicit] = ACTIONS(3680), - [anon_sym_explicit] = ACTIONS(3680), - [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), + [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), @@ -481612,69 +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(3972), - [anon_sym_alias] = ACTIONS(3972), - [anon_sym_global] = ACTIONS(3972), - [anon_sym_LBRACK] = ACTIONS(3974), - [anon_sym_COLON] = ACTIONS(3974), - [anon_sym_COMMA] = ACTIONS(3974), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_LBRACE] = ACTIONS(3974), - [anon_sym_file] = ACTIONS(3972), - [anon_sym_LT] = ACTIONS(3972), - [anon_sym_GT] = ACTIONS(3972), - [anon_sym_where] = ACTIONS(3972), - [anon_sym_QMARK] = ACTIONS(3972), - [anon_sym_notnull] = ACTIONS(3972), - [anon_sym_unmanaged] = ACTIONS(3972), - [anon_sym_BANG] = ACTIONS(3972), - [anon_sym_PLUS_PLUS] = ACTIONS(3974), - [anon_sym_DASH_DASH] = ACTIONS(3974), - [anon_sym_PLUS] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3972), - [anon_sym_STAR] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3972), - [anon_sym_PERCENT] = ACTIONS(3974), - [anon_sym_CARET] = ACTIONS(3974), - [anon_sym_PIPE] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3972), - [anon_sym_LT_LT] = ACTIONS(3974), - [anon_sym_GT_GT] = ACTIONS(3972), - [anon_sym_GT_GT_GT] = ACTIONS(3974), - [anon_sym_EQ_EQ] = ACTIONS(3974), - [anon_sym_BANG_EQ] = ACTIONS(3974), - [anon_sym_GT_EQ] = ACTIONS(3974), - [anon_sym_LT_EQ] = ACTIONS(3974), - [anon_sym_DOT] = ACTIONS(3972), - [anon_sym_scoped] = ACTIONS(3972), - [anon_sym_var] = ACTIONS(3972), - [anon_sym_yield] = ACTIONS(3972), - [anon_sym_switch] = ACTIONS(3972), - [anon_sym_when] = ACTIONS(3972), - [sym_discard] = ACTIONS(3972), - [anon_sym_DOT_DOT] = ACTIONS(3974), - [anon_sym_and] = ACTIONS(3972), - [anon_sym_or] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3974), - [anon_sym_PIPE_PIPE] = ACTIONS(3974), - [sym_op_coalescing] = ACTIONS(3974), - [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_ascending] = ACTIONS(3972), - [anon_sym_descending] = 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(3974), - [anon_sym_with] = ACTIONS(3972), - [sym_grit_metavariable] = ACTIONS(3974), + [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), @@ -481685,30 +481480,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(3974), }, [2978] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), + [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), @@ -481718,49 +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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4798), - [anon_sym_QMARK] = ACTIONS(4952), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(4934), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4800), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4956), - [anon_sym_from] = ACTIONS(4798), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_join] = ACTIONS(4798), - [anon_sym_let] = ACTIONS(4798), - [anon_sym_orderby] = ACTIONS(4798), - [anon_sym_group] = ACTIONS(4798), - [anon_sym_select] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(4960), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -481782,69 +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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(5037), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5272), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -481855,9 +481645,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(4318), }, [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), @@ -481867,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(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), + [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), @@ -481952,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(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), + [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), @@ -482028,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), @@ -482037,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(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), + [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(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), @@ -482113,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), @@ -482122,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(4320), - [anon_sym_alias] = ACTIONS(4320), - [anon_sym_global] = ACTIONS(4320), - [anon_sym_LBRACK] = ACTIONS(4322), - [anon_sym_COLON] = ACTIONS(4322), - [anon_sym_COMMA] = ACTIONS(4322), - [anon_sym_LPAREN] = ACTIONS(4322), - [anon_sym_LBRACE] = ACTIONS(4322), - [anon_sym_file] = ACTIONS(4320), - [anon_sym_LT] = ACTIONS(4320), - [anon_sym_GT] = ACTIONS(4320), - [anon_sym_where] = ACTIONS(4320), - [anon_sym_QMARK] = ACTIONS(4320), - [anon_sym_notnull] = ACTIONS(4320), - [anon_sym_unmanaged] = ACTIONS(4320), - [anon_sym_BANG] = ACTIONS(4320), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS] = ACTIONS(4320), - [anon_sym_DASH] = ACTIONS(4320), - [anon_sym_STAR] = ACTIONS(4322), - [anon_sym_SLASH] = ACTIONS(4320), - [anon_sym_PERCENT] = ACTIONS(4322), - [anon_sym_CARET] = ACTIONS(4322), - [anon_sym_PIPE] = ACTIONS(4320), - [anon_sym_AMP] = ACTIONS(4320), - [anon_sym_LT_LT] = ACTIONS(4322), - [anon_sym_GT_GT] = ACTIONS(4320), - [anon_sym_GT_GT_GT] = ACTIONS(4322), - [anon_sym_EQ_EQ] = ACTIONS(4322), - [anon_sym_BANG_EQ] = ACTIONS(4322), - [anon_sym_GT_EQ] = ACTIONS(4322), - [anon_sym_LT_EQ] = ACTIONS(4322), - [anon_sym_DOT] = ACTIONS(4320), - [anon_sym_scoped] = ACTIONS(4320), - [anon_sym_var] = ACTIONS(4320), - [anon_sym_yield] = ACTIONS(4320), - [anon_sym_switch] = ACTIONS(4320), - [anon_sym_when] = ACTIONS(4320), - [sym_discard] = ACTIONS(4320), - [anon_sym_DOT_DOT] = ACTIONS(4322), - [anon_sym_and] = ACTIONS(4320), - [anon_sym_or] = ACTIONS(4320), - [anon_sym_AMP_AMP] = ACTIONS(4322), - [anon_sym_PIPE_PIPE] = ACTIONS(4322), - [sym_op_coalescing] = ACTIONS(4322), - [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(4320), - [anon_sym_is] = ACTIONS(4320), - [anon_sym_DASH_GT] = ACTIONS(4322), - [anon_sym_with] = ACTIONS(4320), - [sym_grit_metavariable] = ACTIONS(4322), + [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), @@ -482195,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(4322), }, [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), @@ -482207,69 +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(3976), - [anon_sym_alias] = ACTIONS(3976), - [anon_sym_global] = ACTIONS(3976), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_COLON] = ACTIONS(3978), - [anon_sym_COMMA] = ACTIONS(3978), - [anon_sym_LPAREN] = ACTIONS(3978), - [anon_sym_LBRACE] = ACTIONS(3978), - [anon_sym_file] = ACTIONS(3976), - [anon_sym_LT] = ACTIONS(3976), - [anon_sym_GT] = ACTIONS(3976), - [anon_sym_where] = ACTIONS(3976), - [anon_sym_QMARK] = ACTIONS(3976), - [anon_sym_notnull] = ACTIONS(3976), - [anon_sym_unmanaged] = ACTIONS(3976), - [anon_sym_BANG] = ACTIONS(3976), - [anon_sym_PLUS_PLUS] = ACTIONS(3978), - [anon_sym_DASH_DASH] = ACTIONS(3978), - [anon_sym_PLUS] = ACTIONS(3976), - [anon_sym_DASH] = ACTIONS(3976), - [anon_sym_STAR] = ACTIONS(3978), - [anon_sym_SLASH] = ACTIONS(3976), - [anon_sym_PERCENT] = ACTIONS(3978), - [anon_sym_CARET] = ACTIONS(3978), - [anon_sym_PIPE] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), - [anon_sym_LT_LT] = ACTIONS(3978), - [anon_sym_GT_GT] = ACTIONS(3976), - [anon_sym_GT_GT_GT] = ACTIONS(3978), - [anon_sym_EQ_EQ] = ACTIONS(3978), - [anon_sym_BANG_EQ] = ACTIONS(3978), - [anon_sym_GT_EQ] = ACTIONS(3978), - [anon_sym_LT_EQ] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3976), - [anon_sym_scoped] = ACTIONS(3976), - [anon_sym_var] = ACTIONS(3976), - [anon_sym_yield] = ACTIONS(3976), - [anon_sym_switch] = ACTIONS(3976), - [anon_sym_when] = ACTIONS(3976), - [sym_discard] = ACTIONS(3976), - [anon_sym_DOT_DOT] = ACTIONS(3978), - [anon_sym_and] = ACTIONS(3976), - [anon_sym_or] = ACTIONS(3976), - [anon_sym_AMP_AMP] = ACTIONS(3978), - [anon_sym_PIPE_PIPE] = ACTIONS(3978), - [sym_op_coalescing] = ACTIONS(3978), - [anon_sym_from] = ACTIONS(3976), - [anon_sym_into] = ACTIONS(3976), - [anon_sym_join] = ACTIONS(3976), - [anon_sym_on] = ACTIONS(3976), - [anon_sym_equals] = ACTIONS(3976), - [anon_sym_let] = ACTIONS(3976), - [anon_sym_orderby] = ACTIONS(3976), - [anon_sym_ascending] = ACTIONS(3976), - [anon_sym_descending] = ACTIONS(3976), - [anon_sym_group] = ACTIONS(3976), - [anon_sym_by] = ACTIONS(3976), - [anon_sym_select] = ACTIONS(3976), - [anon_sym_as] = ACTIONS(3976), - [anon_sym_is] = ACTIONS(3976), - [anon_sym_DASH_GT] = ACTIONS(3978), - [anon_sym_with] = ACTIONS(3976), - [sym_grit_metavariable] = ACTIONS(3978), + [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(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), @@ -482280,7 +482055,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(3978), }, [2985] = { [sym_preproc_region] = STATE(2985), @@ -482292,69 +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(3968), - [anon_sym_alias] = ACTIONS(3968), - [anon_sym_global] = ACTIONS(3968), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_COLON] = ACTIONS(3970), - [anon_sym_COMMA] = ACTIONS(3970), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_LBRACE] = ACTIONS(3970), - [anon_sym_file] = ACTIONS(3968), - [anon_sym_LT] = ACTIONS(3968), - [anon_sym_GT] = ACTIONS(3968), - [anon_sym_where] = ACTIONS(3968), - [anon_sym_QMARK] = ACTIONS(3968), - [anon_sym_notnull] = ACTIONS(3968), - [anon_sym_unmanaged] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(3968), - [anon_sym_PLUS_PLUS] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(3970), - [anon_sym_PLUS] = ACTIONS(3968), - [anon_sym_DASH] = ACTIONS(3968), - [anon_sym_STAR] = ACTIONS(3970), - [anon_sym_SLASH] = ACTIONS(3968), - [anon_sym_PERCENT] = ACTIONS(3970), - [anon_sym_CARET] = ACTIONS(3970), - [anon_sym_PIPE] = ACTIONS(3968), - [anon_sym_AMP] = ACTIONS(3968), - [anon_sym_LT_LT] = ACTIONS(3970), - [anon_sym_GT_GT] = ACTIONS(3968), - [anon_sym_GT_GT_GT] = ACTIONS(3970), - [anon_sym_EQ_EQ] = ACTIONS(3970), - [anon_sym_BANG_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_DOT] = ACTIONS(3968), - [anon_sym_scoped] = ACTIONS(3968), - [anon_sym_var] = ACTIONS(3968), - [anon_sym_yield] = ACTIONS(3968), - [anon_sym_switch] = ACTIONS(3968), - [anon_sym_when] = ACTIONS(3968), - [sym_discard] = ACTIONS(3968), - [anon_sym_DOT_DOT] = ACTIONS(3970), - [anon_sym_and] = ACTIONS(3968), - [anon_sym_or] = ACTIONS(3968), - [anon_sym_AMP_AMP] = ACTIONS(3970), - [anon_sym_PIPE_PIPE] = ACTIONS(3970), - [sym_op_coalescing] = ACTIONS(3970), - [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_ascending] = ACTIONS(3968), - [anon_sym_descending] = 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(3970), - [anon_sym_with] = ACTIONS(3968), - [sym_grit_metavariable] = ACTIONS(3970), + [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), @@ -482365,9 +482137,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(3970), }, [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), @@ -482377,82 +482163,71 @@ 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(4336), - [anon_sym_alias] = ACTIONS(4336), - [anon_sym_global] = ACTIONS(4336), - [anon_sym_LBRACK] = ACTIONS(4338), - [anon_sym_COLON] = ACTIONS(4338), - [anon_sym_COMMA] = ACTIONS(4338), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_LBRACE] = ACTIONS(4338), - [anon_sym_file] = ACTIONS(4336), - [anon_sym_LT] = ACTIONS(4336), - [anon_sym_GT] = ACTIONS(4336), - [anon_sym_where] = ACTIONS(4336), - [anon_sym_QMARK] = ACTIONS(4336), - [anon_sym_notnull] = ACTIONS(4336), - [anon_sym_unmanaged] = ACTIONS(4336), - [anon_sym_BANG] = ACTIONS(4336), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS] = ACTIONS(4336), - [anon_sym_DASH] = ACTIONS(4336), - [anon_sym_STAR] = ACTIONS(4338), - [anon_sym_SLASH] = ACTIONS(4336), - [anon_sym_PERCENT] = ACTIONS(4338), - [anon_sym_CARET] = ACTIONS(4338), - [anon_sym_PIPE] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym_LT_LT] = ACTIONS(4338), - [anon_sym_GT_GT] = ACTIONS(4336), - [anon_sym_GT_GT_GT] = ACTIONS(4338), - [anon_sym_EQ_EQ] = ACTIONS(4338), - [anon_sym_BANG_EQ] = ACTIONS(4338), - [anon_sym_GT_EQ] = ACTIONS(4338), - [anon_sym_LT_EQ] = ACTIONS(4338), - [anon_sym_DOT] = ACTIONS(4336), - [anon_sym_scoped] = ACTIONS(4336), - [anon_sym_var] = ACTIONS(4336), - [anon_sym_yield] = ACTIONS(4336), - [anon_sym_switch] = ACTIONS(4336), - [anon_sym_when] = ACTIONS(4336), - [sym_discard] = ACTIONS(4336), - [anon_sym_DOT_DOT] = ACTIONS(4338), - [anon_sym_and] = ACTIONS(4336), - [anon_sym_or] = ACTIONS(4336), - [anon_sym_AMP_AMP] = ACTIONS(4338), - [anon_sym_PIPE_PIPE] = ACTIONS(4338), - [sym_op_coalescing] = ACTIONS(4338), - [anon_sym_from] = ACTIONS(4336), - [anon_sym_into] = ACTIONS(4336), - [anon_sym_join] = ACTIONS(4336), - [anon_sym_on] = ACTIONS(4336), - [anon_sym_equals] = ACTIONS(4336), - [anon_sym_let] = ACTIONS(4336), - [anon_sym_orderby] = ACTIONS(4336), - [anon_sym_ascending] = ACTIONS(4336), - [anon_sym_descending] = ACTIONS(4336), - [anon_sym_group] = ACTIONS(4336), - [anon_sym_by] = ACTIONS(4336), - [anon_sym_select] = ACTIONS(4336), - [anon_sym_as] = ACTIONS(4336), - [anon_sym_is] = ACTIONS(4336), - [anon_sym_DASH_GT] = ACTIONS(4338), - [anon_sym_with] = ACTIONS(4336), - [sym_grit_metavariable] = ACTIONS(4338), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4338), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), @@ -482462,80 +482237,70 @@ 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(4414), - [anon_sym_alias] = ACTIONS(4414), - [anon_sym_global] = ACTIONS(4414), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_COLON] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_file] = ACTIONS(4414), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4414), - [anon_sym_QMARK] = ACTIONS(4414), - [anon_sym_notnull] = ACTIONS(4414), - [anon_sym_unmanaged] = ACTIONS(4414), - [anon_sym_BANG] = ACTIONS(4414), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4416), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4416), - [anon_sym_CARET] = ACTIONS(4416), - [anon_sym_PIPE] = ACTIONS(4414), - [anon_sym_AMP] = ACTIONS(4414), - [anon_sym_LT_LT] = ACTIONS(4416), - [anon_sym_GT_GT] = ACTIONS(4414), - [anon_sym_GT_GT_GT] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_scoped] = ACTIONS(4414), - [anon_sym_var] = ACTIONS(4414), - [anon_sym_yield] = ACTIONS(4414), - [anon_sym_switch] = ACTIONS(4414), - [anon_sym_when] = ACTIONS(4414), - [sym_discard] = ACTIONS(4414), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_and] = ACTIONS(4414), - [anon_sym_or] = ACTIONS(4414), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [sym_op_coalescing] = ACTIONS(4416), - [anon_sym_from] = ACTIONS(4414), - [anon_sym_into] = ACTIONS(4414), - [anon_sym_join] = ACTIONS(4414), - [anon_sym_on] = ACTIONS(4414), - [anon_sym_equals] = ACTIONS(4414), - [anon_sym_let] = ACTIONS(4414), - [anon_sym_orderby] = ACTIONS(4414), - [anon_sym_ascending] = ACTIONS(4414), - [anon_sym_descending] = ACTIONS(4414), - [anon_sym_group] = ACTIONS(4414), - [anon_sym_by] = ACTIONS(4414), - [anon_sym_select] = ACTIONS(4414), - [anon_sym_as] = ACTIONS(4414), - [anon_sym_is] = ACTIONS(4414), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4414), - [sym_grit_metavariable] = ACTIONS(4416), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4416), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2988] = { [sym_preproc_region] = STATE(2988), @@ -482547,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(5280), - [anon_sym_extern] = ACTIONS(5280), - [anon_sym_alias] = ACTIONS(5280), - [anon_sym_global] = ACTIONS(5280), - [anon_sym_using] = ACTIONS(5280), - [anon_sym_unsafe] = ACTIONS(5280), - [anon_sym_static] = ACTIONS(5280), - [anon_sym_LBRACK] = ACTIONS(5282), - [anon_sym_LPAREN] = ACTIONS(5282), - [anon_sym_event] = ACTIONS(5280), - [anon_sym_namespace] = ACTIONS(5280), - [anon_sym_class] = ACTIONS(5280), - [anon_sym_ref] = ACTIONS(5280), - [anon_sym_struct] = ACTIONS(5280), - [anon_sym_enum] = ACTIONS(5280), - [anon_sym_RBRACE] = ACTIONS(5282), - [anon_sym_interface] = ACTIONS(5280), - [anon_sym_delegate] = ACTIONS(5280), - [anon_sym_record] = ACTIONS(5280), - [anon_sym_public] = ACTIONS(5280), - [anon_sym_private] = ACTIONS(5280), - [anon_sym_readonly] = ACTIONS(5280), - [anon_sym_abstract] = ACTIONS(5280), - [anon_sym_async] = ACTIONS(5280), - [anon_sym_const] = ACTIONS(5280), - [anon_sym_file] = ACTIONS(5280), - [anon_sym_fixed] = ACTIONS(5280), - [anon_sym_internal] = ACTIONS(5280), - [anon_sym_new] = ACTIONS(5280), - [anon_sym_override] = ACTIONS(5280), - [anon_sym_partial] = ACTIONS(5280), - [anon_sym_protected] = ACTIONS(5280), - [anon_sym_required] = ACTIONS(5280), - [anon_sym_sealed] = ACTIONS(5280), - [anon_sym_virtual] = ACTIONS(5280), - [anon_sym_volatile] = ACTIONS(5280), - [anon_sym_where] = ACTIONS(5280), - [anon_sym_notnull] = ACTIONS(5280), - [anon_sym_unmanaged] = ACTIONS(5280), - [anon_sym_TILDE] = ACTIONS(5282), - [anon_sym_implicit] = ACTIONS(5280), - [anon_sym_explicit] = ACTIONS(5280), - [anon_sym_scoped] = ACTIONS(5280), - [anon_sym_var] = ACTIONS(5280), - [sym_predefined_type] = ACTIONS(5280), - [anon_sym_yield] = ACTIONS(5280), - [anon_sym_when] = ACTIONS(5280), - [anon_sym_from] = ACTIONS(5280), - [anon_sym_into] = ACTIONS(5280), - [anon_sym_join] = ACTIONS(5280), - [anon_sym_on] = ACTIONS(5280), - [anon_sym_equals] = ACTIONS(5280), - [anon_sym_let] = ACTIONS(5280), - [anon_sym_orderby] = ACTIONS(5280), - [anon_sym_ascending] = ACTIONS(5280), - [anon_sym_descending] = ACTIONS(5280), - [anon_sym_group] = ACTIONS(5280), - [anon_sym_by] = ACTIONS(5280), - [anon_sym_select] = ACTIONS(5280), - [sym_grit_metavariable] = ACTIONS(5282), - [aux_sym_preproc_if_token1] = ACTIONS(5282), - [aux_sym_preproc_if_token3] = ACTIONS(5282), - [aux_sym_preproc_else_token1] = ACTIONS(5282), - [aux_sym_preproc_elif_token1] = ACTIONS(5282), + [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), @@ -482623,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), @@ -482632,69 +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(4324), - [anon_sym_alias] = ACTIONS(4324), - [anon_sym_global] = ACTIONS(4324), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4326), - [anon_sym_file] = ACTIONS(4324), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_where] = ACTIONS(4324), - [anon_sym_QMARK] = ACTIONS(4324), - [anon_sym_notnull] = ACTIONS(4324), - [anon_sym_unmanaged] = ACTIONS(4324), - [anon_sym_BANG] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_CARET] = ACTIONS(4326), - [anon_sym_PIPE] = ACTIONS(4324), - [anon_sym_AMP] = ACTIONS(4324), - [anon_sym_LT_LT] = ACTIONS(4326), - [anon_sym_GT_GT] = ACTIONS(4324), - [anon_sym_GT_GT_GT] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_scoped] = ACTIONS(4324), - [anon_sym_var] = ACTIONS(4324), - [anon_sym_yield] = ACTIONS(4324), - [anon_sym_switch] = ACTIONS(4324), - [anon_sym_when] = ACTIONS(4324), - [sym_discard] = ACTIONS(4324), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_and] = ACTIONS(4324), - [anon_sym_or] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [sym_op_coalescing] = ACTIONS(4326), - [anon_sym_from] = ACTIONS(4324), - [anon_sym_into] = ACTIONS(4324), - [anon_sym_join] = ACTIONS(4324), - [anon_sym_on] = ACTIONS(4324), - [anon_sym_equals] = ACTIONS(4324), - [anon_sym_let] = ACTIONS(4324), - [anon_sym_orderby] = ACTIONS(4324), - [anon_sym_ascending] = ACTIONS(4324), - [anon_sym_descending] = ACTIONS(4324), - [anon_sym_group] = ACTIONS(4324), - [anon_sym_by] = ACTIONS(4324), - [anon_sym_select] = ACTIONS(4324), - [anon_sym_as] = ACTIONS(4324), - [anon_sym_is] = ACTIONS(4324), - [anon_sym_DASH_GT] = ACTIONS(4326), - [anon_sym_with] = ACTIONS(4324), - [sym_grit_metavariable] = ACTIONS(4326), + [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), @@ -482705,7 +482465,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(4326), }, [2990] = { [sym_preproc_region] = STATE(2990), @@ -482717,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(5284), - [anon_sym_extern] = ACTIONS(5284), - [anon_sym_alias] = ACTIONS(5284), - [anon_sym_global] = ACTIONS(5284), - [anon_sym_using] = ACTIONS(5284), - [anon_sym_unsafe] = ACTIONS(5284), - [anon_sym_static] = ACTIONS(5284), - [anon_sym_LBRACK] = ACTIONS(5286), - [anon_sym_LPAREN] = ACTIONS(5286), - [anon_sym_event] = ACTIONS(5284), - [anon_sym_namespace] = ACTIONS(5284), - [anon_sym_class] = ACTIONS(5284), - [anon_sym_ref] = ACTIONS(5284), - [anon_sym_struct] = ACTIONS(5284), - [anon_sym_enum] = ACTIONS(5284), - [anon_sym_RBRACE] = ACTIONS(5286), - [anon_sym_interface] = ACTIONS(5284), - [anon_sym_delegate] = ACTIONS(5284), - [anon_sym_record] = ACTIONS(5284), - [anon_sym_public] = ACTIONS(5284), - [anon_sym_private] = ACTIONS(5284), - [anon_sym_readonly] = ACTIONS(5284), - [anon_sym_abstract] = ACTIONS(5284), - [anon_sym_async] = ACTIONS(5284), - [anon_sym_const] = ACTIONS(5284), - [anon_sym_file] = ACTIONS(5284), - [anon_sym_fixed] = ACTIONS(5284), - [anon_sym_internal] = ACTIONS(5284), - [anon_sym_new] = ACTIONS(5284), - [anon_sym_override] = ACTIONS(5284), - [anon_sym_partial] = ACTIONS(5284), - [anon_sym_protected] = ACTIONS(5284), - [anon_sym_required] = ACTIONS(5284), - [anon_sym_sealed] = ACTIONS(5284), - [anon_sym_virtual] = ACTIONS(5284), - [anon_sym_volatile] = ACTIONS(5284), - [anon_sym_where] = ACTIONS(5284), - [anon_sym_notnull] = ACTIONS(5284), - [anon_sym_unmanaged] = ACTIONS(5284), - [anon_sym_TILDE] = ACTIONS(5286), - [anon_sym_implicit] = ACTIONS(5284), - [anon_sym_explicit] = ACTIONS(5284), - [anon_sym_scoped] = ACTIONS(5284), - [anon_sym_var] = ACTIONS(5284), - [sym_predefined_type] = ACTIONS(5284), - [anon_sym_yield] = ACTIONS(5284), - [anon_sym_when] = ACTIONS(5284), - [anon_sym_from] = ACTIONS(5284), - [anon_sym_into] = ACTIONS(5284), - [anon_sym_join] = ACTIONS(5284), - [anon_sym_on] = ACTIONS(5284), - [anon_sym_equals] = ACTIONS(5284), - [anon_sym_let] = ACTIONS(5284), - [anon_sym_orderby] = ACTIONS(5284), - [anon_sym_ascending] = ACTIONS(5284), - [anon_sym_descending] = ACTIONS(5284), - [anon_sym_group] = ACTIONS(5284), - [anon_sym_by] = ACTIONS(5284), - [anon_sym_select] = ACTIONS(5284), - [sym_grit_metavariable] = ACTIONS(5286), - [aux_sym_preproc_if_token1] = ACTIONS(5286), - [aux_sym_preproc_if_token3] = ACTIONS(5286), - [aux_sym_preproc_else_token1] = ACTIONS(5286), - [aux_sym_preproc_elif_token1] = ACTIONS(5286), + [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), @@ -482793,27 +482549,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2991] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), [sym_preproc_region] = STATE(2991), [sym_preproc_endregion] = STATE(2991), [sym_preproc_line] = STATE(2991), @@ -482823,49 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_where] = ACTIONS(4760), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_from] = 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(4762), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -482878,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), @@ -482887,80 +482655,62 @@ 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(3962), - [anon_sym_alias] = ACTIONS(3962), - [anon_sym_global] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_COLON] = ACTIONS(3964), - [anon_sym_COMMA] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_file] = ACTIONS(3962), - [anon_sym_LT] = ACTIONS(3962), - [anon_sym_GT] = ACTIONS(3962), - [anon_sym_where] = ACTIONS(3962), - [anon_sym_QMARK] = ACTIONS(3962), - [anon_sym_notnull] = ACTIONS(3962), - [anon_sym_unmanaged] = ACTIONS(3962), - [anon_sym_BANG] = ACTIONS(3962), - [anon_sym_PLUS_PLUS] = ACTIONS(3964), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_PLUS] = ACTIONS(3962), - [anon_sym_DASH] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3964), - [anon_sym_SLASH] = ACTIONS(3962), - [anon_sym_PERCENT] = ACTIONS(3964), - [anon_sym_CARET] = ACTIONS(3964), - [anon_sym_PIPE] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_LT_LT] = ACTIONS(3964), - [anon_sym_GT_GT] = ACTIONS(3962), - [anon_sym_GT_GT_GT] = ACTIONS(3964), - [anon_sym_EQ_EQ] = ACTIONS(3964), - [anon_sym_BANG_EQ] = ACTIONS(3964), - [anon_sym_GT_EQ] = ACTIONS(3964), - [anon_sym_LT_EQ] = ACTIONS(3964), - [anon_sym_DOT] = ACTIONS(3962), - [anon_sym_scoped] = ACTIONS(3962), - [anon_sym_var] = ACTIONS(3962), - [anon_sym_yield] = ACTIONS(3962), - [anon_sym_switch] = ACTIONS(3962), - [anon_sym_when] = ACTIONS(3962), - [sym_discard] = ACTIONS(3962), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_and] = ACTIONS(3962), - [anon_sym_or] = ACTIONS(3962), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [sym_op_coalescing] = ACTIONS(3964), - [anon_sym_from] = ACTIONS(3962), - [anon_sym_into] = ACTIONS(3962), - [anon_sym_join] = ACTIONS(3962), - [anon_sym_on] = ACTIONS(3962), - [anon_sym_equals] = ACTIONS(3962), - [anon_sym_let] = ACTIONS(3962), - [anon_sym_orderby] = ACTIONS(3962), - [anon_sym_ascending] = ACTIONS(3962), - [anon_sym_descending] = ACTIONS(3962), - [anon_sym_group] = ACTIONS(3962), - [anon_sym_by] = ACTIONS(3962), - [anon_sym_select] = ACTIONS(3962), - [anon_sym_as] = ACTIONS(3962), - [anon_sym_is] = ACTIONS(3962), - [anon_sym_DASH_GT] = ACTIONS(3964), - [anon_sym_with] = ACTIONS(3962), - [sym_grit_metavariable] = ACTIONS(3964), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3964), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [2993] = { [sym_preproc_region] = STATE(2993), @@ -482972,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(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(3700), - [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(3700), - [anon_sym_where] = ACTIONS(3735), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_notnull] = ACTIONS(3735), - [anon_sym_unmanaged] = ACTIONS(3735), - [anon_sym_operator] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_implicit] = ACTIONS(3738), - [anon_sym_explicit] = ACTIONS(3738), - [anon_sym_this] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_scoped] = ACTIONS(3735), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [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_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), @@ -483048,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), @@ -483057,70 +482819,52 @@ 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(5288), - [anon_sym_extern] = ACTIONS(5288), - [anon_sym_alias] = ACTIONS(5288), - [anon_sym_global] = ACTIONS(5288), - [anon_sym_using] = ACTIONS(5288), - [anon_sym_unsafe] = ACTIONS(5288), - [anon_sym_static] = ACTIONS(5288), - [anon_sym_LBRACK] = ACTIONS(5290), - [anon_sym_LPAREN] = ACTIONS(5290), - [anon_sym_event] = ACTIONS(5288), - [anon_sym_namespace] = ACTIONS(5288), - [anon_sym_class] = ACTIONS(5288), - [anon_sym_ref] = ACTIONS(5288), - [anon_sym_struct] = ACTIONS(5288), - [anon_sym_enum] = ACTIONS(5288), - [anon_sym_RBRACE] = ACTIONS(5290), - [anon_sym_interface] = ACTIONS(5288), - [anon_sym_delegate] = ACTIONS(5288), - [anon_sym_record] = ACTIONS(5288), - [anon_sym_public] = ACTIONS(5288), - [anon_sym_private] = ACTIONS(5288), - [anon_sym_readonly] = ACTIONS(5288), - [anon_sym_abstract] = ACTIONS(5288), - [anon_sym_async] = ACTIONS(5288), - [anon_sym_const] = ACTIONS(5288), - [anon_sym_file] = ACTIONS(5288), - [anon_sym_fixed] = ACTIONS(5288), - [anon_sym_internal] = ACTIONS(5288), - [anon_sym_new] = ACTIONS(5288), - [anon_sym_override] = ACTIONS(5288), - [anon_sym_partial] = ACTIONS(5288), - [anon_sym_protected] = ACTIONS(5288), - [anon_sym_required] = ACTIONS(5288), - [anon_sym_sealed] = ACTIONS(5288), - [anon_sym_virtual] = ACTIONS(5288), - [anon_sym_volatile] = ACTIONS(5288), - [anon_sym_where] = ACTIONS(5288), - [anon_sym_notnull] = ACTIONS(5288), - [anon_sym_unmanaged] = ACTIONS(5288), - [anon_sym_TILDE] = ACTIONS(5290), - [anon_sym_implicit] = ACTIONS(5288), - [anon_sym_explicit] = ACTIONS(5288), - [anon_sym_scoped] = ACTIONS(5288), - [anon_sym_var] = ACTIONS(5288), - [sym_predefined_type] = ACTIONS(5288), - [anon_sym_yield] = ACTIONS(5288), - [anon_sym_when] = ACTIONS(5288), - [anon_sym_from] = ACTIONS(5288), - [anon_sym_into] = ACTIONS(5288), - [anon_sym_join] = ACTIONS(5288), - [anon_sym_on] = ACTIONS(5288), - [anon_sym_equals] = ACTIONS(5288), - [anon_sym_let] = ACTIONS(5288), - [anon_sym_orderby] = ACTIONS(5288), - [anon_sym_ascending] = ACTIONS(5288), - [anon_sym_descending] = ACTIONS(5288), - [anon_sym_group] = ACTIONS(5288), - [anon_sym_by] = ACTIONS(5288), - [anon_sym_select] = ACTIONS(5288), - [sym_grit_metavariable] = ACTIONS(5290), - [aux_sym_preproc_if_token1] = ACTIONS(5290), - [aux_sym_preproc_if_token3] = ACTIONS(5290), - [aux_sym_preproc_else_token1] = ACTIONS(5290), - [aux_sym_preproc_elif_token1] = ACTIONS(5290), + [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), @@ -483133,6 +482877,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2995] = { + [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), @@ -483142,69 +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), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(5037), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -483215,7 +482957,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(4318), }, [2996] = { [sym_preproc_region] = STATE(2996), @@ -483227,70 +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), - [sym__identifier_token] = ACTIONS(5292), - [anon_sym_extern] = ACTIONS(5292), - [anon_sym_alias] = ACTIONS(5292), - [anon_sym_global] = ACTIONS(5292), - [anon_sym_using] = ACTIONS(5292), - [anon_sym_unsafe] = ACTIONS(5292), - [anon_sym_static] = ACTIONS(5292), - [anon_sym_LBRACK] = ACTIONS(5294), - [anon_sym_LPAREN] = ACTIONS(5294), - [anon_sym_event] = ACTIONS(5292), - [anon_sym_namespace] = ACTIONS(5292), - [anon_sym_class] = ACTIONS(5292), - [anon_sym_ref] = ACTIONS(5292), - [anon_sym_struct] = ACTIONS(5292), - [anon_sym_enum] = ACTIONS(5292), - [anon_sym_RBRACE] = ACTIONS(5294), - [anon_sym_interface] = ACTIONS(5292), - [anon_sym_delegate] = ACTIONS(5292), - [anon_sym_record] = ACTIONS(5292), - [anon_sym_public] = ACTIONS(5292), - [anon_sym_private] = ACTIONS(5292), - [anon_sym_readonly] = ACTIONS(5292), - [anon_sym_abstract] = ACTIONS(5292), - [anon_sym_async] = ACTIONS(5292), - [anon_sym_const] = ACTIONS(5292), - [anon_sym_file] = ACTIONS(5292), - [anon_sym_fixed] = ACTIONS(5292), - [anon_sym_internal] = ACTIONS(5292), - [anon_sym_new] = ACTIONS(5292), - [anon_sym_override] = ACTIONS(5292), - [anon_sym_partial] = ACTIONS(5292), - [anon_sym_protected] = ACTIONS(5292), - [anon_sym_required] = ACTIONS(5292), - [anon_sym_sealed] = ACTIONS(5292), - [anon_sym_virtual] = ACTIONS(5292), - [anon_sym_volatile] = ACTIONS(5292), - [anon_sym_where] = ACTIONS(5292), - [anon_sym_notnull] = ACTIONS(5292), - [anon_sym_unmanaged] = ACTIONS(5292), - [anon_sym_TILDE] = ACTIONS(5294), - [anon_sym_implicit] = ACTIONS(5292), - [anon_sym_explicit] = ACTIONS(5292), - [anon_sym_scoped] = ACTIONS(5292), - [anon_sym_var] = ACTIONS(5292), - [sym_predefined_type] = ACTIONS(5292), - [anon_sym_yield] = ACTIONS(5292), - [anon_sym_when] = ACTIONS(5292), - [anon_sym_from] = ACTIONS(5292), - [anon_sym_into] = ACTIONS(5292), - [anon_sym_join] = ACTIONS(5292), - [anon_sym_on] = ACTIONS(5292), - [anon_sym_equals] = ACTIONS(5292), - [anon_sym_let] = ACTIONS(5292), - [anon_sym_orderby] = ACTIONS(5292), - [anon_sym_ascending] = ACTIONS(5292), - [anon_sym_descending] = ACTIONS(5292), - [anon_sym_group] = ACTIONS(5292), - [anon_sym_by] = ACTIONS(5292), - [anon_sym_select] = ACTIONS(5292), - [sym_grit_metavariable] = ACTIONS(5294), - [aux_sym_preproc_if_token1] = ACTIONS(5294), - [aux_sym_preproc_if_token3] = ACTIONS(5294), - [aux_sym_preproc_else_token1] = ACTIONS(5294), - [aux_sym_preproc_elif_token1] = ACTIONS(5294), + [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), @@ -483303,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), @@ -483312,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(5296), - [anon_sym_extern] = ACTIONS(5296), - [anon_sym_alias] = ACTIONS(5296), - [anon_sym_global] = ACTIONS(5296), - [anon_sym_using] = ACTIONS(5296), - [anon_sym_unsafe] = ACTIONS(5296), - [anon_sym_static] = ACTIONS(5296), - [anon_sym_LBRACK] = ACTIONS(5298), - [anon_sym_LPAREN] = ACTIONS(5298), - [anon_sym_event] = ACTIONS(5296), - [anon_sym_namespace] = ACTIONS(5296), - [anon_sym_class] = ACTIONS(5296), - [anon_sym_ref] = ACTIONS(5296), - [anon_sym_struct] = ACTIONS(5296), - [anon_sym_enum] = ACTIONS(5296), - [anon_sym_RBRACE] = ACTIONS(5298), - [anon_sym_interface] = ACTIONS(5296), - [anon_sym_delegate] = ACTIONS(5296), - [anon_sym_record] = ACTIONS(5296), - [anon_sym_public] = ACTIONS(5296), - [anon_sym_private] = ACTIONS(5296), - [anon_sym_readonly] = ACTIONS(5296), - [anon_sym_abstract] = ACTIONS(5296), - [anon_sym_async] = ACTIONS(5296), - [anon_sym_const] = ACTIONS(5296), - [anon_sym_file] = ACTIONS(5296), - [anon_sym_fixed] = ACTIONS(5296), - [anon_sym_internal] = ACTIONS(5296), - [anon_sym_new] = ACTIONS(5296), - [anon_sym_override] = ACTIONS(5296), - [anon_sym_partial] = ACTIONS(5296), - [anon_sym_protected] = ACTIONS(5296), - [anon_sym_required] = ACTIONS(5296), - [anon_sym_sealed] = ACTIONS(5296), - [anon_sym_virtual] = ACTIONS(5296), - [anon_sym_volatile] = ACTIONS(5296), - [anon_sym_where] = ACTIONS(5296), - [anon_sym_notnull] = ACTIONS(5296), - [anon_sym_unmanaged] = ACTIONS(5296), - [anon_sym_TILDE] = ACTIONS(5298), - [anon_sym_implicit] = ACTIONS(5296), - [anon_sym_explicit] = ACTIONS(5296), - [anon_sym_scoped] = ACTIONS(5296), - [anon_sym_var] = ACTIONS(5296), - [sym_predefined_type] = ACTIONS(5296), - [anon_sym_yield] = ACTIONS(5296), - [anon_sym_when] = ACTIONS(5296), - [anon_sym_from] = ACTIONS(5296), - [anon_sym_into] = ACTIONS(5296), - [anon_sym_join] = ACTIONS(5296), - [anon_sym_on] = ACTIONS(5296), - [anon_sym_equals] = 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_by] = ACTIONS(5296), - [anon_sym_select] = ACTIONS(5296), - [sym_grit_metavariable] = ACTIONS(5298), - [aux_sym_preproc_if_token1] = ACTIONS(5298), - [aux_sym_preproc_if_token3] = ACTIONS(5298), - [aux_sym_preproc_else_token1] = ACTIONS(5298), - [aux_sym_preproc_elif_token1] = ACTIONS(5298), + [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), @@ -483388,10 +483123,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [2998] = { - [sym__variable_designation] = STATE(4911), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(2998), [sym_preproc_endregion] = STATE(2998), [sym_preproc_line] = STATE(2998), @@ -483401,66 +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), - [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(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), @@ -483482,69 +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(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), + [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), @@ -483555,9 +483285,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), }, [3000] = { + [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), @@ -483567,70 +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), - [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_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), @@ -483652,70 +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), - [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(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), @@ -483737,70 +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), - [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_TILDE] = ACTIONS(3666), - [anon_sym_implicit] = ACTIONS(3664), - [anon_sym_explicit] = ACTIONS(3664), - [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), + [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), @@ -483822,70 +483542,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3003), [sym_preproc_define] = STATE(3003), [sym_preproc_undef] = STATE(3003), - [sym__identifier_token] = ACTIONS(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(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(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), + [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), @@ -483898,6 +483615,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -483907,69 +483639,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3004), [sym_preproc_define] = STATE(3004), [sym_preproc_undef] = STATE(3004), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(5037), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5300), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -483980,7 +483695,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(4318), }, [3005] = { [sym_preproc_region] = STATE(3005), @@ -483992,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), @@ -484065,7 +483777,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(3997), }, [3006] = { [sym_preproc_region] = STATE(3006), @@ -484077,69 +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), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(5037), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -484150,9 +483859,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(4318), }, [3007] = { + [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), @@ -484162,70 +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), - [sym__identifier_token] = ACTIONS(5304), - [anon_sym_extern] = ACTIONS(5304), - [anon_sym_alias] = ACTIONS(5304), - [anon_sym_global] = ACTIONS(5304), - [anon_sym_using] = ACTIONS(5304), - [anon_sym_unsafe] = ACTIONS(5304), - [anon_sym_static] = ACTIONS(5304), - [anon_sym_LBRACK] = ACTIONS(5306), - [anon_sym_LPAREN] = ACTIONS(5306), - [anon_sym_event] = ACTIONS(5304), - [anon_sym_namespace] = ACTIONS(5304), - [anon_sym_class] = ACTIONS(5304), - [anon_sym_ref] = ACTIONS(5304), - [anon_sym_struct] = ACTIONS(5304), - [anon_sym_enum] = ACTIONS(5304), - [anon_sym_RBRACE] = ACTIONS(5306), - [anon_sym_interface] = ACTIONS(5304), - [anon_sym_delegate] = ACTIONS(5304), - [anon_sym_record] = ACTIONS(5304), - [anon_sym_public] = ACTIONS(5304), - [anon_sym_private] = ACTIONS(5304), - [anon_sym_readonly] = ACTIONS(5304), - [anon_sym_abstract] = ACTIONS(5304), - [anon_sym_async] = ACTIONS(5304), - [anon_sym_const] = ACTIONS(5304), - [anon_sym_file] = ACTIONS(5304), - [anon_sym_fixed] = ACTIONS(5304), - [anon_sym_internal] = ACTIONS(5304), - [anon_sym_new] = ACTIONS(5304), - [anon_sym_override] = ACTIONS(5304), - [anon_sym_partial] = ACTIONS(5304), - [anon_sym_protected] = ACTIONS(5304), - [anon_sym_required] = ACTIONS(5304), - [anon_sym_sealed] = ACTIONS(5304), - [anon_sym_virtual] = ACTIONS(5304), - [anon_sym_volatile] = ACTIONS(5304), - [anon_sym_where] = ACTIONS(5304), - [anon_sym_notnull] = ACTIONS(5304), - [anon_sym_unmanaged] = ACTIONS(5304), - [anon_sym_TILDE] = ACTIONS(5306), - [anon_sym_implicit] = ACTIONS(5304), - [anon_sym_explicit] = ACTIONS(5304), - [anon_sym_scoped] = ACTIONS(5304), - [anon_sym_var] = ACTIONS(5304), - [sym_predefined_type] = ACTIONS(5304), - [anon_sym_yield] = ACTIONS(5304), - [anon_sym_when] = ACTIONS(5304), - [anon_sym_from] = ACTIONS(5304), - [anon_sym_into] = ACTIONS(5304), - [anon_sym_join] = ACTIONS(5304), - [anon_sym_on] = ACTIONS(5304), - [anon_sym_equals] = 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_by] = ACTIONS(5304), - [anon_sym_select] = ACTIONS(5304), - [sym_grit_metavariable] = ACTIONS(5306), - [aux_sym_preproc_if_token1] = ACTIONS(5306), - [aux_sym_preproc_if_token3] = ACTIONS(5306), - [aux_sym_preproc_else_token1] = ACTIONS(5306), - [aux_sym_preproc_elif_token1] = ACTIONS(5306), + [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), @@ -484247,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(5308), - [anon_sym_extern] = ACTIONS(5308), - [anon_sym_alias] = ACTIONS(5308), - [anon_sym_global] = ACTIONS(5308), - [anon_sym_using] = ACTIONS(5308), - [anon_sym_unsafe] = ACTIONS(5308), - [anon_sym_static] = ACTIONS(5308), - [anon_sym_LBRACK] = ACTIONS(5310), - [anon_sym_LPAREN] = ACTIONS(5310), - [anon_sym_event] = ACTIONS(5308), - [anon_sym_namespace] = ACTIONS(5308), - [anon_sym_class] = ACTIONS(5308), - [anon_sym_ref] = ACTIONS(5308), - [anon_sym_struct] = ACTIONS(5308), - [anon_sym_enum] = ACTIONS(5308), - [anon_sym_RBRACE] = ACTIONS(5310), - [anon_sym_interface] = ACTIONS(5308), - [anon_sym_delegate] = ACTIONS(5308), - [anon_sym_record] = ACTIONS(5308), - [anon_sym_public] = ACTIONS(5308), - [anon_sym_private] = ACTIONS(5308), - [anon_sym_readonly] = ACTIONS(5308), - [anon_sym_abstract] = ACTIONS(5308), - [anon_sym_async] = ACTIONS(5308), - [anon_sym_const] = ACTIONS(5308), - [anon_sym_file] = ACTIONS(5308), - [anon_sym_fixed] = ACTIONS(5308), - [anon_sym_internal] = ACTIONS(5308), - [anon_sym_new] = ACTIONS(5308), - [anon_sym_override] = ACTIONS(5308), - [anon_sym_partial] = ACTIONS(5308), - [anon_sym_protected] = ACTIONS(5308), - [anon_sym_required] = ACTIONS(5308), - [anon_sym_sealed] = ACTIONS(5308), - [anon_sym_virtual] = ACTIONS(5308), - [anon_sym_volatile] = ACTIONS(5308), - [anon_sym_where] = ACTIONS(5308), - [anon_sym_notnull] = ACTIONS(5308), - [anon_sym_unmanaged] = ACTIONS(5308), - [anon_sym_TILDE] = ACTIONS(5310), - [anon_sym_implicit] = ACTIONS(5308), - [anon_sym_explicit] = ACTIONS(5308), - [anon_sym_scoped] = ACTIONS(5308), - [anon_sym_var] = ACTIONS(5308), - [sym_predefined_type] = ACTIONS(5308), - [anon_sym_yield] = ACTIONS(5308), - [anon_sym_when] = ACTIONS(5308), - [anon_sym_from] = ACTIONS(5308), - [anon_sym_into] = ACTIONS(5308), - [anon_sym_join] = ACTIONS(5308), - [anon_sym_on] = ACTIONS(5308), - [anon_sym_equals] = 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_by] = ACTIONS(5308), - [anon_sym_select] = ACTIONS(5308), - [sym_grit_metavariable] = ACTIONS(5310), - [aux_sym_preproc_if_token1] = ACTIONS(5310), - [aux_sym_preproc_if_token3] = ACTIONS(5310), - [aux_sym_preproc_else_token1] = ACTIONS(5310), - [aux_sym_preproc_elif_token1] = ACTIONS(5310), + [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), @@ -484323,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), @@ -484332,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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(5037), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -484405,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(4318), }, [3010] = { [sym_preproc_region] = STATE(3010), @@ -484417,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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4316), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -484490,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(4318), }, [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), @@ -484502,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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(5037), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -484575,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(4318), }, [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), @@ -484587,69 +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(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(5312), - [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(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), @@ -484660,7 +484351,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(4363), }, [3013] = { [sym_preproc_region] = STATE(3013), @@ -484672,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(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_TILDE] = ACTIONS(3590), - [anon_sym_implicit] = ACTIONS(3588), - [anon_sym_explicit] = ACTIONS(3588), - [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), + [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), @@ -484757,70 +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), - [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), + [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), @@ -484833,6 +484517,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3015] = { + [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), @@ -484842,70 +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), - [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), + [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), @@ -484927,69 +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(4448), - [anon_sym_alias] = ACTIONS(4448), - [anon_sym_global] = ACTIONS(4448), - [anon_sym_LBRACK] = ACTIONS(4450), - [anon_sym_COLON] = ACTIONS(4450), - [anon_sym_COMMA] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_LBRACE] = ACTIONS(4450), - [anon_sym_file] = ACTIONS(4448), - [anon_sym_LT] = ACTIONS(4448), - [anon_sym_GT] = ACTIONS(4448), - [anon_sym_where] = ACTIONS(4448), - [anon_sym_QMARK] = ACTIONS(4448), - [anon_sym_notnull] = ACTIONS(4448), - [anon_sym_unmanaged] = ACTIONS(4448), - [anon_sym_BANG] = ACTIONS(4448), - [anon_sym_PLUS_PLUS] = ACTIONS(4450), - [anon_sym_DASH_DASH] = ACTIONS(4450), - [anon_sym_PLUS] = ACTIONS(4448), - [anon_sym_DASH] = ACTIONS(4448), - [anon_sym_STAR] = ACTIONS(4450), - [anon_sym_SLASH] = ACTIONS(4448), - [anon_sym_PERCENT] = ACTIONS(4450), - [anon_sym_CARET] = ACTIONS(4450), - [anon_sym_PIPE] = ACTIONS(4448), - [anon_sym_AMP] = ACTIONS(4448), - [anon_sym_LT_LT] = ACTIONS(4450), - [anon_sym_GT_GT] = ACTIONS(4448), - [anon_sym_GT_GT_GT] = ACTIONS(4450), - [anon_sym_EQ_EQ] = ACTIONS(4450), - [anon_sym_BANG_EQ] = ACTIONS(4450), - [anon_sym_GT_EQ] = ACTIONS(4450), - [anon_sym_LT_EQ] = ACTIONS(4450), - [anon_sym_DOT] = ACTIONS(4448), - [anon_sym_scoped] = ACTIONS(4448), - [anon_sym_var] = ACTIONS(4448), - [anon_sym_yield] = ACTIONS(4448), - [anon_sym_switch] = ACTIONS(4448), - [anon_sym_when] = ACTIONS(4448), - [sym_discard] = ACTIONS(4448), - [anon_sym_DOT_DOT] = ACTIONS(4450), - [anon_sym_and] = ACTIONS(4448), - [anon_sym_or] = ACTIONS(4448), - [anon_sym_AMP_AMP] = ACTIONS(4450), - [anon_sym_PIPE_PIPE] = ACTIONS(4450), - [sym_op_coalescing] = ACTIONS(4450), - [anon_sym_from] = ACTIONS(4448), - [anon_sym_into] = ACTIONS(4448), - [anon_sym_join] = ACTIONS(4448), - [anon_sym_on] = ACTIONS(4448), - [anon_sym_equals] = ACTIONS(4448), - [anon_sym_let] = ACTIONS(4448), - [anon_sym_orderby] = ACTIONS(4448), - [anon_sym_ascending] = ACTIONS(4448), - [anon_sym_descending] = ACTIONS(4448), - [anon_sym_group] = ACTIONS(4448), - [anon_sym_by] = ACTIONS(4448), - [anon_sym_select] = ACTIONS(4448), - [anon_sym_as] = ACTIONS(4448), - [anon_sym_is] = ACTIONS(4448), - [anon_sym_DASH_GT] = ACTIONS(4450), - [anon_sym_with] = ACTIONS(4448), - [sym_grit_metavariable] = ACTIONS(4450), + [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), @@ -485000,7 +484679,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(4450), }, [3017] = { [sym_preproc_region] = STATE(3017), @@ -485012,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(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(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), @@ -485097,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(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_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), @@ -485182,82 +484854,94 @@ 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(4462), - [anon_sym_alias] = ACTIONS(4462), - [anon_sym_global] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(4464), - [anon_sym_COLON] = ACTIONS(4464), - [anon_sym_COMMA] = ACTIONS(4464), - [anon_sym_LPAREN] = ACTIONS(4464), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_file] = ACTIONS(4462), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_where] = ACTIONS(4462), - [anon_sym_QMARK] = ACTIONS(4462), - [anon_sym_notnull] = ACTIONS(4462), - [anon_sym_unmanaged] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PLUS_PLUS] = ACTIONS(4464), - [anon_sym_DASH_DASH] = ACTIONS(4464), - [anon_sym_PLUS] = ACTIONS(4462), - [anon_sym_DASH] = ACTIONS(4462), - [anon_sym_STAR] = ACTIONS(4464), - [anon_sym_SLASH] = ACTIONS(4462), - [anon_sym_PERCENT] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4464), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_AMP] = ACTIONS(4462), - [anon_sym_LT_LT] = ACTIONS(4464), - [anon_sym_GT_GT] = ACTIONS(4462), - [anon_sym_GT_GT_GT] = ACTIONS(4464), - [anon_sym_EQ_EQ] = ACTIONS(4464), - [anon_sym_BANG_EQ] = ACTIONS(4464), - [anon_sym_GT_EQ] = ACTIONS(4464), - [anon_sym_LT_EQ] = ACTIONS(4464), - [anon_sym_DOT] = ACTIONS(4462), - [anon_sym_scoped] = ACTIONS(4462), - [anon_sym_var] = ACTIONS(4462), - [anon_sym_yield] = ACTIONS(4462), - [anon_sym_switch] = ACTIONS(4462), - [anon_sym_when] = ACTIONS(4462), - [sym_discard] = ACTIONS(4462), - [anon_sym_DOT_DOT] = ACTIONS(4464), - [anon_sym_and] = ACTIONS(4462), - [anon_sym_or] = ACTIONS(4462), - [anon_sym_AMP_AMP] = ACTIONS(4464), - [anon_sym_PIPE_PIPE] = ACTIONS(4464), - [sym_op_coalescing] = ACTIONS(4464), - [anon_sym_from] = ACTIONS(4462), - [anon_sym_into] = ACTIONS(4462), - [anon_sym_join] = ACTIONS(4462), - [anon_sym_on] = ACTIONS(4462), - [anon_sym_equals] = ACTIONS(4462), - [anon_sym_let] = ACTIONS(4462), - [anon_sym_orderby] = ACTIONS(4462), - [anon_sym_ascending] = ACTIONS(4462), - [anon_sym_descending] = ACTIONS(4462), - [anon_sym_group] = ACTIONS(4462), - [anon_sym_by] = ACTIONS(4462), - [anon_sym_select] = ACTIONS(4462), - [anon_sym_as] = ACTIONS(4462), - [anon_sym_is] = ACTIONS(4462), - [anon_sym_DASH_GT] = ACTIONS(4464), - [anon_sym_with] = ACTIONS(4462), - [sym_grit_metavariable] = ACTIONS(4464), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4464), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), @@ -485265,72 +484949,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_nullable] = STATE(3020), [sym_preproc_error] = STATE(3020), [sym_preproc_warning] = STATE(3020), - [sym_preproc_define] = STATE(3020), - [sym_preproc_undef] = STATE(3020), - [anon_sym_SEMI] = ACTIONS(4556), - [anon_sym_EQ] = ACTIONS(4558), - [anon_sym_LBRACK] = ACTIONS(4556), - [anon_sym_COLON] = ACTIONS(4556), - [anon_sym_COMMA] = ACTIONS(4556), - [anon_sym_RBRACK] = ACTIONS(4556), - [anon_sym_LPAREN] = ACTIONS(4556), - [anon_sym_RPAREN] = ACTIONS(4556), - [anon_sym_RBRACE] = ACTIONS(4556), - [anon_sym_LT] = ACTIONS(4558), - [anon_sym_GT] = ACTIONS(4558), - [anon_sym_in] = ACTIONS(4558), - [anon_sym_QMARK] = ACTIONS(4558), - [anon_sym_BANG] = ACTIONS(4558), - [anon_sym_PLUS_PLUS] = ACTIONS(4556), - [anon_sym_DASH_DASH] = ACTIONS(4556), - [anon_sym_PLUS] = ACTIONS(4558), - [anon_sym_DASH] = ACTIONS(4558), - [anon_sym_STAR] = ACTIONS(4558), - [anon_sym_SLASH] = ACTIONS(4558), - [anon_sym_PERCENT] = ACTIONS(4558), - [anon_sym_CARET] = ACTIONS(4558), - [anon_sym_PIPE] = ACTIONS(4558), - [anon_sym_AMP] = ACTIONS(4558), - [anon_sym_LT_LT] = ACTIONS(4558), - [anon_sym_GT_GT] = ACTIONS(4558), - [anon_sym_GT_GT_GT] = ACTIONS(4558), - [anon_sym_EQ_EQ] = ACTIONS(4556), - [anon_sym_BANG_EQ] = ACTIONS(4556), - [anon_sym_GT_EQ] = ACTIONS(4556), - [anon_sym_LT_EQ] = ACTIONS(4556), - [anon_sym_DOT] = ACTIONS(4558), - [anon_sym_EQ_GT] = ACTIONS(4556), - [anon_sym_switch] = ACTIONS(4556), - [anon_sym_when] = ACTIONS(4556), - [anon_sym_DOT_DOT] = ACTIONS(4556), - [anon_sym_and] = ACTIONS(4556), - [anon_sym_or] = ACTIONS(4556), - [anon_sym_PLUS_EQ] = ACTIONS(4556), - [anon_sym_DASH_EQ] = ACTIONS(4556), - [anon_sym_STAR_EQ] = ACTIONS(4556), - [anon_sym_SLASH_EQ] = ACTIONS(4556), - [anon_sym_PERCENT_EQ] = ACTIONS(4556), - [anon_sym_AMP_EQ] = ACTIONS(4556), - [anon_sym_CARET_EQ] = ACTIONS(4556), - [anon_sym_PIPE_EQ] = ACTIONS(4556), - [anon_sym_LT_LT_EQ] = ACTIONS(4556), - [anon_sym_GT_GT_EQ] = ACTIONS(4556), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4556), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4556), - [anon_sym_AMP_AMP] = ACTIONS(4556), - [anon_sym_PIPE_PIPE] = ACTIONS(4556), - [sym_op_coalescing] = ACTIONS(4558), - [anon_sym_into] = ACTIONS(4556), - [anon_sym_on] = ACTIONS(4556), - [anon_sym_equals] = ACTIONS(4556), - [anon_sym_by] = ACTIONS(4556), - [anon_sym_as] = ACTIONS(4556), - [anon_sym_is] = ACTIONS(4556), - [anon_sym_DASH_GT] = ACTIONS(4556), - [anon_sym_with] = ACTIONS(4556), - [aux_sym_preproc_if_token3] = ACTIONS(4556), - [aux_sym_preproc_else_token1] = ACTIONS(4556), - [aux_sym_preproc_elif_token1] = ACTIONS(4556), + [sym_preproc_define] = STATE(3020), + [sym_preproc_undef] = STATE(3020), + [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), @@ -485343,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), @@ -485352,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(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), + [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), @@ -485428,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), @@ -485437,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(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(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), @@ -485522,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(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), + [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), @@ -485598,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), @@ -485607,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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(5037), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5312), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -485680,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(4318), }, [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), @@ -485692,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(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), + [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), @@ -485768,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), @@ -485777,82 +485443,79 @@ 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(4014), - [anon_sym_alias] = ACTIONS(4014), - [anon_sym_global] = ACTIONS(4014), - [anon_sym_LBRACK] = ACTIONS(4021), - [anon_sym_COLON] = ACTIONS(4021), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4021), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_file] = ACTIONS(4014), - [anon_sym_LT] = ACTIONS(4014), - [anon_sym_GT] = ACTIONS(4014), - [anon_sym_where] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4014), - [anon_sym_notnull] = ACTIONS(4014), - [anon_sym_unmanaged] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4014), - [anon_sym_PLUS_PLUS] = ACTIONS(4021), - [anon_sym_DASH_DASH] = ACTIONS(4021), - [anon_sym_PLUS] = ACTIONS(4014), - [anon_sym_DASH] = ACTIONS(4014), - [anon_sym_STAR] = ACTIONS(4021), - [anon_sym_SLASH] = ACTIONS(4014), - [anon_sym_PERCENT] = ACTIONS(4021), - [anon_sym_CARET] = ACTIONS(4021), - [anon_sym_PIPE] = ACTIONS(4014), - [anon_sym_AMP] = ACTIONS(4014), - [anon_sym_LT_LT] = ACTIONS(4021), - [anon_sym_GT_GT] = ACTIONS(4014), - [anon_sym_GT_GT_GT] = ACTIONS(4021), - [anon_sym_EQ_EQ] = ACTIONS(4021), - [anon_sym_BANG_EQ] = ACTIONS(4021), - [anon_sym_GT_EQ] = ACTIONS(4021), - [anon_sym_LT_EQ] = ACTIONS(4021), - [anon_sym_DOT] = ACTIONS(4014), - [anon_sym_scoped] = ACTIONS(4014), - [anon_sym_var] = ACTIONS(4014), - [anon_sym_yield] = ACTIONS(4014), - [anon_sym_switch] = ACTIONS(4014), - [anon_sym_when] = ACTIONS(4014), - [sym_discard] = ACTIONS(4014), - [anon_sym_DOT_DOT] = ACTIONS(4021), - [anon_sym_and] = ACTIONS(4014), - [anon_sym_or] = ACTIONS(4014), - [anon_sym_AMP_AMP] = ACTIONS(4021), - [anon_sym_PIPE_PIPE] = ACTIONS(4021), - [sym_op_coalescing] = ACTIONS(4021), - [anon_sym_from] = ACTIONS(4014), - [anon_sym_into] = ACTIONS(4014), - [anon_sym_join] = ACTIONS(4014), - [anon_sym_on] = ACTIONS(4014), - [anon_sym_equals] = ACTIONS(4014), - [anon_sym_let] = ACTIONS(4014), - [anon_sym_orderby] = ACTIONS(4014), - [anon_sym_ascending] = ACTIONS(4014), - [anon_sym_descending] = ACTIONS(4014), - [anon_sym_group] = ACTIONS(4014), - [anon_sym_by] = ACTIONS(4014), - [anon_sym_select] = ACTIONS(4014), - [anon_sym_as] = ACTIONS(4014), - [anon_sym_is] = ACTIONS(4014), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(4014), - [sym_grit_metavariable] = ACTIONS(4021), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4021), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), @@ -485862,70 +485525,52 @@ 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(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_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), @@ -485938,6 +485583,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -485947,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(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), + [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), @@ -486023,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), @@ -486032,69 +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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4318), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4316), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -486105,7 +485745,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(4318), }, [3030] = { [sym_preproc_region] = STATE(3030), @@ -486117,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(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_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), @@ -486193,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), @@ -486202,69 +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(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_BANG] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3982), - [anon_sym_DASH_DASH] = ACTIONS(3982), - [anon_sym_PLUS] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3982), - [anon_sym_SLASH] = ACTIONS(3980), - [anon_sym_PERCENT] = ACTIONS(3982), - [anon_sym_CARET] = ACTIONS(3982), - [anon_sym_PIPE] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3980), - [anon_sym_LT_LT] = ACTIONS(3982), - [anon_sym_GT_GT] = ACTIONS(3980), - [anon_sym_GT_GT_GT] = ACTIONS(3982), - [anon_sym_EQ_EQ] = ACTIONS(3982), - [anon_sym_BANG_EQ] = ACTIONS(3982), - [anon_sym_GT_EQ] = ACTIONS(3982), - [anon_sym_LT_EQ] = ACTIONS(3982), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_scoped] = ACTIONS(3980), - [anon_sym_var] = 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_and] = ACTIONS(3980), - [anon_sym_or] = ACTIONS(3980), - [anon_sym_AMP_AMP] = ACTIONS(3982), - [anon_sym_PIPE_PIPE] = ACTIONS(3982), - [sym_op_coalescing] = 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), + [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), @@ -486275,9 +485907,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(3982), }, [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), @@ -486287,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), @@ -486363,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), @@ -486372,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), @@ -486448,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), @@ -486457,69 +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(4458), - [anon_sym_alias] = ACTIONS(4458), - [anon_sym_global] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_COLON] = ACTIONS(4460), - [anon_sym_COMMA] = ACTIONS(4460), - [anon_sym_LPAREN] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4460), - [anon_sym_file] = ACTIONS(4458), - [anon_sym_LT] = ACTIONS(4458), - [anon_sym_GT] = ACTIONS(4458), - [anon_sym_where] = ACTIONS(4458), - [anon_sym_QMARK] = ACTIONS(4458), - [anon_sym_notnull] = ACTIONS(4458), - [anon_sym_unmanaged] = ACTIONS(4458), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_PLUS_PLUS] = ACTIONS(4460), - [anon_sym_DASH_DASH] = ACTIONS(4460), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4458), - [anon_sym_PERCENT] = ACTIONS(4460), - [anon_sym_CARET] = ACTIONS(4460), - [anon_sym_PIPE] = ACTIONS(4458), - [anon_sym_AMP] = ACTIONS(4458), - [anon_sym_LT_LT] = ACTIONS(4460), - [anon_sym_GT_GT] = ACTIONS(4458), - [anon_sym_GT_GT_GT] = ACTIONS(4460), - [anon_sym_EQ_EQ] = ACTIONS(4460), - [anon_sym_BANG_EQ] = ACTIONS(4460), - [anon_sym_GT_EQ] = ACTIONS(4460), - [anon_sym_LT_EQ] = ACTIONS(4460), - [anon_sym_DOT] = ACTIONS(4458), - [anon_sym_scoped] = ACTIONS(4458), - [anon_sym_var] = ACTIONS(4458), - [anon_sym_yield] = ACTIONS(4458), - [anon_sym_switch] = ACTIONS(4458), - [anon_sym_when] = ACTIONS(4458), - [sym_discard] = ACTIONS(4458), - [anon_sym_DOT_DOT] = ACTIONS(4460), - [anon_sym_and] = ACTIONS(4458), - [anon_sym_or] = ACTIONS(4458), - [anon_sym_AMP_AMP] = ACTIONS(4460), - [anon_sym_PIPE_PIPE] = ACTIONS(4460), - [sym_op_coalescing] = ACTIONS(4460), - [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_ascending] = ACTIONS(4458), - [anon_sym_descending] = 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(4460), - [anon_sym_with] = ACTIONS(4458), - [sym_grit_metavariable] = ACTIONS(4460), + [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), @@ -486530,30 +486150,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(4460), }, [3035] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1612), - [sym_op_lte] = STATE(1612), - [sym_op_eq] = STATE(1611), - [sym_op_neq] = STATE(1611), - [sym_op_gt] = STATE(1612), - [sym_op_gte] = STATE(1612), - [sym_op_and] = STATE(1610), - [sym_op_or] = STATE(1609), - [sym_op_bitwise_and] = STATE(1608), - [sym_op_bitwise_or] = STATE(1607), - [sym_op_bitwise_xor] = STATE(1606), - [sym_op_left_shift] = STATE(1605), - [sym_op_right_shift] = STATE(1605), - [sym_op_unsigned_right_shift] = STATE(1605), - [sym_op_plus] = STATE(1603), - [sym_op_minus] = STATE(1603), - [sym_op_multiply] = STATE(1601), - [sym_op_divide] = STATE(1601), - [sym_op_modulo] = STATE(1601), + [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), @@ -486563,49 +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), - [anon_sym_LBRACK] = ACTIONS(4684), - [anon_sym_COMMA] = ACTIONS(5358), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(5358), - [anon_sym_QMARK] = ACTIONS(5082), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(4730), - [anon_sym_DOT_DOT] = ACTIONS(4946), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4979), - [anon_sym_from] = ACTIONS(5358), - [anon_sym_join] = ACTIONS(5358), - [anon_sym_let] = ACTIONS(5358), - [anon_sym_orderby] = ACTIONS(5358), - [anon_sym_ascending] = ACTIONS(5360), - [anon_sym_descending] = ACTIONS(5360), - [anon_sym_group] = ACTIONS(5358), - [anon_sym_select] = ACTIONS(5358), - [anon_sym_as] = ACTIONS(4807), - [anon_sym_is] = ACTIONS(4981), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4740), + [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), @@ -486618,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), @@ -486627,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(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), + [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), @@ -486703,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), @@ -486712,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(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), + [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), @@ -486788,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), @@ -486797,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(4418), - [anon_sym_alias] = ACTIONS(4418), - [anon_sym_global] = ACTIONS(4418), - [anon_sym_LBRACK] = ACTIONS(4420), - [anon_sym_COLON] = ACTIONS(4420), - [anon_sym_COMMA] = ACTIONS(4420), - [anon_sym_LPAREN] = ACTIONS(4420), - [anon_sym_LBRACE] = ACTIONS(4420), - [anon_sym_file] = ACTIONS(4418), - [anon_sym_LT] = ACTIONS(4418), - [anon_sym_GT] = ACTIONS(4418), - [anon_sym_where] = ACTIONS(4418), - [anon_sym_QMARK] = ACTIONS(4418), - [anon_sym_notnull] = ACTIONS(4418), - [anon_sym_unmanaged] = ACTIONS(4418), - [anon_sym_BANG] = ACTIONS(4418), - [anon_sym_PLUS_PLUS] = ACTIONS(4420), - [anon_sym_DASH_DASH] = ACTIONS(4420), - [anon_sym_PLUS] = ACTIONS(4418), - [anon_sym_DASH] = ACTIONS(4418), - [anon_sym_STAR] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4418), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_CARET] = ACTIONS(4420), - [anon_sym_PIPE] = ACTIONS(4418), - [anon_sym_AMP] = ACTIONS(4418), - [anon_sym_LT_LT] = ACTIONS(4420), - [anon_sym_GT_GT] = ACTIONS(4418), - [anon_sym_GT_GT_GT] = ACTIONS(4420), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_GT_EQ] = ACTIONS(4420), - [anon_sym_LT_EQ] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4418), - [anon_sym_scoped] = ACTIONS(4418), - [anon_sym_var] = ACTIONS(4418), - [anon_sym_yield] = ACTIONS(4418), - [anon_sym_switch] = ACTIONS(4418), - [anon_sym_when] = ACTIONS(4418), - [sym_discard] = ACTIONS(4418), - [anon_sym_DOT_DOT] = ACTIONS(4420), - [anon_sym_and] = ACTIONS(4418), - [anon_sym_or] = ACTIONS(4418), - [anon_sym_AMP_AMP] = ACTIONS(4420), - [anon_sym_PIPE_PIPE] = ACTIONS(4420), - [sym_op_coalescing] = ACTIONS(4420), - [anon_sym_from] = ACTIONS(4418), - [anon_sym_into] = ACTIONS(4418), - [anon_sym_join] = ACTIONS(4418), - [anon_sym_on] = ACTIONS(4418), - [anon_sym_equals] = ACTIONS(4418), - [anon_sym_let] = ACTIONS(4418), - [anon_sym_orderby] = ACTIONS(4418), - [anon_sym_ascending] = ACTIONS(4418), - [anon_sym_descending] = ACTIONS(4418), - [anon_sym_group] = ACTIONS(4418), - [anon_sym_by] = ACTIONS(4418), - [anon_sym_select] = ACTIONS(4418), - [anon_sym_as] = ACTIONS(4418), - [anon_sym_is] = ACTIONS(4418), - [anon_sym_DASH_GT] = ACTIONS(4420), - [anon_sym_with] = ACTIONS(4418), - [sym_grit_metavariable] = ACTIONS(4420), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4420), + [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), @@ -486882,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(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(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), @@ -486958,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), @@ -486967,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(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(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), @@ -487043,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), @@ -487052,70 +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(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(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), @@ -487128,6 +486719,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -487137,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), @@ -487213,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), @@ -487222,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), - [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_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), @@ -487307,69 +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(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), + [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), @@ -487380,7 +486960,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), }, [3045] = { [sym_preproc_region] = STATE(3045), @@ -487392,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), @@ -487468,10 +487043,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3046] = { - [sym__variable_designation] = STATE(4861), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(3046), [sym_preproc_endregion] = STATE(3046), [sym_preproc_line] = STATE(3046), @@ -487481,66 +487052,66 @@ 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(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4300), - [anon_sym_LPAREN] = ACTIONS(4300), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4302), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4302), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_PLUS_PLUS] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4302), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4302), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_PIPE] = ACTIONS(4302), - [anon_sym_AMP] = ACTIONS(4302), - [anon_sym_LT_LT] = ACTIONS(4300), - [anon_sym_GT_GT] = ACTIONS(4302), - [anon_sym_GT_GT_GT] = ACTIONS(4300), - [anon_sym_EQ_EQ] = ACTIONS(4300), - [anon_sym_BANG_EQ] = ACTIONS(4300), - [anon_sym_GT_EQ] = ACTIONS(4300), - [anon_sym_LT_EQ] = ACTIONS(4300), - [anon_sym_DOT] = ACTIONS(4302), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4302), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4300), - [anon_sym_and] = ACTIONS(4302), - [anon_sym_or] = ACTIONS(4302), - [anon_sym_AMP_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4300), - [sym_op_coalescing] = ACTIONS(4300), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4302), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4302), - [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(4302), - [anon_sym_is] = ACTIONS(4302), - [anon_sym_DASH_GT] = ACTIONS(4300), - [anon_sym_with] = ACTIONS(4302), - [sym_grit_metavariable] = ACTIONS(4220), + [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_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(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_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), @@ -487553,10 +487124,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3047] = { - [sym__variable_designation] = STATE(4887), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(3047), [sym_preproc_endregion] = STATE(3047), [sym_preproc_line] = STATE(3047), @@ -487566,66 +487133,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3047), [sym_preproc_define] = STATE(3047), [sym_preproc_undef] = STATE(3047), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4296), - [anon_sym_LPAREN] = ACTIONS(4296), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4298), - [anon_sym_GT] = ACTIONS(4298), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4298), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4298), - [anon_sym_DASH] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_SLASH] = ACTIONS(4298), - [anon_sym_PERCENT] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_PIPE] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4298), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4298), - [anon_sym_GT_GT_GT] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4296), - [anon_sym_BANG_EQ] = ACTIONS(4296), - [anon_sym_GT_EQ] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4296), - [anon_sym_DOT] = ACTIONS(4298), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4298), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4296), - [anon_sym_and] = ACTIONS(4298), - [anon_sym_or] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4296), - [sym_op_coalescing] = ACTIONS(4296), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4298), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4298), - [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(4298), - [anon_sym_is] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4296), - [anon_sym_with] = ACTIONS(4298), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -487638,10 +487205,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3048] = { - [sym__variable_designation] = STATE(4896), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), [sym_preproc_region] = STATE(3048), [sym_preproc_endregion] = STATE(3048), [sym_preproc_line] = STATE(3048), @@ -487651,66 +487214,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3048), [sym_preproc_define] = STATE(3048), [sym_preproc_undef] = STATE(3048), - [sym__identifier_token] = ACTIONS(4208), - [anon_sym_alias] = ACTIONS(4210), - [anon_sym_global] = ACTIONS(4210), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_LPAREN] = ACTIONS(4246), - [anon_sym_file] = ACTIONS(4210), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), - [anon_sym_where] = ACTIONS(4210), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_notnull] = ACTIONS(4210), - [anon_sym_unmanaged] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_GT_GT_GT] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4246), - [anon_sym_BANG_EQ] = ACTIONS(4246), - [anon_sym_GT_EQ] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4246), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_scoped] = ACTIONS(4210), - [anon_sym_var] = ACTIONS(4210), - [anon_sym_yield] = ACTIONS(4210), - [anon_sym_switch] = ACTIONS(4248), - [anon_sym_when] = ACTIONS(4210), - [sym_discard] = ACTIONS(4218), - [anon_sym_DOT_DOT] = ACTIONS(4246), - [anon_sym_and] = ACTIONS(4248), - [anon_sym_or] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4246), - [sym_op_coalescing] = ACTIONS(4246), - [anon_sym_from] = ACTIONS(4210), - [anon_sym_into] = ACTIONS(4248), - [anon_sym_join] = ACTIONS(4210), - [anon_sym_on] = ACTIONS(4210), - [anon_sym_equals] = ACTIONS(4248), - [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(4248), - [anon_sym_is] = ACTIONS(4248), - [anon_sym_DASH_GT] = ACTIONS(4246), - [anon_sym_with] = ACTIONS(4248), - [sym_grit_metavariable] = ACTIONS(4220), + [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), @@ -487732,82 +487295,93 @@ 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(4442), - [anon_sym_alias] = ACTIONS(4442), - [anon_sym_global] = ACTIONS(4442), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_COLON] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_LBRACE] = ACTIONS(4444), - [anon_sym_file] = ACTIONS(4442), - [anon_sym_LT] = ACTIONS(4442), - [anon_sym_GT] = ACTIONS(4442), - [anon_sym_where] = ACTIONS(4442), - [anon_sym_QMARK] = ACTIONS(4442), - [anon_sym_notnull] = ACTIONS(4442), - [anon_sym_unmanaged] = ACTIONS(4442), - [anon_sym_BANG] = ACTIONS(4442), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4444), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4444), - [anon_sym_CARET] = ACTIONS(4444), - [anon_sym_PIPE] = ACTIONS(4442), - [anon_sym_AMP] = ACTIONS(4442), - [anon_sym_LT_LT] = ACTIONS(4444), - [anon_sym_GT_GT] = ACTIONS(4442), - [anon_sym_GT_GT_GT] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_scoped] = ACTIONS(4442), - [anon_sym_var] = ACTIONS(4442), - [anon_sym_yield] = ACTIONS(4442), - [anon_sym_switch] = ACTIONS(4442), - [anon_sym_when] = ACTIONS(4442), - [sym_discard] = ACTIONS(4442), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_and] = ACTIONS(4442), - [anon_sym_or] = ACTIONS(4442), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [sym_op_coalescing] = ACTIONS(4444), - [anon_sym_from] = ACTIONS(4442), - [anon_sym_into] = ACTIONS(4442), - [anon_sym_join] = ACTIONS(4442), - [anon_sym_on] = ACTIONS(4442), - [anon_sym_equals] = ACTIONS(4442), - [anon_sym_let] = ACTIONS(4442), - [anon_sym_orderby] = ACTIONS(4442), - [anon_sym_ascending] = ACTIONS(4442), - [anon_sym_descending] = ACTIONS(4442), - [anon_sym_group] = ACTIONS(4442), - [anon_sym_by] = ACTIONS(4442), - [anon_sym_select] = ACTIONS(4442), - [anon_sym_as] = ACTIONS(4442), - [anon_sym_is] = ACTIONS(4442), - [anon_sym_DASH_GT] = ACTIONS(4444), - [anon_sym_with] = ACTIONS(4442), - [sym_grit_metavariable] = ACTIONS(4444), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4444), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), @@ -487817,70 +487391,51 @@ 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(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), + [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), @@ -487893,6 +487448,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -487902,70 +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), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4026), - [anon_sym_COLON] = ACTIONS(4026), - [anon_sym_COMMA] = ACTIONS(4026), - [anon_sym_RBRACK] = ACTIONS(4026), - [anon_sym_LPAREN] = ACTIONS(4026), - [anon_sym_RPAREN] = ACTIONS(4026), - [anon_sym_RBRACE] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_in] = ACTIONS(4019), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_EQ_GT] = ACTIONS(4026), - [anon_sym_switch] = ACTIONS(4026), - [anon_sym_when] = ACTIONS(4026), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4026), - [anon_sym_or] = ACTIONS(4026), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_into] = ACTIONS(4026), - [anon_sym_on] = ACTIONS(4026), - [anon_sym_equals] = ACTIONS(4026), - [anon_sym_by] = ACTIONS(4026), - [anon_sym_as] = ACTIONS(4026), - [anon_sym_is] = ACTIONS(4026), - [anon_sym_DASH_GT] = ACTIONS(4026), - [anon_sym_with] = ACTIONS(4026), - [aux_sym_preproc_if_token3] = ACTIONS(4026), - [aux_sym_preproc_else_token1] = ACTIONS(4026), - [aux_sym_preproc_elif_token1] = ACTIONS(4026), + [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), @@ -487978,6 +487529,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -487987,70 +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(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_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), @@ -488063,6 +487610,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -488072,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), - [sym__identifier_token] = ACTIONS(5402), - [anon_sym_extern] = ACTIONS(5402), - [anon_sym_alias] = ACTIONS(5402), - [anon_sym_global] = ACTIONS(5402), - [anon_sym_using] = ACTIONS(5402), - [anon_sym_unsafe] = ACTIONS(5402), - [anon_sym_static] = ACTIONS(5402), - [anon_sym_LBRACK] = ACTIONS(5404), - [anon_sym_LPAREN] = ACTIONS(5404), - [anon_sym_event] = ACTIONS(5402), - [anon_sym_namespace] = ACTIONS(5402), - [anon_sym_class] = ACTIONS(5402), - [anon_sym_ref] = ACTIONS(5402), - [anon_sym_struct] = ACTIONS(5402), - [anon_sym_enum] = ACTIONS(5402), - [anon_sym_RBRACE] = ACTIONS(5404), - [anon_sym_interface] = ACTIONS(5402), - [anon_sym_delegate] = ACTIONS(5402), - [anon_sym_record] = ACTIONS(5402), - [anon_sym_public] = ACTIONS(5402), - [anon_sym_private] = ACTIONS(5402), - [anon_sym_readonly] = ACTIONS(5402), - [anon_sym_abstract] = ACTIONS(5402), - [anon_sym_async] = ACTIONS(5402), - [anon_sym_const] = ACTIONS(5402), - [anon_sym_file] = ACTIONS(5402), - [anon_sym_fixed] = ACTIONS(5402), - [anon_sym_internal] = ACTIONS(5402), - [anon_sym_new] = ACTIONS(5402), - [anon_sym_override] = ACTIONS(5402), - [anon_sym_partial] = ACTIONS(5402), - [anon_sym_protected] = ACTIONS(5402), - [anon_sym_required] = ACTIONS(5402), - [anon_sym_sealed] = ACTIONS(5402), - [anon_sym_virtual] = ACTIONS(5402), - [anon_sym_volatile] = ACTIONS(5402), - [anon_sym_where] = ACTIONS(5402), - [anon_sym_notnull] = ACTIONS(5402), - [anon_sym_unmanaged] = ACTIONS(5402), - [anon_sym_TILDE] = ACTIONS(5404), - [anon_sym_implicit] = ACTIONS(5402), - [anon_sym_explicit] = ACTIONS(5402), - [anon_sym_scoped] = ACTIONS(5402), - [anon_sym_var] = ACTIONS(5402), - [sym_predefined_type] = ACTIONS(5402), - [anon_sym_yield] = ACTIONS(5402), - [anon_sym_when] = ACTIONS(5402), - [anon_sym_from] = ACTIONS(5402), - [anon_sym_into] = ACTIONS(5402), - [anon_sym_join] = ACTIONS(5402), - [anon_sym_on] = ACTIONS(5402), - [anon_sym_equals] = ACTIONS(5402), - [anon_sym_let] = ACTIONS(5402), - [anon_sym_orderby] = ACTIONS(5402), - [anon_sym_ascending] = ACTIONS(5402), - [anon_sym_descending] = ACTIONS(5402), - [anon_sym_group] = ACTIONS(5402), - [anon_sym_by] = ACTIONS(5402), - [anon_sym_select] = ACTIONS(5402), - [sym_grit_metavariable] = ACTIONS(5404), - [aux_sym_preproc_if_token1] = ACTIONS(5404), - [aux_sym_preproc_if_token3] = ACTIONS(5404), - [aux_sym_preproc_else_token1] = ACTIONS(5404), - [aux_sym_preproc_elif_token1] = ACTIONS(5404), + [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), @@ -488148,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), @@ -488157,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(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_TILDE] = ACTIONS(3650), - [anon_sym_implicit] = ACTIONS(3648), - [anon_sym_explicit] = ACTIONS(3648), - [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), + [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), @@ -488233,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), @@ -488242,70 +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(5406), - [anon_sym_extern] = ACTIONS(5406), - [anon_sym_alias] = ACTIONS(5406), - [anon_sym_global] = ACTIONS(5406), - [anon_sym_using] = ACTIONS(5406), - [anon_sym_unsafe] = ACTIONS(5406), - [anon_sym_static] = ACTIONS(5406), - [anon_sym_LBRACK] = ACTIONS(5408), - [anon_sym_LPAREN] = ACTIONS(5408), - [anon_sym_event] = ACTIONS(5406), - [anon_sym_namespace] = ACTIONS(5406), - [anon_sym_class] = ACTIONS(5406), - [anon_sym_ref] = ACTIONS(5406), - [anon_sym_struct] = ACTIONS(5406), - [anon_sym_enum] = ACTIONS(5406), - [anon_sym_RBRACE] = ACTIONS(5408), - [anon_sym_interface] = ACTIONS(5406), - [anon_sym_delegate] = ACTIONS(5406), - [anon_sym_record] = ACTIONS(5406), - [anon_sym_public] = ACTIONS(5406), - [anon_sym_private] = ACTIONS(5406), - [anon_sym_readonly] = ACTIONS(5406), - [anon_sym_abstract] = ACTIONS(5406), - [anon_sym_async] = ACTIONS(5406), - [anon_sym_const] = ACTIONS(5406), - [anon_sym_file] = ACTIONS(5406), - [anon_sym_fixed] = ACTIONS(5406), - [anon_sym_internal] = ACTIONS(5406), - [anon_sym_new] = ACTIONS(5406), - [anon_sym_override] = ACTIONS(5406), - [anon_sym_partial] = ACTIONS(5406), - [anon_sym_protected] = ACTIONS(5406), - [anon_sym_required] = ACTIONS(5406), - [anon_sym_sealed] = ACTIONS(5406), - [anon_sym_virtual] = ACTIONS(5406), - [anon_sym_volatile] = ACTIONS(5406), - [anon_sym_where] = ACTIONS(5406), - [anon_sym_notnull] = ACTIONS(5406), - [anon_sym_unmanaged] = ACTIONS(5406), - [anon_sym_TILDE] = ACTIONS(5408), - [anon_sym_implicit] = ACTIONS(5406), - [anon_sym_explicit] = ACTIONS(5406), - [anon_sym_scoped] = ACTIONS(5406), - [anon_sym_var] = ACTIONS(5406), - [sym_predefined_type] = ACTIONS(5406), - [anon_sym_yield] = ACTIONS(5406), - [anon_sym_when] = ACTIONS(5406), - [anon_sym_from] = ACTIONS(5406), - [anon_sym_into] = ACTIONS(5406), - [anon_sym_join] = ACTIONS(5406), - [anon_sym_on] = ACTIONS(5406), - [anon_sym_equals] = ACTIONS(5406), - [anon_sym_let] = ACTIONS(5406), - [anon_sym_orderby] = ACTIONS(5406), - [anon_sym_ascending] = ACTIONS(5406), - [anon_sym_descending] = ACTIONS(5406), - [anon_sym_group] = ACTIONS(5406), - [anon_sym_by] = ACTIONS(5406), - [anon_sym_select] = ACTIONS(5406), - [sym_grit_metavariable] = ACTIONS(5408), - [aux_sym_preproc_if_token1] = ACTIONS(5408), - [aux_sym_preproc_if_token3] = ACTIONS(5408), - [aux_sym_preproc_else_token1] = ACTIONS(5408), - [aux_sym_preproc_elif_token1] = ACTIONS(5408), + [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), @@ -488327,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(3379), - [anon_sym_extern] = ACTIONS(3379), - [anon_sym_alias] = ACTIONS(3379), - [anon_sym_global] = ACTIONS(3379), - [anon_sym_using] = ACTIONS(3379), - [anon_sym_unsafe] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_event] = ACTIONS(3379), - [anon_sym_namespace] = ACTIONS(3379), - [anon_sym_class] = ACTIONS(3379), - [anon_sym_ref] = ACTIONS(3379), - [anon_sym_struct] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_delegate] = ACTIONS(3379), - [anon_sym_record] = ACTIONS(3379), - [anon_sym_public] = ACTIONS(3379), - [anon_sym_private] = ACTIONS(3379), - [anon_sym_readonly] = ACTIONS(3379), - [anon_sym_abstract] = ACTIONS(3379), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_file] = ACTIONS(3379), - [anon_sym_fixed] = ACTIONS(3379), - [anon_sym_internal] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3379), - [anon_sym_partial] = ACTIONS(3379), - [anon_sym_protected] = ACTIONS(3379), - [anon_sym_required] = ACTIONS(3379), - [anon_sym_sealed] = ACTIONS(3379), - [anon_sym_virtual] = ACTIONS(3379), - [anon_sym_volatile] = ACTIONS(3379), - [anon_sym_where] = ACTIONS(3379), - [anon_sym_notnull] = ACTIONS(3379), - [anon_sym_unmanaged] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_implicit] = ACTIONS(3379), - [anon_sym_explicit] = ACTIONS(3379), - [anon_sym_scoped] = ACTIONS(3379), - [anon_sym_var] = ACTIONS(3379), - [sym_predefined_type] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_when] = ACTIONS(3379), - [anon_sym_from] = ACTIONS(3379), - [anon_sym_into] = ACTIONS(3379), - [anon_sym_join] = ACTIONS(3379), - [anon_sym_on] = ACTIONS(3379), - [anon_sym_equals] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_orderby] = ACTIONS(3379), - [anon_sym_ascending] = ACTIONS(3379), - [anon_sym_descending] = ACTIONS(3379), - [anon_sym_group] = ACTIONS(3379), - [anon_sym_by] = ACTIONS(3379), - [anon_sym_select] = ACTIONS(3379), - [sym_grit_metavariable] = ACTIONS(3381), - [aux_sym_preproc_if_token1] = ACTIONS(3381), - [aux_sym_preproc_if_token3] = ACTIONS(3381), - [aux_sym_preproc_else_token1] = ACTIONS(3381), - [aux_sym_preproc_elif_token1] = ACTIONS(3381), + [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), @@ -488403,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), @@ -488412,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(5410), - [anon_sym_extern] = ACTIONS(5410), - [anon_sym_alias] = ACTIONS(5410), - [anon_sym_global] = ACTIONS(5410), - [anon_sym_using] = ACTIONS(5410), - [anon_sym_unsafe] = ACTIONS(5410), - [anon_sym_static] = ACTIONS(5410), - [anon_sym_LBRACK] = ACTIONS(5412), - [anon_sym_LPAREN] = ACTIONS(5412), - [anon_sym_event] = ACTIONS(5410), - [anon_sym_namespace] = ACTIONS(5410), - [anon_sym_class] = ACTIONS(5410), - [anon_sym_ref] = ACTIONS(5410), - [anon_sym_struct] = ACTIONS(5410), - [anon_sym_enum] = ACTIONS(5410), - [anon_sym_RBRACE] = ACTIONS(5412), - [anon_sym_interface] = ACTIONS(5410), - [anon_sym_delegate] = ACTIONS(5410), - [anon_sym_record] = ACTIONS(5410), - [anon_sym_public] = ACTIONS(5410), - [anon_sym_private] = ACTIONS(5410), - [anon_sym_readonly] = ACTIONS(5410), - [anon_sym_abstract] = ACTIONS(5410), - [anon_sym_async] = ACTIONS(5410), - [anon_sym_const] = ACTIONS(5410), - [anon_sym_file] = ACTIONS(5410), - [anon_sym_fixed] = ACTIONS(5410), - [anon_sym_internal] = ACTIONS(5410), - [anon_sym_new] = ACTIONS(5410), - [anon_sym_override] = ACTIONS(5410), - [anon_sym_partial] = ACTIONS(5410), - [anon_sym_protected] = ACTIONS(5410), - [anon_sym_required] = ACTIONS(5410), - [anon_sym_sealed] = ACTIONS(5410), - [anon_sym_virtual] = ACTIONS(5410), - [anon_sym_volatile] = ACTIONS(5410), - [anon_sym_where] = ACTIONS(5410), - [anon_sym_notnull] = ACTIONS(5410), - [anon_sym_unmanaged] = ACTIONS(5410), - [anon_sym_TILDE] = ACTIONS(5412), - [anon_sym_implicit] = ACTIONS(5410), - [anon_sym_explicit] = ACTIONS(5410), - [anon_sym_scoped] = ACTIONS(5410), - [anon_sym_var] = ACTIONS(5410), - [sym_predefined_type] = ACTIONS(5410), - [anon_sym_yield] = ACTIONS(5410), - [anon_sym_when] = ACTIONS(5410), - [anon_sym_from] = ACTIONS(5410), - [anon_sym_into] = ACTIONS(5410), - [anon_sym_join] = ACTIONS(5410), - [anon_sym_on] = ACTIONS(5410), - [anon_sym_equals] = ACTIONS(5410), - [anon_sym_let] = ACTIONS(5410), - [anon_sym_orderby] = ACTIONS(5410), - [anon_sym_ascending] = ACTIONS(5410), - [anon_sym_descending] = ACTIONS(5410), - [anon_sym_group] = ACTIONS(5410), - [anon_sym_by] = ACTIONS(5410), - [anon_sym_select] = ACTIONS(5410), - [sym_grit_metavariable] = ACTIONS(5412), - [aux_sym_preproc_if_token1] = ACTIONS(5412), - [aux_sym_preproc_if_token3] = ACTIONS(5412), - [aux_sym_preproc_else_token1] = ACTIONS(5412), - [aux_sym_preproc_elif_token1] = ACTIONS(5412), + [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), @@ -488488,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), @@ -488497,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(5414), - [anon_sym_extern] = ACTIONS(5414), - [anon_sym_alias] = ACTIONS(5414), - [anon_sym_global] = ACTIONS(5414), - [anon_sym_using] = ACTIONS(5414), - [anon_sym_unsafe] = ACTIONS(5414), - [anon_sym_static] = ACTIONS(5414), - [anon_sym_LBRACK] = ACTIONS(5416), - [anon_sym_LPAREN] = ACTIONS(5416), - [anon_sym_event] = ACTIONS(5414), - [anon_sym_namespace] = ACTIONS(5414), - [anon_sym_class] = ACTIONS(5414), - [anon_sym_ref] = ACTIONS(5414), - [anon_sym_struct] = ACTIONS(5414), - [anon_sym_enum] = ACTIONS(5414), - [anon_sym_RBRACE] = ACTIONS(5416), - [anon_sym_interface] = ACTIONS(5414), - [anon_sym_delegate] = ACTIONS(5414), - [anon_sym_record] = ACTIONS(5414), - [anon_sym_public] = ACTIONS(5414), - [anon_sym_private] = ACTIONS(5414), - [anon_sym_readonly] = ACTIONS(5414), - [anon_sym_abstract] = ACTIONS(5414), - [anon_sym_async] = ACTIONS(5414), - [anon_sym_const] = ACTIONS(5414), - [anon_sym_file] = ACTIONS(5414), - [anon_sym_fixed] = ACTIONS(5414), - [anon_sym_internal] = ACTIONS(5414), - [anon_sym_new] = ACTIONS(5414), - [anon_sym_override] = ACTIONS(5414), - [anon_sym_partial] = ACTIONS(5414), - [anon_sym_protected] = ACTIONS(5414), - [anon_sym_required] = ACTIONS(5414), - [anon_sym_sealed] = ACTIONS(5414), - [anon_sym_virtual] = ACTIONS(5414), - [anon_sym_volatile] = ACTIONS(5414), - [anon_sym_where] = ACTIONS(5414), - [anon_sym_notnull] = ACTIONS(5414), - [anon_sym_unmanaged] = ACTIONS(5414), - [anon_sym_TILDE] = ACTIONS(5416), - [anon_sym_implicit] = ACTIONS(5414), - [anon_sym_explicit] = ACTIONS(5414), - [anon_sym_scoped] = ACTIONS(5414), - [anon_sym_var] = ACTIONS(5414), - [sym_predefined_type] = ACTIONS(5414), - [anon_sym_yield] = ACTIONS(5414), - [anon_sym_when] = ACTIONS(5414), - [anon_sym_from] = ACTIONS(5414), - [anon_sym_into] = ACTIONS(5414), - [anon_sym_join] = ACTIONS(5414), - [anon_sym_on] = ACTIONS(5414), - [anon_sym_equals] = ACTIONS(5414), - [anon_sym_let] = ACTIONS(5414), - [anon_sym_orderby] = ACTIONS(5414), - [anon_sym_ascending] = ACTIONS(5414), - [anon_sym_descending] = ACTIONS(5414), - [anon_sym_group] = ACTIONS(5414), - [anon_sym_by] = ACTIONS(5414), - [anon_sym_select] = ACTIONS(5414), - [sym_grit_metavariable] = ACTIONS(5416), - [aux_sym_preproc_if_token1] = ACTIONS(5416), - [aux_sym_preproc_if_token3] = ACTIONS(5416), - [aux_sym_preproc_else_token1] = ACTIONS(5416), - [aux_sym_preproc_elif_token1] = ACTIONS(5416), + [anon_sym_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), @@ -488573,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), @@ -488582,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(5418), - [anon_sym_extern] = ACTIONS(5418), - [anon_sym_alias] = ACTIONS(5418), - [anon_sym_global] = ACTIONS(5418), - [anon_sym_using] = ACTIONS(5418), - [anon_sym_unsafe] = ACTIONS(5418), - [anon_sym_static] = ACTIONS(5418), - [anon_sym_LBRACK] = ACTIONS(5420), - [anon_sym_LPAREN] = ACTIONS(5420), - [anon_sym_event] = ACTIONS(5418), - [anon_sym_namespace] = ACTIONS(5418), - [anon_sym_class] = ACTIONS(5418), - [anon_sym_ref] = ACTIONS(5418), - [anon_sym_struct] = ACTIONS(5418), - [anon_sym_enum] = ACTIONS(5418), - [anon_sym_RBRACE] = ACTIONS(5420), - [anon_sym_interface] = ACTIONS(5418), - [anon_sym_delegate] = ACTIONS(5418), - [anon_sym_record] = ACTIONS(5418), - [anon_sym_public] = ACTIONS(5418), - [anon_sym_private] = ACTIONS(5418), - [anon_sym_readonly] = ACTIONS(5418), - [anon_sym_abstract] = ACTIONS(5418), - [anon_sym_async] = ACTIONS(5418), - [anon_sym_const] = ACTIONS(5418), - [anon_sym_file] = ACTIONS(5418), - [anon_sym_fixed] = ACTIONS(5418), - [anon_sym_internal] = ACTIONS(5418), - [anon_sym_new] = ACTIONS(5418), - [anon_sym_override] = ACTIONS(5418), - [anon_sym_partial] = ACTIONS(5418), - [anon_sym_protected] = ACTIONS(5418), - [anon_sym_required] = ACTIONS(5418), - [anon_sym_sealed] = ACTIONS(5418), - [anon_sym_virtual] = ACTIONS(5418), - [anon_sym_volatile] = ACTIONS(5418), - [anon_sym_where] = ACTIONS(5418), - [anon_sym_notnull] = ACTIONS(5418), - [anon_sym_unmanaged] = ACTIONS(5418), - [anon_sym_TILDE] = ACTIONS(5420), - [anon_sym_implicit] = ACTIONS(5418), - [anon_sym_explicit] = ACTIONS(5418), - [anon_sym_scoped] = ACTIONS(5418), - [anon_sym_var] = ACTIONS(5418), - [sym_predefined_type] = ACTIONS(5418), - [anon_sym_yield] = ACTIONS(5418), - [anon_sym_when] = ACTIONS(5418), - [anon_sym_from] = ACTIONS(5418), - [anon_sym_into] = ACTIONS(5418), - [anon_sym_join] = ACTIONS(5418), - [anon_sym_on] = ACTIONS(5418), - [anon_sym_equals] = ACTIONS(5418), - [anon_sym_let] = ACTIONS(5418), - [anon_sym_orderby] = ACTIONS(5418), - [anon_sym_ascending] = ACTIONS(5418), - [anon_sym_descending] = ACTIONS(5418), - [anon_sym_group] = ACTIONS(5418), - [anon_sym_by] = ACTIONS(5418), - [anon_sym_select] = ACTIONS(5418), - [sym_grit_metavariable] = ACTIONS(5420), - [aux_sym_preproc_if_token1] = ACTIONS(5420), - [aux_sym_preproc_if_token3] = ACTIONS(5420), - [aux_sym_preproc_else_token1] = ACTIONS(5420), - [aux_sym_preproc_elif_token1] = ACTIONS(5420), + [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), @@ -488658,10 +488177,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3060] = { - [sym__variable_designation] = STATE(4911), - [sym_parenthesized_variable_designation] = STATE(4901), - [sym_identifier] = STATE(4904), - [sym__reserved_identifier] = STATE(4707), + [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), @@ -488671,66 +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(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), + [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), @@ -488743,27 +488258,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3061] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [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), @@ -488773,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5428), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5432), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -488827,27 +488339,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3062] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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), @@ -488857,48 +488363,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3062), [sym_preproc_define] = STATE(3062), [sym_preproc_undef] = STATE(3062), - [anon_sym_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5438), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5442), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -488911,29 +488420,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3063] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6220), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym__lambda_parameters] = STATE(7940), - [sym_identifier] = STATE(5994), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if_in_attribute_list] = STATE(5914), [sym_preproc_region] = STATE(3063), [sym_preproc_endregion] = STATE(3063), [sym_preproc_line] = STATE(3063), @@ -488943,28 +488429,129 @@ 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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(5567), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4811), - [aux_sym__lambda_expression_init_repeat1] = STATE(4893), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [3064] = { + [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), + [sym_preproc_pragma] = STATE(3064), + [sym_preproc_nullable] = STATE(3064), + [sym_preproc_error] = STATE(3064), + [sym_preproc_warning] = STATE(3064), + [sym_preproc_define] = STATE(3064), + [sym_preproc_undef] = STATE(3064), + [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_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(5444), - [anon_sym_LPAREN] = ACTIONS(4099), - [anon_sym_ref] = ACTIONS(5446), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_readonly] = ACTIONS(1271), - [anon_sym_async] = ACTIONS(1259), + [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(1271), - [anon_sym_out] = ACTIONS(1271), + [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(1271), - [anon_sym_scoped] = ACTIONS(5448), - [anon_sym_params] = ACTIONS(5450), + [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), @@ -488982,90 +488569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_by] = ACTIONS(3211), [anon_sym_select] = ACTIONS(3211), [sym_grit_metavariable] = ACTIONS(4080), - [aux_sym_preproc_if_token1] = ACTIONS(5452), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [3064] = { - [sym_preproc_region] = STATE(3064), - [sym_preproc_endregion] = STATE(3064), - [sym_preproc_line] = STATE(3064), - [sym_preproc_pragma] = STATE(3064), - [sym_preproc_nullable] = STATE(3064), - [sym_preproc_error] = STATE(3064), - [sym_preproc_warning] = STATE(3064), - [sym_preproc_define] = STATE(3064), - [sym_preproc_undef] = STATE(3064), - [sym__identifier_token] = ACTIONS(4482), - [anon_sym_alias] = ACTIONS(4482), - [anon_sym_global] = ACTIONS(4482), - [anon_sym_LBRACK] = ACTIONS(4484), - [anon_sym_COLON] = ACTIONS(4484), - [anon_sym_COMMA] = ACTIONS(4484), - [anon_sym_LPAREN] = ACTIONS(4484), - [anon_sym_file] = ACTIONS(4482), - [anon_sym_LT] = ACTIONS(4482), - [anon_sym_GT] = ACTIONS(4482), - [anon_sym_where] = ACTIONS(4482), - [anon_sym_QMARK] = ACTIONS(4482), - [anon_sym_notnull] = ACTIONS(4482), - [anon_sym_unmanaged] = ACTIONS(4482), - [anon_sym_BANG] = ACTIONS(4482), - [anon_sym_PLUS_PLUS] = ACTIONS(4484), - [anon_sym_DASH_DASH] = ACTIONS(4484), - [anon_sym_PLUS] = ACTIONS(4482), - [anon_sym_DASH] = ACTIONS(4482), - [anon_sym_STAR] = ACTIONS(4484), - [anon_sym_SLASH] = ACTIONS(4482), - [anon_sym_PERCENT] = ACTIONS(4484), - [anon_sym_CARET] = ACTIONS(4484), - [anon_sym_PIPE] = ACTIONS(4482), - [anon_sym_AMP] = ACTIONS(4482), - [anon_sym_LT_LT] = ACTIONS(4484), - [anon_sym_GT_GT] = ACTIONS(4482), - [anon_sym_GT_GT_GT] = ACTIONS(4484), - [anon_sym_EQ_EQ] = ACTIONS(4484), - [anon_sym_BANG_EQ] = ACTIONS(4484), - [anon_sym_GT_EQ] = ACTIONS(4484), - [anon_sym_LT_EQ] = ACTIONS(4484), - [anon_sym_DOT] = ACTIONS(4482), - [anon_sym_scoped] = ACTIONS(4482), - [anon_sym_var] = ACTIONS(4482), - [anon_sym_yield] = ACTIONS(4482), - [anon_sym_switch] = ACTIONS(4482), - [anon_sym_when] = ACTIONS(4482), - [sym_discard] = ACTIONS(4482), - [anon_sym_DOT_DOT] = ACTIONS(4484), - [anon_sym_and] = ACTIONS(4482), - [anon_sym_or] = ACTIONS(4482), - [anon_sym_AMP_AMP] = ACTIONS(4484), - [anon_sym_PIPE_PIPE] = ACTIONS(4484), - [sym_op_coalescing] = ACTIONS(4484), - [anon_sym_from] = ACTIONS(4482), - [anon_sym_into] = ACTIONS(4482), - [anon_sym_join] = ACTIONS(4482), - [anon_sym_on] = ACTIONS(4482), - [anon_sym_equals] = ACTIONS(4482), - [anon_sym_let] = ACTIONS(4482), - [anon_sym_orderby] = ACTIONS(4482), - [anon_sym_ascending] = ACTIONS(4482), - [anon_sym_descending] = ACTIONS(4482), - [anon_sym_group] = ACTIONS(4482), - [anon_sym_by] = ACTIONS(4482), - [anon_sym_select] = ACTIONS(4482), - [anon_sym_as] = ACTIONS(4482), - [anon_sym_is] = ACTIONS(4482), - [anon_sym_DASH_GT] = ACTIONS(4484), - [anon_sym_with] = ACTIONS(4482), - [sym_grit_metavariable] = ACTIONS(4484), + [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), @@ -489076,30 +488580,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(4484), }, [3065] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), [sym_preproc_region] = STATE(3065), [sym_preproc_endregion] = STATE(3065), [sym_preproc_line] = STATE(3065), @@ -489109,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4764), - [anon_sym_QMARK] = ACTIONS(5454), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5428), - [anon_sym_from] = ACTIONS(4764), - [anon_sym_join] = ACTIONS(4764), - [anon_sym_let] = ACTIONS(4764), - [anon_sym_orderby] = ACTIONS(4764), - [anon_sym_group] = ACTIONS(4764), - [anon_sym_select] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5432), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -489172,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(4552), - [anon_sym_EQ] = ACTIONS(4554), - [anon_sym_LBRACK] = ACTIONS(4552), - [anon_sym_COLON] = ACTIONS(4552), - [anon_sym_COMMA] = ACTIONS(4552), - [anon_sym_RBRACK] = ACTIONS(4552), - [anon_sym_LPAREN] = ACTIONS(4552), - [anon_sym_RPAREN] = ACTIONS(4552), - [anon_sym_RBRACE] = ACTIONS(4552), - [anon_sym_LT] = ACTIONS(4554), - [anon_sym_GT] = ACTIONS(4554), - [anon_sym_in] = ACTIONS(4552), - [anon_sym_QMARK] = ACTIONS(4554), - [anon_sym_BANG] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(4552), - [anon_sym_DASH_DASH] = ACTIONS(4552), - [anon_sym_PLUS] = ACTIONS(4554), - [anon_sym_DASH] = ACTIONS(4554), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_CARET] = ACTIONS(4554), - [anon_sym_PIPE] = ACTIONS(4554), - [anon_sym_AMP] = ACTIONS(4554), - [anon_sym_LT_LT] = ACTIONS(4554), - [anon_sym_GT_GT] = ACTIONS(4554), - [anon_sym_GT_GT_GT] = ACTIONS(4554), - [anon_sym_EQ_EQ] = ACTIONS(4552), - [anon_sym_BANG_EQ] = ACTIONS(4552), - [anon_sym_GT_EQ] = ACTIONS(4552), - [anon_sym_LT_EQ] = ACTIONS(4552), - [anon_sym_DOT] = ACTIONS(4554), - [anon_sym_EQ_GT] = ACTIONS(4552), - [anon_sym_switch] = ACTIONS(4552), - [anon_sym_when] = ACTIONS(4552), - [anon_sym_DOT_DOT] = ACTIONS(4552), - [anon_sym_and] = ACTIONS(4552), - [anon_sym_or] = ACTIONS(4552), - [anon_sym_PLUS_EQ] = ACTIONS(4552), - [anon_sym_DASH_EQ] = ACTIONS(4552), - [anon_sym_STAR_EQ] = ACTIONS(4552), - [anon_sym_SLASH_EQ] = ACTIONS(4552), - [anon_sym_PERCENT_EQ] = ACTIONS(4552), - [anon_sym_AMP_EQ] = ACTIONS(4552), - [anon_sym_CARET_EQ] = ACTIONS(4552), - [anon_sym_PIPE_EQ] = ACTIONS(4552), - [anon_sym_LT_LT_EQ] = ACTIONS(4552), - [anon_sym_GT_GT_EQ] = ACTIONS(4552), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4552), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4552), - [anon_sym_AMP_AMP] = ACTIONS(4552), - [anon_sym_PIPE_PIPE] = ACTIONS(4552), - [sym_op_coalescing] = ACTIONS(4554), - [anon_sym_on] = ACTIONS(4552), - [anon_sym_equals] = ACTIONS(4552), - [anon_sym_by] = ACTIONS(4552), - [anon_sym_as] = ACTIONS(4552), - [anon_sym_is] = ACTIONS(4552), - [anon_sym_DASH_GT] = ACTIONS(4552), - [anon_sym_with] = ACTIONS(4552), - [aux_sym_preproc_if_token3] = ACTIONS(4552), - [aux_sym_preproc_else_token1] = ACTIONS(4552), - [aux_sym_preproc_elif_token1] = ACTIONS(4552), + [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), @@ -489247,27 +488744,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3067] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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), @@ -489277,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_SEMI] = ACTIONS(4768), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_RBRACK] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4768), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4768), - [aux_sym_preproc_if_token3] = ACTIONS(4768), - [aux_sym_preproc_else_token1] = ACTIONS(4768), - [aux_sym_preproc_elif_token1] = ACTIONS(4768), + [sym__identifier_token] = ACTIONS(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), @@ -489331,6 +488824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3068] = { + [sym_initializer_expression] = STATE(3300), [sym_preproc_region] = STATE(3068), [sym_preproc_endregion] = STATE(3068), [sym_preproc_line] = STATE(3068), @@ -489340,69 +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_SEMI] = ACTIONS(4026), - [anon_sym_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4026), - [anon_sym_COLON] = ACTIONS(4026), - [anon_sym_COMMA] = ACTIONS(4026), - [anon_sym_RBRACK] = ACTIONS(4026), - [anon_sym_LPAREN] = ACTIONS(4026), - [anon_sym_RPAREN] = ACTIONS(4026), - [anon_sym_RBRACE] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_in] = ACTIONS(4026), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_EQ_GT] = ACTIONS(4026), - [anon_sym_switch] = ACTIONS(4026), - [anon_sym_when] = ACTIONS(4026), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4026), - [anon_sym_or] = ACTIONS(4026), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_on] = ACTIONS(4026), - [anon_sym_equals] = ACTIONS(4026), - [anon_sym_by] = ACTIONS(4026), - [anon_sym_as] = ACTIONS(4026), - [anon_sym_is] = ACTIONS(4026), - [anon_sym_DASH_GT] = ACTIONS(4026), - [anon_sym_with] = ACTIONS(4026), - [aux_sym_preproc_if_token3] = ACTIONS(4026), - [aux_sym_preproc_else_token1] = ACTIONS(4026), - [aux_sym_preproc_elif_token1] = ACTIONS(4026), + [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), @@ -489415,27 +488904,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3069] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), [sym_preproc_region] = STATE(3069), [sym_preproc_endregion] = STATE(3069), [sym_preproc_line] = STATE(3069), @@ -489445,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_QMARK] = ACTIONS(5454), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5428), - [anon_sym_from] = ACTIONS(4772), - [anon_sym_join] = ACTIONS(4772), - [anon_sym_let] = ACTIONS(4772), - [anon_sym_orderby] = ACTIONS(4772), - [anon_sym_group] = ACTIONS(4772), - [anon_sym_select] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5432), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -489499,27 +488984,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3070] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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), @@ -489529,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_SEMI] = ACTIONS(4760), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_RBRACK] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4760), - [anon_sym_RBRACE] = ACTIONS(4760), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4760), - [aux_sym_preproc_if_token3] = ACTIONS(4760), - [aux_sym_preproc_else_token1] = ACTIONS(4760), - [aux_sym_preproc_elif_token1] = ACTIONS(4760), + [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), @@ -489592,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(4544), - [anon_sym_EQ] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(4544), - [anon_sym_COLON] = ACTIONS(4544), - [anon_sym_COMMA] = ACTIONS(4544), - [anon_sym_RBRACK] = ACTIONS(4544), - [anon_sym_LPAREN] = ACTIONS(4544), - [anon_sym_RPAREN] = ACTIONS(4544), - [anon_sym_RBRACE] = ACTIONS(4544), - [anon_sym_LT] = ACTIONS(4546), - [anon_sym_GT] = ACTIONS(4546), - [anon_sym_in] = ACTIONS(4544), - [anon_sym_QMARK] = ACTIONS(4546), - [anon_sym_BANG] = ACTIONS(4546), - [anon_sym_PLUS_PLUS] = ACTIONS(4544), - [anon_sym_DASH_DASH] = ACTIONS(4544), - [anon_sym_PLUS] = ACTIONS(4546), - [anon_sym_DASH] = ACTIONS(4546), - [anon_sym_STAR] = ACTIONS(4546), - [anon_sym_SLASH] = ACTIONS(4546), - [anon_sym_PERCENT] = ACTIONS(4546), - [anon_sym_CARET] = ACTIONS(4546), - [anon_sym_PIPE] = ACTIONS(4546), - [anon_sym_AMP] = ACTIONS(4546), - [anon_sym_LT_LT] = ACTIONS(4546), - [anon_sym_GT_GT] = ACTIONS(4546), - [anon_sym_GT_GT_GT] = ACTIONS(4546), - [anon_sym_EQ_EQ] = ACTIONS(4544), - [anon_sym_BANG_EQ] = ACTIONS(4544), - [anon_sym_GT_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4544), - [anon_sym_DOT] = ACTIONS(4546), - [anon_sym_EQ_GT] = ACTIONS(4544), - [anon_sym_switch] = ACTIONS(4544), - [anon_sym_when] = ACTIONS(4544), - [anon_sym_DOT_DOT] = ACTIONS(4544), - [anon_sym_and] = ACTIONS(4544), - [anon_sym_or] = ACTIONS(4544), - [anon_sym_PLUS_EQ] = ACTIONS(4544), - [anon_sym_DASH_EQ] = ACTIONS(4544), - [anon_sym_STAR_EQ] = ACTIONS(4544), - [anon_sym_SLASH_EQ] = ACTIONS(4544), - [anon_sym_PERCENT_EQ] = ACTIONS(4544), - [anon_sym_AMP_EQ] = ACTIONS(4544), - [anon_sym_CARET_EQ] = ACTIONS(4544), - [anon_sym_PIPE_EQ] = ACTIONS(4544), - [anon_sym_LT_LT_EQ] = ACTIONS(4544), - [anon_sym_GT_GT_EQ] = ACTIONS(4544), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4544), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4544), - [anon_sym_AMP_AMP] = ACTIONS(4544), - [anon_sym_PIPE_PIPE] = ACTIONS(4544), - [sym_op_coalescing] = ACTIONS(4546), - [anon_sym_on] = ACTIONS(4544), - [anon_sym_equals] = ACTIONS(4544), - [anon_sym_by] = ACTIONS(4544), - [anon_sym_as] = ACTIONS(4544), - [anon_sym_is] = ACTIONS(4544), - [anon_sym_DASH_GT] = ACTIONS(4544), - [anon_sym_with] = ACTIONS(4544), - [aux_sym_preproc_if_token3] = ACTIONS(4544), - [aux_sym_preproc_else_token1] = ACTIONS(4544), - [aux_sym_preproc_elif_token1] = ACTIONS(4544), + [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), @@ -489667,27 +489144,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3072] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [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), @@ -489697,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5432), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -489751,6 +489224,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3073] = { + [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), @@ -489760,69 +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_SEMI] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_RBRACK] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_RPAREN] = ACTIONS(5003), - [anon_sym_RBRACE] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_in] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5008), - [anon_sym_BANG] = ACTIONS(5008), - [anon_sym_PLUS_PLUS] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5008), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5008), - [anon_sym_CARET] = ACTIONS(5008), - [anon_sym_PIPE] = ACTIONS(5008), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym_LT_LT] = ACTIONS(5008), - [anon_sym_GT_GT] = ACTIONS(5008), - [anon_sym_GT_GT_GT] = ACTIONS(5008), - [anon_sym_EQ_EQ] = ACTIONS(5005), - [anon_sym_BANG_EQ] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(5005), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_EQ_GT] = ACTIONS(5003), - [anon_sym_switch] = ACTIONS(5005), - [anon_sym_when] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(5005), - [anon_sym_and] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(5003), - [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(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(5005), - [sym_op_coalescing] = ACTIONS(5008), - [anon_sym_on] = ACTIONS(5003), - [anon_sym_equals] = ACTIONS(5003), - [anon_sym_by] = ACTIONS(5003), - [anon_sym_as] = ACTIONS(5005), - [anon_sym_is] = ACTIONS(5005), - [anon_sym_DASH_GT] = ACTIONS(5005), - [anon_sym_with] = ACTIONS(5005), - [aux_sym_preproc_if_token3] = ACTIONS(5003), - [aux_sym_preproc_else_token1] = ACTIONS(5003), - [aux_sym_preproc_elif_token1] = ACTIONS(5003), + [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), @@ -489835,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), @@ -489844,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(4548), - [anon_sym_EQ] = ACTIONS(4550), - [anon_sym_LBRACK] = ACTIONS(4548), - [anon_sym_COLON] = ACTIONS(4548), - [anon_sym_COMMA] = ACTIONS(4548), - [anon_sym_RBRACK] = ACTIONS(4548), - [anon_sym_LPAREN] = ACTIONS(4548), - [anon_sym_RPAREN] = ACTIONS(4548), - [anon_sym_RBRACE] = ACTIONS(4548), - [anon_sym_LT] = ACTIONS(4550), - [anon_sym_GT] = ACTIONS(4550), - [anon_sym_in] = ACTIONS(4548), - [anon_sym_QMARK] = ACTIONS(4550), - [anon_sym_BANG] = ACTIONS(4550), - [anon_sym_PLUS_PLUS] = ACTIONS(4548), - [anon_sym_DASH_DASH] = ACTIONS(4548), - [anon_sym_PLUS] = ACTIONS(4550), - [anon_sym_DASH] = ACTIONS(4550), - [anon_sym_STAR] = ACTIONS(4550), - [anon_sym_SLASH] = ACTIONS(4550), - [anon_sym_PERCENT] = ACTIONS(4550), - [anon_sym_CARET] = ACTIONS(4550), - [anon_sym_PIPE] = ACTIONS(4550), - [anon_sym_AMP] = ACTIONS(4550), - [anon_sym_LT_LT] = ACTIONS(4550), - [anon_sym_GT_GT] = ACTIONS(4550), - [anon_sym_GT_GT_GT] = ACTIONS(4550), - [anon_sym_EQ_EQ] = ACTIONS(4548), - [anon_sym_BANG_EQ] = ACTIONS(4548), - [anon_sym_GT_EQ] = ACTIONS(4548), - [anon_sym_LT_EQ] = ACTIONS(4548), - [anon_sym_DOT] = ACTIONS(4550), - [anon_sym_EQ_GT] = ACTIONS(4548), - [anon_sym_switch] = ACTIONS(4548), - [anon_sym_when] = ACTIONS(4548), - [anon_sym_DOT_DOT] = ACTIONS(4548), - [anon_sym_and] = ACTIONS(4548), - [anon_sym_or] = ACTIONS(4548), - [anon_sym_PLUS_EQ] = ACTIONS(4548), - [anon_sym_DASH_EQ] = ACTIONS(4548), - [anon_sym_STAR_EQ] = ACTIONS(4548), - [anon_sym_SLASH_EQ] = ACTIONS(4548), - [anon_sym_PERCENT_EQ] = ACTIONS(4548), - [anon_sym_AMP_EQ] = ACTIONS(4548), - [anon_sym_CARET_EQ] = ACTIONS(4548), - [anon_sym_PIPE_EQ] = ACTIONS(4548), - [anon_sym_LT_LT_EQ] = ACTIONS(4548), - [anon_sym_GT_GT_EQ] = ACTIONS(4548), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4548), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4548), - [anon_sym_AMP_AMP] = ACTIONS(4548), - [anon_sym_PIPE_PIPE] = ACTIONS(4548), - [sym_op_coalescing] = ACTIONS(4550), - [anon_sym_on] = ACTIONS(4548), - [anon_sym_equals] = ACTIONS(4548), - [anon_sym_by] = ACTIONS(4548), - [anon_sym_as] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4548), - [anon_sym_DASH_GT] = ACTIONS(4548), - [anon_sym_with] = ACTIONS(4548), - [aux_sym_preproc_if_token3] = ACTIONS(4548), - [aux_sym_preproc_else_token1] = ACTIONS(4548), - [aux_sym_preproc_elif_token1] = ACTIONS(4548), + [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), @@ -489919,27 +489384,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3075] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [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), @@ -489949,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4742), - [anon_sym_QMARK] = ACTIONS(5454), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4748), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5428), - [anon_sym_from] = ACTIONS(4742), - [anon_sym_join] = ACTIONS(4742), - [anon_sym_let] = ACTIONS(4742), - [anon_sym_orderby] = ACTIONS(4742), - [anon_sym_group] = ACTIONS(4742), - [anon_sym_select] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5432), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -490003,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), @@ -490012,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(4530), - [anon_sym_EQ] = ACTIONS(4528), - [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(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_in] = ACTIONS(4530), - [anon_sym_QMARK] = ACTIONS(4528), - [anon_sym_BANG] = ACTIONS(4528), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4528), - [anon_sym_CARET] = ACTIONS(4528), - [anon_sym_PIPE] = ACTIONS(4528), - [anon_sym_AMP] = ACTIONS(4528), - [anon_sym_LT_LT] = ACTIONS(4528), - [anon_sym_GT_GT] = ACTIONS(4528), - [anon_sym_GT_GT_GT] = ACTIONS(4528), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_EQ_GT] = ACTIONS(4530), - [anon_sym_switch] = ACTIONS(4530), - [anon_sym_when] = ACTIONS(4530), - [anon_sym_DOT_DOT] = 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_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [sym_op_coalescing] = ACTIONS(4528), - [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), + [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), @@ -490087,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), @@ -490096,102 +489568,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3077), [sym_preproc_define] = STATE(3077), [sym_preproc_undef] = STATE(3077), - [sym__identifier_token] = ACTIONS(4486), - [anon_sym_alias] = ACTIONS(4486), - [anon_sym_global] = ACTIONS(4486), - [anon_sym_LBRACK] = ACTIONS(4488), - [anon_sym_COLON] = ACTIONS(4488), - [anon_sym_COMMA] = ACTIONS(4488), - [anon_sym_LPAREN] = ACTIONS(4488), - [anon_sym_file] = ACTIONS(4486), - [anon_sym_LT] = ACTIONS(4486), - [anon_sym_GT] = ACTIONS(4486), - [anon_sym_where] = ACTIONS(4486), - [anon_sym_QMARK] = ACTIONS(4486), - [anon_sym_notnull] = ACTIONS(4486), - [anon_sym_unmanaged] = ACTIONS(4486), - [anon_sym_BANG] = ACTIONS(4486), - [anon_sym_PLUS_PLUS] = ACTIONS(4488), - [anon_sym_DASH_DASH] = ACTIONS(4488), - [anon_sym_PLUS] = ACTIONS(4486), - [anon_sym_DASH] = ACTIONS(4486), - [anon_sym_STAR] = ACTIONS(4488), - [anon_sym_SLASH] = ACTIONS(4486), - [anon_sym_PERCENT] = ACTIONS(4488), - [anon_sym_CARET] = ACTIONS(4488), - [anon_sym_PIPE] = ACTIONS(4486), - [anon_sym_AMP] = ACTIONS(4486), - [anon_sym_LT_LT] = ACTIONS(4488), - [anon_sym_GT_GT] = ACTIONS(4486), - [anon_sym_GT_GT_GT] = ACTIONS(4488), - [anon_sym_EQ_EQ] = ACTIONS(4488), - [anon_sym_BANG_EQ] = ACTIONS(4488), - [anon_sym_GT_EQ] = ACTIONS(4488), - [anon_sym_LT_EQ] = ACTIONS(4488), - [anon_sym_DOT] = ACTIONS(4486), - [anon_sym_scoped] = ACTIONS(4486), - [anon_sym_var] = ACTIONS(4486), - [anon_sym_yield] = ACTIONS(4486), - [anon_sym_switch] = ACTIONS(4486), - [anon_sym_when] = ACTIONS(4486), - [sym_discard] = ACTIONS(4486), - [anon_sym_DOT_DOT] = ACTIONS(4488), - [anon_sym_and] = ACTIONS(4486), - [anon_sym_or] = ACTIONS(4486), - [anon_sym_AMP_AMP] = ACTIONS(4488), - [anon_sym_PIPE_PIPE] = ACTIONS(4488), - [sym_op_coalescing] = ACTIONS(4488), - [anon_sym_from] = ACTIONS(4486), - [anon_sym_into] = ACTIONS(4486), - [anon_sym_join] = ACTIONS(4486), - [anon_sym_on] = ACTIONS(4486), - [anon_sym_equals] = ACTIONS(4486), - [anon_sym_let] = ACTIONS(4486), - [anon_sym_orderby] = ACTIONS(4486), - [anon_sym_ascending] = ACTIONS(4486), - [anon_sym_descending] = ACTIONS(4486), - [anon_sym_group] = ACTIONS(4486), - [anon_sym_by] = ACTIONS(4486), - [anon_sym_select] = ACTIONS(4486), - [anon_sym_as] = ACTIONS(4486), - [anon_sym_is] = ACTIONS(4486), - [anon_sym_DASH_GT] = ACTIONS(4488), - [anon_sym_with] = ACTIONS(4486), - [sym_grit_metavariable] = ACTIONS(4488), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4488), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3078] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [sym_initializer_expression] = STATE(3201), [sym_preproc_region] = STATE(3078), [sym_preproc_endregion] = STATE(3078), [sym_preproc_line] = STATE(3078), @@ -490201,48 +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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4798), - [anon_sym_QMARK] = ACTIONS(5454), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4800), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5428), - [anon_sym_from] = ACTIONS(4798), - [anon_sym_join] = ACTIONS(4798), - [anon_sym_let] = ACTIONS(4798), - [anon_sym_orderby] = ACTIONS(4798), - [anon_sym_group] = ACTIONS(4798), - [anon_sym_select] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5432), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -490255,27 +489704,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3079] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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), @@ -490285,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_SEMI] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_RBRACK] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5456), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5438), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5442), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4742), - [aux_sym_preproc_else_token1] = ACTIONS(4742), - [aux_sym_preproc_elif_token1] = ACTIONS(4742), + [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), @@ -490339,27 +489784,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3080] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [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(3080), [sym_preproc_endregion] = STATE(3080), [sym_preproc_line] = STATE(3080), @@ -490369,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_where] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_from] = ACTIONS(4768), - [anon_sym_join] = ACTIONS(4768), - [anon_sym_let] = ACTIONS(4768), - [anon_sym_orderby] = ACTIONS(4768), - [anon_sym_group] = ACTIONS(4768), - [anon_sym_select] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -490423,27 +489864,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3081] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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), @@ -490453,48 +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(4686), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5442), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -490507,27 +489944,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3082] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), [sym_preproc_region] = STATE(3082), [sym_preproc_endregion] = STATE(3082), [sym_preproc_line] = STATE(3082), @@ -490537,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_SEMI] = ACTIONS(4798), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4798), - [anon_sym_RBRACK] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4798), - [anon_sym_RBRACE] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5456), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5438), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5442), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4798), - [aux_sym_preproc_else_token1] = ACTIONS(4798), - [aux_sym_preproc_elif_token1] = ACTIONS(4798), + [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), @@ -490591,27 +490024,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3083] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [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), @@ -490621,48 +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), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5432), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -490675,6 +490104,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3084] = { + [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), @@ -490684,69 +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_SEMI] = ACTIONS(4526), - [anon_sym_EQ] = ACTIONS(4528), - [anon_sym_LBRACK] = ACTIONS(4526), - [anon_sym_COLON] = ACTIONS(4530), - [anon_sym_COMMA] = ACTIONS(4526), - [anon_sym_RBRACK] = ACTIONS(4526), - [anon_sym_LPAREN] = ACTIONS(4526), - [anon_sym_RPAREN] = ACTIONS(4526), - [anon_sym_RBRACE] = ACTIONS(4526), - [anon_sym_LT] = ACTIONS(4532), - [anon_sym_GT] = ACTIONS(4532), - [anon_sym_in] = ACTIONS(4526), - [anon_sym_QMARK] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4526), - [anon_sym_DASH_DASH] = ACTIONS(4526), - [anon_sym_PLUS] = ACTIONS(4532), - [anon_sym_DASH] = ACTIONS(4532), - [anon_sym_STAR] = ACTIONS(4532), - [anon_sym_SLASH] = ACTIONS(4532), - [anon_sym_PERCENT] = ACTIONS(4532), - [anon_sym_CARET] = ACTIONS(4532), - [anon_sym_PIPE] = ACTIONS(4532), - [anon_sym_AMP] = ACTIONS(4532), - [anon_sym_LT_LT] = ACTIONS(4532), - [anon_sym_GT_GT] = ACTIONS(4532), - [anon_sym_GT_GT_GT] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4526), - [anon_sym_BANG_EQ] = ACTIONS(4526), - [anon_sym_GT_EQ] = ACTIONS(4526), - [anon_sym_LT_EQ] = ACTIONS(4526), - [anon_sym_DOT] = ACTIONS(4532), - [anon_sym_EQ_GT] = ACTIONS(4526), - [anon_sym_switch] = ACTIONS(4526), - [anon_sym_when] = ACTIONS(4526), - [anon_sym_DOT_DOT] = ACTIONS(4526), - [anon_sym_and] = ACTIONS(4526), - [anon_sym_or] = ACTIONS(4526), - [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_AMP_AMP] = ACTIONS(4526), - [anon_sym_PIPE_PIPE] = ACTIONS(4526), - [sym_op_coalescing] = ACTIONS(4532), - [anon_sym_on] = ACTIONS(4526), - [anon_sym_equals] = ACTIONS(4526), - [anon_sym_by] = ACTIONS(4526), - [anon_sym_as] = ACTIONS(4526), - [anon_sym_is] = ACTIONS(4526), - [anon_sym_DASH_GT] = ACTIONS(4526), - [anon_sym_with] = ACTIONS(4526), - [aux_sym_preproc_if_token3] = ACTIONS(4526), - [aux_sym_preproc_else_token1] = ACTIONS(4526), - [aux_sym_preproc_elif_token1] = ACTIONS(4526), + [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), @@ -490759,27 +490184,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3085] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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), @@ -490789,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_SEMI] = ACTIONS(4764), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_RBRACK] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5456), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5438), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5442), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4764), - [aux_sym_preproc_else_token1] = ACTIONS(4764), - [aux_sym_preproc_elif_token1] = ACTIONS(4764), + [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), @@ -490852,69 +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_SEMI] = ACTIONS(3964), - [anon_sym_EQ] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_COLON] = ACTIONS(3964), - [anon_sym_COMMA] = ACTIONS(3964), - [anon_sym_RBRACK] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_RBRACE] = ACTIONS(3964), - [anon_sym_LT] = ACTIONS(3962), - [anon_sym_GT] = ACTIONS(3962), - [anon_sym_in] = ACTIONS(3964), - [anon_sym_QMARK] = ACTIONS(3962), - [anon_sym_BANG] = ACTIONS(3962), - [anon_sym_PLUS_PLUS] = ACTIONS(3964), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_PLUS] = ACTIONS(3962), - [anon_sym_DASH] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3962), - [anon_sym_SLASH] = ACTIONS(3962), - [anon_sym_PERCENT] = ACTIONS(3962), - [anon_sym_CARET] = ACTIONS(3962), - [anon_sym_PIPE] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_LT_LT] = ACTIONS(3962), - [anon_sym_GT_GT] = ACTIONS(3962), - [anon_sym_GT_GT_GT] = ACTIONS(3962), - [anon_sym_EQ_EQ] = ACTIONS(3964), - [anon_sym_BANG_EQ] = ACTIONS(3964), - [anon_sym_GT_EQ] = ACTIONS(3964), - [anon_sym_LT_EQ] = ACTIONS(3964), - [anon_sym_DOT] = ACTIONS(3962), - [anon_sym_EQ_GT] = ACTIONS(3964), - [anon_sym_switch] = ACTIONS(3964), - [anon_sym_when] = ACTIONS(3964), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_and] = ACTIONS(3964), - [anon_sym_or] = ACTIONS(3964), - [anon_sym_PLUS_EQ] = ACTIONS(3964), - [anon_sym_DASH_EQ] = ACTIONS(3964), - [anon_sym_STAR_EQ] = ACTIONS(3964), - [anon_sym_SLASH_EQ] = ACTIONS(3964), - [anon_sym_PERCENT_EQ] = ACTIONS(3964), - [anon_sym_AMP_EQ] = ACTIONS(3964), - [anon_sym_CARET_EQ] = ACTIONS(3964), - [anon_sym_PIPE_EQ] = ACTIONS(3964), - [anon_sym_LT_LT_EQ] = ACTIONS(3964), - [anon_sym_GT_GT_EQ] = ACTIONS(3964), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3964), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3964), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [sym_op_coalescing] = ACTIONS(3962), - [anon_sym_on] = ACTIONS(3964), - [anon_sym_equals] = ACTIONS(3964), - [anon_sym_by] = ACTIONS(3964), - [anon_sym_as] = ACTIONS(3964), - [anon_sym_is] = ACTIONS(3964), - [anon_sym_DASH_GT] = ACTIONS(3964), - [anon_sym_with] = ACTIONS(3964), - [aux_sym_preproc_if_token3] = ACTIONS(3964), - [aux_sym_preproc_else_token1] = ACTIONS(3964), - [aux_sym_preproc_elif_token1] = ACTIONS(3964), + [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), @@ -490927,27 +490344,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3087] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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(3087), [sym_preproc_endregion] = STATE(3087), [sym_preproc_line] = STATE(3087), @@ -490957,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(4790), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_RBRACK] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4790), - [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(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), @@ -491011,6 +490424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3088] = { + [sym_type_argument_list] = STATE(3144), [sym_preproc_region] = STATE(3088), [sym_preproc_endregion] = STATE(3088), [sym_preproc_line] = STATE(3088), @@ -491020,69 +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_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_BANG] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3982), - [anon_sym_DASH_DASH] = ACTIONS(3982), - [anon_sym_PLUS] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_SLASH] = ACTIONS(3980), - [anon_sym_PERCENT] = ACTIONS(3980), - [anon_sym_CARET] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3980), - [anon_sym_LT_LT] = ACTIONS(3980), - [anon_sym_GT_GT] = ACTIONS(3980), - [anon_sym_GT_GT_GT] = ACTIONS(3980), - [anon_sym_EQ_EQ] = ACTIONS(3982), - [anon_sym_BANG_EQ] = ACTIONS(3982), - [anon_sym_GT_EQ] = ACTIONS(3982), - [anon_sym_LT_EQ] = ACTIONS(3982), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_EQ_GT] = ACTIONS(3982), - [anon_sym_switch] = ACTIONS(3982), - [anon_sym_when] = ACTIONS(3982), - [anon_sym_DOT_DOT] = 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_AMP_AMP] = ACTIONS(3982), - [anon_sym_PIPE_PIPE] = ACTIONS(3982), - [sym_op_coalescing] = ACTIONS(3980), - [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), + [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), @@ -491095,27 +490504,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3089] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [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), @@ -491125,48 +490528,50 @@ 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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5432), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -491179,6 +490584,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3090] = { + [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(3090), [sym_preproc_endregion] = STATE(3090), [sym_preproc_line] = STATE(3090), @@ -491188,69 +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(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_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), @@ -491263,27 +490664,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3091] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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(3091), [sym_preproc_endregion] = STATE(3091), [sym_preproc_line] = STATE(3091), @@ -491293,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(4780), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_RBRACK] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_RBRACE] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5456), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5438), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5442), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4780), - [aux_sym_preproc_else_token1] = ACTIONS(4780), - [aux_sym_preproc_elif_token1] = ACTIONS(4780), + [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), @@ -491347,27 +490744,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3092] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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(3092), [sym_preproc_endregion] = STATE(3092), [sym_preproc_line] = STATE(3092), @@ -491377,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(4686), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5442), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -491431,27 +490824,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3093] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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), @@ -491461,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(4776), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4776), - [anon_sym_RBRACK] = ACTIONS(4776), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4776), - [anon_sym_RBRACE] = ACTIONS(4776), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5456), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5438), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5442), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4776), - [aux_sym_preproc_else_token1] = ACTIONS(4776), - [aux_sym_preproc_elif_token1] = ACTIONS(4776), + [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), @@ -491515,27 +490904,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3094] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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), @@ -491545,48 +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), - [anon_sym_SEMI] = ACTIONS(4786), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_RBRACK] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4786), - [anon_sym_RBRACE] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4786), - [aux_sym_preproc_if_token3] = ACTIONS(4786), - [aux_sym_preproc_else_token1] = ACTIONS(4786), - [aux_sym_preproc_elif_token1] = ACTIONS(4786), + [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), @@ -491599,27 +490984,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3095] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [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), @@ -491629,48 +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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4794), - [anon_sym_QMARK] = ACTIONS(5454), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5428), - [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(5430), - [anon_sym_is] = ACTIONS(5432), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -491683,8 +491064,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3096] = { - [sym_preproc_else_in_attribute_list] = STATE(7704), - [sym_preproc_elif_in_attribute_list] = STATE(7704), + [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), @@ -491694,67 +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), - [sym__identifier_token] = ACTIONS(5458), - [anon_sym_extern] = ACTIONS(5458), - [anon_sym_alias] = ACTIONS(5458), - [anon_sym_global] = ACTIONS(5458), - [anon_sym_unsafe] = ACTIONS(5458), - [anon_sym_static] = ACTIONS(5458), - [anon_sym_LBRACK] = ACTIONS(5460), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_event] = ACTIONS(5458), - [anon_sym_class] = ACTIONS(5458), - [anon_sym_ref] = ACTIONS(5458), - [anon_sym_struct] = ACTIONS(5458), - [anon_sym_enum] = ACTIONS(5458), - [anon_sym_interface] = ACTIONS(5458), - [anon_sym_delegate] = ACTIONS(5458), - [anon_sym_record] = ACTIONS(5458), - [anon_sym_public] = ACTIONS(5458), - [anon_sym_private] = ACTIONS(5458), - [anon_sym_readonly] = ACTIONS(5458), - [anon_sym_abstract] = ACTIONS(5458), - [anon_sym_async] = ACTIONS(5458), - [anon_sym_const] = ACTIONS(5458), - [anon_sym_file] = ACTIONS(5458), - [anon_sym_fixed] = ACTIONS(5458), - [anon_sym_internal] = ACTIONS(5458), - [anon_sym_new] = ACTIONS(5458), - [anon_sym_override] = ACTIONS(5458), - [anon_sym_partial] = ACTIONS(5458), - [anon_sym_protected] = ACTIONS(5458), - [anon_sym_required] = ACTIONS(5458), - [anon_sym_sealed] = ACTIONS(5458), - [anon_sym_virtual] = ACTIONS(5458), - [anon_sym_volatile] = ACTIONS(5458), - [anon_sym_where] = ACTIONS(5458), - [anon_sym_notnull] = ACTIONS(5458), - [anon_sym_unmanaged] = ACTIONS(5458), - [anon_sym_TILDE] = ACTIONS(5460), - [anon_sym_implicit] = ACTIONS(5458), - [anon_sym_explicit] = ACTIONS(5458), - [anon_sym_scoped] = ACTIONS(5458), - [anon_sym_var] = ACTIONS(5458), - [sym_predefined_type] = 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(5460), - [aux_sym_preproc_if_token1] = ACTIONS(5460), - [aux_sym_preproc_if_token3] = ACTIONS(5462), - [aux_sym_preproc_else_token1] = ACTIONS(5464), - [aux_sym_preproc_elif_token1] = ACTIONS(5466), + [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), @@ -491767,27 +491144,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3097] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [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), @@ -491797,48 +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), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [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(4932), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [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(4936), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -491851,27 +491224,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3098] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [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), @@ -491881,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [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(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -491935,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), @@ -491944,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(4540), - [anon_sym_EQ] = ACTIONS(4542), - [anon_sym_LBRACK] = ACTIONS(4540), - [anon_sym_COLON] = ACTIONS(4540), - [anon_sym_COMMA] = ACTIONS(4540), - [anon_sym_RBRACK] = ACTIONS(4540), - [anon_sym_LPAREN] = ACTIONS(4540), - [anon_sym_RPAREN] = ACTIONS(4540), - [anon_sym_RBRACE] = ACTIONS(4540), - [anon_sym_LT] = ACTIONS(4542), - [anon_sym_GT] = ACTIONS(4542), - [anon_sym_in] = ACTIONS(4540), - [anon_sym_QMARK] = ACTIONS(4542), - [anon_sym_BANG] = ACTIONS(4542), - [anon_sym_PLUS_PLUS] = ACTIONS(4540), - [anon_sym_DASH_DASH] = ACTIONS(4540), - [anon_sym_PLUS] = ACTIONS(4542), - [anon_sym_DASH] = ACTIONS(4542), - [anon_sym_STAR] = ACTIONS(4542), - [anon_sym_SLASH] = ACTIONS(4542), - [anon_sym_PERCENT] = ACTIONS(4542), - [anon_sym_CARET] = ACTIONS(4542), - [anon_sym_PIPE] = ACTIONS(4542), - [anon_sym_AMP] = ACTIONS(4542), - [anon_sym_LT_LT] = ACTIONS(4542), - [anon_sym_GT_GT] = ACTIONS(4542), - [anon_sym_GT_GT_GT] = ACTIONS(4542), - [anon_sym_EQ_EQ] = ACTIONS(4540), - [anon_sym_BANG_EQ] = ACTIONS(4540), - [anon_sym_GT_EQ] = ACTIONS(4540), - [anon_sym_LT_EQ] = ACTIONS(4540), - [anon_sym_DOT] = ACTIONS(4542), - [anon_sym_EQ_GT] = ACTIONS(4540), - [anon_sym_switch] = ACTIONS(4540), - [anon_sym_when] = ACTIONS(4540), - [anon_sym_DOT_DOT] = ACTIONS(4540), - [anon_sym_and] = ACTIONS(4540), - [anon_sym_or] = ACTIONS(4540), - [anon_sym_PLUS_EQ] = ACTIONS(4540), - [anon_sym_DASH_EQ] = ACTIONS(4540), - [anon_sym_STAR_EQ] = ACTIONS(4540), - [anon_sym_SLASH_EQ] = ACTIONS(4540), - [anon_sym_PERCENT_EQ] = ACTIONS(4540), - [anon_sym_AMP_EQ] = ACTIONS(4540), - [anon_sym_CARET_EQ] = ACTIONS(4540), - [anon_sym_PIPE_EQ] = ACTIONS(4540), - [anon_sym_LT_LT_EQ] = ACTIONS(4540), - [anon_sym_GT_GT_EQ] = ACTIONS(4540), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4540), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4540), - [anon_sym_AMP_AMP] = ACTIONS(4540), - [anon_sym_PIPE_PIPE] = ACTIONS(4540), - [sym_op_coalescing] = ACTIONS(4542), - [anon_sym_on] = ACTIONS(4540), - [anon_sym_equals] = ACTIONS(4540), - [anon_sym_by] = ACTIONS(4540), - [anon_sym_as] = ACTIONS(4540), - [anon_sym_is] = ACTIONS(4540), - [anon_sym_DASH_GT] = ACTIONS(4540), - [anon_sym_with] = ACTIONS(4540), - [aux_sym_preproc_if_token3] = ACTIONS(4540), - [aux_sym_preproc_else_token1] = ACTIONS(4540), - [aux_sym_preproc_elif_token1] = ACTIONS(4540), + [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), @@ -492019,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), @@ -492028,102 +491408,77 @@ 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), - [sym__identifier_token] = ACTIONS(4520), - [anon_sym_alias] = ACTIONS(4520), - [anon_sym_global] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(4522), - [anon_sym_COMMA] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_file] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_where] = ACTIONS(4520), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_notnull] = ACTIONS(4520), - [anon_sym_unmanaged] = ACTIONS(4520), - [anon_sym_BANG] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4522), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4522), - [anon_sym_CARET] = ACTIONS(4522), - [anon_sym_PIPE] = ACTIONS(4520), - [anon_sym_AMP] = ACTIONS(4520), - [anon_sym_LT_LT] = ACTIONS(4522), - [anon_sym_GT_GT] = ACTIONS(4520), - [anon_sym_GT_GT_GT] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_scoped] = ACTIONS(4520), - [anon_sym_var] = ACTIONS(4520), - [anon_sym_yield] = ACTIONS(4520), - [anon_sym_switch] = ACTIONS(4520), - [anon_sym_when] = ACTIONS(4520), - [sym_discard] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_and] = ACTIONS(4520), - [anon_sym_or] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [sym_op_coalescing] = ACTIONS(4522), - [anon_sym_from] = ACTIONS(4520), - [anon_sym_into] = ACTIONS(4520), - [anon_sym_join] = ACTIONS(4520), - [anon_sym_on] = ACTIONS(4520), - [anon_sym_equals] = ACTIONS(4520), - [anon_sym_let] = ACTIONS(4520), - [anon_sym_orderby] = ACTIONS(4520), - [anon_sym_ascending] = ACTIONS(4520), - [anon_sym_descending] = ACTIONS(4520), - [anon_sym_group] = ACTIONS(4520), - [anon_sym_by] = ACTIONS(4520), - [anon_sym_select] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_DASH_GT] = ACTIONS(4522), - [anon_sym_with] = ACTIONS(4520), - [sym_grit_metavariable] = ACTIONS(4522), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4522), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3101] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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), @@ -492133,48 +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(1435), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_RBRACK] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(4926), - [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(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [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(4932), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [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(4936), - [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(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), @@ -492187,27 +491544,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3102] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [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), @@ -492217,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5432), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -492271,8 +491624,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3103] = { - [sym_preproc_else_in_attribute_list] = STATE(7764), - [sym_preproc_elif_in_attribute_list] = STATE(7764), + [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(3103), [sym_preproc_endregion] = STATE(3103), [sym_preproc_line] = STATE(3103), @@ -492282,67 +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), - [sym__identifier_token] = ACTIONS(5458), - [anon_sym_extern] = ACTIONS(5458), - [anon_sym_alias] = ACTIONS(5458), - [anon_sym_global] = ACTIONS(5458), - [anon_sym_unsafe] = ACTIONS(5458), - [anon_sym_static] = ACTIONS(5458), - [anon_sym_LBRACK] = ACTIONS(5460), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_event] = ACTIONS(5458), - [anon_sym_class] = ACTIONS(5458), - [anon_sym_ref] = ACTIONS(5458), - [anon_sym_struct] = ACTIONS(5458), - [anon_sym_enum] = ACTIONS(5458), - [anon_sym_interface] = ACTIONS(5458), - [anon_sym_delegate] = ACTIONS(5458), - [anon_sym_record] = ACTIONS(5458), - [anon_sym_public] = ACTIONS(5458), - [anon_sym_private] = ACTIONS(5458), - [anon_sym_readonly] = ACTIONS(5458), - [anon_sym_abstract] = ACTIONS(5458), - [anon_sym_async] = ACTIONS(5458), - [anon_sym_const] = ACTIONS(5458), - [anon_sym_file] = ACTIONS(5458), - [anon_sym_fixed] = ACTIONS(5458), - [anon_sym_internal] = ACTIONS(5458), - [anon_sym_new] = ACTIONS(5458), - [anon_sym_override] = ACTIONS(5458), - [anon_sym_partial] = ACTIONS(5458), - [anon_sym_protected] = ACTIONS(5458), - [anon_sym_required] = ACTIONS(5458), - [anon_sym_sealed] = ACTIONS(5458), - [anon_sym_virtual] = ACTIONS(5458), - [anon_sym_volatile] = ACTIONS(5458), - [anon_sym_where] = ACTIONS(5458), - [anon_sym_notnull] = ACTIONS(5458), - [anon_sym_unmanaged] = ACTIONS(5458), - [anon_sym_TILDE] = ACTIONS(5460), - [anon_sym_implicit] = ACTIONS(5458), - [anon_sym_explicit] = ACTIONS(5458), - [anon_sym_scoped] = ACTIONS(5458), - [anon_sym_var] = ACTIONS(5458), - [sym_predefined_type] = 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(5460), - [aux_sym_preproc_if_token1] = ACTIONS(5460), - [aux_sym_preproc_if_token3] = ACTIONS(5468), - [aux_sym_preproc_else_token1] = ACTIONS(5464), - [aux_sym_preproc_elif_token1] = ACTIONS(5466), + [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), @@ -492355,27 +491704,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3104] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [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), @@ -492385,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_where] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4788), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [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(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -492439,27 +491784,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3105] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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), @@ -492469,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(4686), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -492523,27 +491864,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3106] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [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), @@ -492553,48 +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), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5432), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -492607,27 +491944,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3107] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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), @@ -492637,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(4756), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4756), - [anon_sym_RBRACK] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4756), - [anon_sym_RBRACE] = ACTIONS(4756), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5456), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5438), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5442), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4756), - [aux_sym_preproc_else_token1] = ACTIONS(4756), - [aux_sym_preproc_elif_token1] = ACTIONS(4756), + [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), @@ -492691,6 +492024,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3108] = { + [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), @@ -492700,69 +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(3974), - [anon_sym_EQ] = ACTIONS(3972), - [anon_sym_LBRACK] = ACTIONS(3974), - [anon_sym_COLON] = ACTIONS(3974), - [anon_sym_COMMA] = ACTIONS(3974), - [anon_sym_RBRACK] = ACTIONS(3974), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_RPAREN] = ACTIONS(3974), - [anon_sym_RBRACE] = ACTIONS(3974), - [anon_sym_LT] = ACTIONS(3972), - [anon_sym_GT] = ACTIONS(3972), - [anon_sym_in] = ACTIONS(3974), - [anon_sym_QMARK] = ACTIONS(3972), - [anon_sym_BANG] = ACTIONS(3972), - [anon_sym_PLUS_PLUS] = ACTIONS(3974), - [anon_sym_DASH_DASH] = ACTIONS(3974), - [anon_sym_PLUS] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3972), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_SLASH] = ACTIONS(3972), - [anon_sym_PERCENT] = ACTIONS(3972), - [anon_sym_CARET] = ACTIONS(3972), - [anon_sym_PIPE] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3972), - [anon_sym_LT_LT] = ACTIONS(3972), - [anon_sym_GT_GT] = ACTIONS(3972), - [anon_sym_GT_GT_GT] = ACTIONS(3972), - [anon_sym_EQ_EQ] = ACTIONS(3974), - [anon_sym_BANG_EQ] = ACTIONS(3974), - [anon_sym_GT_EQ] = ACTIONS(3974), - [anon_sym_LT_EQ] = ACTIONS(3974), - [anon_sym_DOT] = ACTIONS(3972), - [anon_sym_EQ_GT] = ACTIONS(3974), - [anon_sym_switch] = ACTIONS(3974), - [anon_sym_when] = ACTIONS(3974), - [anon_sym_DOT_DOT] = ACTIONS(3974), - [anon_sym_and] = ACTIONS(3974), - [anon_sym_or] = ACTIONS(3974), - [anon_sym_PLUS_EQ] = ACTIONS(3974), - [anon_sym_DASH_EQ] = ACTIONS(3974), - [anon_sym_STAR_EQ] = ACTIONS(3974), - [anon_sym_SLASH_EQ] = ACTIONS(3974), - [anon_sym_PERCENT_EQ] = ACTIONS(3974), - [anon_sym_AMP_EQ] = ACTIONS(3974), - [anon_sym_CARET_EQ] = ACTIONS(3974), - [anon_sym_PIPE_EQ] = ACTIONS(3974), - [anon_sym_LT_LT_EQ] = ACTIONS(3974), - [anon_sym_GT_GT_EQ] = ACTIONS(3974), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3974), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3974), - [anon_sym_AMP_AMP] = ACTIONS(3974), - [anon_sym_PIPE_PIPE] = ACTIONS(3974), - [sym_op_coalescing] = ACTIONS(3972), - [anon_sym_on] = ACTIONS(3974), - [anon_sym_equals] = ACTIONS(3974), - [anon_sym_by] = ACTIONS(3974), - [anon_sym_as] = ACTIONS(3974), - [anon_sym_is] = ACTIONS(3974), - [anon_sym_DASH_GT] = ACTIONS(3974), - [anon_sym_with] = ACTIONS(3974), - [aux_sym_preproc_if_token3] = ACTIONS(3974), - [aux_sym_preproc_else_token1] = ACTIONS(3974), - [aux_sym_preproc_elif_token1] = ACTIONS(3974), + [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), @@ -492775,30 +492104,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3109] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym_tuple_pattern] = STATE(7293), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6384), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6015), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -492808,45 +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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3676), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(5444), - [anon_sym_LPAREN] = ACTIONS(5470), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_ref] = ACTIONS(5446), - [anon_sym_delegate] = ACTIONS(3709), - [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(5472), - [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(5474), - [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(5452), + [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), @@ -492859,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), @@ -492868,68 +492208,50 @@ 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(4482), - [anon_sym_alias] = ACTIONS(4482), - [anon_sym_global] = ACTIONS(4482), - [anon_sym_LBRACK] = ACTIONS(4484), - [anon_sym_COLON] = ACTIONS(4484), - [anon_sym_COMMA] = ACTIONS(4484), - [anon_sym_LPAREN] = ACTIONS(4484), - [anon_sym_file] = ACTIONS(4482), - [anon_sym_LT] = ACTIONS(4482), - [anon_sym_GT] = ACTIONS(4482), - [anon_sym_where] = ACTIONS(4482), - [anon_sym_QMARK] = ACTIONS(4482), - [anon_sym_notnull] = ACTIONS(4482), - [anon_sym_unmanaged] = ACTIONS(4482), - [anon_sym_BANG] = ACTIONS(4482), - [anon_sym_PLUS_PLUS] = ACTIONS(4484), - [anon_sym_DASH_DASH] = ACTIONS(4484), - [anon_sym_PLUS] = ACTIONS(4482), - [anon_sym_DASH] = ACTIONS(4482), - [anon_sym_STAR] = ACTIONS(4484), - [anon_sym_SLASH] = ACTIONS(4482), - [anon_sym_PERCENT] = ACTIONS(4484), - [anon_sym_CARET] = ACTIONS(4484), - [anon_sym_PIPE] = ACTIONS(4482), - [anon_sym_AMP] = ACTIONS(4482), - [anon_sym_LT_LT] = ACTIONS(4484), - [anon_sym_GT_GT] = ACTIONS(4482), - [anon_sym_GT_GT_GT] = ACTIONS(4484), - [anon_sym_EQ_EQ] = ACTIONS(4484), - [anon_sym_BANG_EQ] = ACTIONS(4484), - [anon_sym_GT_EQ] = ACTIONS(4484), - [anon_sym_LT_EQ] = ACTIONS(4484), - [anon_sym_DOT] = ACTIONS(4482), - [anon_sym_scoped] = ACTIONS(4482), - [anon_sym_var] = ACTIONS(4482), - [anon_sym_yield] = ACTIONS(4482), - [anon_sym_switch] = ACTIONS(4482), - [anon_sym_when] = ACTIONS(4482), - [sym_discard] = ACTIONS(4482), - [anon_sym_DOT_DOT] = ACTIONS(4484), - [anon_sym_and] = ACTIONS(4482), - [anon_sym_or] = ACTIONS(4482), - [anon_sym_AMP_AMP] = ACTIONS(4484), - [anon_sym_PIPE_PIPE] = ACTIONS(4484), - [sym_op_coalescing] = ACTIONS(4484), - [anon_sym_from] = ACTIONS(4482), - [anon_sym_into] = ACTIONS(4482), - [anon_sym_join] = ACTIONS(4482), - [anon_sym_on] = ACTIONS(4482), - [anon_sym_equals] = ACTIONS(4482), - [anon_sym_let] = ACTIONS(4482), - [anon_sym_orderby] = ACTIONS(4482), - [anon_sym_ascending] = ACTIONS(4482), - [anon_sym_descending] = ACTIONS(4482), - [anon_sym_group] = ACTIONS(4482), - [anon_sym_by] = ACTIONS(4482), - [anon_sym_select] = ACTIONS(4482), - [anon_sym_as] = ACTIONS(4482), - [anon_sym_is] = ACTIONS(4482), - [anon_sym_DASH_GT] = ACTIONS(4484), - [anon_sym_with] = ACTIONS(4482), - [sym_grit_metavariable] = ACTIONS(4484), + [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), @@ -492940,30 +492262,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(4484), }, [3111] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [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), @@ -492973,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5432), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -493027,27 +492344,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3112] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [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), @@ -493057,48 +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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4780), - [anon_sym_QMARK] = ACTIONS(5454), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4782), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5428), - [anon_sym_from] = ACTIONS(4780), - [anon_sym_join] = ACTIONS(4780), - [anon_sym_let] = ACTIONS(4780), - [anon_sym_orderby] = ACTIONS(4780), - [anon_sym_group] = ACTIONS(4780), - [anon_sym_select] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5432), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -493111,27 +492424,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3113] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [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), @@ -493141,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -493204,102 +492513,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3114), [sym_preproc_define] = STATE(3114), [sym_preproc_undef] = STATE(3114), - [sym__identifier_token] = ACTIONS(4520), - [anon_sym_alias] = ACTIONS(4520), - [anon_sym_global] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_COLON] = ACTIONS(4522), - [anon_sym_COMMA] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_file] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(4520), - [anon_sym_GT] = ACTIONS(4520), - [anon_sym_where] = ACTIONS(4520), - [anon_sym_QMARK] = ACTIONS(4520), - [anon_sym_notnull] = ACTIONS(4520), - [anon_sym_unmanaged] = ACTIONS(4520), - [anon_sym_BANG] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4520), - [anon_sym_STAR] = ACTIONS(4522), - [anon_sym_SLASH] = ACTIONS(4520), - [anon_sym_PERCENT] = ACTIONS(4522), - [anon_sym_CARET] = ACTIONS(4522), - [anon_sym_PIPE] = ACTIONS(4520), - [anon_sym_AMP] = ACTIONS(4520), - [anon_sym_LT_LT] = ACTIONS(4522), - [anon_sym_GT_GT] = ACTIONS(4520), - [anon_sym_GT_GT_GT] = ACTIONS(4522), - [anon_sym_EQ_EQ] = ACTIONS(4522), - [anon_sym_BANG_EQ] = ACTIONS(4522), - [anon_sym_GT_EQ] = ACTIONS(4522), - [anon_sym_LT_EQ] = ACTIONS(4522), - [anon_sym_DOT] = ACTIONS(4520), - [anon_sym_scoped] = ACTIONS(4520), - [anon_sym_var] = ACTIONS(4520), - [anon_sym_yield] = ACTIONS(4520), - [anon_sym_switch] = ACTIONS(4520), - [anon_sym_when] = ACTIONS(4520), - [sym_discard] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(4522), - [anon_sym_and] = ACTIONS(4520), - [anon_sym_or] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4522), - [anon_sym_PIPE_PIPE] = ACTIONS(4522), - [sym_op_coalescing] = ACTIONS(4522), - [anon_sym_from] = ACTIONS(4520), - [anon_sym_into] = ACTIONS(4520), - [anon_sym_join] = ACTIONS(4520), - [anon_sym_on] = ACTIONS(4520), - [anon_sym_equals] = ACTIONS(4520), - [anon_sym_let] = ACTIONS(4520), - [anon_sym_orderby] = ACTIONS(4520), - [anon_sym_ascending] = ACTIONS(4520), - [anon_sym_descending] = ACTIONS(4520), - [anon_sym_group] = ACTIONS(4520), - [anon_sym_by] = ACTIONS(4520), - [anon_sym_select] = ACTIONS(4520), - [anon_sym_as] = ACTIONS(4520), - [anon_sym_is] = ACTIONS(4520), - [anon_sym_DASH_GT] = ACTIONS(4522), - [anon_sym_with] = ACTIONS(4520), - [sym_grit_metavariable] = ACTIONS(4522), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4522), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3115] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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), @@ -493309,48 +492608,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3115), [sym_preproc_define] = STATE(3115), [sym_preproc_undef] = STATE(3115), - [anon_sym_SEMI] = ACTIONS(4772), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_RBRACK] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4772), - [anon_sym_RBRACE] = ACTIONS(4772), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5456), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5438), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5442), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4772), - [aux_sym_preproc_else_token1] = ACTIONS(4772), - [aux_sym_preproc_elif_token1] = ACTIONS(4772), + [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), @@ -493363,27 +492664,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3116] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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), @@ -493393,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(4686), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5442), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -493447,27 +492744,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3117] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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(3117), [sym_preproc_endregion] = STATE(3117), [sym_preproc_line] = STATE(3117), @@ -493477,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(4686), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5442), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -493531,27 +492824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3118] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [sym_initializer_expression] = STATE(3319), [sym_preproc_region] = STATE(3118), [sym_preproc_endregion] = STATE(3118), [sym_preproc_line] = STATE(3118), @@ -493561,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(4686), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5442), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -493615,27 +492904,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3119] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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), @@ -493645,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(4686), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5442), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -493699,27 +492984,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3120] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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), @@ -493729,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(4686), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -493783,27 +493064,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3121] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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), @@ -493813,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(4686), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -493867,27 +493144,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3122] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1437), - [sym_op_lte] = STATE(1437), - [sym_op_eq] = STATE(1435), - [sym_op_neq] = STATE(1435), - [sym_op_gt] = STATE(1437), - [sym_op_gte] = STATE(1437), - [sym_op_and] = STATE(1434), - [sym_op_or] = STATE(1433), - [sym_op_bitwise_and] = STATE(1432), - [sym_op_bitwise_or] = STATE(1430), - [sym_op_bitwise_xor] = STATE(1429), - [sym_op_left_shift] = STATE(1428), - [sym_op_right_shift] = STATE(1428), - [sym_op_unsigned_right_shift] = STATE(1428), - [sym_op_plus] = STATE(1425), - [sym_op_minus] = STATE(1425), - [sym_op_multiply] = STATE(1423), - [sym_op_divide] = STATE(1423), - [sym_op_modulo] = STATE(1423), + [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), @@ -493897,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(4686), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5436), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -493960,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(3970), - [anon_sym_EQ] = ACTIONS(3968), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_COLON] = ACTIONS(3970), - [anon_sym_COMMA] = ACTIONS(3970), - [anon_sym_RBRACK] = ACTIONS(3970), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_RPAREN] = ACTIONS(3970), - [anon_sym_RBRACE] = ACTIONS(3970), - [anon_sym_LT] = ACTIONS(3968), - [anon_sym_GT] = ACTIONS(3968), - [anon_sym_in] = ACTIONS(3970), - [anon_sym_QMARK] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(3968), - [anon_sym_PLUS_PLUS] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(3970), - [anon_sym_PLUS] = ACTIONS(3968), - [anon_sym_DASH] = ACTIONS(3968), - [anon_sym_STAR] = ACTIONS(3968), - [anon_sym_SLASH] = ACTIONS(3968), - [anon_sym_PERCENT] = ACTIONS(3968), - [anon_sym_CARET] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(3968), - [anon_sym_AMP] = ACTIONS(3968), - [anon_sym_LT_LT] = ACTIONS(3968), - [anon_sym_GT_GT] = ACTIONS(3968), - [anon_sym_GT_GT_GT] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3970), - [anon_sym_BANG_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_DOT] = ACTIONS(3968), - [anon_sym_EQ_GT] = ACTIONS(3970), - [anon_sym_switch] = ACTIONS(3970), - [anon_sym_when] = ACTIONS(3970), - [anon_sym_DOT_DOT] = ACTIONS(3970), - [anon_sym_and] = ACTIONS(3970), - [anon_sym_or] = ACTIONS(3970), - [anon_sym_PLUS_EQ] = ACTIONS(3970), - [anon_sym_DASH_EQ] = ACTIONS(3970), - [anon_sym_STAR_EQ] = ACTIONS(3970), - [anon_sym_SLASH_EQ] = ACTIONS(3970), - [anon_sym_PERCENT_EQ] = ACTIONS(3970), - [anon_sym_AMP_EQ] = ACTIONS(3970), - [anon_sym_CARET_EQ] = ACTIONS(3970), - [anon_sym_PIPE_EQ] = ACTIONS(3970), - [anon_sym_LT_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_GT_EQ] = ACTIONS(3970), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3970), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3970), - [anon_sym_AMP_AMP] = ACTIONS(3970), - [anon_sym_PIPE_PIPE] = ACTIONS(3970), - [sym_op_coalescing] = ACTIONS(3968), - [anon_sym_on] = ACTIONS(3970), - [anon_sym_equals] = ACTIONS(3970), - [anon_sym_by] = ACTIONS(3970), - [anon_sym_as] = ACTIONS(3970), - [anon_sym_is] = ACTIONS(3970), - [anon_sym_DASH_GT] = ACTIONS(3970), - [anon_sym_with] = ACTIONS(3970), - [aux_sym_preproc_if_token3] = ACTIONS(3970), - [aux_sym_preproc_else_token1] = ACTIONS(3970), - [aux_sym_preproc_elif_token1] = ACTIONS(3970), + [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), @@ -494035,6 +493303,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3124] = { + [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), @@ -494044,69 +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), - [anon_sym_SEMI] = ACTIONS(3978), - [anon_sym_EQ] = ACTIONS(3976), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_COLON] = ACTIONS(3978), - [anon_sym_COMMA] = ACTIONS(3978), - [anon_sym_RBRACK] = ACTIONS(3978), - [anon_sym_LPAREN] = ACTIONS(3978), - [anon_sym_RPAREN] = ACTIONS(3978), - [anon_sym_RBRACE] = ACTIONS(3978), - [anon_sym_LT] = ACTIONS(3976), - [anon_sym_GT] = ACTIONS(3976), - [anon_sym_in] = ACTIONS(3978), - [anon_sym_QMARK] = ACTIONS(3976), - [anon_sym_BANG] = ACTIONS(3976), - [anon_sym_PLUS_PLUS] = ACTIONS(3978), - [anon_sym_DASH_DASH] = ACTIONS(3978), - [anon_sym_PLUS] = ACTIONS(3976), - [anon_sym_DASH] = ACTIONS(3976), - [anon_sym_STAR] = ACTIONS(3976), - [anon_sym_SLASH] = ACTIONS(3976), - [anon_sym_PERCENT] = ACTIONS(3976), - [anon_sym_CARET] = ACTIONS(3976), - [anon_sym_PIPE] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), - [anon_sym_LT_LT] = ACTIONS(3976), - [anon_sym_GT_GT] = ACTIONS(3976), - [anon_sym_GT_GT_GT] = ACTIONS(3976), - [anon_sym_EQ_EQ] = ACTIONS(3978), - [anon_sym_BANG_EQ] = ACTIONS(3978), - [anon_sym_GT_EQ] = ACTIONS(3978), - [anon_sym_LT_EQ] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3976), - [anon_sym_EQ_GT] = ACTIONS(3978), - [anon_sym_switch] = ACTIONS(3978), - [anon_sym_when] = ACTIONS(3978), - [anon_sym_DOT_DOT] = ACTIONS(3978), - [anon_sym_and] = ACTIONS(3978), - [anon_sym_or] = ACTIONS(3978), - [anon_sym_PLUS_EQ] = ACTIONS(3978), - [anon_sym_DASH_EQ] = ACTIONS(3978), - [anon_sym_STAR_EQ] = ACTIONS(3978), - [anon_sym_SLASH_EQ] = ACTIONS(3978), - [anon_sym_PERCENT_EQ] = ACTIONS(3978), - [anon_sym_AMP_EQ] = ACTIONS(3978), - [anon_sym_CARET_EQ] = ACTIONS(3978), - [anon_sym_PIPE_EQ] = ACTIONS(3978), - [anon_sym_LT_LT_EQ] = ACTIONS(3978), - [anon_sym_GT_GT_EQ] = ACTIONS(3978), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3978), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3978), - [anon_sym_AMP_AMP] = ACTIONS(3978), - [anon_sym_PIPE_PIPE] = ACTIONS(3978), - [sym_op_coalescing] = ACTIONS(3976), - [anon_sym_on] = ACTIONS(3978), - [anon_sym_equals] = ACTIONS(3978), - [anon_sym_by] = ACTIONS(3978), - [anon_sym_as] = ACTIONS(3978), - [anon_sym_is] = ACTIONS(3978), - [anon_sym_DASH_GT] = ACTIONS(3978), - [anon_sym_with] = ACTIONS(3978), - [aux_sym_preproc_if_token3] = ACTIONS(3978), - [aux_sym_preproc_else_token1] = ACTIONS(3978), - [aux_sym_preproc_elif_token1] = ACTIONS(3978), + [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), @@ -494119,27 +493382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3125] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [sym_initializer_expression] = STATE(3362), [sym_preproc_region] = STATE(3125), [sym_preproc_endregion] = STATE(3125), [sym_preproc_line] = STATE(3125), @@ -494149,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_where] = ACTIONS(4760), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4762), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_from] = 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(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -494203,27 +493461,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3126] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), [sym_preproc_region] = STATE(3126), [sym_preproc_endregion] = STATE(3126), [sym_preproc_line] = STATE(3126), @@ -494233,48 +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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -494296,69 +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_SEMI] = ACTIONS(4536), - [anon_sym_EQ] = ACTIONS(4538), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_COLON] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(4536), - [anon_sym_RBRACK] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_RPAREN] = ACTIONS(4536), - [anon_sym_RBRACE] = ACTIONS(4536), - [anon_sym_LT] = ACTIONS(4538), - [anon_sym_GT] = ACTIONS(4538), - [anon_sym_in] = ACTIONS(4536), - [anon_sym_QMARK] = ACTIONS(4538), - [anon_sym_BANG] = ACTIONS(4538), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4538), - [anon_sym_DASH] = ACTIONS(4538), - [anon_sym_STAR] = ACTIONS(4538), - [anon_sym_SLASH] = ACTIONS(4538), - [anon_sym_PERCENT] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4538), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_AMP] = ACTIONS(4538), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [anon_sym_GT_GT_GT] = ACTIONS(4538), - [anon_sym_EQ_EQ] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_DOT] = ACTIONS(4538), - [anon_sym_EQ_GT] = ACTIONS(4536), - [anon_sym_switch] = ACTIONS(4536), - [anon_sym_when] = ACTIONS(4536), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_and] = ACTIONS(4536), - [anon_sym_or] = ACTIONS(4536), - [anon_sym_PLUS_EQ] = ACTIONS(4536), - [anon_sym_DASH_EQ] = ACTIONS(4536), - [anon_sym_STAR_EQ] = ACTIONS(4536), - [anon_sym_SLASH_EQ] = ACTIONS(4536), - [anon_sym_PERCENT_EQ] = ACTIONS(4536), - [anon_sym_AMP_EQ] = ACTIONS(4536), - [anon_sym_CARET_EQ] = ACTIONS(4536), - [anon_sym_PIPE_EQ] = ACTIONS(4536), - [anon_sym_LT_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_GT_EQ] = ACTIONS(4536), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4536), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [sym_op_coalescing] = ACTIONS(4538), - [anon_sym_on] = ACTIONS(4536), - [anon_sym_equals] = ACTIONS(4536), - [anon_sym_by] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4536), - [anon_sym_DASH_GT] = ACTIONS(4536), - [anon_sym_with] = ACTIONS(4536), - [aux_sym_preproc_if_token3] = ACTIONS(4536), - [aux_sym_preproc_else_token1] = ACTIONS(4536), - [aux_sym_preproc_elif_token1] = ACTIONS(4536), + [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), @@ -494381,61 +493629,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_define] = STATE(3128), [sym_preproc_undef] = STATE(3128), [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_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_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_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_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_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), - [sym_op_coalescing] = ACTIONS(3951), + [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), @@ -494464,102 +493707,77 @@ 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), - [sym__identifier_token] = ACTIONS(4496), - [anon_sym_alias] = ACTIONS(4496), - [anon_sym_global] = ACTIONS(4496), - [anon_sym_LBRACK] = ACTIONS(4498), - [anon_sym_COLON] = ACTIONS(4498), - [anon_sym_COMMA] = ACTIONS(4498), - [anon_sym_LPAREN] = ACTIONS(4498), - [anon_sym_file] = ACTIONS(4496), - [anon_sym_LT] = ACTIONS(4496), - [anon_sym_GT] = ACTIONS(4496), - [anon_sym_where] = ACTIONS(4496), - [anon_sym_QMARK] = ACTIONS(4496), - [anon_sym_notnull] = ACTIONS(4496), - [anon_sym_unmanaged] = ACTIONS(4496), - [anon_sym_BANG] = ACTIONS(4496), - [anon_sym_PLUS_PLUS] = ACTIONS(4498), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_PLUS] = ACTIONS(4496), - [anon_sym_DASH] = ACTIONS(4496), - [anon_sym_STAR] = ACTIONS(4498), - [anon_sym_SLASH] = ACTIONS(4496), - [anon_sym_PERCENT] = ACTIONS(4498), - [anon_sym_CARET] = ACTIONS(4498), - [anon_sym_PIPE] = ACTIONS(4496), - [anon_sym_AMP] = ACTIONS(4496), - [anon_sym_LT_LT] = ACTIONS(4498), - [anon_sym_GT_GT] = ACTIONS(4496), - [anon_sym_GT_GT_GT] = ACTIONS(4498), - [anon_sym_EQ_EQ] = ACTIONS(4498), - [anon_sym_BANG_EQ] = ACTIONS(4498), - [anon_sym_GT_EQ] = ACTIONS(4498), - [anon_sym_LT_EQ] = ACTIONS(4498), - [anon_sym_DOT] = ACTIONS(4496), - [anon_sym_scoped] = ACTIONS(4496), - [anon_sym_var] = ACTIONS(4496), - [anon_sym_yield] = ACTIONS(4496), - [anon_sym_switch] = ACTIONS(4496), - [anon_sym_when] = ACTIONS(4496), - [sym_discard] = ACTIONS(4496), - [anon_sym_DOT_DOT] = ACTIONS(4498), - [anon_sym_and] = ACTIONS(4496), - [anon_sym_or] = ACTIONS(4496), - [anon_sym_AMP_AMP] = ACTIONS(4498), - [anon_sym_PIPE_PIPE] = ACTIONS(4498), - [sym_op_coalescing] = ACTIONS(4498), - [anon_sym_from] = ACTIONS(4496), - [anon_sym_into] = ACTIONS(4496), - [anon_sym_join] = ACTIONS(4496), - [anon_sym_on] = ACTIONS(4496), - [anon_sym_equals] = ACTIONS(4496), - [anon_sym_let] = ACTIONS(4496), - [anon_sym_orderby] = ACTIONS(4496), - [anon_sym_ascending] = ACTIONS(4496), - [anon_sym_descending] = ACTIONS(4496), - [anon_sym_group] = ACTIONS(4496), - [anon_sym_by] = ACTIONS(4496), - [anon_sym_select] = ACTIONS(4496), - [anon_sym_as] = ACTIONS(4496), - [anon_sym_is] = ACTIONS(4496), - [anon_sym_DASH_GT] = ACTIONS(4498), - [anon_sym_with] = ACTIONS(4496), - [sym_grit_metavariable] = ACTIONS(4498), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4498), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3130] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [sym_initializer_expression] = STATE(3374), [sym_preproc_region] = STATE(3130), [sym_preproc_endregion] = STATE(3130), [sym_preproc_line] = STATE(3130), @@ -494569,48 +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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -494623,27 +493856,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3131] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), + [sym_initializer_expression] = STATE(3400), [sym_preproc_region] = STATE(3131), [sym_preproc_endregion] = STATE(3131), [sym_preproc_line] = STATE(3131), @@ -494653,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5426), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4694), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -494707,6 +493935,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3132] = { + [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), @@ -494716,69 +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), - [anon_sym_SEMI] = ACTIONS(4564), - [anon_sym_EQ] = ACTIONS(4566), - [anon_sym_LBRACK] = ACTIONS(4564), - [anon_sym_COLON] = ACTIONS(4564), - [anon_sym_COMMA] = ACTIONS(4564), - [anon_sym_RBRACK] = ACTIONS(4564), - [anon_sym_LPAREN] = ACTIONS(4564), - [anon_sym_RPAREN] = ACTIONS(4564), - [anon_sym_RBRACE] = ACTIONS(4564), - [anon_sym_LT] = ACTIONS(4566), - [anon_sym_GT] = ACTIONS(4566), - [anon_sym_in] = ACTIONS(4564), - [anon_sym_QMARK] = ACTIONS(4566), - [anon_sym_BANG] = ACTIONS(4566), - [anon_sym_PLUS_PLUS] = ACTIONS(4564), - [anon_sym_DASH_DASH] = ACTIONS(4564), - [anon_sym_PLUS] = ACTIONS(4566), - [anon_sym_DASH] = ACTIONS(4566), - [anon_sym_STAR] = ACTIONS(4566), - [anon_sym_SLASH] = ACTIONS(4566), - [anon_sym_PERCENT] = ACTIONS(4566), - [anon_sym_CARET] = ACTIONS(4566), - [anon_sym_PIPE] = ACTIONS(4566), - [anon_sym_AMP] = ACTIONS(4566), - [anon_sym_LT_LT] = ACTIONS(4566), - [anon_sym_GT_GT] = ACTIONS(4566), - [anon_sym_GT_GT_GT] = ACTIONS(4566), - [anon_sym_EQ_EQ] = ACTIONS(4564), - [anon_sym_BANG_EQ] = ACTIONS(4564), - [anon_sym_GT_EQ] = ACTIONS(4564), - [anon_sym_LT_EQ] = ACTIONS(4564), - [anon_sym_DOT] = ACTIONS(4566), - [anon_sym_EQ_GT] = ACTIONS(4564), - [anon_sym_switch] = ACTIONS(4564), - [anon_sym_when] = ACTIONS(4564), - [anon_sym_DOT_DOT] = ACTIONS(4564), - [anon_sym_and] = ACTIONS(4564), - [anon_sym_or] = ACTIONS(4564), - [anon_sym_PLUS_EQ] = ACTIONS(4564), - [anon_sym_DASH_EQ] = ACTIONS(4564), - [anon_sym_STAR_EQ] = ACTIONS(4564), - [anon_sym_SLASH_EQ] = ACTIONS(4564), - [anon_sym_PERCENT_EQ] = ACTIONS(4564), - [anon_sym_AMP_EQ] = ACTIONS(4564), - [anon_sym_CARET_EQ] = ACTIONS(4564), - [anon_sym_PIPE_EQ] = ACTIONS(4564), - [anon_sym_LT_LT_EQ] = ACTIONS(4564), - [anon_sym_GT_GT_EQ] = ACTIONS(4564), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4564), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4564), - [anon_sym_AMP_AMP] = ACTIONS(4564), - [anon_sym_PIPE_PIPE] = ACTIONS(4564), - [sym_op_coalescing] = ACTIONS(4566), - [anon_sym_on] = ACTIONS(4564), - [anon_sym_equals] = ACTIONS(4564), - [anon_sym_by] = ACTIONS(4564), - [anon_sym_as] = ACTIONS(4564), - [anon_sym_is] = ACTIONS(4564), - [anon_sym_DASH_GT] = ACTIONS(4564), - [anon_sym_with] = ACTIONS(4564), - [aux_sym_preproc_if_token3] = ACTIONS(4564), - [aux_sym_preproc_else_token1] = ACTIONS(4564), - [aux_sym_preproc_elif_token1] = ACTIONS(4564), + [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), @@ -494791,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), @@ -494800,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(4560), - [anon_sym_EQ] = ACTIONS(4562), - [anon_sym_LBRACK] = ACTIONS(4560), - [anon_sym_COLON] = ACTIONS(4560), - [anon_sym_COMMA] = ACTIONS(4560), - [anon_sym_RBRACK] = ACTIONS(4560), - [anon_sym_LPAREN] = ACTIONS(4560), - [anon_sym_RPAREN] = ACTIONS(4560), - [anon_sym_RBRACE] = ACTIONS(4560), - [anon_sym_LT] = ACTIONS(4562), - [anon_sym_GT] = ACTIONS(4562), - [anon_sym_in] = ACTIONS(4560), - [anon_sym_QMARK] = ACTIONS(4562), - [anon_sym_BANG] = ACTIONS(4562), - [anon_sym_PLUS_PLUS] = ACTIONS(4560), - [anon_sym_DASH_DASH] = ACTIONS(4560), - [anon_sym_PLUS] = ACTIONS(4562), - [anon_sym_DASH] = ACTIONS(4562), - [anon_sym_STAR] = ACTIONS(4562), - [anon_sym_SLASH] = ACTIONS(4562), - [anon_sym_PERCENT] = ACTIONS(4562), - [anon_sym_CARET] = ACTIONS(4562), - [anon_sym_PIPE] = ACTIONS(4562), - [anon_sym_AMP] = ACTIONS(4562), - [anon_sym_LT_LT] = ACTIONS(4562), - [anon_sym_GT_GT] = ACTIONS(4562), - [anon_sym_GT_GT_GT] = ACTIONS(4562), - [anon_sym_EQ_EQ] = ACTIONS(4560), - [anon_sym_BANG_EQ] = ACTIONS(4560), - [anon_sym_GT_EQ] = ACTIONS(4560), - [anon_sym_LT_EQ] = ACTIONS(4560), - [anon_sym_DOT] = ACTIONS(4562), - [anon_sym_EQ_GT] = ACTIONS(4560), - [anon_sym_switch] = ACTIONS(4560), - [anon_sym_when] = ACTIONS(4560), - [anon_sym_DOT_DOT] = ACTIONS(4560), - [anon_sym_and] = ACTIONS(4560), - [anon_sym_or] = ACTIONS(4560), - [anon_sym_PLUS_EQ] = ACTIONS(4560), - [anon_sym_DASH_EQ] = ACTIONS(4560), - [anon_sym_STAR_EQ] = ACTIONS(4560), - [anon_sym_SLASH_EQ] = ACTIONS(4560), - [anon_sym_PERCENT_EQ] = ACTIONS(4560), - [anon_sym_AMP_EQ] = ACTIONS(4560), - [anon_sym_CARET_EQ] = ACTIONS(4560), - [anon_sym_PIPE_EQ] = ACTIONS(4560), - [anon_sym_LT_LT_EQ] = ACTIONS(4560), - [anon_sym_GT_GT_EQ] = ACTIONS(4560), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4560), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4560), - [anon_sym_AMP_AMP] = ACTIONS(4560), - [anon_sym_PIPE_PIPE] = ACTIONS(4560), - [sym_op_coalescing] = ACTIONS(4562), - [anon_sym_on] = ACTIONS(4560), - [anon_sym_equals] = ACTIONS(4560), - [anon_sym_by] = ACTIONS(4560), - [anon_sym_as] = ACTIONS(4560), - [anon_sym_is] = ACTIONS(4560), - [anon_sym_DASH_GT] = ACTIONS(4560), - [anon_sym_with] = ACTIONS(4560), - [aux_sym_preproc_if_token3] = ACTIONS(4560), - [aux_sym_preproc_else_token1] = ACTIONS(4560), - [aux_sym_preproc_elif_token1] = ACTIONS(4560), + [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), @@ -494875,27 +494093,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3134] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), + [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), @@ -494905,47 +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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(5478), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -494967,68 +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), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5480), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -495041,27 +494251,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3136] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), [sym_preproc_region] = STATE(3136), [sym_preproc_endregion] = STATE(3136), [sym_preproc_line] = STATE(3136), @@ -495071,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5482), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(5478), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -495124,27 +494330,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3137] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), [sym_preproc_region] = STATE(3137), [sym_preproc_endregion] = STATE(3137), [sym_preproc_line] = STATE(3137), @@ -495154,47 +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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(5478), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -495207,27 +494409,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3138] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), [sym_preproc_region] = STATE(3138), [sym_preproc_endregion] = STATE(3138), [sym_preproc_line] = STATE(3138), @@ -495237,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(5478), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -495299,68 +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), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5484), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -495382,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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5486), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -495456,6 +494646,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3141] = { + [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), @@ -495465,68 +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), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -495539,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), @@ -495548,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(4422), - [anon_sym_alias] = ACTIONS(4422), - [anon_sym_global] = ACTIONS(4422), - [anon_sym_LBRACK] = 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_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), + [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), @@ -495622,27 +494804,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3143] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), [sym_preproc_region] = STATE(3143), [sym_preproc_endregion] = STATE(3143), [sym_preproc_line] = STATE(3143), @@ -495652,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4798), - [anon_sym_QMARK] = ACTIONS(5488), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5482), - [anon_sym_from] = ACTIONS(4798), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_join] = ACTIONS(4798), - [anon_sym_let] = ACTIONS(4798), - [anon_sym_orderby] = ACTIONS(4798), - [anon_sym_group] = ACTIONS(4798), - [anon_sym_select] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(5478), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -495705,27 +494883,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3144] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), [sym_preproc_region] = STATE(3144), [sym_preproc_endregion] = STATE(3144), [sym_preproc_line] = STATE(3144), @@ -495735,47 +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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -495788,27 +494962,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3145] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), [sym_preproc_region] = STATE(3145), [sym_preproc_endregion] = STATE(3145), [sym_preproc_line] = STATE(3145), @@ -495818,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4742), - [anon_sym_QMARK] = ACTIONS(5488), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5482), - [anon_sym_from] = ACTIONS(4742), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_join] = ACTIONS(4742), - [anon_sym_let] = ACTIONS(4742), - [anon_sym_orderby] = ACTIONS(4742), - [anon_sym_group] = ACTIONS(4742), - [anon_sym_select] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(5478), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -495871,27 +495041,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3146] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), [sym_preproc_region] = STATE(3146), [sym_preproc_endregion] = STATE(3146), [sym_preproc_line] = STATE(3146), @@ -495901,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_where] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_from] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_join] = ACTIONS(4768), - [anon_sym_let] = ACTIONS(4768), - [anon_sym_orderby] = ACTIONS(4768), - [anon_sym_group] = ACTIONS(4768), - [anon_sym_select] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -495954,9 +495120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3147] = { - [sym_attribute_list] = STATE(3597), - [sym__attribute_list] = STATE(3569), - [sym_preproc_if_in_attribute_list] = STATE(3597), + [sym_type_argument_list] = STATE(3245), [sym_preproc_region] = STATE(3147), [sym_preproc_endregion] = STATE(3147), [sym_preproc_line] = STATE(3147), @@ -495966,65 +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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3147), - [sym__identifier_token] = ACTIONS(5490), - [anon_sym_extern] = ACTIONS(5490), - [anon_sym_alias] = ACTIONS(5490), - [anon_sym_global] = ACTIONS(5490), - [anon_sym_unsafe] = ACTIONS(5490), - [anon_sym_static] = ACTIONS(5490), - [anon_sym_LBRACK] = ACTIONS(5492), - [anon_sym_LPAREN] = ACTIONS(5495), - [anon_sym_event] = ACTIONS(5490), - [anon_sym_class] = ACTIONS(5490), - [anon_sym_ref] = ACTIONS(5490), - [anon_sym_struct] = ACTIONS(5490), - [anon_sym_enum] = ACTIONS(5490), - [anon_sym_interface] = ACTIONS(5490), - [anon_sym_delegate] = ACTIONS(5490), - [anon_sym_record] = ACTIONS(5490), - [anon_sym_public] = ACTIONS(5490), - [anon_sym_private] = ACTIONS(5490), - [anon_sym_readonly] = ACTIONS(5490), - [anon_sym_abstract] = ACTIONS(5490), - [anon_sym_async] = ACTIONS(5490), - [anon_sym_const] = ACTIONS(5490), - [anon_sym_file] = ACTIONS(5490), - [anon_sym_fixed] = ACTIONS(5490), - [anon_sym_internal] = ACTIONS(5490), - [anon_sym_new] = ACTIONS(5490), - [anon_sym_override] = ACTIONS(5490), - [anon_sym_partial] = ACTIONS(5490), - [anon_sym_protected] = ACTIONS(5490), - [anon_sym_required] = ACTIONS(5490), - [anon_sym_sealed] = ACTIONS(5490), - [anon_sym_virtual] = ACTIONS(5490), - [anon_sym_volatile] = ACTIONS(5490), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_notnull] = ACTIONS(5490), - [anon_sym_unmanaged] = ACTIONS(5490), - [anon_sym_TILDE] = ACTIONS(5495), - [anon_sym_implicit] = ACTIONS(5490), - [anon_sym_explicit] = ACTIONS(5490), - [anon_sym_scoped] = ACTIONS(5490), - [anon_sym_var] = ACTIONS(5490), - [sym_predefined_type] = ACTIONS(5490), - [anon_sym_yield] = ACTIONS(5490), - [anon_sym_when] = ACTIONS(5490), - [anon_sym_from] = ACTIONS(5490), - [anon_sym_into] = ACTIONS(5490), - [anon_sym_join] = ACTIONS(5490), - [anon_sym_on] = ACTIONS(5490), - [anon_sym_equals] = ACTIONS(5490), - [anon_sym_let] = ACTIONS(5490), - [anon_sym_orderby] = ACTIONS(5490), - [anon_sym_ascending] = ACTIONS(5490), - [anon_sym_descending] = ACTIONS(5490), - [anon_sym_group] = ACTIONS(5490), - [anon_sym_by] = ACTIONS(5490), - [anon_sym_select] = ACTIONS(5490), - [sym_grit_metavariable] = ACTIONS(5495), - [aux_sym_preproc_if_token1] = ACTIONS(5497), + [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), @@ -496037,27 +495199,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3148] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), [sym_preproc_region] = STATE(3148), [sym_preproc_endregion] = STATE(3148), [sym_preproc_line] = STATE(3148), @@ -496067,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -496120,30 +495278,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3149] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6357), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_identifier] = STATE(6023), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if_in_attribute_list] = STATE(5914), [sym_preproc_region] = STATE(3149), [sym_preproc_endregion] = STATE(3149), [sym_preproc_line] = STATE(3149), @@ -496153,44 +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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3676), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(5444), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_ref] = ACTIONS(5446), - [anon_sym_delegate] = ACTIONS(3709), - [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(5472), - [anon_sym_params] = ACTIONS(1293), - [anon_sym_var] = ACTIONS(5500), - [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(5452), + [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), @@ -496203,27 +495357,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3150] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), [sym_preproc_region] = STATE(3150), [sym_preproc_endregion] = STATE(3150), [sym_preproc_line] = STATE(3150), @@ -496233,47 +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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(5478), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -496286,27 +495436,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3151] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), [sym_preproc_region] = STATE(3151), [sym_preproc_endregion] = STATE(3151), [sym_preproc_line] = STATE(3151), @@ -496316,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4764), - [anon_sym_QMARK] = ACTIONS(5488), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5482), - [anon_sym_from] = ACTIONS(4764), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_join] = ACTIONS(4764), - [anon_sym_let] = ACTIONS(4764), - [anon_sym_orderby] = ACTIONS(4764), - [anon_sym_group] = ACTIONS(4764), - [anon_sym_select] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(5478), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -496369,27 +495515,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3152] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), + [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), @@ -496399,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4776), - [anon_sym_QMARK] = ACTIONS(5488), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5482), - [anon_sym_from] = ACTIONS(4776), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_join] = ACTIONS(4776), - [anon_sym_let] = ACTIONS(4776), - [anon_sym_orderby] = ACTIONS(4776), - [anon_sym_group] = ACTIONS(4776), - [anon_sym_select] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(5478), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -496452,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), @@ -496461,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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5502), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -496535,27 +495673,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3154] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), + [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), @@ -496565,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4780), - [anon_sym_QMARK] = ACTIONS(5488), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5482), - [anon_sym_from] = ACTIONS(4780), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_join] = ACTIONS(4780), - [anon_sym_let] = ACTIONS(4780), - [anon_sym_orderby] = ACTIONS(4780), - [anon_sym_group] = ACTIONS(4780), - [anon_sym_select] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(5478), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -496618,27 +495752,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3155] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), + [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), @@ -496648,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [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(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -496701,27 +495831,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3156] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), + [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), @@ -496731,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -496784,6 +495910,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3157] = { + [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), @@ -496793,68 +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), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5504), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -496867,27 +495989,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3158] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), + [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), @@ -496897,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_where] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [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(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -496950,27 +496068,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3159] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), + [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), @@ -496980,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(5478), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -497033,27 +496147,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3160] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), + [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), @@ -497063,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [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(4932), - [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(4936), - [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(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), @@ -497116,27 +496226,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3161] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), + [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), @@ -497146,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4756), - [anon_sym_QMARK] = ACTIONS(5488), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5482), - [anon_sym_from] = ACTIONS(4756), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_join] = ACTIONS(4756), - [anon_sym_let] = ACTIONS(4756), - [anon_sym_orderby] = ACTIONS(4756), - [anon_sym_group] = ACTIONS(4756), - [anon_sym_select] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(5478), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -497199,27 +496305,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3162] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), + [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), @@ -497229,47 +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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_where] = ACTIONS(4760), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [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(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -497282,27 +496384,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3163] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), [sym_preproc_region] = STATE(3163), [sym_preproc_endregion] = STATE(3163), [sym_preproc_line] = STATE(3163), @@ -497312,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(5506), - [anon_sym_QMARK] = ACTIONS(5488), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5482), - [anon_sym_from] = ACTIONS(5506), - [anon_sym_into] = ACTIONS(5506), - [anon_sym_join] = ACTIONS(5506), - [anon_sym_let] = ACTIONS(5506), - [anon_sym_orderby] = ACTIONS(5506), - [anon_sym_group] = ACTIONS(5506), - [anon_sym_select] = ACTIONS(5506), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(5478), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -497365,27 +496463,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3164] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), [sym_preproc_region] = STATE(3164), [sym_preproc_endregion] = STATE(3164), [sym_preproc_line] = STATE(3164), @@ -497395,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(5478), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -497448,27 +496542,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3165] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), + [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), @@ -497478,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -497531,27 +496621,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3166] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1618), - [sym_op_lte] = STATE(1618), - [sym_op_eq] = STATE(1619), - [sym_op_neq] = STATE(1619), - [sym_op_gt] = STATE(1618), - [sym_op_gte] = STATE(1618), - [sym_op_and] = STATE(1620), - [sym_op_or] = STATE(1622), - [sym_op_bitwise_and] = STATE(1624), - [sym_op_bitwise_or] = STATE(1627), - [sym_op_bitwise_xor] = STATE(1648), - [sym_op_left_shift] = STATE(1650), - [sym_op_right_shift] = STATE(1650), - [sym_op_unsigned_right_shift] = STATE(1650), - [sym_op_plus] = STATE(1916), - [sym_op_minus] = STATE(1916), - [sym_op_multiply] = STATE(1915), - [sym_op_divide] = STATE(1915), - [sym_op_modulo] = STATE(1915), + [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), @@ -497561,47 +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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_QMARK] = ACTIONS(5488), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5476), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5482), - [anon_sym_from] = ACTIONS(4772), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_join] = ACTIONS(4772), - [anon_sym_let] = ACTIONS(4772), - [anon_sym_orderby] = ACTIONS(4772), - [anon_sym_group] = ACTIONS(4772), - [anon_sym_select] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(4958), - [anon_sym_is] = ACTIONS(5478), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -497614,6 +496700,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3167] = { + [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), @@ -497623,68 +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), - [sym__identifier_token] = ACTIONS(4422), - [anon_sym_alias] = ACTIONS(4422), - [anon_sym_global] = ACTIONS(4422), - [anon_sym_LBRACK] = 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_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), + [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), @@ -497697,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), @@ -497706,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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5508), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -497789,67 +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), - [sym__identifier_token] = ACTIONS(5510), - [anon_sym_extern] = ACTIONS(5510), - [anon_sym_alias] = ACTIONS(5510), - [anon_sym_global] = ACTIONS(5510), - [anon_sym_unsafe] = ACTIONS(5510), - [anon_sym_static] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_LPAREN] = ACTIONS(5512), - [anon_sym_event] = ACTIONS(5510), - [anon_sym_class] = ACTIONS(5510), - [anon_sym_ref] = ACTIONS(5510), - [anon_sym_struct] = ACTIONS(5510), - [anon_sym_enum] = ACTIONS(5510), - [anon_sym_interface] = ACTIONS(5510), - [anon_sym_delegate] = ACTIONS(5510), - [anon_sym_record] = ACTIONS(5510), - [anon_sym_public] = ACTIONS(5510), - [anon_sym_private] = ACTIONS(5510), - [anon_sym_readonly] = ACTIONS(5510), - [anon_sym_abstract] = ACTIONS(5510), - [anon_sym_async] = ACTIONS(5510), - [anon_sym_const] = ACTIONS(5510), - [anon_sym_file] = ACTIONS(5510), - [anon_sym_fixed] = ACTIONS(5510), - [anon_sym_internal] = ACTIONS(5510), - [anon_sym_new] = ACTIONS(5510), - [anon_sym_override] = ACTIONS(5510), - [anon_sym_partial] = ACTIONS(5510), - [anon_sym_protected] = ACTIONS(5510), - [anon_sym_required] = ACTIONS(5510), - [anon_sym_sealed] = ACTIONS(5510), - [anon_sym_virtual] = ACTIONS(5510), - [anon_sym_volatile] = ACTIONS(5510), - [anon_sym_where] = ACTIONS(5510), - [anon_sym_notnull] = ACTIONS(5510), - [anon_sym_unmanaged] = ACTIONS(5510), - [anon_sym_TILDE] = ACTIONS(5512), - [anon_sym_implicit] = ACTIONS(5510), - [anon_sym_explicit] = ACTIONS(5510), - [anon_sym_scoped] = ACTIONS(5510), - [anon_sym_var] = ACTIONS(5510), - [sym_predefined_type] = ACTIONS(5510), - [anon_sym_yield] = ACTIONS(5510), - [anon_sym_when] = ACTIONS(5510), - [anon_sym_from] = ACTIONS(5510), - [anon_sym_into] = ACTIONS(5510), - [anon_sym_join] = ACTIONS(5510), - [anon_sym_on] = ACTIONS(5510), - [anon_sym_equals] = ACTIONS(5510), - [anon_sym_let] = ACTIONS(5510), - [anon_sym_orderby] = ACTIONS(5510), - [anon_sym_ascending] = ACTIONS(5510), - [anon_sym_descending] = ACTIONS(5510), - [anon_sym_group] = ACTIONS(5510), - [anon_sym_by] = ACTIONS(5510), - [anon_sym_select] = ACTIONS(5510), - [sym_grit_metavariable] = ACTIONS(5512), - [aux_sym_preproc_if_token1] = ACTIONS(5512), - [aux_sym_preproc_if_token3] = ACTIONS(5512), - [aux_sym_preproc_else_token1] = ACTIONS(5512), - [aux_sym_preproc_elif_token1] = ACTIONS(5512), + [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), @@ -497862,27 +496937,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3170] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3170), [sym_preproc_endregion] = STATE(3170), [sym_preproc_line] = STATE(3170), @@ -497892,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5516), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -497944,27 +497016,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3171] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), + [sym_initializer_expression] = STATE(3350), [sym_preproc_region] = STATE(3171), [sym_preproc_endregion] = STATE(3171), [sym_preproc_line] = STATE(3171), @@ -497974,46 +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), - [anon_sym_SEMI] = ACTIONS(4768), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_RBRACK] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4768), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -498026,27 +497095,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3172] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), [sym_preproc_region] = STATE(3172), [sym_preproc_endregion] = STATE(3172), [sym_preproc_line] = STATE(3172), @@ -498056,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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5528), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -498108,27 +497174,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3173] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), [sym_preproc_region] = STATE(3173), [sym_preproc_endregion] = STATE(3173), [sym_preproc_line] = STATE(3173), @@ -498138,46 +497183,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3173), [sym_preproc_define] = STATE(3173), [sym_preproc_undef] = STATE(3173), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5528), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -498190,27 +497253,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3174] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), [sym_preproc_region] = STATE(3174), [sym_preproc_endregion] = STATE(3174), [sym_preproc_line] = STATE(3174), @@ -498220,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(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5528), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -498272,27 +497332,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3175] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), [sym_preproc_region] = STATE(3175), [sym_preproc_endregion] = STATE(3175), [sym_preproc_line] = STATE(3175), @@ -498302,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5538), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -498354,27 +497411,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3176] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), [sym_preproc_region] = STATE(3176), [sym_preproc_endregion] = STATE(3176), [sym_preproc_line] = STATE(3176), @@ -498384,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(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -498445,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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5542), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -498518,27 +497569,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3178] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), [sym_preproc_region] = STATE(3178), [sym_preproc_endregion] = STATE(3178), [sym_preproc_line] = STATE(3178), @@ -498548,46 +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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5544), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5528), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -498609,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(5546), - [anon_sym_extern] = ACTIONS(5546), - [anon_sym_alias] = ACTIONS(5546), - [anon_sym_global] = ACTIONS(5546), - [anon_sym_unsafe] = ACTIONS(5546), - [anon_sym_static] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5548), - [anon_sym_LPAREN] = ACTIONS(5548), - [anon_sym_event] = ACTIONS(5546), - [anon_sym_class] = ACTIONS(5546), - [anon_sym_ref] = ACTIONS(5546), - [anon_sym_struct] = ACTIONS(5546), - [anon_sym_enum] = ACTIONS(5546), - [anon_sym_interface] = ACTIONS(5546), - [anon_sym_delegate] = ACTIONS(5546), - [anon_sym_record] = ACTIONS(5546), - [anon_sym_public] = ACTIONS(5546), - [anon_sym_private] = ACTIONS(5546), - [anon_sym_readonly] = ACTIONS(5546), - [anon_sym_abstract] = ACTIONS(5546), - [anon_sym_async] = ACTIONS(5546), - [anon_sym_const] = ACTIONS(5546), - [anon_sym_file] = ACTIONS(5546), - [anon_sym_fixed] = ACTIONS(5546), - [anon_sym_internal] = ACTIONS(5546), - [anon_sym_new] = ACTIONS(5546), - [anon_sym_override] = ACTIONS(5546), - [anon_sym_partial] = ACTIONS(5546), - [anon_sym_protected] = ACTIONS(5546), - [anon_sym_required] = ACTIONS(5546), - [anon_sym_sealed] = ACTIONS(5546), - [anon_sym_virtual] = ACTIONS(5546), - [anon_sym_volatile] = ACTIONS(5546), - [anon_sym_where] = ACTIONS(5546), - [anon_sym_notnull] = ACTIONS(5546), - [anon_sym_unmanaged] = ACTIONS(5546), - [anon_sym_TILDE] = ACTIONS(5548), - [anon_sym_implicit] = ACTIONS(5546), - [anon_sym_explicit] = ACTIONS(5546), - [anon_sym_scoped] = ACTIONS(5546), - [anon_sym_var] = ACTIONS(5546), - [sym_predefined_type] = ACTIONS(5546), - [anon_sym_yield] = ACTIONS(5546), - [anon_sym_when] = ACTIONS(5546), - [anon_sym_from] = ACTIONS(5546), - [anon_sym_into] = ACTIONS(5546), - [anon_sym_join] = ACTIONS(5546), - [anon_sym_on] = ACTIONS(5546), - [anon_sym_equals] = ACTIONS(5546), - [anon_sym_let] = ACTIONS(5546), - [anon_sym_orderby] = ACTIONS(5546), - [anon_sym_ascending] = ACTIONS(5546), - [anon_sym_descending] = ACTIONS(5546), - [anon_sym_group] = ACTIONS(5546), - [anon_sym_by] = ACTIONS(5546), - [anon_sym_select] = ACTIONS(5546), - [sym_grit_metavariable] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), - [aux_sym_preproc_if_token3] = ACTIONS(5548), - [aux_sym_preproc_else_token1] = ACTIONS(5548), - [aux_sym_preproc_elif_token1] = ACTIONS(5548), + [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), @@ -498682,27 +497727,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3180] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3180), [sym_preproc_endregion] = STATE(3180), [sym_preproc_line] = STATE(3180), @@ -498712,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_where] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [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(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -498764,27 +497806,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3181] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), + [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), @@ -498794,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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4798), - [anon_sym_COMMA] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4798), - [anon_sym_RBRACE] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5550), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5544), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5528), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -498846,6 +497885,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3182] = { + [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), @@ -498855,67 +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), - [sym__identifier_token] = ACTIONS(5552), - [anon_sym_extern] = ACTIONS(5552), - [anon_sym_alias] = ACTIONS(5552), - [anon_sym_global] = ACTIONS(5552), - [anon_sym_unsafe] = ACTIONS(5552), - [anon_sym_static] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5554), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_event] = ACTIONS(5552), - [anon_sym_class] = ACTIONS(5552), - [anon_sym_ref] = ACTIONS(5552), - [anon_sym_struct] = ACTIONS(5552), - [anon_sym_enum] = ACTIONS(5552), - [anon_sym_interface] = ACTIONS(5552), - [anon_sym_delegate] = ACTIONS(5552), - [anon_sym_record] = ACTIONS(5552), - [anon_sym_public] = ACTIONS(5552), - [anon_sym_private] = ACTIONS(5552), - [anon_sym_readonly] = ACTIONS(5552), - [anon_sym_abstract] = ACTIONS(5552), - [anon_sym_async] = ACTIONS(5552), - [anon_sym_const] = ACTIONS(5552), - [anon_sym_file] = ACTIONS(5552), - [anon_sym_fixed] = ACTIONS(5552), - [anon_sym_internal] = ACTIONS(5552), - [anon_sym_new] = ACTIONS(5552), - [anon_sym_override] = ACTIONS(5552), - [anon_sym_partial] = ACTIONS(5552), - [anon_sym_protected] = ACTIONS(5552), - [anon_sym_required] = ACTIONS(5552), - [anon_sym_sealed] = ACTIONS(5552), - [anon_sym_virtual] = ACTIONS(5552), - [anon_sym_volatile] = ACTIONS(5552), - [anon_sym_where] = ACTIONS(5552), - [anon_sym_notnull] = ACTIONS(5552), - [anon_sym_unmanaged] = ACTIONS(5552), - [anon_sym_TILDE] = ACTIONS(5554), - [anon_sym_implicit] = ACTIONS(5552), - [anon_sym_explicit] = ACTIONS(5552), - [anon_sym_scoped] = ACTIONS(5552), - [anon_sym_var] = ACTIONS(5552), - [sym_predefined_type] = ACTIONS(5552), - [anon_sym_yield] = ACTIONS(5552), - [anon_sym_when] = ACTIONS(5552), - [anon_sym_from] = ACTIONS(5552), - [anon_sym_into] = ACTIONS(5552), - [anon_sym_join] = ACTIONS(5552), - [anon_sym_on] = ACTIONS(5552), - [anon_sym_equals] = ACTIONS(5552), - [anon_sym_let] = ACTIONS(5552), - [anon_sym_orderby] = ACTIONS(5552), - [anon_sym_ascending] = ACTIONS(5552), - [anon_sym_descending] = ACTIONS(5552), - [anon_sym_group] = ACTIONS(5552), - [anon_sym_by] = ACTIONS(5552), - [anon_sym_select] = ACTIONS(5552), - [sym_grit_metavariable] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), - [aux_sym_preproc_if_token3] = ACTIONS(5554), - [aux_sym_preproc_else_token1] = ACTIONS(5554), - [aux_sym_preproc_elif_token1] = ACTIONS(5554), + [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), @@ -498928,27 +497964,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3183] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), + [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), @@ -498958,46 +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_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(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -499010,27 +498043,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3184] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), + [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), @@ -499040,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_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(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [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(4400), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [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(4402), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -499092,27 +498122,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3185] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), [sym_preproc_region] = STATE(3185), [sym_preproc_endregion] = STATE(3185), [sym_preproc_line] = STATE(3185), @@ -499122,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(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -499183,67 +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), - [sym__identifier_token] = ACTIONS(5556), - [anon_sym_extern] = ACTIONS(5556), - [anon_sym_alias] = ACTIONS(5556), - [anon_sym_global] = ACTIONS(5556), - [anon_sym_unsafe] = ACTIONS(5556), - [anon_sym_static] = ACTIONS(5556), - [anon_sym_LBRACK] = ACTIONS(5558), - [anon_sym_LPAREN] = ACTIONS(5558), - [anon_sym_event] = ACTIONS(5556), - [anon_sym_class] = ACTIONS(5556), - [anon_sym_ref] = ACTIONS(5556), - [anon_sym_struct] = ACTIONS(5556), - [anon_sym_enum] = ACTIONS(5556), - [anon_sym_interface] = ACTIONS(5556), - [anon_sym_delegate] = ACTIONS(5556), - [anon_sym_record] = ACTIONS(5556), - [anon_sym_public] = ACTIONS(5556), - [anon_sym_private] = ACTIONS(5556), - [anon_sym_readonly] = ACTIONS(5556), - [anon_sym_abstract] = ACTIONS(5556), - [anon_sym_async] = ACTIONS(5556), - [anon_sym_const] = ACTIONS(5556), - [anon_sym_file] = ACTIONS(5556), - [anon_sym_fixed] = ACTIONS(5556), - [anon_sym_internal] = ACTIONS(5556), - [anon_sym_new] = ACTIONS(5556), - [anon_sym_override] = ACTIONS(5556), - [anon_sym_partial] = ACTIONS(5556), - [anon_sym_protected] = ACTIONS(5556), - [anon_sym_required] = ACTIONS(5556), - [anon_sym_sealed] = ACTIONS(5556), - [anon_sym_virtual] = ACTIONS(5556), - [anon_sym_volatile] = ACTIONS(5556), - [anon_sym_where] = ACTIONS(5556), - [anon_sym_notnull] = ACTIONS(5556), - [anon_sym_unmanaged] = ACTIONS(5556), - [anon_sym_TILDE] = ACTIONS(5558), - [anon_sym_implicit] = ACTIONS(5556), - [anon_sym_explicit] = ACTIONS(5556), - [anon_sym_scoped] = ACTIONS(5556), - [anon_sym_var] = ACTIONS(5556), - [sym_predefined_type] = ACTIONS(5556), - [anon_sym_yield] = ACTIONS(5556), - [anon_sym_when] = ACTIONS(5556), - [anon_sym_from] = ACTIONS(5556), - [anon_sym_into] = ACTIONS(5556), - [anon_sym_join] = ACTIONS(5556), - [anon_sym_on] = ACTIONS(5556), - [anon_sym_equals] = ACTIONS(5556), - [anon_sym_let] = ACTIONS(5556), - [anon_sym_orderby] = ACTIONS(5556), - [anon_sym_ascending] = ACTIONS(5556), - [anon_sym_descending] = ACTIONS(5556), - [anon_sym_group] = ACTIONS(5556), - [anon_sym_by] = ACTIONS(5556), - [anon_sym_select] = ACTIONS(5556), - [sym_grit_metavariable] = ACTIONS(5558), - [aux_sym_preproc_if_token1] = ACTIONS(5558), - [aux_sym_preproc_if_token3] = ACTIONS(5558), - [aux_sym_preproc_else_token1] = ACTIONS(5558), - [aux_sym_preproc_elif_token1] = ACTIONS(5558), + [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), @@ -499256,27 +498280,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3187] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3187), [sym_preproc_endregion] = STATE(3187), [sym_preproc_line] = STATE(3187), @@ -499286,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_where] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_from] = ACTIONS(4768), - [anon_sym_join] = ACTIONS(4768), - [anon_sym_let] = ACTIONS(4768), - [anon_sym_orderby] = ACTIONS(4768), - [anon_sym_group] = ACTIONS(4768), - [anon_sym_select] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -499338,27 +498359,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3188] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3188), [sym_preproc_endregion] = STATE(3188), [sym_preproc_line] = STATE(3188), @@ -499368,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_where] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [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(4932), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [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(4936), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -499429,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(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5560), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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(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_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), @@ -499502,27 +498517,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3190] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), [sym_preproc_region] = STATE(3190), [sym_preproc_endregion] = STATE(3190), [sym_preproc_line] = STATE(3190), @@ -499532,46 +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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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(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), @@ -499584,27 +498596,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3191] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3191), [sym_preproc_endregion] = STATE(3191), [sym_preproc_line] = STATE(3191), @@ -499614,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5562), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5516), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -499666,27 +498675,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3192] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), [sym_preproc_region] = STATE(3192), [sym_preproc_endregion] = STATE(3192), [sym_preproc_line] = STATE(3192), @@ -499696,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(4776), - [anon_sym_COMMA] = ACTIONS(4776), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4776), - [anon_sym_RBRACE] = ACTIONS(4776), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5550), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4776), - [anon_sym_or] = ACTIONS(4776), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5544), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5528), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -499748,27 +498754,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3193] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3193), [sym_preproc_endregion] = STATE(3193), [sym_preproc_line] = STATE(3193), @@ -499778,46 +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), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(5564), - [anon_sym_QMARK] = ACTIONS(5566), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5562), - [anon_sym_from] = ACTIONS(5564), - [anon_sym_join] = ACTIONS(5564), - [anon_sym_let] = ACTIONS(5564), - [anon_sym_orderby] = ACTIONS(5564), - [anon_sym_group] = ACTIONS(5564), - [anon_sym_select] = ACTIONS(5564), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5516), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -499830,13 +498833,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3194] = { - [sym_attribute_list] = STATE(5039), - [sym__attribute_list] = STATE(4995), - [sym_modifier] = STATE(5141), - [sym_accessor_declaration] = STATE(4879), - [sym_identifier] = STATE(6777), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_attribute_list] = STATE(5039), [sym_preproc_region] = STATE(3194), [sym_preproc_endregion] = STATE(3194), [sym_preproc_line] = STATE(3194), @@ -499846,60 +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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3604), - [aux_sym__class_declaration_initializer_repeat2] = STATE(4721), - [aux_sym_accessor_list_repeat1] = STATE(3247), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(5568), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(5568), - [anon_sym_static] = ACTIONS(5568), - [anon_sym_LBRACK] = ACTIONS(5570), - [anon_sym_RBRACE] = ACTIONS(5572), - [anon_sym_public] = ACTIONS(5568), - [anon_sym_private] = ACTIONS(5568), - [anon_sym_readonly] = ACTIONS(5568), - [anon_sym_abstract] = ACTIONS(5568), - [anon_sym_async] = ACTIONS(5568), - [anon_sym_const] = ACTIONS(5568), - [anon_sym_file] = ACTIONS(5574), - [anon_sym_fixed] = ACTIONS(5568), - [anon_sym_internal] = ACTIONS(5568), - [anon_sym_new] = ACTIONS(5568), - [anon_sym_override] = ACTIONS(5568), - [anon_sym_partial] = ACTIONS(5568), - [anon_sym_protected] = ACTIONS(5568), - [anon_sym_required] = ACTIONS(5568), - [anon_sym_sealed] = ACTIONS(5568), - [anon_sym_virtual] = ACTIONS(5568), - [anon_sym_volatile] = ACTIONS(5568), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [sym_accessor_get] = ACTIONS(5576), - [sym_accessor_set] = ACTIONS(5576), - [sym_accessor_add] = ACTIONS(5576), - [sym_accessor_remove] = ACTIONS(5576), - [sym_accessor_init] = ACTIONS(5576), - [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(5578), + [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), @@ -499912,27 +498912,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3195] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), [sym_preproc_region] = STATE(3195), [sym_preproc_endregion] = STATE(3195), [sym_preproc_line] = STATE(3195), @@ -499942,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -499994,27 +498991,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3196] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), [sym_preproc_region] = STATE(3196), [sym_preproc_endregion] = STATE(3196), [sym_preproc_line] = STATE(3196), @@ -500024,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(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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5550), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5544), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5528), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -500076,27 +499070,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3197] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), + [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), @@ -500106,46 +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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4756), - [anon_sym_COMMA] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4756), - [anon_sym_RBRACE] = ACTIONS(4756), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5550), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4756), - [anon_sym_or] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5544), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5528), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -500158,27 +499149,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3198] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), + [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), @@ -500188,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_SEMI] = ACTIONS(4780), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_RBRACK] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_RBRACE] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5580), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5538), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -500240,27 +499228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3199] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), + [sym_type_argument_list] = STATE(3245), [sym_preproc_region] = STATE(3199), [sym_preproc_endregion] = STATE(3199), [sym_preproc_line] = STATE(3199), @@ -500270,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_where] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [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(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -500322,27 +499307,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3200] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), [sym_preproc_region] = STATE(3200), [sym_preproc_endregion] = STATE(3200), [sym_preproc_line] = STATE(3200), @@ -500352,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -500404,27 +499385,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3201] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), [sym_preproc_region] = STATE(3201), [sym_preproc_endregion] = STATE(3201), [sym_preproc_line] = STATE(3201), @@ -500434,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(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5528), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -500486,6 +499463,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3202] = { + [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), @@ -500495,67 +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), - [sym__identifier_token] = ACTIONS(5582), - [anon_sym_extern] = ACTIONS(5582), - [anon_sym_alias] = ACTIONS(5582), - [anon_sym_global] = ACTIONS(5582), - [anon_sym_unsafe] = ACTIONS(5582), - [anon_sym_static] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5584), - [anon_sym_LPAREN] = ACTIONS(5584), - [anon_sym_event] = ACTIONS(5582), - [anon_sym_class] = ACTIONS(5582), - [anon_sym_ref] = ACTIONS(5582), - [anon_sym_struct] = ACTIONS(5582), - [anon_sym_enum] = ACTIONS(5582), - [anon_sym_interface] = ACTIONS(5582), - [anon_sym_delegate] = ACTIONS(5582), - [anon_sym_record] = ACTIONS(5582), - [anon_sym_public] = ACTIONS(5582), - [anon_sym_private] = ACTIONS(5582), - [anon_sym_readonly] = ACTIONS(5582), - [anon_sym_abstract] = ACTIONS(5582), - [anon_sym_async] = ACTIONS(5582), - [anon_sym_const] = ACTIONS(5582), - [anon_sym_file] = ACTIONS(5582), - [anon_sym_fixed] = ACTIONS(5582), - [anon_sym_internal] = ACTIONS(5582), - [anon_sym_new] = ACTIONS(5582), - [anon_sym_override] = ACTIONS(5582), - [anon_sym_partial] = ACTIONS(5582), - [anon_sym_protected] = ACTIONS(5582), - [anon_sym_required] = ACTIONS(5582), - [anon_sym_sealed] = ACTIONS(5582), - [anon_sym_virtual] = ACTIONS(5582), - [anon_sym_volatile] = ACTIONS(5582), - [anon_sym_where] = ACTIONS(5582), - [anon_sym_notnull] = ACTIONS(5582), - [anon_sym_unmanaged] = ACTIONS(5582), - [anon_sym_TILDE] = ACTIONS(5584), - [anon_sym_implicit] = ACTIONS(5582), - [anon_sym_explicit] = ACTIONS(5582), - [anon_sym_scoped] = ACTIONS(5582), - [anon_sym_var] = ACTIONS(5582), - [sym_predefined_type] = ACTIONS(5582), - [anon_sym_yield] = ACTIONS(5582), - [anon_sym_when] = ACTIONS(5582), - [anon_sym_from] = ACTIONS(5582), - [anon_sym_into] = ACTIONS(5582), - [anon_sym_join] = ACTIONS(5582), - [anon_sym_on] = ACTIONS(5582), - [anon_sym_equals] = ACTIONS(5582), - [anon_sym_let] = ACTIONS(5582), - [anon_sym_orderby] = ACTIONS(5582), - [anon_sym_ascending] = ACTIONS(5582), - [anon_sym_descending] = ACTIONS(5582), - [anon_sym_group] = ACTIONS(5582), - [anon_sym_by] = ACTIONS(5582), - [anon_sym_select] = ACTIONS(5582), - [sym_grit_metavariable] = ACTIONS(5584), - [aux_sym_preproc_if_token1] = ACTIONS(5584), - [aux_sym_preproc_if_token3] = ACTIONS(5584), - [aux_sym_preproc_else_token1] = ACTIONS(5584), - [aux_sym_preproc_elif_token1] = ACTIONS(5584), + [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), @@ -500568,27 +499541,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3203] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3203), [sym_preproc_endregion] = STATE(3203), [sym_preproc_line] = STATE(3203), @@ -500598,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(5586), - [anon_sym_QMARK] = ACTIONS(5566), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5562), - [anon_sym_from] = ACTIONS(5586), - [anon_sym_join] = ACTIONS(5586), - [anon_sym_let] = ACTIONS(5586), - [anon_sym_orderby] = ACTIONS(5586), - [anon_sym_group] = ACTIONS(5586), - [anon_sym_select] = ACTIONS(5586), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5516), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -500650,27 +499619,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3204] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), + [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), @@ -500680,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4764), - [anon_sym_QMARK] = ACTIONS(5566), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5562), - [anon_sym_from] = ACTIONS(4764), - [anon_sym_join] = ACTIONS(4764), - [anon_sym_let] = ACTIONS(4764), - [anon_sym_orderby] = ACTIONS(4764), - [anon_sym_group] = ACTIONS(4764), - [anon_sym_select] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5516), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -500741,67 +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), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5588), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -500814,27 +499775,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3206] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), + [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), @@ -500844,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_SEMI] = ACTIONS(4772), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_RBRACK] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4772), - [anon_sym_RBRACE] = ACTIONS(4772), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5580), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5538), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -500896,27 +499853,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3207] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), [sym_preproc_region] = STATE(3207), [sym_preproc_endregion] = STATE(3207), [sym_preproc_line] = STATE(3207), @@ -500926,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(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5528), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -500978,27 +499931,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3208] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), [sym_preproc_region] = STATE(3208), [sym_preproc_endregion] = STATE(3208), [sym_preproc_line] = STATE(3208), @@ -501008,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5538), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -501069,67 +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), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5590), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -501142,27 +500087,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3210] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), [sym_preproc_region] = STATE(3210), [sym_preproc_endregion] = STATE(3210), [sym_preproc_line] = STATE(3210), @@ -501172,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -501224,29 +500165,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3211] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter] = STATE(7083), - [sym__parameter_array] = STATE(7074), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6384), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6013), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -501256,44 +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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3676), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(5444), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_ref] = ACTIONS(5446), - [anon_sym_delegate] = ACTIONS(3709), - [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(5472), - [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(4080), - [aux_sym_preproc_if_token1] = ACTIONS(5452), + [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), @@ -501306,27 +500243,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3212] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), [sym_preproc_region] = STATE(3212), [sym_preproc_endregion] = STATE(3212), [sym_preproc_line] = STATE(3212), @@ -501336,46 +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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -501388,27 +500321,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3213] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), [sym_preproc_region] = STATE(3213), [sym_preproc_endregion] = STATE(3213), [sym_preproc_line] = STATE(3213), @@ -501418,46 +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), - [anon_sym_SEMI] = ACTIONS(4764), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_RBRACK] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5580), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5538), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -501470,27 +500399,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3214] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), [sym_preproc_region] = STATE(3214), [sym_preproc_endregion] = STATE(3214), [sym_preproc_line] = STATE(3214), @@ -501500,46 +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), - [anon_sym_SEMI] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_RBRACK] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5580), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5538), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -501552,27 +500477,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3215] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3215), [sym_preproc_endregion] = STATE(3215), [sym_preproc_line] = STATE(3215), @@ -501582,46 +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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4742), - [anon_sym_QMARK] = ACTIONS(5566), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5562), - [anon_sym_from] = ACTIONS(4742), - [anon_sym_join] = ACTIONS(4742), - [anon_sym_let] = ACTIONS(4742), - [anon_sym_orderby] = ACTIONS(4742), - [anon_sym_group] = ACTIONS(4742), - [anon_sym_select] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5516), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -501634,27 +500555,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3216] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), [sym_preproc_region] = STATE(3216), [sym_preproc_endregion] = STATE(3216), [sym_preproc_line] = STATE(3216), @@ -501664,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(1435), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_RBRACK] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5520), - [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(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [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(4468), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -501716,27 +500633,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3217] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), [sym_preproc_region] = STATE(3217), [sym_preproc_endregion] = STATE(3217), [sym_preproc_line] = STATE(3217), @@ -501746,46 +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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -501798,27 +500711,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3218] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), [sym_preproc_region] = STATE(3218), [sym_preproc_endregion] = STATE(3218), [sym_preproc_line] = STATE(3218), @@ -501828,46 +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), - [anon_sym_SEMI] = ACTIONS(4786), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_RBRACK] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4786), - [anon_sym_RBRACE] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -501880,27 +500789,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3219] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), [sym_preproc_region] = STATE(3219), [sym_preproc_endregion] = STATE(3219), [sym_preproc_line] = STATE(3219), @@ -501910,46 +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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5550), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5544), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5528), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -501962,27 +500867,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3220] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), [sym_preproc_region] = STATE(3220), [sym_preproc_endregion] = STATE(3220), [sym_preproc_line] = STATE(3220), @@ -501992,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(4825), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5550), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5544), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5528), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -502053,67 +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), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5592), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -502126,27 +501023,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3222] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), + [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), @@ -502156,46 +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), - [anon_sym_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5538), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -502208,6 +501101,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3223] = { + [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), @@ -502217,67 +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), - [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(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), @@ -502290,27 +501179,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3224] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), + [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), @@ -502320,46 +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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4772), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4772), - [anon_sym_RBRACE] = ACTIONS(4772), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5550), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5544), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5528), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -502372,27 +501257,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3225] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), + [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), @@ -502402,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_SEMI] = ACTIONS(4794), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_RBRACK] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4794), - [anon_sym_RBRACE] = ACTIONS(4794), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5580), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5538), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -502463,67 +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), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5598), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -502536,29 +501413,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3227] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter] = STATE(7370), - [sym__parameter_array] = STATE(7367), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6384), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6013), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -502568,44 +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(3676), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(5444), - [anon_sym_RBRACK] = ACTIONS(5600), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5446), - [anon_sym_delegate] = ACTIONS(3709), - [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(5472), - [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(4080), - [aux_sym_preproc_if_token1] = ACTIONS(5452), + [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), @@ -502618,27 +501491,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3228] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), + [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), @@ -502648,46 +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), - [anon_sym_SEMI] = ACTIONS(4760), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_RBRACK] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4760), - [anon_sym_RBRACE] = ACTIONS(4760), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -502700,27 +501569,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3229] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), [sym_preproc_region] = STATE(3229), [sym_preproc_endregion] = STATE(3229), [sym_preproc_line] = STATE(3229), @@ -502730,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_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(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -502782,27 +501647,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3230] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), + [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), @@ -502812,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(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(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -502864,27 +501725,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3231] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), [sym_preproc_region] = STATE(3231), [sym_preproc_endregion] = STATE(3231), [sym_preproc_line] = STATE(3231), @@ -502894,46 +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), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4798), - [anon_sym_RBRACK] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4798), - [anon_sym_RBRACE] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5580), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5538), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -502946,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), @@ -502955,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(4482), - [anon_sym_alias] = ACTIONS(4482), - [anon_sym_global] = ACTIONS(4482), - [anon_sym_LBRACK] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4484), - [anon_sym_LPAREN] = ACTIONS(4484), - [anon_sym_file] = ACTIONS(4482), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_where] = ACTIONS(4482), - [anon_sym_QMARK] = ACTIONS(4817), - [anon_sym_notnull] = ACTIONS(4482), - [anon_sym_unmanaged] = ACTIONS(4482), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PLUS_PLUS] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_CARET] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_LT_LT] = ACTIONS(4815), - [anon_sym_GT_GT] = ACTIONS(4817), - [anon_sym_GT_GT_GT] = ACTIONS(4815), - [anon_sym_EQ_EQ] = ACTIONS(4815), - [anon_sym_BANG_EQ] = ACTIONS(4815), - [anon_sym_GT_EQ] = ACTIONS(4815), - [anon_sym_LT_EQ] = ACTIONS(4815), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_scoped] = ACTIONS(4482), - [anon_sym_var] = ACTIONS(4482), - [anon_sym_yield] = ACTIONS(4482), - [anon_sym_switch] = ACTIONS(4817), - [anon_sym_when] = ACTIONS(4482), - [sym_discard] = ACTIONS(4482), - [anon_sym_DOT_DOT] = ACTIONS(4815), - [anon_sym_and] = ACTIONS(4482), - [anon_sym_or] = ACTIONS(4482), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [sym_op_coalescing] = ACTIONS(4815), - [anon_sym_from] = ACTIONS(4482), - [anon_sym_into] = ACTIONS(4482), - [anon_sym_join] = ACTIONS(4482), - [anon_sym_on] = ACTIONS(4482), - [anon_sym_equals] = ACTIONS(4482), - [anon_sym_let] = ACTIONS(4482), - [anon_sym_orderby] = ACTIONS(4482), - [anon_sym_ascending] = ACTIONS(4482), - [anon_sym_descending] = ACTIONS(4482), - [anon_sym_group] = ACTIONS(4482), - [anon_sym_by] = ACTIONS(4482), - [anon_sym_select] = ACTIONS(4482), - [anon_sym_as] = ACTIONS(4817), - [anon_sym_is] = ACTIONS(4817), - [anon_sym_DASH_GT] = ACTIONS(4815), - [anon_sym_with] = ACTIONS(4817), - [sym_grit_metavariable] = ACTIONS(4484), + [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), @@ -503028,13 +501881,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3233] = { - [sym_attribute_list] = STATE(5039), - [sym__attribute_list] = STATE(4995), - [sym_modifier] = STATE(5141), - [sym_accessor_declaration] = STATE(4879), - [sym_identifier] = STATE(6777), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_attribute_list] = STATE(5039), + [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), @@ -503044,60 +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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3604), - [aux_sym__class_declaration_initializer_repeat2] = STATE(4721), - [aux_sym_accessor_list_repeat1] = STATE(3194), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(5568), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(5568), - [anon_sym_static] = ACTIONS(5568), - [anon_sym_LBRACK] = ACTIONS(5570), - [anon_sym_RBRACE] = ACTIONS(5602), - [anon_sym_public] = ACTIONS(5568), - [anon_sym_private] = ACTIONS(5568), - [anon_sym_readonly] = ACTIONS(5568), - [anon_sym_abstract] = ACTIONS(5568), - [anon_sym_async] = ACTIONS(5568), - [anon_sym_const] = ACTIONS(5568), - [anon_sym_file] = ACTIONS(5574), - [anon_sym_fixed] = ACTIONS(5568), - [anon_sym_internal] = ACTIONS(5568), - [anon_sym_new] = ACTIONS(5568), - [anon_sym_override] = ACTIONS(5568), - [anon_sym_partial] = ACTIONS(5568), - [anon_sym_protected] = ACTIONS(5568), - [anon_sym_required] = ACTIONS(5568), - [anon_sym_sealed] = ACTIONS(5568), - [anon_sym_virtual] = ACTIONS(5568), - [anon_sym_volatile] = ACTIONS(5568), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [sym_accessor_get] = ACTIONS(5576), - [sym_accessor_set] = ACTIONS(5576), - [sym_accessor_add] = ACTIONS(5576), - [sym_accessor_remove] = ACTIONS(5576), - [sym_accessor_init] = ACTIONS(5576), - [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(5578), + [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), @@ -503119,67 +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), - [sym__identifier_token] = ACTIONS(5604), - [anon_sym_extern] = ACTIONS(5604), - [anon_sym_alias] = ACTIONS(5604), - [anon_sym_global] = ACTIONS(5604), - [anon_sym_unsafe] = ACTIONS(5604), - [anon_sym_static] = ACTIONS(5604), - [anon_sym_LBRACK] = ACTIONS(5606), - [anon_sym_LPAREN] = ACTIONS(5606), - [anon_sym_event] = ACTIONS(5604), - [anon_sym_class] = ACTIONS(5604), - [anon_sym_ref] = ACTIONS(5604), - [anon_sym_struct] = ACTIONS(5604), - [anon_sym_enum] = ACTIONS(5604), - [anon_sym_interface] = ACTIONS(5604), - [anon_sym_delegate] = ACTIONS(5604), - [anon_sym_record] = ACTIONS(5604), - [anon_sym_public] = ACTIONS(5604), - [anon_sym_private] = ACTIONS(5604), - [anon_sym_readonly] = ACTIONS(5604), - [anon_sym_abstract] = ACTIONS(5604), - [anon_sym_async] = ACTIONS(5604), - [anon_sym_const] = ACTIONS(5604), - [anon_sym_file] = ACTIONS(5604), - [anon_sym_fixed] = ACTIONS(5604), - [anon_sym_internal] = ACTIONS(5604), - [anon_sym_new] = ACTIONS(5604), - [anon_sym_override] = ACTIONS(5604), - [anon_sym_partial] = ACTIONS(5604), - [anon_sym_protected] = ACTIONS(5604), - [anon_sym_required] = ACTIONS(5604), - [anon_sym_sealed] = ACTIONS(5604), - [anon_sym_virtual] = ACTIONS(5604), - [anon_sym_volatile] = ACTIONS(5604), - [anon_sym_where] = ACTIONS(5604), - [anon_sym_notnull] = ACTIONS(5604), - [anon_sym_unmanaged] = ACTIONS(5604), - [anon_sym_TILDE] = ACTIONS(5606), - [anon_sym_implicit] = ACTIONS(5604), - [anon_sym_explicit] = ACTIONS(5604), - [anon_sym_scoped] = ACTIONS(5604), - [anon_sym_var] = ACTIONS(5604), - [sym_predefined_type] = ACTIONS(5604), - [anon_sym_yield] = ACTIONS(5604), - [anon_sym_when] = ACTIONS(5604), - [anon_sym_from] = ACTIONS(5604), - [anon_sym_into] = ACTIONS(5604), - [anon_sym_join] = ACTIONS(5604), - [anon_sym_on] = ACTIONS(5604), - [anon_sym_equals] = ACTIONS(5604), - [anon_sym_let] = ACTIONS(5604), - [anon_sym_orderby] = ACTIONS(5604), - [anon_sym_ascending] = ACTIONS(5604), - [anon_sym_descending] = ACTIONS(5604), - [anon_sym_group] = ACTIONS(5604), - [anon_sym_by] = ACTIONS(5604), - [anon_sym_select] = ACTIONS(5604), - [sym_grit_metavariable] = ACTIONS(5606), - [aux_sym_preproc_if_token1] = ACTIONS(5606), - [aux_sym_preproc_if_token3] = ACTIONS(5606), - [aux_sym_preproc_else_token1] = ACTIONS(5606), - [aux_sym_preproc_elif_token1] = ACTIONS(5606), + [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), @@ -503201,67 +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), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5608), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -503274,27 +502115,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3236] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3236), [sym_preproc_endregion] = STATE(3236), [sym_preproc_line] = STATE(3236), @@ -503304,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -503356,27 +502193,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3237] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3237), [sym_preproc_endregion] = STATE(3237), [sym_preproc_line] = STATE(3237), @@ -503386,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -503438,27 +502271,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3238] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), [sym_preproc_region] = STATE(3238), [sym_preproc_endregion] = STATE(3238), [sym_preproc_line] = STATE(3238), @@ -503468,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(4825), - [anon_sym_COLON] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_RBRACE] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5550), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5544), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5528), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -503520,27 +502349,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3239] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3239), [sym_preproc_endregion] = STATE(3239), [sym_preproc_line] = STATE(3239), @@ -503550,46 +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), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4798), - [anon_sym_QMARK] = ACTIONS(5566), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5562), - [anon_sym_from] = ACTIONS(4798), - [anon_sym_join] = ACTIONS(4798), - [anon_sym_let] = ACTIONS(4798), - [anon_sym_orderby] = ACTIONS(4798), - [anon_sym_group] = ACTIONS(4798), - [anon_sym_select] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5516), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -503602,27 +502427,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3240] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3240), [sym_preproc_endregion] = STATE(3240), [sym_preproc_line] = STATE(3240), @@ -503632,46 +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), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -503684,27 +502505,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3241] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3241), [sym_preproc_endregion] = STATE(3241), [sym_preproc_line] = STATE(3241), @@ -503714,46 +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), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5516), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -503766,27 +502583,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3242] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), + [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), @@ -503796,46 +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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5538), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -503848,27 +502661,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3243] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), + [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), @@ -503878,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5516), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -503930,27 +502739,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3244] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), + [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), @@ -503960,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(4825), - [anon_sym_COLON] = ACTIONS(4768), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4768), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -504012,27 +502817,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3245] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3245), [sym_preproc_endregion] = STATE(3245), [sym_preproc_line] = STATE(3245), @@ -504042,46 +502826,63 @@ 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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(5610), - [anon_sym_QMARK] = ACTIONS(5566), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5562), - [anon_sym_from] = ACTIONS(5610), - [anon_sym_join] = ACTIONS(5610), - [anon_sym_let] = ACTIONS(5610), - [anon_sym_orderby] = ACTIONS(5610), - [anon_sym_group] = ACTIONS(5610), - [anon_sym_select] = ACTIONS(5610), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5516), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -504094,27 +502895,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3246] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), + [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), @@ -504124,46 +502919,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3246), [sym_preproc_define] = STATE(3246), [sym_preproc_undef] = STATE(3246), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4772), - [anon_sym_QMARK] = ACTIONS(5566), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5562), - [anon_sym_from] = ACTIONS(4772), - [anon_sym_join] = ACTIONS(4772), - [anon_sym_let] = ACTIONS(4772), - [anon_sym_orderby] = ACTIONS(4772), - [anon_sym_group] = ACTIONS(4772), - [anon_sym_select] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5516), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -504176,13 +502973,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3247] = { - [sym_attribute_list] = STATE(5039), - [sym__attribute_list] = STATE(4995), - [sym_modifier] = STATE(5141), - [sym_accessor_declaration] = STATE(4879), - [sym_identifier] = STATE(6777), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_attribute_list] = STATE(5039), [sym_preproc_region] = STATE(3247), [sym_preproc_endregion] = STATE(3247), [sym_preproc_line] = STATE(3247), @@ -504192,60 +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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3604), - [aux_sym__class_declaration_initializer_repeat2] = STATE(4721), - [aux_sym_accessor_list_repeat1] = STATE(3247), - [sym__identifier_token] = ACTIONS(5612), - [anon_sym_extern] = ACTIONS(5615), - [anon_sym_alias] = ACTIONS(5618), - [anon_sym_global] = ACTIONS(5618), - [anon_sym_unsafe] = ACTIONS(5615), - [anon_sym_static] = ACTIONS(5615), - [anon_sym_LBRACK] = ACTIONS(5621), - [anon_sym_RBRACE] = ACTIONS(5624), - [anon_sym_public] = ACTIONS(5615), - [anon_sym_private] = ACTIONS(5615), - [anon_sym_readonly] = ACTIONS(5615), - [anon_sym_abstract] = ACTIONS(5615), - [anon_sym_async] = ACTIONS(5615), - [anon_sym_const] = ACTIONS(5615), - [anon_sym_file] = ACTIONS(5626), - [anon_sym_fixed] = ACTIONS(5615), - [anon_sym_internal] = ACTIONS(5615), - [anon_sym_new] = ACTIONS(5615), - [anon_sym_override] = ACTIONS(5615), - [anon_sym_partial] = ACTIONS(5615), - [anon_sym_protected] = ACTIONS(5615), - [anon_sym_required] = ACTIONS(5615), - [anon_sym_sealed] = ACTIONS(5615), - [anon_sym_virtual] = ACTIONS(5615), - [anon_sym_volatile] = ACTIONS(5615), - [anon_sym_where] = ACTIONS(5618), - [anon_sym_notnull] = ACTIONS(5618), - [anon_sym_unmanaged] = ACTIONS(5618), - [sym_accessor_get] = ACTIONS(5629), - [sym_accessor_set] = ACTIONS(5629), - [sym_accessor_add] = ACTIONS(5629), - [sym_accessor_remove] = ACTIONS(5629), - [sym_accessor_init] = ACTIONS(5629), - [anon_sym_scoped] = ACTIONS(5618), - [anon_sym_var] = ACTIONS(5618), - [anon_sym_yield] = ACTIONS(5618), - [anon_sym_when] = ACTIONS(5618), - [anon_sym_from] = ACTIONS(5618), - [anon_sym_into] = ACTIONS(5618), - [anon_sym_join] = ACTIONS(5618), - [anon_sym_on] = ACTIONS(5618), - [anon_sym_equals] = ACTIONS(5618), - [anon_sym_let] = ACTIONS(5618), - [anon_sym_orderby] = ACTIONS(5618), - [anon_sym_ascending] = ACTIONS(5618), - [anon_sym_descending] = ACTIONS(5618), - [anon_sym_group] = ACTIONS(5618), - [anon_sym_by] = ACTIONS(5618), - [anon_sym_select] = ACTIONS(5618), - [sym_grit_metavariable] = ACTIONS(5632), - [aux_sym_preproc_if_token1] = ACTIONS(5635), + [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), @@ -504258,27 +503051,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3248] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), [sym_preproc_region] = STATE(3248), [sym_preproc_endregion] = STATE(3248), [sym_preproc_line] = STATE(3248), @@ -504288,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(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5538), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -504340,27 +503129,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3249] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), + [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), @@ -504370,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5538), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -504422,27 +503207,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3250] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3250), [sym_preproc_endregion] = STATE(3250), [sym_preproc_line] = STATE(3250), @@ -504452,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5516), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -504504,27 +503285,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3251] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3251), [sym_preproc_endregion] = STATE(3251), [sym_preproc_line] = STATE(3251), @@ -504534,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4780), - [anon_sym_QMARK] = ACTIONS(5566), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5562), - [anon_sym_from] = ACTIONS(4780), - [anon_sym_join] = ACTIONS(4780), - [anon_sym_let] = ACTIONS(4780), - [anon_sym_orderby] = ACTIONS(4780), - [anon_sym_group] = ACTIONS(4780), - [anon_sym_select] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5516), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -504586,27 +503363,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3252] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), + [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), @@ -504616,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_where] = ACTIONS(4760), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_from] = 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(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -504668,27 +503441,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3253] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3253), [sym_preproc_endregion] = STATE(3253), [sym_preproc_line] = STATE(3253), @@ -504698,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(5638), - [anon_sym_QMARK] = ACTIONS(5566), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5562), - [anon_sym_from] = ACTIONS(5638), - [anon_sym_join] = ACTIONS(5638), - [anon_sym_let] = ACTIONS(5638), - [anon_sym_orderby] = ACTIONS(5638), - [anon_sym_group] = ACTIONS(5638), - [anon_sym_select] = ACTIONS(5638), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5516), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -504759,67 +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), - [sym__identifier_token] = ACTIONS(4520), - [anon_sym_alias] = ACTIONS(4520), - [anon_sym_global] = ACTIONS(4520), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_COLON] = ACTIONS(4522), - [anon_sym_LPAREN] = ACTIONS(4522), - [anon_sym_file] = ACTIONS(4520), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_where] = ACTIONS(4520), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_notnull] = ACTIONS(4520), - [anon_sym_unmanaged] = ACTIONS(4520), - [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(4520), - [anon_sym_var] = ACTIONS(4520), - [anon_sym_yield] = ACTIONS(4520), - [anon_sym_switch] = ACTIONS(3203), - [anon_sym_when] = ACTIONS(4520), - [sym_discard] = ACTIONS(4520), - [anon_sym_DOT_DOT] = ACTIONS(3205), - [anon_sym_and] = ACTIONS(4520), - [anon_sym_or] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_PIPE_PIPE] = ACTIONS(3205), - [sym_op_coalescing] = ACTIONS(3205), - [anon_sym_from] = ACTIONS(4520), - [anon_sym_into] = ACTIONS(4520), - [anon_sym_join] = ACTIONS(4520), - [anon_sym_on] = ACTIONS(4520), - [anon_sym_equals] = ACTIONS(4520), - [anon_sym_let] = ACTIONS(4520), - [anon_sym_orderby] = ACTIONS(4520), - [anon_sym_ascending] = ACTIONS(4520), - [anon_sym_descending] = ACTIONS(4520), - [anon_sym_group] = ACTIONS(4520), - [anon_sym_by] = ACTIONS(4520), - [anon_sym_select] = ACTIONS(4520), - [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(4522), + [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), @@ -504832,27 +503597,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3255] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3255), [sym_preproc_endregion] = STATE(3255), [sym_preproc_line] = STATE(3255), @@ -504862,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -504914,27 +503675,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3256] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), [sym_preproc_region] = STATE(3256), [sym_preproc_endregion] = STATE(3256), [sym_preproc_line] = STATE(3256), @@ -504944,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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5526), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5528), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -505005,67 +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), - [sym__identifier_token] = ACTIONS(5640), - [anon_sym_extern] = ACTIONS(5640), - [anon_sym_alias] = ACTIONS(5640), - [anon_sym_global] = ACTIONS(5640), - [anon_sym_unsafe] = ACTIONS(5640), - [anon_sym_static] = ACTIONS(5640), - [anon_sym_LBRACK] = ACTIONS(5642), - [anon_sym_LPAREN] = ACTIONS(5642), - [anon_sym_event] = ACTIONS(5640), - [anon_sym_class] = ACTIONS(5640), - [anon_sym_ref] = ACTIONS(5640), - [anon_sym_struct] = ACTIONS(5640), - [anon_sym_enum] = ACTIONS(5640), - [anon_sym_interface] = ACTIONS(5640), - [anon_sym_delegate] = ACTIONS(5640), - [anon_sym_record] = ACTIONS(5640), - [anon_sym_public] = ACTIONS(5640), - [anon_sym_private] = ACTIONS(5640), - [anon_sym_readonly] = ACTIONS(5640), - [anon_sym_abstract] = ACTIONS(5640), - [anon_sym_async] = ACTIONS(5640), - [anon_sym_const] = ACTIONS(5640), - [anon_sym_file] = ACTIONS(5640), - [anon_sym_fixed] = ACTIONS(5640), - [anon_sym_internal] = ACTIONS(5640), - [anon_sym_new] = ACTIONS(5640), - [anon_sym_override] = ACTIONS(5640), - [anon_sym_partial] = ACTIONS(5640), - [anon_sym_protected] = ACTIONS(5640), - [anon_sym_required] = ACTIONS(5640), - [anon_sym_sealed] = ACTIONS(5640), - [anon_sym_virtual] = ACTIONS(5640), - [anon_sym_volatile] = ACTIONS(5640), - [anon_sym_where] = ACTIONS(5640), - [anon_sym_notnull] = ACTIONS(5640), - [anon_sym_unmanaged] = ACTIONS(5640), - [anon_sym_TILDE] = ACTIONS(5642), - [anon_sym_implicit] = ACTIONS(5640), - [anon_sym_explicit] = ACTIONS(5640), - [anon_sym_scoped] = ACTIONS(5640), - [anon_sym_var] = ACTIONS(5640), - [sym_predefined_type] = ACTIONS(5640), - [anon_sym_yield] = ACTIONS(5640), - [anon_sym_when] = ACTIONS(5640), - [anon_sym_from] = ACTIONS(5640), - [anon_sym_into] = ACTIONS(5640), - [anon_sym_join] = ACTIONS(5640), - [anon_sym_on] = ACTIONS(5640), - [anon_sym_equals] = ACTIONS(5640), - [anon_sym_let] = ACTIONS(5640), - [anon_sym_orderby] = ACTIONS(5640), - [anon_sym_ascending] = ACTIONS(5640), - [anon_sym_descending] = ACTIONS(5640), - [anon_sym_group] = ACTIONS(5640), - [anon_sym_by] = ACTIONS(5640), - [anon_sym_select] = ACTIONS(5640), - [sym_grit_metavariable] = ACTIONS(5642), - [aux_sym_preproc_if_token1] = ACTIONS(5642), - [aux_sym_preproc_if_token3] = ACTIONS(5642), - [aux_sym_preproc_else_token1] = ACTIONS(5642), - [aux_sym_preproc_elif_token1] = ACTIONS(5642), + [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), @@ -505078,27 +503831,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3258] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), + [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), @@ -505108,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5516), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -505160,27 +503909,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3259] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), [sym_preproc_region] = STATE(3259), [sym_preproc_endregion] = STATE(3259), [sym_preproc_line] = STATE(3259), @@ -505190,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(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5532), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5538), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -505242,27 +503987,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3260] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1829), - [sym_op_lte] = STATE(1829), - [sym_op_eq] = STATE(1827), - [sym_op_neq] = STATE(1827), - [sym_op_gt] = STATE(1829), - [sym_op_gte] = STATE(1829), - [sym_op_and] = STATE(1826), - [sym_op_or] = STATE(1824), - [sym_op_bitwise_and] = STATE(1820), - [sym_op_bitwise_or] = STATE(1819), - [sym_op_bitwise_xor] = STATE(1817), - [sym_op_left_shift] = STATE(1816), - [sym_op_right_shift] = STATE(1816), - [sym_op_unsigned_right_shift] = STATE(1816), - [sym_op_plus] = STATE(1814), - [sym_op_minus] = STATE(1814), - [sym_op_multiply] = STATE(1813), - [sym_op_divide] = STATE(1813), - [sym_op_modulo] = STATE(1813), [sym_preproc_region] = STATE(3260), [sym_preproc_endregion] = STATE(3260), [sym_preproc_line] = STATE(3260), @@ -505272,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_where] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5514), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_from] = ACTIONS(4686), - [anon_sym_join] = ACTIONS(4686), - [anon_sym_let] = ACTIONS(4686), - [anon_sym_orderby] = ACTIONS(4686), - [anon_sym_group] = ACTIONS(4686), - [anon_sym_select] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5430), - [anon_sym_is] = ACTIONS(5516), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [anon_sym_SEMI] = ACTIONS(5508), + [anon_sym_EQ] = ACTIONS(5883), + [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(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), @@ -505324,27 +504065,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3261] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), + [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), @@ -505354,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(4790), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_RBRACK] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -505415,67 +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), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -505497,67 +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), - [sym__identifier_token] = ACTIONS(4316), - [anon_sym_alias] = ACTIONS(4316), - [anon_sym_global] = ACTIONS(4316), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_file] = ACTIONS(4316), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4394), - [anon_sym_notnull] = ACTIONS(4316), - [anon_sym_unmanaged] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(5644), - [anon_sym_scoped] = ACTIONS(4316), - [anon_sym_var] = ACTIONS(4316), - [anon_sym_yield] = ACTIONS(4316), - [anon_sym_switch] = ACTIONS(4316), - [anon_sym_when] = ACTIONS(4316), - [sym_discard] = ACTIONS(4316), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4316), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4316), - [anon_sym_into] = ACTIONS(4316), - [anon_sym_join] = ACTIONS(4316), - [anon_sym_on] = ACTIONS(4316), - [anon_sym_equals] = ACTIONS(4316), - [anon_sym_let] = ACTIONS(4316), - [anon_sym_orderby] = ACTIONS(4316), - [anon_sym_ascending] = ACTIONS(4316), - [anon_sym_descending] = ACTIONS(4316), - [anon_sym_group] = ACTIONS(4316), - [anon_sym_by] = ACTIONS(4316), - [anon_sym_select] = ACTIONS(4316), - [anon_sym_as] = ACTIONS(4316), - [anon_sym_is] = ACTIONS(4316), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4316), - [sym_grit_metavariable] = ACTIONS(4318), + [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), @@ -505570,27 +504299,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3264] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(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), @@ -505600,44 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -505648,30 +504375,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(4686), }, [3265] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), [sym_preproc_region] = STATE(3265), [sym_preproc_endregion] = STATE(3265), [sym_preproc_line] = STATE(3265), @@ -505681,45 +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(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5662), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -505732,27 +504455,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3266] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), [sym_preproc_region] = STATE(3266), [sym_preproc_endregion] = STATE(3266), [sym_preproc_line] = STATE(3266), @@ -505762,45 +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_SEMI] = ACTIONS(1435), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [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(4468), - [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(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), @@ -505813,27 +504533,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3267] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(3267), [sym_preproc_endregion] = STATE(3267), [sym_preproc_line] = STATE(3267), @@ -505843,78 +504542,75 @@ 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_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(4790), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4790), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3268] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(3268), [sym_preproc_endregion] = STATE(3268), [sym_preproc_line] = STATE(3268), @@ -505924,44 +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(5646), - [anon_sym_COLON] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5666), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5670), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -505972,30 +504687,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(4742), }, [3269] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(3269), [sym_preproc_endregion] = STATE(3269), [sym_preproc_line] = STATE(3269), @@ -506005,44 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5670), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -506053,30 +504765,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(4686), }, [3270] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(3270), [sym_preproc_endregion] = STATE(3270), [sym_preproc_line] = STATE(3270), @@ -506086,44 +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_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -506134,30 +504843,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(4686), }, [3271] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(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), @@ -506167,44 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5670), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -506215,30 +504921,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(4686), }, [3272] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), + [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), @@ -506248,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5672), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5662), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -506299,27 +505001,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3273] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(3273), [sym_preproc_endregion] = STATE(3273), [sym_preproc_line] = STATE(3273), @@ -506329,45 +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(5518), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -506380,27 +505079,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3274] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(3274), [sym_preproc_endregion] = STATE(3274), [sym_preproc_line] = STATE(3274), @@ -506410,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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -506461,27 +505157,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3275] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), + [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), @@ -506491,45 +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(5518), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4794), - [anon_sym_RBRACE] = ACTIONS(4794), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5676), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5678), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5680), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -506542,27 +505235,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3276] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(3276), [sym_preproc_endregion] = STATE(3276), [sym_preproc_line] = STATE(3276), @@ -506572,45 +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(5518), - [anon_sym_COLON] = ACTIONS(4768), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4768), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -506623,27 +505313,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3277] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), + [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), @@ -506653,45 +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_SEMI] = ACTIONS(4786), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), - [aux_sym_preproc_if_token3] = ACTIONS(4786), - [aux_sym_preproc_else_token1] = ACTIONS(4786), - [aux_sym_preproc_elif_token1] = ACTIONS(4786), + [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), @@ -506713,66 +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_SEMI] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3381), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_RBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_RPAREN] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_in] = ACTIONS(3381), - [anon_sym_where] = ACTIONS(3381), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3381), - [anon_sym_CARET] = ACTIONS(3381), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LT_LT] = ACTIONS(3381), - [anon_sym_GT_GT] = ACTIONS(3379), - [anon_sym_GT_GT_GT] = ACTIONS(3381), - [anon_sym_EQ_EQ] = ACTIONS(3381), - [anon_sym_BANG_EQ] = ACTIONS(3381), - [anon_sym_GT_EQ] = ACTIONS(3381), - [anon_sym_LT_EQ] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_EQ_GT] = ACTIONS(3381), - [anon_sym_while] = ACTIONS(3381), - [anon_sym_switch] = ACTIONS(3381), - [anon_sym_catch] = ACTIONS(3381), - [anon_sym_finally] = ACTIONS(3381), - [anon_sym_else] = ACTIONS(3381), - [anon_sym_DOT_DOT] = ACTIONS(3381), - [anon_sym_and] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [sym_op_coalescing] = ACTIONS(3381), - [anon_sym_from] = ACTIONS(3381), - [anon_sym_join] = ACTIONS(3381), - [anon_sym_on] = ACTIONS(3381), - [anon_sym_equals] = ACTIONS(3381), - [anon_sym_let] = ACTIONS(3381), - [anon_sym_orderby] = ACTIONS(3381), - [anon_sym_group] = ACTIONS(3381), - [anon_sym_by] = ACTIONS(3381), - [anon_sym_select] = ACTIONS(3381), - [anon_sym_as] = ACTIONS(3381), - [anon_sym_is] = ACTIONS(3381), - [anon_sym_DASH_GT] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3381), - [aux_sym_preproc_if_token3] = ACTIONS(3381), - [aux_sym_preproc_else_token1] = ACTIONS(3381), - [aux_sym_preproc_elif_token1] = ACTIONS(3381), + [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), @@ -506785,27 +505469,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3279] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(3279), [sym_preproc_endregion] = STATE(3279), [sym_preproc_line] = STATE(3279), @@ -506815,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(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5680), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -506866,27 +505547,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3280] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(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), @@ -506896,44 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5666), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5670), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -506944,11 +505623,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(4686), }, [3281] = { - [sym_argument_list] = STATE(3407), - [sym_initializer_expression] = STATE(3783), [sym_preproc_region] = STATE(3281), [sym_preproc_endregion] = STATE(3281), [sym_preproc_line] = STATE(3281), @@ -506958,64 +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_SEMI] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COLON] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5682), - [anon_sym_RBRACK] = ACTIONS(5682), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(5682), - [anon_sym_LT] = ACTIONS(5684), - [anon_sym_GT] = ACTIONS(5684), - [anon_sym_in] = ACTIONS(5684), - [anon_sym_where] = ACTIONS(5682), - [anon_sym_QMARK] = ACTIONS(5684), - [anon_sym_BANG] = ACTIONS(5684), - [anon_sym_PLUS_PLUS] = ACTIONS(5682), - [anon_sym_DASH_DASH] = ACTIONS(5682), - [anon_sym_PLUS] = ACTIONS(5684), - [anon_sym_DASH] = ACTIONS(5684), - [anon_sym_STAR] = ACTIONS(5682), - [anon_sym_SLASH] = ACTIONS(5684), - [anon_sym_PERCENT] = ACTIONS(5682), - [anon_sym_CARET] = ACTIONS(5682), - [anon_sym_PIPE] = ACTIONS(5684), - [anon_sym_AMP] = ACTIONS(5684), - [anon_sym_LT_LT] = ACTIONS(5682), - [anon_sym_GT_GT] = ACTIONS(5684), - [anon_sym_GT_GT_GT] = ACTIONS(5682), - [anon_sym_EQ_EQ] = ACTIONS(5682), - [anon_sym_BANG_EQ] = ACTIONS(5682), - [anon_sym_GT_EQ] = ACTIONS(5682), - [anon_sym_LT_EQ] = ACTIONS(5682), - [anon_sym_DOT] = ACTIONS(5684), - [anon_sym_EQ_GT] = ACTIONS(5682), - [anon_sym_switch] = ACTIONS(5682), - [anon_sym_DOT_DOT] = ACTIONS(5682), - [anon_sym_and] = ACTIONS(5682), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_AMP_AMP] = ACTIONS(5682), - [anon_sym_PIPE_PIPE] = ACTIONS(5682), - [sym_op_coalescing] = ACTIONS(5682), - [anon_sym_from] = ACTIONS(5682), - [anon_sym_into] = ACTIONS(5682), - [anon_sym_join] = ACTIONS(5682), - [anon_sym_on] = ACTIONS(5682), - [anon_sym_equals] = ACTIONS(5682), - [anon_sym_let] = ACTIONS(5682), - [anon_sym_orderby] = ACTIONS(5682), - [anon_sym_group] = ACTIONS(5682), - [anon_sym_by] = ACTIONS(5682), - [anon_sym_select] = ACTIONS(5682), - [anon_sym_as] = ACTIONS(5682), - [anon_sym_is] = ACTIONS(5682), - [anon_sym_DASH_GT] = ACTIONS(5682), - [anon_sym_with] = ACTIONS(5682), - [aux_sym_preproc_if_token3] = ACTIONS(5682), - [aux_sym_preproc_else_token1] = ACTIONS(5682), - [aux_sym_preproc_elif_token1] = ACTIONS(5682), + [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), @@ -507028,27 +505703,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3282] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(3282), [sym_preproc_endregion] = STATE(3282), [sym_preproc_line] = STATE(3282), @@ -507058,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(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -507109,27 +505781,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3283] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), + [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), @@ -507139,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(5518), - [anon_sym_COLON] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_RBRACE] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5676), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5678), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5680), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -507190,27 +505859,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3284] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(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), @@ -507220,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(5646), - [anon_sym_COLON] = ACTIONS(4798), - [anon_sym_COMMA] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5666), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5670), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -507268,7 +505935,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(4798), }, [3285] = { [sym_preproc_region] = STATE(3285), @@ -507280,66 +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_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(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), @@ -507352,27 +506015,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3286] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), + [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), @@ -507382,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(5518), - [anon_sym_COLON] = ACTIONS(4772), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4772), - [anon_sym_RBRACE] = ACTIONS(4772), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5676), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5678), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5680), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -507433,27 +506093,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3287] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(3287), [sym_preproc_endregion] = STATE(3287), [sym_preproc_line] = STATE(3287), @@ -507463,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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -507514,27 +506171,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3288] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), [sym_preproc_region] = STATE(3288), [sym_preproc_endregion] = STATE(3288), [sym_preproc_line] = STATE(3288), @@ -507544,45 +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_SEMI] = ACTIONS(4780), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5672), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5662), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_if_token3] = ACTIONS(4780), - [aux_sym_preproc_else_token1] = ACTIONS(4780), - [aux_sym_preproc_elif_token1] = ACTIONS(4780), + [anon_sym_SEMI] = ACTIONS(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), @@ -507604,66 +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_EQ] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(4544), - [anon_sym_COLON] = ACTIONS(4544), - [anon_sym_COMMA] = ACTIONS(4544), - [anon_sym_LPAREN] = ACTIONS(4544), - [anon_sym_LT] = ACTIONS(4546), - [anon_sym_GT] = ACTIONS(4546), - [anon_sym_where] = ACTIONS(4544), - [anon_sym_QMARK] = ACTIONS(4546), - [anon_sym_BANG] = ACTIONS(4546), - [anon_sym_PLUS_PLUS] = ACTIONS(4544), - [anon_sym_DASH_DASH] = ACTIONS(4544), - [anon_sym_PLUS] = ACTIONS(4546), - [anon_sym_DASH] = ACTIONS(4546), - [anon_sym_STAR] = ACTIONS(4546), - [anon_sym_SLASH] = ACTIONS(4546), - [anon_sym_PERCENT] = ACTIONS(4546), - [anon_sym_CARET] = ACTIONS(4546), - [anon_sym_PIPE] = ACTIONS(4546), - [anon_sym_AMP] = ACTIONS(4546), - [anon_sym_LT_LT] = ACTIONS(4546), - [anon_sym_GT_GT] = ACTIONS(4546), - [anon_sym_GT_GT_GT] = ACTIONS(4546), - [anon_sym_EQ_EQ] = ACTIONS(4544), - [anon_sym_BANG_EQ] = ACTIONS(4544), - [anon_sym_GT_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4544), - [anon_sym_DOT] = ACTIONS(4546), - [anon_sym_switch] = ACTIONS(4544), - [anon_sym_DOT_DOT] = ACTIONS(4544), - [anon_sym_and] = ACTIONS(4544), - [anon_sym_or] = ACTIONS(4546), - [anon_sym_PLUS_EQ] = ACTIONS(4544), - [anon_sym_DASH_EQ] = ACTIONS(4544), - [anon_sym_STAR_EQ] = ACTIONS(4544), - [anon_sym_SLASH_EQ] = ACTIONS(4544), - [anon_sym_PERCENT_EQ] = ACTIONS(4544), - [anon_sym_AMP_EQ] = ACTIONS(4544), - [anon_sym_CARET_EQ] = ACTIONS(4544), - [anon_sym_PIPE_EQ] = ACTIONS(4544), - [anon_sym_LT_LT_EQ] = ACTIONS(4544), - [anon_sym_GT_GT_EQ] = ACTIONS(4544), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4544), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4544), - [anon_sym_AMP_AMP] = ACTIONS(4544), - [anon_sym_PIPE_PIPE] = ACTIONS(4544), - [sym_op_coalescing] = ACTIONS(4546), - [anon_sym_from] = ACTIONS(4544), - [anon_sym_into] = ACTIONS(4544), - [anon_sym_join] = ACTIONS(4544), - [anon_sym_let] = ACTIONS(4544), - [anon_sym_orderby] = ACTIONS(4544), - [anon_sym_ascending] = ACTIONS(4544), - [anon_sym_descending] = ACTIONS(4544), - [anon_sym_group] = ACTIONS(4544), - [anon_sym_select] = ACTIONS(4544), - [anon_sym_as] = ACTIONS(4546), - [anon_sym_is] = ACTIONS(4544), - [anon_sym_DASH_GT] = ACTIONS(4544), - [anon_sym_with] = ACTIONS(4544), + [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), @@ -507685,66 +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_EQ] = ACTIONS(4554), - [anon_sym_LBRACK] = ACTIONS(4552), - [anon_sym_COLON] = ACTIONS(4552), - [anon_sym_COMMA] = ACTIONS(4552), - [anon_sym_LPAREN] = ACTIONS(4552), - [anon_sym_LT] = ACTIONS(4554), - [anon_sym_GT] = ACTIONS(4554), - [anon_sym_where] = ACTIONS(4552), - [anon_sym_QMARK] = ACTIONS(4554), - [anon_sym_BANG] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(4552), - [anon_sym_DASH_DASH] = ACTIONS(4552), - [anon_sym_PLUS] = ACTIONS(4554), - [anon_sym_DASH] = ACTIONS(4554), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_CARET] = ACTIONS(4554), - [anon_sym_PIPE] = ACTIONS(4554), - [anon_sym_AMP] = ACTIONS(4554), - [anon_sym_LT_LT] = ACTIONS(4554), - [anon_sym_GT_GT] = ACTIONS(4554), - [anon_sym_GT_GT_GT] = ACTIONS(4554), - [anon_sym_EQ_EQ] = ACTIONS(4552), - [anon_sym_BANG_EQ] = ACTIONS(4552), - [anon_sym_GT_EQ] = ACTIONS(4552), - [anon_sym_LT_EQ] = ACTIONS(4552), - [anon_sym_DOT] = ACTIONS(4554), - [anon_sym_switch] = ACTIONS(4552), - [anon_sym_DOT_DOT] = ACTIONS(4552), - [anon_sym_and] = ACTIONS(4552), - [anon_sym_or] = ACTIONS(4554), - [anon_sym_PLUS_EQ] = ACTIONS(4552), - [anon_sym_DASH_EQ] = ACTIONS(4552), - [anon_sym_STAR_EQ] = ACTIONS(4552), - [anon_sym_SLASH_EQ] = ACTIONS(4552), - [anon_sym_PERCENT_EQ] = ACTIONS(4552), - [anon_sym_AMP_EQ] = ACTIONS(4552), - [anon_sym_CARET_EQ] = ACTIONS(4552), - [anon_sym_PIPE_EQ] = ACTIONS(4552), - [anon_sym_LT_LT_EQ] = ACTIONS(4552), - [anon_sym_GT_GT_EQ] = ACTIONS(4552), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4552), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4552), - [anon_sym_AMP_AMP] = ACTIONS(4552), - [anon_sym_PIPE_PIPE] = ACTIONS(4552), - [sym_op_coalescing] = ACTIONS(4554), - [anon_sym_from] = ACTIONS(4552), - [anon_sym_into] = ACTIONS(4552), - [anon_sym_join] = ACTIONS(4552), - [anon_sym_let] = ACTIONS(4552), - [anon_sym_orderby] = ACTIONS(4552), - [anon_sym_ascending] = ACTIONS(4552), - [anon_sym_descending] = ACTIONS(4552), - [anon_sym_group] = ACTIONS(4552), - [anon_sym_select] = ACTIONS(4552), - [anon_sym_as] = ACTIONS(4554), - [anon_sym_is] = ACTIONS(4552), - [anon_sym_DASH_GT] = ACTIONS(4552), - [anon_sym_with] = ACTIONS(4552), + [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), @@ -507757,27 +506405,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3291] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), + [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), @@ -507787,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(4798), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5672), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5662), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_if_token3] = ACTIONS(4798), - [aux_sym_preproc_else_token1] = ACTIONS(4798), - [aux_sym_preproc_elif_token1] = ACTIONS(4798), + [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), @@ -507838,27 +506483,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3292] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(3292), [sym_preproc_endregion] = STATE(3292), [sym_preproc_line] = STATE(3292), @@ -507868,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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -507916,30 +506559,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(4686), }, [3293] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), [sym_preproc_region] = STATE(3293), [sym_preproc_endregion] = STATE(3293), [sym_preproc_line] = STATE(3293), @@ -507949,45 +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_SEMI] = ACTIONS(4794), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5672), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5662), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [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(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), @@ -508000,27 +506639,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3294] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), [sym_preproc_region] = STATE(3294), [sym_preproc_endregion] = STATE(3294), [sym_preproc_line] = STATE(3294), @@ -508030,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -508081,27 +506717,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3295] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(3295), [sym_preproc_endregion] = STATE(3295), [sym_preproc_line] = STATE(3295), @@ -508111,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(5518), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5520), - [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(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [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(4468), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -508162,27 +506795,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3296] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(3296), [sym_preproc_endregion] = STATE(3296), [sym_preproc_line] = STATE(3296), @@ -508192,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(5518), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4786), - [anon_sym_RBRACE] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -508243,27 +506873,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3297] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(3297), [sym_preproc_endregion] = STATE(3297), [sym_preproc_line] = STATE(3297), @@ -508273,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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5670), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -508321,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(4686), }, [3298] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(3298), [sym_preproc_endregion] = STATE(3298), [sym_preproc_line] = STATE(3298), @@ -508354,45 +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(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -508405,27 +507029,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3299] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), [sym_preproc_region] = STATE(3299), [sym_preproc_endregion] = STATE(3299), [sym_preproc_line] = STATE(3299), @@ -508435,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5662), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -508486,27 +507107,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3300] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(3300), [sym_preproc_endregion] = STATE(3300), [sym_preproc_line] = STATE(3300), @@ -508516,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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5670), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -508564,30 +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(4686), }, [3301] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), + [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), @@ -508597,45 +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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5662), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -508648,27 +507263,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3302] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(3302), [sym_preproc_endregion] = STATE(3302), [sym_preproc_line] = STATE(3302), @@ -508678,44 +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(5646), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [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(5302), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [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(5274), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -508726,30 +507339,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), }, [3303] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(3303), [sym_preproc_endregion] = STATE(3303), [sym_preproc_line] = STATE(3303), @@ -508759,78 +507350,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3303), [sym_preproc_define] = STATE(3303), [sym_preproc_undef] = STATE(3303), - [anon_sym_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(4786), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4786), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3304] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(3304), [sym_preproc_endregion] = STATE(3304), [sym_preproc_line] = STATE(3304), @@ -508840,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(5646), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5666), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5670), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -508888,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(4764), }, [3305] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(3305), [sym_preproc_endregion] = STATE(3305), [sym_preproc_line] = STATE(3305), @@ -508921,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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5670), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -508969,30 +507573,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(4686), }, [3306] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(3306), [sym_preproc_endregion] = STATE(3306), [sym_preproc_line] = STATE(3306), @@ -509002,44 +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_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4772), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5666), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5670), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -509050,30 +507651,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(4772), }, [3307] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(3307), [sym_preproc_endregion] = STATE(3307), [sym_preproc_line] = STATE(3307), @@ -509083,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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5670), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -509131,30 +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(4686), }, [3308] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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_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), @@ -509164,44 +507763,40 @@ 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_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5666), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5670), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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_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_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(5222), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -509212,30 +507807,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(4794), }, [3309] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(3309), [sym_preproc_endregion] = STATE(3309), [sym_preproc_line] = STATE(3309), @@ -509245,44 +507818,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3309), [sym_preproc_define] = STATE(3309), [sym_preproc_undef] = STATE(3309), - [anon_sym_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -509293,30 +507885,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(4686), }, [3310] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), + [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), @@ -509326,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(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5662), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -509377,27 +507965,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3311] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(3311), [sym_preproc_endregion] = STATE(3311), [sym_preproc_line] = STATE(3311), @@ -509407,44 +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_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4776), - [anon_sym_COMMA] = ACTIONS(4776), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4776), - [anon_sym_or] = ACTIONS(4776), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5666), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5670), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -509455,30 +508041,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(4776), }, [3312] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), [sym_preproc_region] = STATE(3312), [sym_preproc_endregion] = STATE(3312), [sym_preproc_line] = STATE(3312), @@ -509488,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5662), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -509539,27 +508121,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3313] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(3313), [sym_preproc_endregion] = STATE(3313), [sym_preproc_line] = STATE(3313), @@ -509569,78 +508130,90 @@ 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(5646), - [anon_sym_COLON] = ACTIONS(4768), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(4768), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4768), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3314] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), + [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), @@ -509650,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(4760), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), - [aux_sym_preproc_if_token3] = ACTIONS(4760), - [aux_sym_preproc_else_token1] = ACTIONS(4760), - [aux_sym_preproc_elif_token1] = ACTIONS(4760), + [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), @@ -509701,27 +508277,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3315] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), [sym_preproc_region] = STATE(3315), [sym_preproc_endregion] = STATE(3315), [sym_preproc_line] = STATE(3315), @@ -509731,45 +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_SEMI] = ACTIONS(4772), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5672), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5662), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_if_token3] = ACTIONS(4772), - [aux_sym_preproc_else_token1] = ACTIONS(4772), - [aux_sym_preproc_elif_token1] = ACTIONS(4772), + [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), @@ -509782,29 +508355,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3316] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter] = STATE(7599), - [sym__parameter_array] = STATE(7601), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6384), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6013), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if_in_attribute_list] = STATE(5914), [sym_preproc_region] = STATE(3316), [sym_preproc_endregion] = STATE(3316), [sym_preproc_line] = STATE(3316), @@ -509814,43 +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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3676), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(5444), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5446), - [anon_sym_delegate] = ACTIONS(3709), - [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(5472), - [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(4080), - [aux_sym_preproc_if_token1] = ACTIONS(5452), + [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), @@ -509863,27 +508433,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3317] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(3317), [sym_preproc_endregion] = STATE(3317), [sym_preproc_line] = STATE(3317), @@ -509893,45 +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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5680), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -509944,27 +508511,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3318] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(3318), [sym_preproc_endregion] = STATE(3318), [sym_preproc_line] = STATE(3318), @@ -509974,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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5680), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -510025,27 +508589,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3319] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(3319), [sym_preproc_endregion] = STATE(3319), [sym_preproc_line] = STATE(3319), @@ -510055,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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5680), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -510106,27 +508667,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3320] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(3320), [sym_preproc_endregion] = STATE(3320), [sym_preproc_line] = STATE(3320), @@ -510136,45 +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(5518), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5676), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5678), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5680), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -510187,27 +508745,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3321] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(3321), [sym_preproc_endregion] = STATE(3321), [sym_preproc_line] = STATE(3321), @@ -510217,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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5676), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5678), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5680), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -510268,27 +508823,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3322] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), [sym_preproc_region] = STATE(3322), [sym_preproc_endregion] = STATE(3322), [sym_preproc_line] = STATE(3322), @@ -510298,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(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5662), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -510349,27 +508901,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3323] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), + [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), @@ -510379,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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4760), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4760), - [anon_sym_RBRACE] = ACTIONS(4760), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -510430,27 +508979,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3324] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), [sym_preproc_region] = STATE(3324), [sym_preproc_endregion] = STATE(3324), [sym_preproc_line] = STATE(3324), @@ -510460,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(4790), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), - [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(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), @@ -510511,27 +509057,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3325] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), [sym_preproc_region] = STATE(3325), [sym_preproc_endregion] = STATE(3325), [sym_preproc_line] = STATE(3325), @@ -510541,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(4742), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5672), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5662), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_if_token3] = ACTIONS(4742), - [aux_sym_preproc_else_token1] = ACTIONS(4742), - [aux_sym_preproc_elif_token1] = ACTIONS(4742), + [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), @@ -510592,27 +509135,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3326] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), [sym_preproc_region] = STATE(3326), [sym_preproc_endregion] = STATE(3326), [sym_preproc_line] = STATE(3326), @@ -510622,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(4764), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5686), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5672), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5662), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_if_token3] = ACTIONS(4764), - [aux_sym_preproc_else_token1] = ACTIONS(4764), - [aux_sym_preproc_elif_token1] = ACTIONS(4764), + [anon_sym_SEMI] = ACTIONS(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), @@ -510673,27 +509213,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3327] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(3327), [sym_preproc_endregion] = STATE(3327), [sym_preproc_line] = STATE(3327), @@ -510703,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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4798), - [anon_sym_COMMA] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4798), - [anon_sym_RBRACE] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5676), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5678), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5680), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -510754,27 +509291,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3328] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(3328), [sym_preproc_endregion] = STATE(3328), [sym_preproc_line] = STATE(3328), @@ -510784,44 +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_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5666), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5670), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -510832,30 +509367,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(4780), }, [3329] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), + [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), @@ -510865,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(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -510916,27 +509447,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3330] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), + [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), @@ -510946,45 +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_SEMI] = ACTIONS(4768), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), - [aux_sym_preproc_if_token3] = ACTIONS(4768), - [aux_sym_preproc_else_token1] = ACTIONS(4768), - [aux_sym_preproc_elif_token1] = ACTIONS(4768), + [anon_sym_SEMI] = ACTIONS(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), @@ -510997,27 +509525,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3331] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(3331), [sym_preproc_endregion] = STATE(3331), [sym_preproc_line] = STATE(3331), @@ -511027,78 +509534,90 @@ 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(5646), - [anon_sym_COLON] = ACTIONS(4760), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = 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_interpolation_close_brace] = ACTIONS(4760), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3332] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), + [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), @@ -511108,45 +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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -511159,27 +509681,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3333] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), + [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), @@ -511189,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(4686), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5660), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -511240,27 +509759,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3334] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(3334), [sym_preproc_endregion] = STATE(3334), [sym_preproc_line] = STATE(3334), @@ -511270,45 +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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5680), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -511321,27 +509837,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3335] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(3335), [sym_preproc_endregion] = STATE(3335), [sym_preproc_line] = STATE(3335), @@ -511351,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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5680), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -511411,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_EQ] = ACTIONS(4562), - [anon_sym_LBRACK] = ACTIONS(4560), - [anon_sym_COLON] = ACTIONS(4560), - [anon_sym_COMMA] = ACTIONS(4560), - [anon_sym_LPAREN] = ACTIONS(4560), - [anon_sym_LT] = ACTIONS(4562), - [anon_sym_GT] = ACTIONS(4562), - [anon_sym_where] = ACTIONS(4560), - [anon_sym_QMARK] = ACTIONS(4562), - [anon_sym_BANG] = ACTIONS(4562), - [anon_sym_PLUS_PLUS] = ACTIONS(4560), - [anon_sym_DASH_DASH] = ACTIONS(4560), - [anon_sym_PLUS] = ACTIONS(4562), - [anon_sym_DASH] = ACTIONS(4562), - [anon_sym_STAR] = ACTIONS(4562), - [anon_sym_SLASH] = ACTIONS(4562), - [anon_sym_PERCENT] = ACTIONS(4562), - [anon_sym_CARET] = ACTIONS(4562), - [anon_sym_PIPE] = ACTIONS(4562), - [anon_sym_AMP] = ACTIONS(4562), - [anon_sym_LT_LT] = ACTIONS(4562), - [anon_sym_GT_GT] = ACTIONS(4562), - [anon_sym_GT_GT_GT] = ACTIONS(4562), - [anon_sym_EQ_EQ] = ACTIONS(4560), - [anon_sym_BANG_EQ] = ACTIONS(4560), - [anon_sym_GT_EQ] = ACTIONS(4560), - [anon_sym_LT_EQ] = ACTIONS(4560), - [anon_sym_DOT] = ACTIONS(4562), - [anon_sym_switch] = ACTIONS(4560), - [anon_sym_DOT_DOT] = ACTIONS(4560), - [anon_sym_and] = ACTIONS(4560), - [anon_sym_or] = ACTIONS(4562), - [anon_sym_PLUS_EQ] = ACTIONS(4560), - [anon_sym_DASH_EQ] = ACTIONS(4560), - [anon_sym_STAR_EQ] = ACTIONS(4560), - [anon_sym_SLASH_EQ] = ACTIONS(4560), - [anon_sym_PERCENT_EQ] = ACTIONS(4560), - [anon_sym_AMP_EQ] = ACTIONS(4560), - [anon_sym_CARET_EQ] = ACTIONS(4560), - [anon_sym_PIPE_EQ] = ACTIONS(4560), - [anon_sym_LT_LT_EQ] = ACTIONS(4560), - [anon_sym_GT_GT_EQ] = ACTIONS(4560), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4560), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4560), - [anon_sym_AMP_AMP] = ACTIONS(4560), - [anon_sym_PIPE_PIPE] = ACTIONS(4560), - [sym_op_coalescing] = ACTIONS(4562), - [anon_sym_from] = ACTIONS(4560), - [anon_sym_into] = ACTIONS(4560), - [anon_sym_join] = ACTIONS(4560), - [anon_sym_let] = ACTIONS(4560), - [anon_sym_orderby] = ACTIONS(4560), - [anon_sym_ascending] = ACTIONS(4560), - [anon_sym_descending] = ACTIONS(4560), - [anon_sym_group] = ACTIONS(4560), - [anon_sym_select] = ACTIONS(4560), - [anon_sym_as] = ACTIONS(4562), - [anon_sym_is] = ACTIONS(4560), - [anon_sym_DASH_GT] = ACTIONS(4560), - [anon_sym_with] = ACTIONS(4560), + [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), @@ -511483,6 +509993,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3337] = { + [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), @@ -511492,66 +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_EQ] = ACTIONS(4528), - [anon_sym_LBRACK] = ACTIONS(4526), - [anon_sym_COLON] = ACTIONS(4530), - [anon_sym_COMMA] = ACTIONS(4526), - [anon_sym_LPAREN] = ACTIONS(4526), - [anon_sym_LT] = ACTIONS(4532), - [anon_sym_GT] = ACTIONS(4532), - [anon_sym_where] = ACTIONS(4526), - [anon_sym_QMARK] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4526), - [anon_sym_DASH_DASH] = ACTIONS(4526), - [anon_sym_PLUS] = ACTIONS(4532), - [anon_sym_DASH] = ACTIONS(4532), - [anon_sym_STAR] = ACTIONS(4532), - [anon_sym_SLASH] = ACTIONS(4532), - [anon_sym_PERCENT] = ACTIONS(4532), - [anon_sym_CARET] = ACTIONS(4532), - [anon_sym_PIPE] = ACTIONS(4532), - [anon_sym_AMP] = ACTIONS(4532), - [anon_sym_LT_LT] = ACTIONS(4532), - [anon_sym_GT_GT] = ACTIONS(4532), - [anon_sym_GT_GT_GT] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4526), - [anon_sym_BANG_EQ] = ACTIONS(4526), - [anon_sym_GT_EQ] = ACTIONS(4526), - [anon_sym_LT_EQ] = ACTIONS(4526), - [anon_sym_DOT] = ACTIONS(4532), - [anon_sym_switch] = ACTIONS(4526), - [anon_sym_DOT_DOT] = ACTIONS(4526), - [anon_sym_and] = ACTIONS(4526), - [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_AMP_AMP] = ACTIONS(4526), - [anon_sym_PIPE_PIPE] = ACTIONS(4526), - [sym_op_coalescing] = ACTIONS(4532), - [anon_sym_from] = ACTIONS(4526), - [anon_sym_into] = ACTIONS(4526), - [anon_sym_join] = ACTIONS(4526), - [anon_sym_let] = ACTIONS(4526), - [anon_sym_orderby] = ACTIONS(4526), - [anon_sym_ascending] = ACTIONS(4526), - [anon_sym_descending] = ACTIONS(4526), - [anon_sym_group] = ACTIONS(4526), - [anon_sym_select] = ACTIONS(4526), - [anon_sym_as] = ACTIONS(4532), - [anon_sym_is] = ACTIONS(4526), - [anon_sym_DASH_GT] = ACTIONS(4526), - [anon_sym_with] = ACTIONS(4526), + [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), @@ -511564,6 +510071,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3338] = { + [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), @@ -511573,66 +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_EQ] = ACTIONS(4566), - [anon_sym_LBRACK] = ACTIONS(4564), - [anon_sym_COLON] = ACTIONS(4564), - [anon_sym_COMMA] = ACTIONS(4564), - [anon_sym_LPAREN] = ACTIONS(4564), - [anon_sym_LT] = ACTIONS(4566), - [anon_sym_GT] = ACTIONS(4566), - [anon_sym_where] = ACTIONS(4564), - [anon_sym_QMARK] = ACTIONS(4566), - [anon_sym_BANG] = ACTIONS(4566), - [anon_sym_PLUS_PLUS] = ACTIONS(4564), - [anon_sym_DASH_DASH] = ACTIONS(4564), - [anon_sym_PLUS] = ACTIONS(4566), - [anon_sym_DASH] = ACTIONS(4566), - [anon_sym_STAR] = ACTIONS(4566), - [anon_sym_SLASH] = ACTIONS(4566), - [anon_sym_PERCENT] = ACTIONS(4566), - [anon_sym_CARET] = ACTIONS(4566), - [anon_sym_PIPE] = ACTIONS(4566), - [anon_sym_AMP] = ACTIONS(4566), - [anon_sym_LT_LT] = ACTIONS(4566), - [anon_sym_GT_GT] = ACTIONS(4566), - [anon_sym_GT_GT_GT] = ACTIONS(4566), - [anon_sym_EQ_EQ] = ACTIONS(4564), - [anon_sym_BANG_EQ] = ACTIONS(4564), - [anon_sym_GT_EQ] = ACTIONS(4564), - [anon_sym_LT_EQ] = ACTIONS(4564), - [anon_sym_DOT] = ACTIONS(4566), - [anon_sym_switch] = ACTIONS(4564), - [anon_sym_DOT_DOT] = ACTIONS(4564), - [anon_sym_and] = ACTIONS(4564), - [anon_sym_or] = ACTIONS(4566), - [anon_sym_PLUS_EQ] = ACTIONS(4564), - [anon_sym_DASH_EQ] = ACTIONS(4564), - [anon_sym_STAR_EQ] = ACTIONS(4564), - [anon_sym_SLASH_EQ] = ACTIONS(4564), - [anon_sym_PERCENT_EQ] = ACTIONS(4564), - [anon_sym_AMP_EQ] = ACTIONS(4564), - [anon_sym_CARET_EQ] = ACTIONS(4564), - [anon_sym_PIPE_EQ] = ACTIONS(4564), - [anon_sym_LT_LT_EQ] = ACTIONS(4564), - [anon_sym_GT_GT_EQ] = ACTIONS(4564), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4564), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4564), - [anon_sym_AMP_AMP] = ACTIONS(4564), - [anon_sym_PIPE_PIPE] = ACTIONS(4564), - [sym_op_coalescing] = ACTIONS(4566), - [anon_sym_from] = ACTIONS(4564), - [anon_sym_into] = ACTIONS(4564), - [anon_sym_join] = ACTIONS(4564), - [anon_sym_let] = ACTIONS(4564), - [anon_sym_orderby] = ACTIONS(4564), - [anon_sym_ascending] = ACTIONS(4564), - [anon_sym_descending] = ACTIONS(4564), - [anon_sym_group] = ACTIONS(4564), - [anon_sym_select] = ACTIONS(4564), - [anon_sym_as] = ACTIONS(4566), - [anon_sym_is] = ACTIONS(4564), - [anon_sym_DASH_GT] = ACTIONS(4564), - [anon_sym_with] = ACTIONS(4564), + [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), @@ -511645,27 +510149,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3339] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [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(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), @@ -511675,44 +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_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4756), - [anon_sym_COMMA] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5656), - [anon_sym_and] = ACTIONS(4756), - [anon_sym_or] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5666), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5670), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -511723,32 +510225,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(4756), }, [3340] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter] = STATE(7629), - [sym__parameter_array] = STATE(7506), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6384), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6013), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if_in_attribute_list] = STATE(5914), [sym_preproc_region] = STATE(3340), [sym_preproc_endregion] = STATE(3340), [sym_preproc_line] = STATE(3340), @@ -511758,43 +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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(3676), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4756), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(5444), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5446), - [anon_sym_delegate] = ACTIONS(3709), - [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(5472), - [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(4080), - [aux_sym_preproc_if_token1] = ACTIONS(5452), + [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), @@ -511807,27 +510305,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3341] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), + [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), @@ -511837,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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5674), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5678), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(5680), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -511888,27 +510383,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3342] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), + [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), @@ -511918,44 +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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -511968,27 +510461,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3343] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), [sym_preproc_region] = STATE(3343), [sym_preproc_endregion] = STATE(3343), [sym_preproc_line] = STATE(3343), @@ -511998,43 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5692), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5696), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -512045,30 +510537,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(4686), }, [3344] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), + [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), @@ -512078,44 +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(4924), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -512128,29 +510617,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3345] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), - [sym_preproc_else_in_expression] = STATE(7890), - [sym_preproc_elif_in_expression] = STATE(7890), + [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), @@ -512160,42 +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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(5710), - [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(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), @@ -512208,27 +510695,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3346] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), [sym_preproc_region] = STATE(3346), [sym_preproc_endregion] = STATE(3346), [sym_preproc_line] = STATE(3346), @@ -512238,44 +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(4924), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5712), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -512288,8 +510772,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3347] = { - [sym_preproc_else_in_attribute_list] = STATE(7711), - [sym_preproc_elif_in_attribute_list] = STATE(7711), [sym_preproc_region] = STATE(3347), [sym_preproc_endregion] = STATE(3347), [sym_preproc_line] = STATE(3347), @@ -512299,63 +510781,62 @@ 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), - [sym__identifier_token] = ACTIONS(5458), - [anon_sym_extern] = ACTIONS(5458), - [anon_sym_alias] = ACTIONS(5458), - [anon_sym_global] = ACTIONS(5458), - [anon_sym_unsafe] = ACTIONS(5458), - [anon_sym_static] = ACTIONS(5458), - [anon_sym_LBRACK] = ACTIONS(5460), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_class] = ACTIONS(5458), - [anon_sym_ref] = ACTIONS(5458), - [anon_sym_struct] = ACTIONS(5458), - [anon_sym_enum] = ACTIONS(5458), - [anon_sym_interface] = ACTIONS(5458), - [anon_sym_delegate] = ACTIONS(5458), - [anon_sym_record] = ACTIONS(5458), - [anon_sym_public] = ACTIONS(5458), - [anon_sym_private] = ACTIONS(5458), - [anon_sym_readonly] = ACTIONS(5458), - [anon_sym_abstract] = ACTIONS(5458), - [anon_sym_async] = ACTIONS(5458), - [anon_sym_const] = ACTIONS(5458), - [anon_sym_file] = ACTIONS(5458), - [anon_sym_fixed] = ACTIONS(5458), - [anon_sym_internal] = ACTIONS(5458), - [anon_sym_new] = ACTIONS(5458), - [anon_sym_override] = ACTIONS(5458), - [anon_sym_partial] = ACTIONS(5458), - [anon_sym_protected] = ACTIONS(5458), - [anon_sym_required] = ACTIONS(5458), - [anon_sym_sealed] = ACTIONS(5458), - [anon_sym_virtual] = ACTIONS(5458), - [anon_sym_volatile] = ACTIONS(5458), - [anon_sym_where] = ACTIONS(5458), - [anon_sym_notnull] = ACTIONS(5458), - [anon_sym_unmanaged] = ACTIONS(5458), - [anon_sym_scoped] = ACTIONS(5458), - [anon_sym_var] = ACTIONS(5458), - [sym_predefined_type] = 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(5460), - [aux_sym_preproc_if_token1] = ACTIONS(5460), - [aux_sym_preproc_if_token3] = ACTIONS(5714), - [aux_sym_preproc_else_token1] = ACTIONS(5464), - [aux_sym_preproc_elif_token1] = ACTIONS(5466), + [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), @@ -512368,27 +510849,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3348] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), [sym_preproc_region] = STATE(3348), [sym_preproc_endregion] = STATE(3348), [sym_preproc_line] = STATE(3348), @@ -512398,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(4825), - [anon_sym_COLON] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_when] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -512457,65 +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(4538), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_LT] = ACTIONS(4538), - [anon_sym_GT] = ACTIONS(4538), - [anon_sym_where] = ACTIONS(4536), - [anon_sym_QMARK] = ACTIONS(4538), - [anon_sym_BANG] = ACTIONS(4538), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4538), - [anon_sym_DASH] = ACTIONS(4538), - [anon_sym_STAR] = ACTIONS(4538), - [anon_sym_SLASH] = ACTIONS(4538), - [anon_sym_PERCENT] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4538), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_AMP] = ACTIONS(4538), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [anon_sym_GT_GT_GT] = ACTIONS(4538), - [anon_sym_EQ_EQ] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_DOT] = ACTIONS(4538), - [anon_sym_switch] = ACTIONS(4536), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_and] = ACTIONS(4536), - [anon_sym_or] = ACTIONS(4538), - [anon_sym_PLUS_EQ] = ACTIONS(4536), - [anon_sym_DASH_EQ] = ACTIONS(4536), - [anon_sym_STAR_EQ] = ACTIONS(4536), - [anon_sym_SLASH_EQ] = ACTIONS(4536), - [anon_sym_PERCENT_EQ] = ACTIONS(4536), - [anon_sym_AMP_EQ] = ACTIONS(4536), - [anon_sym_CARET_EQ] = ACTIONS(4536), - [anon_sym_PIPE_EQ] = ACTIONS(4536), - [anon_sym_LT_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_GT_EQ] = ACTIONS(4536), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4536), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [sym_op_coalescing] = ACTIONS(4538), - [anon_sym_from] = ACTIONS(4536), - [anon_sym_into] = ACTIONS(4536), - [anon_sym_join] = ACTIONS(4536), - [anon_sym_let] = ACTIONS(4536), - [anon_sym_orderby] = ACTIONS(4536), - [anon_sym_ascending] = ACTIONS(4536), - [anon_sym_descending] = ACTIONS(4536), - [anon_sym_group] = ACTIONS(4536), - [anon_sym_select] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4538), - [anon_sym_is] = ACTIONS(4536), - [anon_sym_DASH_GT] = ACTIONS(4536), - [anon_sym_with] = ACTIONS(4536), + [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), @@ -512537,65 +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_EQ] = ACTIONS(4542), - [anon_sym_LBRACK] = ACTIONS(4540), - [anon_sym_COMMA] = ACTIONS(4540), - [anon_sym_LPAREN] = ACTIONS(4540), - [anon_sym_LT] = ACTIONS(4542), - [anon_sym_GT] = ACTIONS(4542), - [anon_sym_where] = ACTIONS(4540), - [anon_sym_QMARK] = ACTIONS(4542), - [anon_sym_BANG] = ACTIONS(4542), - [anon_sym_PLUS_PLUS] = ACTIONS(4540), - [anon_sym_DASH_DASH] = ACTIONS(4540), - [anon_sym_PLUS] = ACTIONS(4542), - [anon_sym_DASH] = ACTIONS(4542), - [anon_sym_STAR] = ACTIONS(4542), - [anon_sym_SLASH] = ACTIONS(4542), - [anon_sym_PERCENT] = ACTIONS(4542), - [anon_sym_CARET] = ACTIONS(4542), - [anon_sym_PIPE] = ACTIONS(4542), - [anon_sym_AMP] = ACTIONS(4542), - [anon_sym_LT_LT] = ACTIONS(4542), - [anon_sym_GT_GT] = ACTIONS(4542), - [anon_sym_GT_GT_GT] = ACTIONS(4542), - [anon_sym_EQ_EQ] = ACTIONS(4540), - [anon_sym_BANG_EQ] = ACTIONS(4540), - [anon_sym_GT_EQ] = ACTIONS(4540), - [anon_sym_LT_EQ] = ACTIONS(4540), - [anon_sym_DOT] = ACTIONS(4542), - [anon_sym_switch] = ACTIONS(4540), - [anon_sym_DOT_DOT] = ACTIONS(4540), - [anon_sym_and] = ACTIONS(4540), - [anon_sym_or] = ACTIONS(4542), - [anon_sym_PLUS_EQ] = ACTIONS(4540), - [anon_sym_DASH_EQ] = ACTIONS(4540), - [anon_sym_STAR_EQ] = ACTIONS(4540), - [anon_sym_SLASH_EQ] = ACTIONS(4540), - [anon_sym_PERCENT_EQ] = ACTIONS(4540), - [anon_sym_AMP_EQ] = ACTIONS(4540), - [anon_sym_CARET_EQ] = ACTIONS(4540), - [anon_sym_PIPE_EQ] = ACTIONS(4540), - [anon_sym_LT_LT_EQ] = ACTIONS(4540), - [anon_sym_GT_GT_EQ] = ACTIONS(4540), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4540), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4540), - [anon_sym_AMP_AMP] = ACTIONS(4540), - [anon_sym_PIPE_PIPE] = ACTIONS(4540), - [sym_op_coalescing] = ACTIONS(4542), - [anon_sym_from] = ACTIONS(4540), - [anon_sym_into] = ACTIONS(4540), - [anon_sym_join] = ACTIONS(4540), - [anon_sym_let] = ACTIONS(4540), - [anon_sym_orderby] = ACTIONS(4540), - [anon_sym_ascending] = ACTIONS(4540), - [anon_sym_descending] = ACTIONS(4540), - [anon_sym_group] = ACTIONS(4540), - [anon_sym_select] = ACTIONS(4540), - [anon_sym_as] = ACTIONS(4542), - [anon_sym_is] = ACTIONS(4540), - [anon_sym_DASH_GT] = ACTIONS(4540), - [anon_sym_with] = ACTIONS(4540), + [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), @@ -512608,27 +511080,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3351] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), [sym_preproc_region] = STATE(3351), [sym_preproc_endregion] = STATE(3351), [sym_preproc_line] = STATE(3351), @@ -512638,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(4924), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5716), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5712), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -512688,27 +511157,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3352] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), + [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), @@ -512718,43 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -512765,30 +511232,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(4686), }, [3353] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), [sym_preproc_region] = STATE(3353), [sym_preproc_endregion] = STATE(3353), [sym_preproc_line] = STATE(3353), @@ -512798,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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -512845,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(4686), }, [3354] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), [sym_preproc_region] = STATE(3354), [sym_preproc_endregion] = STATE(3354), [sym_preproc_line] = STATE(3354), @@ -512878,43 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -512925,30 +511386,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(4686), }, [3355] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), [sym_preproc_region] = STATE(3355), [sym_preproc_endregion] = STATE(3355), [sym_preproc_line] = STATE(3355), @@ -512958,43 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -513005,30 +511463,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(4686), }, [3356] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), [sym_preproc_region] = STATE(3356), [sym_preproc_endregion] = STATE(3356), [sym_preproc_line] = STATE(3356), @@ -513038,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_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [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(4400), - [anon_sym_EQ_GT] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_when] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [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(4402), - [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(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), @@ -513088,27 +511542,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3357] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), [sym_preproc_region] = STATE(3357), [sym_preproc_endregion] = STATE(3357), [sym_preproc_line] = STATE(3357), @@ -513118,44 +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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4786), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_when] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -513168,27 +511619,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3358] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), [sym_preproc_region] = STATE(3358), [sym_preproc_endregion] = STATE(3358), [sym_preproc_line] = STATE(3358), @@ -513198,54 +511628,72 @@ 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(5646), - [anon_sym_COLON] = ACTIONS(4760), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = 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_interpolation_close_brace] = ACTIONS(4760), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3359] = { [sym_preproc_region] = STATE(3359), @@ -513257,65 +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_EQ] = ACTIONS(4550), - [anon_sym_LBRACK] = ACTIONS(4548), - [anon_sym_COMMA] = ACTIONS(4548), - [anon_sym_LPAREN] = ACTIONS(4548), - [anon_sym_LT] = ACTIONS(4550), - [anon_sym_GT] = ACTIONS(4550), - [anon_sym_where] = ACTIONS(4548), - [anon_sym_QMARK] = ACTIONS(4550), - [anon_sym_BANG] = ACTIONS(4550), - [anon_sym_PLUS_PLUS] = ACTIONS(4548), - [anon_sym_DASH_DASH] = ACTIONS(4548), - [anon_sym_PLUS] = ACTIONS(4550), - [anon_sym_DASH] = ACTIONS(4550), - [anon_sym_STAR] = ACTIONS(4550), - [anon_sym_SLASH] = ACTIONS(4550), - [anon_sym_PERCENT] = ACTIONS(4550), - [anon_sym_CARET] = ACTIONS(4550), - [anon_sym_PIPE] = ACTIONS(4550), - [anon_sym_AMP] = ACTIONS(4550), - [anon_sym_LT_LT] = ACTIONS(4550), - [anon_sym_GT_GT] = ACTIONS(4550), - [anon_sym_GT_GT_GT] = ACTIONS(4550), - [anon_sym_EQ_EQ] = ACTIONS(4548), - [anon_sym_BANG_EQ] = ACTIONS(4548), - [anon_sym_GT_EQ] = ACTIONS(4548), - [anon_sym_LT_EQ] = ACTIONS(4548), - [anon_sym_DOT] = ACTIONS(4550), - [anon_sym_switch] = ACTIONS(4548), - [anon_sym_DOT_DOT] = ACTIONS(4548), - [anon_sym_and] = ACTIONS(4548), - [anon_sym_or] = ACTIONS(4550), - [anon_sym_PLUS_EQ] = ACTIONS(4548), - [anon_sym_DASH_EQ] = ACTIONS(4548), - [anon_sym_STAR_EQ] = ACTIONS(4548), - [anon_sym_SLASH_EQ] = ACTIONS(4548), - [anon_sym_PERCENT_EQ] = ACTIONS(4548), - [anon_sym_AMP_EQ] = ACTIONS(4548), - [anon_sym_CARET_EQ] = ACTIONS(4548), - [anon_sym_PIPE_EQ] = ACTIONS(4548), - [anon_sym_LT_LT_EQ] = ACTIONS(4548), - [anon_sym_GT_GT_EQ] = ACTIONS(4548), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4548), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4548), - [anon_sym_AMP_AMP] = ACTIONS(4548), - [anon_sym_PIPE_PIPE] = ACTIONS(4548), - [sym_op_coalescing] = ACTIONS(4550), - [anon_sym_from] = ACTIONS(4548), - [anon_sym_into] = ACTIONS(4548), - [anon_sym_join] = ACTIONS(4548), - [anon_sym_let] = ACTIONS(4548), - [anon_sym_orderby] = ACTIONS(4548), - [anon_sym_ascending] = ACTIONS(4548), - [anon_sym_descending] = ACTIONS(4548), - [anon_sym_group] = ACTIONS(4548), - [anon_sym_select] = ACTIONS(4548), - [anon_sym_as] = ACTIONS(4550), - [anon_sym_is] = ACTIONS(4548), - [anon_sym_DASH_GT] = ACTIONS(4548), - [anon_sym_with] = ACTIONS(4548), + [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), @@ -513328,29 +511773,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3360] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), - [sym_preproc_else_in_expression] = STATE(7699), - [sym_preproc_elif_in_expression] = STATE(7699), + [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), @@ -513360,42 +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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(5720), - [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(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), @@ -513417,65 +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_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4026), - [anon_sym_COMMA] = ACTIONS(4026), - [anon_sym_LPAREN] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_where] = ACTIONS(4026), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_switch] = ACTIONS(4026), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4026), - [anon_sym_or] = ACTIONS(4019), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_from] = ACTIONS(4026), - [anon_sym_into] = ACTIONS(4026), - [anon_sym_join] = 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_select] = ACTIONS(4026), - [anon_sym_as] = ACTIONS(4019), - [anon_sym_is] = ACTIONS(4026), - [anon_sym_DASH_GT] = ACTIONS(4026), - [anon_sym_with] = ACTIONS(4026), + [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), @@ -513497,65 +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_EQ] = ACTIONS(4528), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_COMMA] = ACTIONS(4530), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_where] = ACTIONS(4530), - [anon_sym_QMARK] = ACTIONS(4528), - [anon_sym_BANG] = ACTIONS(4528), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4528), - [anon_sym_CARET] = ACTIONS(4528), - [anon_sym_PIPE] = ACTIONS(4528), - [anon_sym_AMP] = ACTIONS(4528), - [anon_sym_LT_LT] = ACTIONS(4528), - [anon_sym_GT_GT] = ACTIONS(4528), - [anon_sym_GT_GT_GT] = ACTIONS(4528), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_switch] = ACTIONS(4530), - [anon_sym_DOT_DOT] = ACTIONS(4530), - [anon_sym_and] = ACTIONS(4530), - [anon_sym_or] = ACTIONS(4528), - [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_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [sym_op_coalescing] = ACTIONS(4528), - [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(4528), - [anon_sym_is] = ACTIONS(4530), - [anon_sym_DASH_GT] = ACTIONS(4530), - [anon_sym_with] = ACTIONS(4530), + [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), @@ -513568,27 +512004,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3363] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), [sym_preproc_region] = STATE(3363), [sym_preproc_endregion] = STATE(3363), [sym_preproc_line] = STATE(3363), @@ -513598,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(4924), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(4926), - [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(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [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(4932), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [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(4936), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -513648,27 +512081,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3364] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), + [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), @@ -513678,44 +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(4924), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4786), - [anon_sym_RBRACE] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -513728,27 +512158,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3365] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), + [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), @@ -513758,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(4924), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -513808,27 +512235,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3366] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), + [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), @@ -513838,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(4924), - [anon_sym_COLON] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_RBRACE] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5722), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5716), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5712), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -513897,65 +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_EQ] = ACTIONS(4558), - [anon_sym_LBRACK] = ACTIONS(4556), - [anon_sym_COMMA] = ACTIONS(4556), - [anon_sym_LPAREN] = ACTIONS(4556), - [anon_sym_LT] = ACTIONS(4558), - [anon_sym_GT] = ACTIONS(4558), - [anon_sym_where] = ACTIONS(4556), - [anon_sym_QMARK] = ACTIONS(4558), - [anon_sym_BANG] = ACTIONS(4558), - [anon_sym_PLUS_PLUS] = ACTIONS(4556), - [anon_sym_DASH_DASH] = ACTIONS(4556), - [anon_sym_PLUS] = ACTIONS(4558), - [anon_sym_DASH] = ACTIONS(4558), - [anon_sym_STAR] = ACTIONS(4558), - [anon_sym_SLASH] = ACTIONS(4558), - [anon_sym_PERCENT] = ACTIONS(4558), - [anon_sym_CARET] = ACTIONS(4558), - [anon_sym_PIPE] = ACTIONS(4558), - [anon_sym_AMP] = ACTIONS(4558), - [anon_sym_LT_LT] = ACTIONS(4558), - [anon_sym_GT_GT] = ACTIONS(4558), - [anon_sym_GT_GT_GT] = ACTIONS(4558), - [anon_sym_EQ_EQ] = ACTIONS(4556), - [anon_sym_BANG_EQ] = ACTIONS(4556), - [anon_sym_GT_EQ] = ACTIONS(4556), - [anon_sym_LT_EQ] = ACTIONS(4556), - [anon_sym_DOT] = ACTIONS(4558), - [anon_sym_switch] = ACTIONS(4556), - [anon_sym_DOT_DOT] = ACTIONS(4556), - [anon_sym_and] = ACTIONS(4556), - [anon_sym_or] = ACTIONS(4558), - [anon_sym_PLUS_EQ] = ACTIONS(4556), - [anon_sym_DASH_EQ] = ACTIONS(4556), - [anon_sym_STAR_EQ] = ACTIONS(4556), - [anon_sym_SLASH_EQ] = ACTIONS(4556), - [anon_sym_PERCENT_EQ] = ACTIONS(4556), - [anon_sym_AMP_EQ] = ACTIONS(4556), - [anon_sym_CARET_EQ] = ACTIONS(4556), - [anon_sym_PIPE_EQ] = ACTIONS(4556), - [anon_sym_LT_LT_EQ] = ACTIONS(4556), - [anon_sym_GT_GT_EQ] = ACTIONS(4556), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4556), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4556), - [anon_sym_AMP_AMP] = ACTIONS(4556), - [anon_sym_PIPE_PIPE] = ACTIONS(4556), - [sym_op_coalescing] = ACTIONS(4558), - [anon_sym_from] = ACTIONS(4556), - [anon_sym_into] = ACTIONS(4556), - [anon_sym_join] = ACTIONS(4556), - [anon_sym_let] = ACTIONS(4556), - [anon_sym_orderby] = ACTIONS(4556), - [anon_sym_ascending] = ACTIONS(4556), - [anon_sym_descending] = ACTIONS(4556), - [anon_sym_group] = ACTIONS(4556), - [anon_sym_select] = ACTIONS(4556), - [anon_sym_as] = ACTIONS(4558), - [anon_sym_is] = ACTIONS(4556), - [anon_sym_DASH_GT] = ACTIONS(4556), - [anon_sym_with] = ACTIONS(4556), + [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), @@ -513977,65 +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_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), + [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), @@ -514048,27 +512466,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3369] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), [sym_preproc_region] = STATE(3369), [sym_preproc_endregion] = STATE(3369), [sym_preproc_line] = STATE(3369), @@ -514078,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(4924), - [anon_sym_COLON] = ACTIONS(4768), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4768), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -514128,27 +512543,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3370] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), [sym_preproc_region] = STATE(3370), [sym_preproc_endregion] = STATE(3370), [sym_preproc_line] = STATE(3370), @@ -514158,43 +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(5646), - [anon_sym_COLON] = ACTIONS(4798), - [anon_sym_COMMA] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5724), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5692), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5696), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -514205,30 +512618,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(4798), }, [3371] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), [sym_preproc_region] = STATE(3371), [sym_preproc_endregion] = STATE(3371), [sym_preproc_line] = STATE(3371), @@ -514238,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(4924), - [anon_sym_COLON] = ACTIONS(4756), - [anon_sym_COMMA] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4756), - [anon_sym_RBRACE] = ACTIONS(4756), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5722), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5716), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5712), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -514288,27 +512697,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3372] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), [sym_preproc_region] = STATE(3372), [sym_preproc_endregion] = STATE(3372), [sym_preproc_line] = STATE(3372), @@ -514318,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(4924), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5712), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -514368,27 +512774,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3373] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), [sym_preproc_region] = STATE(3373), [sym_preproc_endregion] = STATE(3373), [sym_preproc_line] = STATE(3373), @@ -514398,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(4924), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5712), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -514448,27 +512851,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3374] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), [sym_preproc_region] = STATE(3374), [sym_preproc_endregion] = STATE(3374), [sym_preproc_line] = STATE(3374), @@ -514478,44 +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_LBRACK] = ACTIONS(4924), - [anon_sym_COLON] = ACTIONS(4776), - [anon_sym_COMMA] = ACTIONS(4776), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4776), - [anon_sym_RBRACE] = ACTIONS(4776), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5722), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5716), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5712), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -514528,27 +512928,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3375] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), [sym_preproc_region] = STATE(3375), [sym_preproc_endregion] = STATE(3375), [sym_preproc_line] = STATE(3375), @@ -514558,44 +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(4924), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5712), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -514608,29 +513005,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3376] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), - [sym_preproc_else_in_expression] = STATE(7696), - [sym_preproc_elif_in_expression] = STATE(7696), [sym_preproc_region] = STATE(3376), [sym_preproc_endregion] = STATE(3376), [sym_preproc_line] = STATE(3376), @@ -514640,42 +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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(5726), - [aux_sym_preproc_else_token1] = ACTIONS(2899), - [aux_sym_preproc_elif_token1] = ACTIONS(2901), + [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), @@ -514688,29 +513082,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3377] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), - [sym_preproc_else_in_expression] = STATE(7708), - [sym_preproc_elif_in_expression] = STATE(7708), [sym_preproc_region] = STATE(3377), [sym_preproc_endregion] = STATE(3377), [sym_preproc_line] = STATE(3377), @@ -514720,42 +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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(5728), - [aux_sym_preproc_else_token1] = ACTIONS(2899), - [aux_sym_preproc_elif_token1] = ACTIONS(2901), + [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), @@ -514768,27 +513159,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3378] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), [sym_preproc_region] = STATE(3378), [sym_preproc_endregion] = STATE(3378), [sym_preproc_line] = STATE(3378), @@ -514798,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(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5730), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -514848,27 +513236,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3379] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), [sym_preproc_region] = STATE(3379), [sym_preproc_endregion] = STATE(3379), [sym_preproc_line] = STATE(3379), @@ -514878,44 +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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -514928,27 +513313,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3380] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), [sym_preproc_region] = STATE(3380), [sym_preproc_endregion] = STATE(3380), [sym_preproc_line] = STATE(3380), @@ -514958,44 +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(4924), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5712), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -515008,27 +513390,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3381] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), [sym_preproc_region] = STATE(3381), [sym_preproc_endregion] = STATE(3381), [sym_preproc_line] = STATE(3381), @@ -515038,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(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -515088,27 +513467,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3382] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), + [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), @@ -515118,44 +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(4825), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -515168,27 +513544,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3383] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), [sym_preproc_region] = STATE(3383), [sym_preproc_endregion] = STATE(3383), [sym_preproc_line] = STATE(3383), @@ -515198,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(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -515248,27 +513621,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3384] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), [sym_preproc_region] = STATE(3384), [sym_preproc_endregion] = STATE(3384), [sym_preproc_line] = STATE(3384), @@ -515278,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(4924), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5712), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -515328,27 +513698,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3385] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), [sym_preproc_region] = STATE(3385), [sym_preproc_endregion] = STATE(3385), [sym_preproc_line] = STATE(3385), @@ -515358,44 +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(4825), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -515408,27 +513775,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3386] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), [sym_preproc_region] = STATE(3386), [sym_preproc_endregion] = STATE(3386), [sym_preproc_line] = STATE(3386), @@ -515438,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_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -515488,27 +513852,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3387] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), [sym_preproc_region] = STATE(3387), [sym_preproc_endregion] = STATE(3387), [sym_preproc_line] = STATE(3387), @@ -515518,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(5646), - [anon_sym_COLON] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5724), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5692), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5696), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -515565,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(4742), }, [3388] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), [sym_preproc_region] = STATE(3388), [sym_preproc_endregion] = STATE(3388), [sym_preproc_line] = STATE(3388), @@ -515598,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(4924), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -515648,27 +514006,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3389] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), [sym_preproc_region] = STATE(3389), [sym_preproc_endregion] = STATE(3389), [sym_preproc_line] = STATE(3389), @@ -515678,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(4924), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -515728,27 +514083,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3390] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), [sym_preproc_region] = STATE(3390), [sym_preproc_endregion] = STATE(3390), [sym_preproc_line] = STATE(3390), @@ -515758,43 +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(5646), - [anon_sym_COLON] = ACTIONS(4772), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5724), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5692), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5696), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -515805,30 +514158,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(4772), }, [3391] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), [sym_preproc_region] = STATE(3391), [sym_preproc_endregion] = STATE(3391), [sym_preproc_line] = STATE(3391), @@ -515838,43 +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(5646), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5724), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5692), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5696), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -515885,32 +514235,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(4764), }, [3392] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), - [sym_interpolation_alignment_clause] = STATE(7187), - [sym_interpolation_format_clause] = STATE(7798), [sym_preproc_region] = STATE(3392), [sym_preproc_endregion] = STATE(3392), [sym_preproc_line] = STATE(3392), @@ -515920,41 +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(5646), - [anon_sym_COLON] = ACTIONS(5736), - [anon_sym_COMMA] = ACTIONS(5738), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5740), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5744), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5746), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -515965,9 +514312,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(5748), }, [3393] = { + [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), @@ -515977,65 +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_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), + [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), @@ -516048,6 +514391,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -516057,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(3700), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3700), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(3700), - [anon_sym_into] = ACTIONS(3700), - [anon_sym_join] = ACTIONS(3700), - [anon_sym_on] = ACTIONS(3700), - [anon_sym_equals] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_orderby] = ACTIONS(3700), - [anon_sym_group] = ACTIONS(3700), - [anon_sym_by] = ACTIONS(3700), - [anon_sym_select] = ACTIONS(3700), - [anon_sym_as] = ACTIONS(3700), - [anon_sym_is] = ACTIONS(3700), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3700), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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), @@ -516128,27 +514468,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3395] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), + [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), @@ -516158,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(4924), - [anon_sym_COLON] = ACTIONS(4772), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4772), - [anon_sym_RBRACE] = ACTIONS(4772), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5722), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5716), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5712), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -516217,65 +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_EQ] = ACTIONS(5750), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_where] = ACTIONS(5752), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_PLUS_EQ] = ACTIONS(5756), - [anon_sym_DASH_EQ] = ACTIONS(5756), - [anon_sym_STAR_EQ] = ACTIONS(5756), - [anon_sym_SLASH_EQ] = ACTIONS(5756), - [anon_sym_PERCENT_EQ] = ACTIONS(5756), - [anon_sym_AMP_EQ] = ACTIONS(5756), - [anon_sym_CARET_EQ] = ACTIONS(5756), - [anon_sym_PIPE_EQ] = ACTIONS(5756), - [anon_sym_LT_LT_EQ] = ACTIONS(5756), - [anon_sym_GT_GT_EQ] = ACTIONS(5756), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5756), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5756), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5752), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_join] = ACTIONS(5752), - [anon_sym_let] = ACTIONS(5752), - [anon_sym_orderby] = ACTIONS(5752), - [anon_sym_ascending] = ACTIONS(5752), - [anon_sym_descending] = ACTIONS(5752), - [anon_sym_group] = ACTIONS(5752), - [anon_sym_select] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5754), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -516288,29 +514622,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3397] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), - [sym_preproc_else_in_expression] = STATE(7763), - [sym_preproc_elif_in_expression] = STATE(7763), [sym_preproc_region] = STATE(3397), [sym_preproc_endregion] = STATE(3397), [sym_preproc_line] = STATE(3397), @@ -516320,42 +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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(5758), - [aux_sym_preproc_else_token1] = ACTIONS(2899), - [aux_sym_preproc_elif_token1] = ACTIONS(2901), + [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), @@ -516368,27 +514699,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3398] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), [sym_preproc_region] = STATE(3398), [sym_preproc_endregion] = STATE(3398), [sym_preproc_line] = STATE(3398), @@ -516398,44 +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_LBRACK] = ACTIONS(4924), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -516448,27 +514776,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3399] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), + [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), @@ -516478,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(4924), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5722), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5716), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5712), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -516528,7 +514853,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3400] = { - [sym_initializer_expression] = STATE(3799), [sym_preproc_region] = STATE(3400), [sym_preproc_endregion] = STATE(3400), [sym_preproc_line] = STATE(3400), @@ -516538,64 +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_SEMI] = ACTIONS(5760), - [anon_sym_LBRACK] = ACTIONS(5760), - [anon_sym_COLON] = ACTIONS(5760), - [anon_sym_COMMA] = ACTIONS(5760), - [anon_sym_RBRACK] = ACTIONS(5760), - [anon_sym_LPAREN] = ACTIONS(5760), - [anon_sym_RPAREN] = ACTIONS(5760), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(5760), - [anon_sym_LT] = ACTIONS(5762), - [anon_sym_GT] = ACTIONS(5762), - [anon_sym_in] = ACTIONS(5762), - [anon_sym_where] = ACTIONS(5760), - [anon_sym_QMARK] = ACTIONS(5762), - [anon_sym_BANG] = ACTIONS(5762), - [anon_sym_PLUS_PLUS] = ACTIONS(5760), - [anon_sym_DASH_DASH] = ACTIONS(5760), - [anon_sym_PLUS] = ACTIONS(5762), - [anon_sym_DASH] = ACTIONS(5762), - [anon_sym_STAR] = ACTIONS(5760), - [anon_sym_SLASH] = ACTIONS(5762), - [anon_sym_PERCENT] = ACTIONS(5760), - [anon_sym_CARET] = ACTIONS(5760), - [anon_sym_PIPE] = ACTIONS(5762), - [anon_sym_AMP] = ACTIONS(5762), - [anon_sym_LT_LT] = ACTIONS(5760), - [anon_sym_GT_GT] = ACTIONS(5762), - [anon_sym_GT_GT_GT] = ACTIONS(5760), - [anon_sym_EQ_EQ] = ACTIONS(5760), - [anon_sym_BANG_EQ] = ACTIONS(5760), - [anon_sym_GT_EQ] = ACTIONS(5760), - [anon_sym_LT_EQ] = ACTIONS(5760), - [anon_sym_DOT] = ACTIONS(5762), - [anon_sym_EQ_GT] = ACTIONS(5760), - [anon_sym_switch] = ACTIONS(5760), - [anon_sym_DOT_DOT] = ACTIONS(5760), - [anon_sym_and] = ACTIONS(5760), - [anon_sym_or] = ACTIONS(5762), - [anon_sym_AMP_AMP] = ACTIONS(5760), - [anon_sym_PIPE_PIPE] = ACTIONS(5760), - [sym_op_coalescing] = ACTIONS(5760), - [anon_sym_from] = ACTIONS(5760), - [anon_sym_into] = ACTIONS(5760), - [anon_sym_join] = ACTIONS(5760), - [anon_sym_on] = ACTIONS(5760), - [anon_sym_equals] = ACTIONS(5760), - [anon_sym_let] = ACTIONS(5760), - [anon_sym_orderby] = ACTIONS(5760), - [anon_sym_group] = ACTIONS(5760), - [anon_sym_by] = ACTIONS(5760), - [anon_sym_select] = ACTIONS(5760), - [anon_sym_as] = ACTIONS(5760), - [anon_sym_is] = ACTIONS(5760), - [anon_sym_DASH_GT] = ACTIONS(5760), - [anon_sym_with] = ACTIONS(5760), - [aux_sym_preproc_if_token3] = ACTIONS(5760), - [aux_sym_preproc_else_token1] = ACTIONS(5760), - [aux_sym_preproc_elif_token1] = ACTIONS(5760), + [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), @@ -516608,7 +514930,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3401] = { - [sym_initializer_expression] = STATE(3841), [sym_preproc_region] = STATE(3401), [sym_preproc_endregion] = STATE(3401), [sym_preproc_line] = STATE(3401), @@ -516618,64 +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_SEMI] = ACTIONS(5764), - [anon_sym_LBRACK] = ACTIONS(5766), - [anon_sym_COLON] = ACTIONS(5764), - [anon_sym_COMMA] = ACTIONS(5764), - [anon_sym_RBRACK] = ACTIONS(5764), - [anon_sym_LPAREN] = ACTIONS(5764), - [anon_sym_RPAREN] = ACTIONS(5764), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(5764), - [anon_sym_LT] = ACTIONS(5769), - [anon_sym_GT] = ACTIONS(5769), - [anon_sym_in] = ACTIONS(5769), - [anon_sym_where] = ACTIONS(5764), - [anon_sym_QMARK] = ACTIONS(5769), - [anon_sym_BANG] = ACTIONS(5769), - [anon_sym_PLUS_PLUS] = ACTIONS(5764), - [anon_sym_DASH_DASH] = ACTIONS(5764), - [anon_sym_PLUS] = ACTIONS(5769), - [anon_sym_DASH] = ACTIONS(5769), - [anon_sym_STAR] = ACTIONS(5764), - [anon_sym_SLASH] = ACTIONS(5769), - [anon_sym_PERCENT] = ACTIONS(5764), - [anon_sym_CARET] = ACTIONS(5764), - [anon_sym_PIPE] = ACTIONS(5769), - [anon_sym_AMP] = ACTIONS(5769), - [anon_sym_LT_LT] = ACTIONS(5764), - [anon_sym_GT_GT] = ACTIONS(5769), - [anon_sym_GT_GT_GT] = ACTIONS(5764), - [anon_sym_EQ_EQ] = ACTIONS(5764), - [anon_sym_BANG_EQ] = ACTIONS(5764), - [anon_sym_GT_EQ] = ACTIONS(5764), - [anon_sym_LT_EQ] = ACTIONS(5764), - [anon_sym_DOT] = ACTIONS(5769), - [anon_sym_EQ_GT] = ACTIONS(5764), - [anon_sym_switch] = ACTIONS(5764), - [anon_sym_DOT_DOT] = ACTIONS(5764), - [anon_sym_and] = ACTIONS(5764), - [anon_sym_or] = ACTIONS(5769), - [anon_sym_AMP_AMP] = ACTIONS(5764), - [anon_sym_PIPE_PIPE] = ACTIONS(5764), - [sym_op_coalescing] = ACTIONS(5764), - [anon_sym_from] = ACTIONS(5764), - [anon_sym_into] = ACTIONS(5764), - [anon_sym_join] = ACTIONS(5764), - [anon_sym_on] = ACTIONS(5764), - [anon_sym_equals] = ACTIONS(5764), - [anon_sym_let] = ACTIONS(5764), - [anon_sym_orderby] = ACTIONS(5764), - [anon_sym_group] = ACTIONS(5764), - [anon_sym_by] = ACTIONS(5764), - [anon_sym_select] = ACTIONS(5764), - [anon_sym_as] = ACTIONS(5764), - [anon_sym_is] = ACTIONS(5764), - [anon_sym_DASH_GT] = ACTIONS(5764), - [anon_sym_with] = ACTIONS(5764), - [aux_sym_preproc_if_token3] = ACTIONS(5764), - [aux_sym_preproc_else_token1] = ACTIONS(5764), - [aux_sym_preproc_elif_token1] = ACTIONS(5764), + [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), @@ -516688,27 +515007,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3402] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), [sym_preproc_region] = STATE(3402), [sym_preproc_endregion] = STATE(3402), [sym_preproc_line] = STATE(3402), @@ -516718,44 +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(4924), - [anon_sym_COLON] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5722), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5716), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5712), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -516768,6 +515084,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3403] = { + [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), @@ -516777,65 +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_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_BANG] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3910), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3910), - [anon_sym_CARET] = ACTIONS(3910), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3910), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3910), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_GT_EQ] = ACTIONS(3910), - [anon_sym_LT_EQ] = ACTIONS(3910), - [anon_sym_DOT] = ACTIONS(3913), - [anon_sym_EQ_GT] = ACTIONS(3910), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3910), - [anon_sym_DOT_DOT] = ACTIONS(3910), - [anon_sym_and] = ACTIONS(3910), - [anon_sym_or] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(3910), - [anon_sym_PIPE_PIPE] = ACTIONS(3910), - [sym_op_coalescing] = 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), + [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), @@ -516848,27 +515161,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3404] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), + [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), @@ -516878,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(5646), - [anon_sym_COLON] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5724), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5692), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5696), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -516925,30 +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(4780), }, [3405] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), + [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), @@ -516958,44 +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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4776), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5771), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4776), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4776), - [anon_sym_or] = ACTIONS(4776), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5730), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -517008,27 +515315,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3406] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), + [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), @@ -517038,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(4825), - [anon_sym_COLON] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5771), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4756), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4756), - [anon_sym_or] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5730), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -517088,7 +515392,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3407] = { - [sym_initializer_expression] = STATE(3877), + [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), @@ -517098,64 +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_SEMI] = ACTIONS(5773), - [anon_sym_LBRACK] = ACTIONS(5773), - [anon_sym_COLON] = ACTIONS(5773), - [anon_sym_COMMA] = ACTIONS(5773), - [anon_sym_RBRACK] = ACTIONS(5773), - [anon_sym_LPAREN] = ACTIONS(5773), - [anon_sym_RPAREN] = ACTIONS(5773), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(5773), - [anon_sym_LT] = ACTIONS(5775), - [anon_sym_GT] = ACTIONS(5775), - [anon_sym_in] = ACTIONS(5775), - [anon_sym_where] = ACTIONS(5773), - [anon_sym_QMARK] = ACTIONS(5775), - [anon_sym_BANG] = ACTIONS(5775), - [anon_sym_PLUS_PLUS] = ACTIONS(5773), - [anon_sym_DASH_DASH] = ACTIONS(5773), - [anon_sym_PLUS] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(5775), - [anon_sym_STAR] = ACTIONS(5773), - [anon_sym_SLASH] = ACTIONS(5775), - [anon_sym_PERCENT] = ACTIONS(5773), - [anon_sym_CARET] = ACTIONS(5773), - [anon_sym_PIPE] = ACTIONS(5775), - [anon_sym_AMP] = ACTIONS(5775), - [anon_sym_LT_LT] = ACTIONS(5773), - [anon_sym_GT_GT] = ACTIONS(5775), - [anon_sym_GT_GT_GT] = ACTIONS(5773), - [anon_sym_EQ_EQ] = ACTIONS(5773), - [anon_sym_BANG_EQ] = ACTIONS(5773), - [anon_sym_GT_EQ] = ACTIONS(5773), - [anon_sym_LT_EQ] = ACTIONS(5773), - [anon_sym_DOT] = ACTIONS(5775), - [anon_sym_EQ_GT] = ACTIONS(5773), - [anon_sym_switch] = ACTIONS(5773), - [anon_sym_DOT_DOT] = ACTIONS(5773), - [anon_sym_and] = ACTIONS(5773), - [anon_sym_or] = ACTIONS(5775), - [anon_sym_AMP_AMP] = ACTIONS(5773), - [anon_sym_PIPE_PIPE] = ACTIONS(5773), - [sym_op_coalescing] = ACTIONS(5773), - [anon_sym_from] = ACTIONS(5773), - [anon_sym_into] = ACTIONS(5773), - [anon_sym_join] = ACTIONS(5773), - [anon_sym_on] = ACTIONS(5773), - [anon_sym_equals] = ACTIONS(5773), - [anon_sym_let] = ACTIONS(5773), - [anon_sym_orderby] = ACTIONS(5773), - [anon_sym_group] = ACTIONS(5773), - [anon_sym_by] = ACTIONS(5773), - [anon_sym_select] = ACTIONS(5773), - [anon_sym_as] = ACTIONS(5773), - [anon_sym_is] = ACTIONS(5773), - [anon_sym_DASH_GT] = ACTIONS(5773), - [anon_sym_with] = ACTIONS(5773), - [aux_sym_preproc_if_token3] = ACTIONS(5773), - [aux_sym_preproc_else_token1] = ACTIONS(5773), - [aux_sym_preproc_elif_token1] = ACTIONS(5773), + [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), @@ -517168,27 +515469,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3408] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), [sym_preproc_region] = STATE(3408), [sym_preproc_endregion] = STATE(3408), [sym_preproc_line] = STATE(3408), @@ -517198,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(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4790), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_when] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -517248,27 +515546,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3409] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), + [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), @@ -517278,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4768), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_when] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -517328,6 +515623,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3410] = { + [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), @@ -517337,65 +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_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_where] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5008), - [anon_sym_BANG] = ACTIONS(5008), - [anon_sym_PLUS_PLUS] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5008), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5008), - [anon_sym_CARET] = ACTIONS(5008), - [anon_sym_PIPE] = ACTIONS(5008), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym_LT_LT] = ACTIONS(5008), - [anon_sym_GT_GT] = ACTIONS(5008), - [anon_sym_GT_GT_GT] = ACTIONS(5008), - [anon_sym_EQ_EQ] = ACTIONS(5005), - [anon_sym_BANG_EQ] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(5005), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_switch] = ACTIONS(5005), - [anon_sym_DOT_DOT] = ACTIONS(5005), - [anon_sym_and] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(5011), - [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(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(5005), - [sym_op_coalescing] = ACTIONS(5008), - [anon_sym_from] = ACTIONS(5003), - [anon_sym_into] = ACTIONS(5003), - [anon_sym_join] = ACTIONS(5003), - [anon_sym_let] = ACTIONS(5003), - [anon_sym_orderby] = ACTIONS(5003), - [anon_sym_ascending] = ACTIONS(5003), - [anon_sym_descending] = ACTIONS(5003), - [anon_sym_group] = ACTIONS(5003), - [anon_sym_select] = ACTIONS(5003), - [anon_sym_as] = ACTIONS(5008), - [anon_sym_is] = ACTIONS(5005), - [anon_sym_DASH_GT] = ACTIONS(5005), - [anon_sym_with] = ACTIONS(5005), + [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), @@ -517408,27 +515700,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3411] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), + [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), @@ -517438,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(4825), - [anon_sym_COLON] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5771), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4798), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5730), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -517488,7 +515777,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3412] = { - [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(3412), [sym_preproc_endregion] = STATE(3412), [sym_preproc_line] = STATE(3412), @@ -517498,64 +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_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(5777), - [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(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), @@ -517568,27 +515854,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3413] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), [sym_preproc_region] = STATE(3413), [sym_preproc_endregion] = STATE(3413), [sym_preproc_line] = STATE(3413), @@ -517598,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_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -517648,27 +515931,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3414] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), + [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), @@ -517678,44 +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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -517728,27 +516008,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3415] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), + [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), @@ -517758,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_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -517808,27 +516085,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3416] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), [sym_preproc_region] = STATE(3416), [sym_preproc_endregion] = STATE(3416), [sym_preproc_line] = STATE(3416), @@ -517838,77 +516094,74 @@ 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(5646), - [anon_sym_COLON] = ACTIONS(4768), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(4768), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4768), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3417] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), [sym_preproc_region] = STATE(3417), [sym_preproc_endregion] = STATE(3417), [sym_preproc_line] = STATE(3417), @@ -517918,44 +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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -517968,27 +516239,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3418] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), + [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), @@ -517998,44 +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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5771), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4742), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5730), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -518048,27 +516316,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3419] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), + [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), @@ -518078,44 +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(4825), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5771), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4764), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5730), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -518128,27 +516393,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3420] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), + [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), @@ -518158,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_COLON] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5771), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4772), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5730), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -518208,27 +516470,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3421] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), [sym_preproc_region] = STATE(3421), [sym_preproc_endregion] = STATE(3421), [sym_preproc_line] = STATE(3421), @@ -518238,44 +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(4825), - [anon_sym_COLON] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5771), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4780), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5730), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -518288,27 +516547,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3422] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), [sym_preproc_region] = STATE(3422), [sym_preproc_endregion] = STATE(3422), [sym_preproc_line] = STATE(3422), @@ -518318,44 +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(4924), - [anon_sym_COLON] = ACTIONS(4760), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4760), - [anon_sym_RBRACE] = ACTIONS(4760), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -518368,27 +516624,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3423] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), [sym_preproc_region] = STATE(3423), [sym_preproc_endregion] = STATE(3423), [sym_preproc_line] = STATE(3423), @@ -518398,44 +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(4825), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_when] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -518448,27 +516701,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3424] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1275), - [sym_op_lte] = STATE(1275), - [sym_op_eq] = STATE(1278), - [sym_op_neq] = STATE(1278), - [sym_op_gt] = STATE(1275), - [sym_op_gte] = STATE(1275), - [sym_op_and] = STATE(1279), - [sym_op_or] = STATE(1280), - [sym_op_bitwise_and] = STATE(1281), - [sym_op_bitwise_or] = STATE(1282), - [sym_op_bitwise_xor] = STATE(1284), - [sym_op_left_shift] = STATE(1286), - [sym_op_right_shift] = STATE(1286), - [sym_op_unsigned_right_shift] = STATE(1286), - [sym_op_plus] = STATE(1287), - [sym_op_minus] = STATE(1287), - [sym_op_multiply] = STATE(1288), - [sym_op_divide] = STATE(1288), - [sym_op_modulo] = STATE(1288), + [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), @@ -518478,44 +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(4924), - [anon_sym_COLON] = ACTIONS(4798), - [anon_sym_COMMA] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_RPAREN] = ACTIONS(4798), - [anon_sym_RBRACE] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5722), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(5698), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5716), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(5712), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -518528,27 +516777,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3425] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), + [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(3425), [sym_preproc_endregion] = STATE(3425), [sym_preproc_line] = STATE(3425), @@ -518558,44 +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(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(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [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(4400), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_when] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [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(4402), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -518608,27 +516853,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3426] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), + [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), @@ -518638,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(5646), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [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(5302), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [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(5274), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -518685,30 +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(1435), }, [3427] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), + [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), @@ -518718,44 +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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5780), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4780), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4780), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5782), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5784), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -518768,27 +517005,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3428] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), + [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(3428), [sym_preproc_endregion] = STATE(3428), [sym_preproc_line] = STATE(3428), @@ -518798,77 +517029,73 @@ 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(5646), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(4790), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4790), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3429] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), + [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), @@ -518878,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(4825), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -518928,27 +517157,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3430] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), + [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), @@ -518958,44 +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(4825), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -519008,27 +517233,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3431] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), + [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), @@ -519038,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(4825), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -519088,27 +517309,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3432] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), + [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), @@ -519118,44 +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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5780), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4772), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4772), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5782), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5784), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -519168,27 +517385,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3433] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), + [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), @@ -519198,44 +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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5780), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4764), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4764), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5782), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5784), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -519248,27 +517461,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3434] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), + [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), @@ -519278,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5780), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4742), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4742), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5782), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5784), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -519328,27 +517537,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3435] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), + [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), @@ -519358,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5784), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -519408,27 +517613,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3436] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), + [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), @@ -519438,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5784), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -519488,27 +517689,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3437] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), + [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), @@ -519518,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_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5784), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -519568,27 +517765,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3438] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), + [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), @@ -519598,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5784), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -519648,29 +517841,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3439] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), - [sym_preproc_else_in_expression] = STATE(7958), - [sym_preproc_elif_in_expression] = STATE(7958), + [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), @@ -519680,42 +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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(5786), - [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(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), @@ -519728,27 +517917,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3440] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), [sym_preproc_region] = STATE(3440), [sym_preproc_endregion] = STATE(3440), [sym_preproc_line] = STATE(3440), @@ -519758,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5784), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -519808,27 +517993,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3441] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), + [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), @@ -519838,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5784), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -519888,27 +518069,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3442] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), + [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), @@ -519918,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5780), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4776), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4776), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4776), - [anon_sym_or] = ACTIONS(4776), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5782), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5784), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -519968,27 +518145,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3443] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), + [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), @@ -519998,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5782), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5784), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -520048,27 +518221,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3444] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), + [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), @@ -520078,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5780), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4798), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4798), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5782), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5784), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -520128,27 +518297,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3445] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), + [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), @@ -520158,43 +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(5646), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_COMMA] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5724), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5692), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5696), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -520205,30 +518371,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), }, [3446] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), + [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), @@ -520238,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_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4760), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_when] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -520288,27 +518449,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3447] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), + [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), @@ -520318,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_COLON] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_when] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -520368,27 +518525,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3448] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), + [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), @@ -520398,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(4768), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_when] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -520448,6 +518601,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3449] = { + [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), @@ -520457,65 +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), - [sym__identifier_token] = ACTIONS(5458), - [anon_sym_extern] = ACTIONS(5458), - [anon_sym_alias] = ACTIONS(5458), - [anon_sym_global] = ACTIONS(5458), - [anon_sym_unsafe] = ACTIONS(5458), - [anon_sym_static] = ACTIONS(5458), - [anon_sym_LBRACK] = ACTIONS(5460), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_event] = ACTIONS(5458), - [anon_sym_class] = ACTIONS(5458), - [anon_sym_ref] = ACTIONS(5458), - [anon_sym_struct] = ACTIONS(5458), - [anon_sym_enum] = ACTIONS(5458), - [anon_sym_interface] = ACTIONS(5458), - [anon_sym_delegate] = ACTIONS(5458), - [anon_sym_record] = ACTIONS(5458), - [anon_sym_public] = ACTIONS(5458), - [anon_sym_private] = ACTIONS(5458), - [anon_sym_readonly] = ACTIONS(5458), - [anon_sym_abstract] = ACTIONS(5458), - [anon_sym_async] = ACTIONS(5458), - [anon_sym_const] = ACTIONS(5458), - [anon_sym_file] = ACTIONS(5458), - [anon_sym_fixed] = ACTIONS(5458), - [anon_sym_internal] = ACTIONS(5458), - [anon_sym_new] = ACTIONS(5458), - [anon_sym_override] = ACTIONS(5458), - [anon_sym_partial] = ACTIONS(5458), - [anon_sym_protected] = ACTIONS(5458), - [anon_sym_required] = ACTIONS(5458), - [anon_sym_sealed] = ACTIONS(5458), - [anon_sym_virtual] = ACTIONS(5458), - [anon_sym_volatile] = ACTIONS(5458), - [anon_sym_where] = ACTIONS(5458), - [anon_sym_notnull] = ACTIONS(5458), - [anon_sym_unmanaged] = ACTIONS(5458), - [anon_sym_TILDE] = ACTIONS(5460), - [anon_sym_implicit] = ACTIONS(5458), - [anon_sym_explicit] = ACTIONS(5458), - [anon_sym_scoped] = ACTIONS(5458), - [anon_sym_var] = ACTIONS(5458), - [sym_predefined_type] = 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(5460), - [aux_sym_preproc_if_token1] = ACTIONS(5460), - [aux_sym_preproc_if_token3] = ACTIONS(5788), + [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), @@ -520528,27 +518677,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3450] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), + [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), @@ -520558,44 +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_LBRACK] = ACTIONS(4825), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5771), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(5688), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5730), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5734), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -520608,27 +518753,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3451] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), + [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), @@ -520638,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5780), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4794), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5782), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5784), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -520688,27 +518829,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3452] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), + [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), @@ -520718,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_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5780), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4756), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_when] = ACTIONS(4756), - [anon_sym_DOT_DOT] = ACTIONS(5718), - [anon_sym_and] = ACTIONS(4756), - [anon_sym_or] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5782), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(5732), - [anon_sym_is] = ACTIONS(5784), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -520768,27 +518905,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3453] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), + [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), @@ -520798,77 +518929,73 @@ 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(5646), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(4786), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4786), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3454] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), + [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), @@ -520878,43 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5696), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -520925,32 +519055,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(4686), }, [3455] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), - [sym_preproc_else_in_expression] = STATE(7779), - [sym_preproc_elif_in_expression] = STATE(7779), + [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), @@ -520960,42 +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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(5790), - [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(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), @@ -521008,27 +519133,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3456] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), + [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), @@ -521038,43 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5696), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -521085,30 +519207,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(4686), }, [3457] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), + [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), @@ -521118,43 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5696), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -521165,30 +519283,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(4686), }, [3458] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), + [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), @@ -521198,43 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5696), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -521245,30 +519359,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(4686), }, [3459] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), + [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), @@ -521278,43 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5696), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -521325,30 +519435,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(4686), }, [3460] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), + [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), @@ -521358,43 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5690), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5696), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -521405,30 +519511,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(4686), }, [3461] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), [sym_preproc_region] = STATE(3461), [sym_preproc_endregion] = STATE(3461), [sym_preproc_line] = STATE(3461), @@ -521438,43 +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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5794), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -521487,27 +519589,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3462] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -521517,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5796), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5800), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_by] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(5802), - [anon_sym_is] = ACTIONS(5804), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -521566,6 +519665,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3463] = { + [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), @@ -521575,64 +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(4318), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4318), - [anon_sym_QMARK] = ACTIONS(5806), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4318), - [anon_sym_into] = ACTIONS(4318), - [anon_sym_join] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_let] = ACTIONS(4318), - [anon_sym_orderby] = ACTIONS(4318), - [anon_sym_group] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_select] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [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), @@ -521645,6 +519741,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3464] = { + [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), @@ -521654,64 +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_SEMI] = ACTIONS(4318), - [anon_sym_LBRACK] = ACTIONS(4318), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4318), - [anon_sym_QMARK] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4318), - [anon_sym_into] = ACTIONS(4318), - [anon_sym_join] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_let] = ACTIONS(4318), - [anon_sym_orderby] = ACTIONS(4318), - [anon_sym_group] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_select] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [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), @@ -521724,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), @@ -521733,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(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), + [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), @@ -521803,27 +519893,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3466] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -521833,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(5518), - [anon_sym_COLON] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4798), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5817), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -521882,27 +519969,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3467] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -521912,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(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_in] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [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(4400), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [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(4402), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -521961,27 +520045,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3468] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -521991,43 +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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_when] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -522040,27 +520121,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3469] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -522070,42 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -522116,30 +520195,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(4686), }, [3470] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), [sym_preproc_region] = STATE(3470), [sym_preproc_endregion] = STATE(3470), [sym_preproc_line] = STATE(3470), @@ -522149,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(5518), - [anon_sym_COLON] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4742), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5817), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -522198,27 +520273,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3471] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -522228,42 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -522274,30 +520347,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(4686), }, [3472] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -522307,42 +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_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -522353,30 +520423,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(4686), }, [3473] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -522386,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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5817), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -522435,27 +520501,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3474] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -522465,42 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -522511,30 +520575,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(4686), }, [3475] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -522544,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(5518), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4764), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5817), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -522593,6 +520653,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3476] = { + [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), @@ -522602,64 +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), - [sym__identifier_token] = ACTIONS(5821), - [anon_sym_extern] = ACTIONS(5821), - [anon_sym_alias] = ACTIONS(5821), - [anon_sym_global] = ACTIONS(5821), - [anon_sym_unsafe] = ACTIONS(5821), - [anon_sym_static] = ACTIONS(5821), - [anon_sym_LBRACK] = ACTIONS(5823), - [anon_sym_LPAREN] = ACTIONS(5823), - [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(5821), - [anon_sym_private] = ACTIONS(5821), - [anon_sym_readonly] = ACTIONS(5821), - [anon_sym_abstract] = ACTIONS(5821), - [anon_sym_async] = ACTIONS(5821), - [anon_sym_const] = ACTIONS(5821), - [anon_sym_file] = ACTIONS(5821), - [anon_sym_fixed] = ACTIONS(5821), - [anon_sym_internal] = ACTIONS(5821), - [anon_sym_new] = ACTIONS(5821), - [anon_sym_override] = ACTIONS(5821), - [anon_sym_partial] = ACTIONS(5821), - [anon_sym_protected] = ACTIONS(5821), - [anon_sym_required] = ACTIONS(5821), - [anon_sym_sealed] = ACTIONS(5821), - [anon_sym_virtual] = ACTIONS(5821), - [anon_sym_volatile] = ACTIONS(5821), - [anon_sym_where] = ACTIONS(5821), - [anon_sym_notnull] = ACTIONS(5821), - [anon_sym_unmanaged] = ACTIONS(5821), - [anon_sym_TILDE] = ACTIONS(5823), - [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(5823), - [aux_sym_preproc_if_token1] = ACTIONS(5823), + [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), @@ -522672,27 +520729,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3477] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -522702,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(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_equals] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -522751,27 +520805,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3478] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -522781,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_LBRACK] = ACTIONS(5422), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5825), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5829), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(5833), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -522830,6 +520881,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3479] = { + [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), @@ -522839,64 +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_SEMI] = ACTIONS(4318), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4318), - [anon_sym_QMARK] = ACTIONS(5806), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4318), - [anon_sym_into] = ACTIONS(4318), - [anon_sym_join] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_let] = ACTIONS(4318), - [anon_sym_orderby] = ACTIONS(4318), - [anon_sym_group] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_select] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [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), @@ -522909,27 +520957,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3480] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -522939,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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5835), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4776), - [anon_sym_or] = ACTIONS(4776), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5839), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_on] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(5841), - [anon_sym_is] = ACTIONS(5843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -522988,27 +521033,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3481] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -523018,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_LBRACK] = ACTIONS(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -523067,27 +521109,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3482] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -523097,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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_in] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -523146,27 +521185,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3483] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -523176,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_LBRACK] = ACTIONS(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -523225,27 +521261,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3484] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), [sym_preproc_region] = STATE(3484), [sym_preproc_endregion] = STATE(3484), [sym_preproc_line] = STATE(3484), @@ -523255,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(5845), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4798), - [aux_sym_preproc_else_token1] = ACTIONS(4798), - [aux_sym_preproc_elif_token1] = ACTIONS(4798), + [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), @@ -523304,27 +521337,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3485] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -523334,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_LBRACK] = ACTIONS(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -523383,27 +521413,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3486] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -523413,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_LBRACK] = ACTIONS(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(5833), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -523462,27 +521489,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3487] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -523492,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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_in] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -523541,27 +521565,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3488] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -523571,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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_in] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -523629,64 +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(4464), - [anon_sym_LBRACK] = ACTIONS(4464), - [anon_sym_COLON] = ACTIONS(4464), - [anon_sym_COMMA] = ACTIONS(4464), - [anon_sym_RBRACK] = ACTIONS(4464), - [anon_sym_LPAREN] = ACTIONS(4464), - [anon_sym_RPAREN] = ACTIONS(4464), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_RBRACE] = ACTIONS(4464), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_in] = ACTIONS(4462), - [anon_sym_where] = ACTIONS(4464), - [anon_sym_QMARK] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PLUS_PLUS] = ACTIONS(4464), - [anon_sym_DASH_DASH] = ACTIONS(4464), - [anon_sym_PLUS] = ACTIONS(4462), - [anon_sym_DASH] = ACTIONS(4462), - [anon_sym_STAR] = ACTIONS(4464), - [anon_sym_SLASH] = ACTIONS(4462), - [anon_sym_PERCENT] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4464), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_AMP] = ACTIONS(4462), - [anon_sym_LT_LT] = ACTIONS(4464), - [anon_sym_GT_GT] = ACTIONS(4462), - [anon_sym_GT_GT_GT] = ACTIONS(4464), - [anon_sym_EQ_EQ] = ACTIONS(4464), - [anon_sym_BANG_EQ] = ACTIONS(4464), - [anon_sym_GT_EQ] = ACTIONS(4464), - [anon_sym_LT_EQ] = ACTIONS(4464), - [anon_sym_DOT] = ACTIONS(4462), - [anon_sym_EQ_GT] = ACTIONS(4464), - [anon_sym_switch] = ACTIONS(4464), - [anon_sym_DOT_DOT] = ACTIONS(4464), - [anon_sym_and] = ACTIONS(4464), - [anon_sym_or] = ACTIONS(4462), - [anon_sym_AMP_AMP] = ACTIONS(4464), - [anon_sym_PIPE_PIPE] = ACTIONS(4464), - [sym_op_coalescing] = ACTIONS(4464), - [anon_sym_from] = ACTIONS(4464), - [anon_sym_into] = ACTIONS(4464), - [anon_sym_join] = ACTIONS(4464), - [anon_sym_on] = ACTIONS(4464), - [anon_sym_equals] = ACTIONS(4464), - [anon_sym_let] = ACTIONS(4464), - [anon_sym_orderby] = ACTIONS(4464), - [anon_sym_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(4464), - [anon_sym_with] = ACTIONS(4464), - [aux_sym_preproc_if_token3] = ACTIONS(4464), - [aux_sym_preproc_else_token1] = ACTIONS(4464), - [aux_sym_preproc_elif_token1] = ACTIONS(4464), + [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), @@ -523699,27 +521717,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3490] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -523729,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4758), - [anon_sym_QMARK] = ACTIONS(5853), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4756), - [anon_sym_or] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5855), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5794), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -523778,27 +521793,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3491] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -523808,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4796), - [anon_sym_QMARK] = ACTIONS(5853), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5855), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5794), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -523857,27 +521869,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3492] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -523887,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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4780), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5817), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -523936,6 +521945,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3493] = { + [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), @@ -523945,64 +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), - [sym__identifier_token] = ACTIONS(5857), - [anon_sym_extern] = ACTIONS(5857), - [anon_sym_alias] = ACTIONS(5857), - [anon_sym_global] = ACTIONS(5857), - [anon_sym_unsafe] = ACTIONS(5857), - [anon_sym_static] = ACTIONS(5857), - [anon_sym_LBRACK] = ACTIONS(5859), - [anon_sym_LPAREN] = ACTIONS(5859), - [anon_sym_event] = ACTIONS(5857), - [anon_sym_class] = ACTIONS(5857), - [anon_sym_ref] = ACTIONS(5857), - [anon_sym_struct] = ACTIONS(5857), - [anon_sym_enum] = ACTIONS(5857), - [anon_sym_interface] = ACTIONS(5857), - [anon_sym_delegate] = ACTIONS(5857), - [anon_sym_record] = ACTIONS(5857), - [anon_sym_public] = ACTIONS(5857), - [anon_sym_private] = ACTIONS(5857), - [anon_sym_readonly] = ACTIONS(5857), - [anon_sym_abstract] = ACTIONS(5857), - [anon_sym_async] = ACTIONS(5857), - [anon_sym_const] = ACTIONS(5857), - [anon_sym_file] = ACTIONS(5857), - [anon_sym_fixed] = ACTIONS(5857), - [anon_sym_internal] = ACTIONS(5857), - [anon_sym_new] = ACTIONS(5857), - [anon_sym_override] = ACTIONS(5857), - [anon_sym_partial] = ACTIONS(5857), - [anon_sym_protected] = ACTIONS(5857), - [anon_sym_required] = ACTIONS(5857), - [anon_sym_sealed] = ACTIONS(5857), - [anon_sym_virtual] = ACTIONS(5857), - [anon_sym_volatile] = ACTIONS(5857), - [anon_sym_where] = ACTIONS(5857), - [anon_sym_notnull] = ACTIONS(5857), - [anon_sym_unmanaged] = ACTIONS(5857), - [anon_sym_TILDE] = ACTIONS(5859), - [anon_sym_implicit] = ACTIONS(5857), - [anon_sym_explicit] = ACTIONS(5857), - [anon_sym_scoped] = ACTIONS(5857), - [anon_sym_var] = ACTIONS(5857), - [sym_predefined_type] = ACTIONS(5857), - [anon_sym_yield] = ACTIONS(5857), - [anon_sym_when] = 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_ascending] = ACTIONS(5857), - [anon_sym_descending] = ACTIONS(5857), - [anon_sym_group] = ACTIONS(5857), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_select] = ACTIONS(5857), - [sym_grit_metavariable] = ACTIONS(5859), - [aux_sym_preproc_if_token1] = ACTIONS(5859), + [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), @@ -524015,27 +522021,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3494] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -524045,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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4790), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_when] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -524094,27 +522097,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3495] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -524124,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_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(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [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(4400), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [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(4402), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -524173,27 +522173,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3496] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -524203,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_by] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -524252,27 +522249,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3497] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -524282,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4778), - [anon_sym_QMARK] = ACTIONS(5853), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4776), - [anon_sym_or] = ACTIONS(4776), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5855), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5794), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -524331,27 +522325,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3498] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -524361,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -524410,27 +522401,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3499] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -524440,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -524489,27 +522477,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3500] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -524519,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -524566,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(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -524598,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5835), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4756), - [anon_sym_or] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5839), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_on] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(5841), - [anon_sym_is] = ACTIONS(5843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -524647,27 +522627,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3502] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -524677,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(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_equals] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -524726,27 +522702,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3503] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -524756,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5861), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4756), - [anon_sym_or] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5865), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_equals] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(5867), - [anon_sym_is] = ACTIONS(5869), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -524805,27 +522777,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3504] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -524835,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5835), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5839), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_on] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(5841), - [anon_sym_is] = ACTIONS(5843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -524884,27 +522852,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3505] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -524914,43 +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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -524963,27 +522927,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3506] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -524993,43 +522951,44 @@ 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(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_on] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -525040,29 +522999,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), + [sym_interpolation_close_brace] = ACTIONS(5332), }, [3507] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -525072,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(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -525121,27 +523077,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3508] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -525151,43 +523101,44 @@ 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(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [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(4400), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [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(4402), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -525198,29 +523149,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(5304), }, [3509] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -525230,43 +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_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_RBRACK] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4768), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -525279,27 +523227,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3510] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), [sym_preproc_region] = STATE(3510), [sym_preproc_endregion] = STATE(3510), [sym_preproc_line] = STATE(3510), @@ -525309,43 +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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -525358,27 +523302,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3511] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -525388,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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -525437,27 +523377,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3512] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -525467,43 +523401,44 @@ 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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5861), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4776), - [anon_sym_or] = ACTIONS(4776), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5865), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_equals] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(5867), - [anon_sym_is] = ACTIONS(5869), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -525514,29 +523449,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), }, [3513] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -525546,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5871), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4794), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5875), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5877), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -525593,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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -525625,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(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(5833), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -525674,27 +523602,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3515] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), [sym_preproc_region] = STATE(3515), [sym_preproc_endregion] = STATE(3515), [sym_preproc_line] = STATE(3515), @@ -525704,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(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(5833), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -525753,27 +523677,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3516] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -525783,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5871), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4798), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5875), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5877), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -525832,27 +523752,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3517] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -525862,43 +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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5875), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5877), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -525909,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(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -525941,43 +523851,44 @@ 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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5877), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -525988,29 +523899,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), }, [3519] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -526020,43 +523926,44 @@ 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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5877), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -526067,8 +523974,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), }, [3520] = { + [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), @@ -526078,64 +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_EQ] = ACTIONS(5879), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_where] = ACTIONS(5752), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_PLUS_EQ] = ACTIONS(5881), - [anon_sym_DASH_EQ] = ACTIONS(5881), - [anon_sym_STAR_EQ] = ACTIONS(5881), - [anon_sym_SLASH_EQ] = ACTIONS(5881), - [anon_sym_PERCENT_EQ] = ACTIONS(5881), - [anon_sym_AMP_EQ] = ACTIONS(5881), - [anon_sym_CARET_EQ] = ACTIONS(5881), - [anon_sym_PIPE_EQ] = ACTIONS(5881), - [anon_sym_LT_LT_EQ] = ACTIONS(5881), - [anon_sym_GT_GT_EQ] = ACTIONS(5881), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(5881), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(5881), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5752), - [anon_sym_join] = ACTIONS(5752), - [anon_sym_let] = ACTIONS(5752), - [anon_sym_orderby] = ACTIONS(5752), - [anon_sym_ascending] = ACTIONS(5752), - [anon_sym_descending] = ACTIONS(5752), - [anon_sym_group] = ACTIONS(5752), - [anon_sym_select] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5754), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -526148,27 +524052,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3521] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -526178,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(5422), - [anon_sym_COLON] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_RBRACE] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5825), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5829), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(5833), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -526227,27 +524127,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3522] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -526257,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5877), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -526306,27 +524202,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3523] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -526336,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5877), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -526385,27 +524277,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3524] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -526415,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5877), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -526464,27 +524352,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3525] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -526494,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(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -526543,27 +524427,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3526] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -526573,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5877), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -526622,27 +524502,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3527] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -526652,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(5422), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -526701,27 +524577,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3528] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -526731,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(5422), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4786), - [anon_sym_RBRACE] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -526780,28 +524652,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3529] = { - [sym_attribute_list] = STATE(6333), - [sym__attribute_list] = STATE(6332), - [sym_type_parameter] = STATE(7090), - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7323), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(6615), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if_in_attribute_list] = STATE(6333), + [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), @@ -526811,42 +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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(6019), - [aux_sym_type_argument_list_repeat1] = STATE(7326), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(5883), - [anon_sym_COMMA] = ACTIONS(5885), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5887), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(5891), - [anon_sym_in] = ACTIONS(5893), - [anon_sym_out] = ACTIONS(5893), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5895), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(5897), - [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(5899), + [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), @@ -526859,27 +524727,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3530] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -526889,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5871), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4742), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5875), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5877), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -526938,27 +524802,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3531] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -526968,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5871), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4764), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5875), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5877), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -527017,27 +524877,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3532] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -527047,56 +524901,72 @@ 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(5646), - [anon_sym_COLON] = ACTIONS(4760), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = 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_interpolation_close_brace] = ACTIONS(4760), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3533] = { - [sym_type_argument_list] = STATE(3930), + [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), @@ -527106,63 +524976,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3533), [sym_preproc_define] = STATE(3533), [sym_preproc_undef] = STATE(3533), - [anon_sym_SEMI] = ACTIONS(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(5901), - [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(5904), - [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(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), @@ -527173,29 +525024,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), }, [3534] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -527205,43 +525051,44 @@ 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(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(5833), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -527252,29 +525099,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), }, [3535] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -527284,43 +525126,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3535), [sym_preproc_define] = STATE(3535), [sym_preproc_undef] = STATE(3535), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_RBRACK] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -527331,29 +525174,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), }, [3536] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -527363,43 +525201,44 @@ 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(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(5833), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -527410,29 +525249,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), }, [3537] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -527442,43 +525276,44 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5871), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4772), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5875), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5877), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -527489,29 +525324,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), }, [3538] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -527521,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(5422), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5520), - [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(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [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(4468), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -527570,6 +525402,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3539] = { + [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), @@ -527579,64 +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), - [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(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), @@ -527649,6 +525477,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3540] = { + [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), @@ -527658,64 +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_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_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), @@ -527728,6 +525552,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3541] = { + [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), @@ -527737,64 +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_SEMI] = ACTIONS(4326), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4326), - [anon_sym_RBRACK] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_RPAREN] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4326), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_QMARK] = ACTIONS(4324), - [anon_sym_BANG] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_CARET] = ACTIONS(4326), - [anon_sym_PIPE] = ACTIONS(4324), - [anon_sym_AMP] = ACTIONS(4324), - [anon_sym_LT_LT] = ACTIONS(4326), - [anon_sym_GT_GT] = ACTIONS(4324), - [anon_sym_GT_GT_GT] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_EQ_GT] = ACTIONS(4326), - [anon_sym_switch] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_and] = ACTIONS(4326), - [anon_sym_or] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [sym_op_coalescing] = ACTIONS(4326), - [anon_sym_from] = ACTIONS(4326), - [anon_sym_into] = ACTIONS(4326), - [anon_sym_join] = ACTIONS(4326), - [anon_sym_on] = ACTIONS(4326), - [anon_sym_equals] = ACTIONS(4326), - [anon_sym_let] = ACTIONS(4326), - [anon_sym_orderby] = ACTIONS(4326), - [anon_sym_group] = ACTIONS(4326), - [anon_sym_by] = ACTIONS(4326), - [anon_sym_select] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_DASH_GT] = ACTIONS(4326), - [anon_sym_with] = ACTIONS(4326), - [aux_sym_preproc_if_token3] = ACTIONS(4326), - [aux_sym_preproc_else_token1] = ACTIONS(4326), - [aux_sym_preproc_elif_token1] = ACTIONS(4326), + [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), @@ -527807,6 +525627,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3542] = { + [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), @@ -527816,64 +525651,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3542), [sym_preproc_define] = STATE(3542), [sym_preproc_undef] = STATE(3542), - [anon_sym_SEMI] = ACTIONS(4338), - [anon_sym_LBRACK] = ACTIONS(4338), - [anon_sym_COLON] = ACTIONS(4338), - [anon_sym_COMMA] = ACTIONS(4338), - [anon_sym_RBRACK] = ACTIONS(4338), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_RPAREN] = ACTIONS(4338), - [anon_sym_LBRACE] = ACTIONS(4338), - [anon_sym_RBRACE] = ACTIONS(4338), - [anon_sym_LT] = ACTIONS(4336), - [anon_sym_GT] = ACTIONS(4336), - [anon_sym_in] = ACTIONS(4336), - [anon_sym_where] = ACTIONS(4338), - [anon_sym_QMARK] = ACTIONS(4336), - [anon_sym_BANG] = ACTIONS(4336), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS] = ACTIONS(4336), - [anon_sym_DASH] = ACTIONS(4336), - [anon_sym_STAR] = ACTIONS(4338), - [anon_sym_SLASH] = ACTIONS(4336), - [anon_sym_PERCENT] = ACTIONS(4338), - [anon_sym_CARET] = ACTIONS(4338), - [anon_sym_PIPE] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym_LT_LT] = ACTIONS(4338), - [anon_sym_GT_GT] = ACTIONS(4336), - [anon_sym_GT_GT_GT] = ACTIONS(4338), - [anon_sym_EQ_EQ] = ACTIONS(4338), - [anon_sym_BANG_EQ] = ACTIONS(4338), - [anon_sym_GT_EQ] = ACTIONS(4338), - [anon_sym_LT_EQ] = ACTIONS(4338), - [anon_sym_DOT] = ACTIONS(4336), - [anon_sym_EQ_GT] = ACTIONS(4338), - [anon_sym_switch] = ACTIONS(4338), - [anon_sym_DOT_DOT] = ACTIONS(4338), - [anon_sym_and] = ACTIONS(4338), - [anon_sym_or] = ACTIONS(4336), - [anon_sym_AMP_AMP] = ACTIONS(4338), - [anon_sym_PIPE_PIPE] = ACTIONS(4338), - [sym_op_coalescing] = ACTIONS(4338), - [anon_sym_from] = ACTIONS(4338), - [anon_sym_into] = ACTIONS(4338), - [anon_sym_join] = ACTIONS(4338), - [anon_sym_on] = ACTIONS(4338), - [anon_sym_equals] = ACTIONS(4338), - [anon_sym_let] = ACTIONS(4338), - [anon_sym_orderby] = ACTIONS(4338), - [anon_sym_group] = ACTIONS(4338), - [anon_sym_by] = ACTIONS(4338), - [anon_sym_select] = ACTIONS(4338), - [anon_sym_as] = ACTIONS(4338), - [anon_sym_is] = ACTIONS(4338), - [anon_sym_DASH_GT] = ACTIONS(4338), - [anon_sym_with] = ACTIONS(4338), - [aux_sym_preproc_if_token3] = ACTIONS(4338), - [aux_sym_preproc_else_token1] = ACTIONS(4338), - [aux_sym_preproc_elif_token1] = ACTIONS(4338), + [anon_sym_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), @@ -527884,29 +525699,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), }, [3543] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -527916,42 +525726,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3543), [sym_preproc_define] = STATE(3543), [sym_preproc_undef] = STATE(3543), - [anon_sym_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4798), - [anon_sym_COMMA] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5914), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5916), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5918), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -527962,9 +525774,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(4798), + [sym_interpolation_close_brace] = ACTIONS(5356), }, [3544] = { + [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), @@ -527974,64 +525801,44 @@ 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_SEMI] = ACTIONS(4420), - [anon_sym_LBRACK] = ACTIONS(4420), - [anon_sym_COLON] = ACTIONS(4420), - [anon_sym_COMMA] = ACTIONS(4420), - [anon_sym_RBRACK] = ACTIONS(4420), - [anon_sym_LPAREN] = ACTIONS(4420), - [anon_sym_RPAREN] = ACTIONS(4420), - [anon_sym_LBRACE] = ACTIONS(4420), - [anon_sym_RBRACE] = ACTIONS(4420), - [anon_sym_LT] = ACTIONS(4418), - [anon_sym_GT] = ACTIONS(4418), - [anon_sym_in] = ACTIONS(4418), - [anon_sym_where] = ACTIONS(4420), - [anon_sym_QMARK] = ACTIONS(4418), - [anon_sym_BANG] = ACTIONS(4418), - [anon_sym_PLUS_PLUS] = ACTIONS(4420), - [anon_sym_DASH_DASH] = ACTIONS(4420), - [anon_sym_PLUS] = ACTIONS(4418), - [anon_sym_DASH] = ACTIONS(4418), - [anon_sym_STAR] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4418), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_CARET] = ACTIONS(4420), - [anon_sym_PIPE] = ACTIONS(4418), - [anon_sym_AMP] = ACTIONS(4418), - [anon_sym_LT_LT] = ACTIONS(4420), - [anon_sym_GT_GT] = ACTIONS(4418), - [anon_sym_GT_GT_GT] = ACTIONS(4420), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_GT_EQ] = ACTIONS(4420), - [anon_sym_LT_EQ] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4418), - [anon_sym_EQ_GT] = ACTIONS(4420), - [anon_sym_switch] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4420), - [anon_sym_and] = ACTIONS(4420), - [anon_sym_or] = ACTIONS(4418), - [anon_sym_AMP_AMP] = ACTIONS(4420), - [anon_sym_PIPE_PIPE] = ACTIONS(4420), - [sym_op_coalescing] = ACTIONS(4420), - [anon_sym_from] = ACTIONS(4420), - [anon_sym_into] = ACTIONS(4420), - [anon_sym_join] = ACTIONS(4420), - [anon_sym_on] = ACTIONS(4420), - [anon_sym_equals] = ACTIONS(4420), - [anon_sym_let] = ACTIONS(4420), - [anon_sym_orderby] = ACTIONS(4420), - [anon_sym_group] = ACTIONS(4420), - [anon_sym_by] = ACTIONS(4420), - [anon_sym_select] = ACTIONS(4420), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_DASH_GT] = ACTIONS(4420), - [anon_sym_with] = ACTIONS(4420), - [aux_sym_preproc_if_token3] = ACTIONS(4420), - [aux_sym_preproc_else_token1] = ACTIONS(4420), - [aux_sym_preproc_elif_token1] = ACTIONS(4420), + [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), @@ -528042,8 +525849,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), }, [3545] = { + [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), @@ -528053,64 +525876,44 @@ 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_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_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), @@ -528121,29 +525924,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), }, [3546] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -528153,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(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5817), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -528202,27 +526002,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3547] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -528232,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(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -528281,27 +526077,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3548] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -528311,43 +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), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(5833), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -528360,27 +526152,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3549] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -528390,43 +526176,44 @@ 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(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -528437,8 +526224,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), }, [3550] = { + [sym_block] = STATE(2068), [sym_preproc_region] = STATE(3550), [sym_preproc_endregion] = STATE(3550), [sym_preproc_line] = STATE(3550), @@ -528448,64 +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_SEMI] = ACTIONS(5920), - [anon_sym_LBRACK] = ACTIONS(5920), - [anon_sym_COLON] = ACTIONS(5920), - [anon_sym_COMMA] = ACTIONS(5920), - [anon_sym_RBRACK] = ACTIONS(5920), - [anon_sym_LPAREN] = ACTIONS(5920), - [anon_sym_RPAREN] = ACTIONS(5920), - [anon_sym_RBRACE] = ACTIONS(5920), - [anon_sym_LT] = ACTIONS(5922), - [anon_sym_GT] = ACTIONS(5922), - [anon_sym_in] = ACTIONS(5922), - [anon_sym_where] = ACTIONS(5920), - [anon_sym_QMARK] = ACTIONS(5922), - [anon_sym_BANG] = ACTIONS(5922), - [anon_sym_PLUS_PLUS] = ACTIONS(5920), - [anon_sym_DASH_DASH] = ACTIONS(5920), - [anon_sym_PLUS] = ACTIONS(5922), - [anon_sym_DASH] = ACTIONS(5922), - [anon_sym_STAR] = ACTIONS(5920), - [anon_sym_SLASH] = ACTIONS(5922), - [anon_sym_PERCENT] = ACTIONS(5920), - [anon_sym_CARET] = ACTIONS(5920), - [anon_sym_PIPE] = ACTIONS(5922), - [anon_sym_AMP] = ACTIONS(5922), - [anon_sym_LT_LT] = ACTIONS(5920), - [anon_sym_GT_GT] = ACTIONS(5922), - [anon_sym_GT_GT_GT] = ACTIONS(5920), - [anon_sym_EQ_EQ] = ACTIONS(5920), - [anon_sym_BANG_EQ] = ACTIONS(5920), - [anon_sym_GT_EQ] = ACTIONS(5920), - [anon_sym_LT_EQ] = ACTIONS(5920), - [anon_sym_DOT] = ACTIONS(5922), - [anon_sym_EQ_GT] = ACTIONS(5920), - [anon_sym_switch] = ACTIONS(5920), - [anon_sym_DOT_DOT] = ACTIONS(5920), - [anon_sym_and] = ACTIONS(5920), - [anon_sym_or] = ACTIONS(5922), - [anon_sym_AMP_AMP] = ACTIONS(5920), - [anon_sym_PIPE_PIPE] = ACTIONS(5920), - [sym_op_coalescing] = ACTIONS(5920), - [anon_sym_from] = ACTIONS(5920), - [anon_sym_into] = ACTIONS(5920), - [anon_sym_join] = ACTIONS(5920), - [anon_sym_on] = ACTIONS(5920), - [anon_sym_equals] = ACTIONS(5920), - [anon_sym_let] = ACTIONS(5920), - [anon_sym_orderby] = ACTIONS(5920), - [anon_sym_group] = ACTIONS(5920), - [anon_sym_by] = ACTIONS(5920), - [anon_sym_select] = ACTIONS(5920), - [anon_sym_as] = ACTIONS(5920), - [anon_sym_is] = ACTIONS(5920), - [anon_sym_DASH_GT] = ACTIONS(5920), - [anon_sym_with] = ACTIONS(5920), - [sym_string_literal_encoding] = ACTIONS(5924), - [aux_sym_preproc_if_token3] = ACTIONS(5920), - [aux_sym_preproc_else_token1] = ACTIONS(5920), - [aux_sym_preproc_elif_token1] = ACTIONS(5920), + [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), @@ -528518,27 +526302,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3551] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -528548,43 +526326,44 @@ 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(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -528595,29 +526374,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), }, [3552] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -528627,43 +526401,44 @@ 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(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -528674,29 +526449,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), }, [3553] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -528706,43 +526476,44 @@ 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(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -528753,29 +526524,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), }, [3554] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -528785,43 +526551,44 @@ 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(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -528832,29 +526599,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), }, [3555] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -528864,43 +526626,44 @@ 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(5518), - [anon_sym_COLON] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4772), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5817), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -528911,29 +526674,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), }, [3556] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -528943,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(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5829), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(5833), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -528992,27 +526752,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3557] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -529022,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(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -529071,27 +526827,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3558] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -529101,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(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -529150,27 +526902,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3559] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -529180,43 +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(5422), - [anon_sym_COLON] = ACTIONS(4760), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4760), - [anon_sym_RBRACE] = ACTIONS(4760), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -529229,27 +526977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3560] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [sym_type_argument_list] = STATE(3730), [sym_preproc_region] = STATE(3560), [sym_preproc_endregion] = STATE(3560), [sym_preproc_line] = STATE(3560), @@ -529259,43 +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_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -529308,27 +527052,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3561] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -529338,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(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_on] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -529387,27 +527127,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3562] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -529417,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(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -529466,27 +527202,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3563] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -529496,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(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -529545,27 +527277,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3564] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -529575,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(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5817), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -529624,27 +527352,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3565] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -529654,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(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4790), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -529703,27 +527427,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3566] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -529733,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(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5817), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -529782,27 +527502,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3567] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -529812,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(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_by] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -529861,6 +527577,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3568] = { + [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), @@ -529870,64 +527601,44 @@ 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_SEMI] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4450), - [anon_sym_COLON] = ACTIONS(4450), - [anon_sym_COMMA] = ACTIONS(4450), - [anon_sym_RBRACK] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_RPAREN] = ACTIONS(4450), - [anon_sym_LBRACE] = ACTIONS(4450), - [anon_sym_RBRACE] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4448), - [anon_sym_GT] = ACTIONS(4448), - [anon_sym_in] = ACTIONS(4448), - [anon_sym_where] = ACTIONS(4450), - [anon_sym_QMARK] = ACTIONS(4448), - [anon_sym_BANG] = ACTIONS(4448), - [anon_sym_PLUS_PLUS] = ACTIONS(4450), - [anon_sym_DASH_DASH] = ACTIONS(4450), - [anon_sym_PLUS] = ACTIONS(4448), - [anon_sym_DASH] = ACTIONS(4448), - [anon_sym_STAR] = ACTIONS(4450), - [anon_sym_SLASH] = ACTIONS(4448), - [anon_sym_PERCENT] = ACTIONS(4450), - [anon_sym_CARET] = ACTIONS(4450), - [anon_sym_PIPE] = ACTIONS(4448), - [anon_sym_AMP] = ACTIONS(4448), - [anon_sym_LT_LT] = ACTIONS(4450), - [anon_sym_GT_GT] = ACTIONS(4448), - [anon_sym_GT_GT_GT] = ACTIONS(4450), - [anon_sym_EQ_EQ] = ACTIONS(4450), - [anon_sym_BANG_EQ] = ACTIONS(4450), - [anon_sym_GT_EQ] = ACTIONS(4450), - [anon_sym_LT_EQ] = ACTIONS(4450), - [anon_sym_DOT] = ACTIONS(4448), - [anon_sym_EQ_GT] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4450), - [anon_sym_DOT_DOT] = ACTIONS(4450), - [anon_sym_and] = ACTIONS(4450), - [anon_sym_or] = ACTIONS(4448), - [anon_sym_AMP_AMP] = ACTIONS(4450), - [anon_sym_PIPE_PIPE] = ACTIONS(4450), - [sym_op_coalescing] = 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_group] = ACTIONS(4450), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4450), - [anon_sym_as] = ACTIONS(4450), - [anon_sym_is] = ACTIONS(4450), - [anon_sym_DASH_GT] = ACTIONS(4450), - [anon_sym_with] = ACTIONS(4450), - [aux_sym_preproc_if_token3] = ACTIONS(4450), - [aux_sym_preproc_else_token1] = ACTIONS(4450), - [aux_sym_preproc_elif_token1] = ACTIONS(4450), + [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), @@ -529938,8 +527649,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), }, [3569] = { + [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), @@ -529949,64 +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), - [sym__identifier_token] = ACTIONS(5926), - [anon_sym_extern] = ACTIONS(5926), - [anon_sym_alias] = ACTIONS(5926), - [anon_sym_global] = ACTIONS(5926), - [anon_sym_unsafe] = ACTIONS(5926), - [anon_sym_static] = ACTIONS(5926), - [anon_sym_LBRACK] = ACTIONS(5928), - [anon_sym_LPAREN] = ACTIONS(5928), - [anon_sym_event] = ACTIONS(5926), - [anon_sym_class] = ACTIONS(5926), - [anon_sym_ref] = ACTIONS(5926), - [anon_sym_struct] = ACTIONS(5926), - [anon_sym_enum] = ACTIONS(5926), - [anon_sym_interface] = ACTIONS(5926), - [anon_sym_delegate] = ACTIONS(5926), - [anon_sym_record] = ACTIONS(5926), - [anon_sym_public] = ACTIONS(5926), - [anon_sym_private] = ACTIONS(5926), - [anon_sym_readonly] = ACTIONS(5926), - [anon_sym_abstract] = ACTIONS(5926), - [anon_sym_async] = ACTIONS(5926), - [anon_sym_const] = ACTIONS(5926), - [anon_sym_file] = ACTIONS(5926), - [anon_sym_fixed] = ACTIONS(5926), - [anon_sym_internal] = ACTIONS(5926), - [anon_sym_new] = ACTIONS(5926), - [anon_sym_override] = ACTIONS(5926), - [anon_sym_partial] = ACTIONS(5926), - [anon_sym_protected] = ACTIONS(5926), - [anon_sym_required] = ACTIONS(5926), - [anon_sym_sealed] = ACTIONS(5926), - [anon_sym_virtual] = ACTIONS(5926), - [anon_sym_volatile] = ACTIONS(5926), - [anon_sym_where] = ACTIONS(5926), - [anon_sym_notnull] = ACTIONS(5926), - [anon_sym_unmanaged] = ACTIONS(5926), - [anon_sym_TILDE] = ACTIONS(5928), - [anon_sym_implicit] = ACTIONS(5926), - [anon_sym_explicit] = ACTIONS(5926), - [anon_sym_scoped] = ACTIONS(5926), - [anon_sym_var] = ACTIONS(5926), - [sym_predefined_type] = ACTIONS(5926), - [anon_sym_yield] = ACTIONS(5926), - [anon_sym_when] = ACTIONS(5926), - [anon_sym_from] = ACTIONS(5926), - [anon_sym_into] = ACTIONS(5926), - [anon_sym_join] = ACTIONS(5926), - [anon_sym_on] = ACTIONS(5926), - [anon_sym_equals] = ACTIONS(5926), - [anon_sym_let] = ACTIONS(5926), - [anon_sym_orderby] = ACTIONS(5926), - [anon_sym_ascending] = ACTIONS(5926), - [anon_sym_descending] = ACTIONS(5926), - [anon_sym_group] = ACTIONS(5926), - [anon_sym_by] = ACTIONS(5926), - [anon_sym_select] = ACTIONS(5926), - [sym_grit_metavariable] = ACTIONS(5928), - [aux_sym_preproc_if_token1] = ACTIONS(5928), + [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), @@ -530019,27 +527727,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3570] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -530049,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(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_on] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -530098,27 +527802,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3571] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -530128,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(5422), - [anon_sym_COMMA] = ACTIONS(4798), - [anon_sym_RBRACK] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4798), - [anon_sym_RBRACE] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -530177,27 +527877,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3572] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [sym_block] = STATE(1980), [sym_preproc_region] = STATE(3572), [sym_preproc_endregion] = STATE(3572), [sym_preproc_line] = STATE(3572), @@ -530207,43 +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(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_RBRACK] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4686), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -530256,6 +527952,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3573] = { + [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), @@ -530265,64 +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), - [sym__identifier_token] = ACTIONS(5930), - [anon_sym_extern] = ACTIONS(5930), - [anon_sym_alias] = ACTIONS(5930), - [anon_sym_global] = ACTIONS(5930), - [anon_sym_unsafe] = ACTIONS(5930), - [anon_sym_static] = ACTIONS(5930), - [anon_sym_LBRACK] = ACTIONS(5932), - [anon_sym_LPAREN] = ACTIONS(5932), - [anon_sym_event] = ACTIONS(5930), - [anon_sym_class] = ACTIONS(5930), - [anon_sym_ref] = ACTIONS(5930), - [anon_sym_struct] = ACTIONS(5930), - [anon_sym_enum] = ACTIONS(5930), - [anon_sym_interface] = ACTIONS(5930), - [anon_sym_delegate] = ACTIONS(5930), - [anon_sym_record] = ACTIONS(5930), - [anon_sym_public] = ACTIONS(5930), - [anon_sym_private] = ACTIONS(5930), - [anon_sym_readonly] = ACTIONS(5930), - [anon_sym_abstract] = ACTIONS(5930), - [anon_sym_async] = ACTIONS(5930), - [anon_sym_const] = ACTIONS(5930), - [anon_sym_file] = ACTIONS(5930), - [anon_sym_fixed] = ACTIONS(5930), - [anon_sym_internal] = ACTIONS(5930), - [anon_sym_new] = ACTIONS(5930), - [anon_sym_override] = ACTIONS(5930), - [anon_sym_partial] = ACTIONS(5930), - [anon_sym_protected] = ACTIONS(5930), - [anon_sym_required] = ACTIONS(5930), - [anon_sym_sealed] = ACTIONS(5930), - [anon_sym_virtual] = ACTIONS(5930), - [anon_sym_volatile] = ACTIONS(5930), - [anon_sym_where] = ACTIONS(5930), - [anon_sym_notnull] = ACTIONS(5930), - [anon_sym_unmanaged] = ACTIONS(5930), - [anon_sym_TILDE] = ACTIONS(5932), - [anon_sym_implicit] = ACTIONS(5930), - [anon_sym_explicit] = ACTIONS(5930), - [anon_sym_scoped] = ACTIONS(5930), - [anon_sym_var] = ACTIONS(5930), - [sym_predefined_type] = ACTIONS(5930), - [anon_sym_yield] = ACTIONS(5930), - [anon_sym_when] = ACTIONS(5930), - [anon_sym_from] = ACTIONS(5930), - [anon_sym_into] = ACTIONS(5930), - [anon_sym_join] = ACTIONS(5930), - [anon_sym_on] = ACTIONS(5930), - [anon_sym_equals] = ACTIONS(5930), - [anon_sym_let] = ACTIONS(5930), - [anon_sym_orderby] = ACTIONS(5930), - [anon_sym_ascending] = ACTIONS(5930), - [anon_sym_descending] = ACTIONS(5930), - [anon_sym_group] = ACTIONS(5930), - [anon_sym_by] = ACTIONS(5930), - [anon_sym_select] = ACTIONS(5930), - [sym_grit_metavariable] = ACTIONS(5932), - [aux_sym_preproc_if_token1] = ACTIONS(5932), + [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), @@ -530335,27 +528027,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3574] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -530365,43 +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(5422), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_RBRACK] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4760), - [anon_sym_RBRACE] = ACTIONS(4760), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -530414,27 +528102,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3575] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -530444,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(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4768), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -530493,6 +528176,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3576] = { + [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), @@ -530502,64 +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_SEMI] = ACTIONS(5934), - [anon_sym_LBRACK] = ACTIONS(5934), - [anon_sym_COLON] = ACTIONS(5934), - [anon_sym_COMMA] = ACTIONS(5934), - [anon_sym_RBRACK] = ACTIONS(5934), - [anon_sym_LPAREN] = ACTIONS(5934), - [anon_sym_RPAREN] = ACTIONS(5934), - [anon_sym_RBRACE] = ACTIONS(5934), - [anon_sym_LT] = ACTIONS(5936), - [anon_sym_GT] = ACTIONS(5936), - [anon_sym_in] = ACTIONS(5936), - [anon_sym_where] = ACTIONS(5934), - [anon_sym_QMARK] = ACTIONS(5936), - [anon_sym_BANG] = ACTIONS(5936), - [anon_sym_PLUS_PLUS] = ACTIONS(5934), - [anon_sym_DASH_DASH] = ACTIONS(5934), - [anon_sym_PLUS] = ACTIONS(5936), - [anon_sym_DASH] = ACTIONS(5936), - [anon_sym_STAR] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5936), - [anon_sym_PERCENT] = ACTIONS(5934), - [anon_sym_CARET] = ACTIONS(5934), - [anon_sym_PIPE] = ACTIONS(5936), - [anon_sym_AMP] = ACTIONS(5936), - [anon_sym_LT_LT] = ACTIONS(5934), - [anon_sym_GT_GT] = ACTIONS(5936), - [anon_sym_GT_GT_GT] = ACTIONS(5934), - [anon_sym_EQ_EQ] = ACTIONS(5934), - [anon_sym_BANG_EQ] = ACTIONS(5934), - [anon_sym_GT_EQ] = ACTIONS(5934), - [anon_sym_LT_EQ] = ACTIONS(5934), - [anon_sym_DOT] = ACTIONS(5936), - [anon_sym_EQ_GT] = ACTIONS(5934), - [anon_sym_switch] = ACTIONS(5934), - [anon_sym_DOT_DOT] = ACTIONS(5934), - [anon_sym_and] = ACTIONS(5934), - [anon_sym_or] = ACTIONS(5936), - [anon_sym_AMP_AMP] = ACTIONS(5934), - [anon_sym_PIPE_PIPE] = ACTIONS(5934), - [sym_op_coalescing] = ACTIONS(5934), - [anon_sym_from] = ACTIONS(5934), - [anon_sym_into] = ACTIONS(5934), - [anon_sym_join] = ACTIONS(5934), - [anon_sym_on] = ACTIONS(5934), - [anon_sym_equals] = ACTIONS(5934), - [anon_sym_let] = ACTIONS(5934), - [anon_sym_orderby] = ACTIONS(5934), - [anon_sym_group] = ACTIONS(5934), - [anon_sym_by] = ACTIONS(5934), - [anon_sym_select] = ACTIONS(5934), - [anon_sym_as] = ACTIONS(5934), - [anon_sym_is] = ACTIONS(5934), - [anon_sym_DASH_GT] = ACTIONS(5934), - [anon_sym_with] = ACTIONS(5934), - [sym_string_literal_encoding] = ACTIONS(5938), - [aux_sym_preproc_if_token3] = ACTIONS(5934), - [aux_sym_preproc_else_token1] = ACTIONS(5934), - [aux_sym_preproc_elif_token1] = ACTIONS(5934), + [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), @@ -530572,27 +528250,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3577] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -530602,43 +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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5871), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4780), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5875), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5877), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -530651,27 +528324,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3578] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -530681,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -530730,27 +528398,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3579] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -530760,43 +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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4786), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -530809,27 +528472,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3580] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -530839,43 +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(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(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [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(4400), - [anon_sym_EQ_GT] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [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(4402), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -530888,27 +528546,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3581] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -530918,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(5518), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_when] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -530967,27 +528620,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3582] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), [sym_preproc_region] = STATE(3582), [sym_preproc_endregion] = STATE(3582), [sym_preproc_line] = STATE(3582), @@ -530997,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5835), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5839), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_on] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(5841), - [anon_sym_is] = ACTIONS(5843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -531046,27 +528694,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3583] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -531076,43 +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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_on] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -531125,27 +528768,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3584] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -531155,76 +528792,71 @@ 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(5646), - [anon_sym_COLON] = ACTIONS(4768), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(4768), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4768), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3585] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -531234,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_EQ_GT] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_when] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [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(4468), - [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(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), @@ -531283,27 +528916,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3586] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -531313,42 +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(5646), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [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(5302), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [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(5274), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -531359,30 +528988,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), }, [3587] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -531392,76 +529014,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3587), [sym_preproc_define] = STATE(3587), [sym_preproc_undef] = STATE(3587), - [anon_sym_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(4786), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4786), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3588] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -531471,76 +529088,71 @@ 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(5646), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(4790), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4790), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [3589] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -531550,42 +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(5646), - [anon_sym_COLON] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5914), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5916), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5918), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -531596,30 +529210,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(4780), }, [3590] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -531629,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5835), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5839), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_on] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(5841), - [anon_sym_is] = ACTIONS(5843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -531678,27 +529286,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3591] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -531708,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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5835), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5839), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_on] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(5841), - [anon_sym_is] = ACTIONS(5843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -531757,27 +529360,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3592] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -531787,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -531836,27 +529434,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3593] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -531866,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5835), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5839), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_on] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(5841), - [anon_sym_is] = ACTIONS(5843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -531915,27 +529508,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3594] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -531945,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5841), - [anon_sym_is] = ACTIONS(5843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -531994,27 +529582,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3595] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -532024,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5841), - [anon_sym_is] = ACTIONS(5843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -532073,27 +529656,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3596] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -532103,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5841), - [anon_sym_is] = ACTIONS(5843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -532152,6 +529730,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3597] = { + [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), @@ -532161,64 +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), - [sym__identifier_token] = ACTIONS(5458), - [anon_sym_extern] = ACTIONS(5458), - [anon_sym_alias] = ACTIONS(5458), - [anon_sym_global] = ACTIONS(5458), - [anon_sym_unsafe] = ACTIONS(5458), - [anon_sym_static] = ACTIONS(5458), - [anon_sym_LBRACK] = ACTIONS(5460), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_event] = ACTIONS(5458), - [anon_sym_class] = ACTIONS(5458), - [anon_sym_ref] = ACTIONS(5458), - [anon_sym_struct] = ACTIONS(5458), - [anon_sym_enum] = ACTIONS(5458), - [anon_sym_interface] = ACTIONS(5458), - [anon_sym_delegate] = ACTIONS(5458), - [anon_sym_record] = ACTIONS(5458), - [anon_sym_public] = ACTIONS(5458), - [anon_sym_private] = ACTIONS(5458), - [anon_sym_readonly] = ACTIONS(5458), - [anon_sym_abstract] = ACTIONS(5458), - [anon_sym_async] = ACTIONS(5458), - [anon_sym_const] = ACTIONS(5458), - [anon_sym_file] = ACTIONS(5458), - [anon_sym_fixed] = ACTIONS(5458), - [anon_sym_internal] = ACTIONS(5458), - [anon_sym_new] = ACTIONS(5458), - [anon_sym_override] = ACTIONS(5458), - [anon_sym_partial] = ACTIONS(5458), - [anon_sym_protected] = ACTIONS(5458), - [anon_sym_required] = ACTIONS(5458), - [anon_sym_sealed] = ACTIONS(5458), - [anon_sym_virtual] = ACTIONS(5458), - [anon_sym_volatile] = ACTIONS(5458), - [anon_sym_where] = ACTIONS(5458), - [anon_sym_notnull] = ACTIONS(5458), - [anon_sym_unmanaged] = ACTIONS(5458), - [anon_sym_TILDE] = ACTIONS(5460), - [anon_sym_implicit] = ACTIONS(5458), - [anon_sym_explicit] = ACTIONS(5458), - [anon_sym_scoped] = ACTIONS(5458), - [anon_sym_var] = ACTIONS(5458), - [sym_predefined_type] = 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(5460), - [aux_sym_preproc_if_token1] = ACTIONS(5460), + [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), @@ -532231,27 +529804,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3598] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -532261,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(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5817), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -532310,27 +529878,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3599] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -532340,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -532389,7 +529952,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3600] = { - [sym_initializer_expression] = STATE(4174), + [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), @@ -532399,63 +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_SEMI] = ACTIONS(5764), - [anon_sym_LBRACK] = ACTIONS(5766), - [anon_sym_COLON] = ACTIONS(5764), - [anon_sym_COMMA] = ACTIONS(5764), - [anon_sym_RBRACK] = ACTIONS(5764), - [anon_sym_LPAREN] = ACTIONS(5764), - [anon_sym_RPAREN] = ACTIONS(5764), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(5764), - [anon_sym_LT] = ACTIONS(5769), - [anon_sym_GT] = ACTIONS(5769), - [anon_sym_in] = ACTIONS(5764), - [anon_sym_where] = ACTIONS(5764), - [anon_sym_QMARK] = ACTIONS(5769), - [anon_sym_BANG] = ACTIONS(5769), - [anon_sym_PLUS_PLUS] = ACTIONS(5764), - [anon_sym_DASH_DASH] = ACTIONS(5764), - [anon_sym_PLUS] = ACTIONS(5769), - [anon_sym_DASH] = ACTIONS(5769), - [anon_sym_STAR] = ACTIONS(5764), - [anon_sym_SLASH] = ACTIONS(5769), - [anon_sym_PERCENT] = ACTIONS(5764), - [anon_sym_CARET] = ACTIONS(5764), - [anon_sym_PIPE] = ACTIONS(5769), - [anon_sym_AMP] = ACTIONS(5769), - [anon_sym_LT_LT] = ACTIONS(5764), - [anon_sym_GT_GT] = ACTIONS(5769), - [anon_sym_GT_GT_GT] = ACTIONS(5764), - [anon_sym_EQ_EQ] = ACTIONS(5764), - [anon_sym_BANG_EQ] = ACTIONS(5764), - [anon_sym_GT_EQ] = ACTIONS(5764), - [anon_sym_LT_EQ] = ACTIONS(5764), - [anon_sym_DOT] = ACTIONS(5769), - [anon_sym_EQ_GT] = ACTIONS(5764), - [anon_sym_switch] = ACTIONS(5764), - [anon_sym_DOT_DOT] = ACTIONS(5764), - [anon_sym_and] = ACTIONS(5764), - [anon_sym_or] = ACTIONS(5769), - [anon_sym_AMP_AMP] = ACTIONS(5764), - [anon_sym_PIPE_PIPE] = ACTIONS(5764), - [sym_op_coalescing] = ACTIONS(5764), - [anon_sym_from] = ACTIONS(5764), - [anon_sym_join] = ACTIONS(5764), - [anon_sym_on] = ACTIONS(5764), - [anon_sym_equals] = ACTIONS(5764), - [anon_sym_let] = ACTIONS(5764), - [anon_sym_orderby] = ACTIONS(5764), - [anon_sym_group] = ACTIONS(5764), - [anon_sym_by] = ACTIONS(5764), - [anon_sym_select] = ACTIONS(5764), - [anon_sym_as] = ACTIONS(5764), - [anon_sym_is] = ACTIONS(5764), - [anon_sym_DASH_GT] = ACTIONS(5764), - [anon_sym_with] = ACTIONS(5764), - [aux_sym_preproc_if_token3] = ACTIONS(5764), - [aux_sym_preproc_else_token1] = ACTIONS(5764), - [aux_sym_preproc_elif_token1] = ACTIONS(5764), + [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), @@ -532468,27 +530026,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3601] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), [sym_preproc_region] = STATE(3601), [sym_preproc_endregion] = STATE(3601), [sym_preproc_line] = STATE(3601), @@ -532498,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4786), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_when] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -532547,6 +530100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3602] = { + [sym_type_argument_list] = STATE(3730), [sym_preproc_region] = STATE(3602), [sym_preproc_endregion] = STATE(3602), [sym_preproc_line] = STATE(3602), @@ -532556,64 +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), - [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(3700), - [anon_sym_LPAREN] = ACTIONS(5942), - [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(3700), - [anon_sym_where] = ACTIONS(3735), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_notnull] = ACTIONS(3735), - [anon_sym_unmanaged] = ACTIONS(3735), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_scoped] = ACTIONS(3735), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [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(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), @@ -532626,27 +530174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3603] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [sym_type_argument_list] = STATE(3927), [sym_preproc_region] = STATE(3603), [sym_preproc_endregion] = STATE(3603), [sym_preproc_line] = STATE(3603), @@ -532656,61 +530184,85 @@ 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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5841), - [anon_sym_is] = ACTIONS(5843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [3604] = { - [sym_attribute_list] = STATE(5039), - [sym__attribute_list] = STATE(4995), - [sym_modifier] = STATE(5141), - [sym_identifier] = STATE(6743), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_if_in_attribute_list] = STATE(5039), + [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), @@ -532720,58 +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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4624), - [aux_sym__class_declaration_initializer_repeat2] = STATE(4728), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(5568), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(5568), - [anon_sym_static] = ACTIONS(5568), - [anon_sym_LBRACK] = ACTIONS(5570), - [anon_sym_public] = ACTIONS(5568), - [anon_sym_private] = ACTIONS(5568), - [anon_sym_readonly] = ACTIONS(5568), - [anon_sym_abstract] = ACTIONS(5568), - [anon_sym_async] = ACTIONS(5568), - [anon_sym_const] = ACTIONS(5568), - [anon_sym_file] = ACTIONS(5574), - [anon_sym_fixed] = ACTIONS(5568), - [anon_sym_internal] = ACTIONS(5568), - [anon_sym_new] = ACTIONS(5568), - [anon_sym_override] = ACTIONS(5568), - [anon_sym_partial] = ACTIONS(5568), - [anon_sym_protected] = ACTIONS(5568), - [anon_sym_required] = ACTIONS(5568), - [anon_sym_sealed] = ACTIONS(5568), - [anon_sym_virtual] = ACTIONS(5568), - [anon_sym_volatile] = ACTIONS(5568), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [sym_accessor_get] = ACTIONS(5944), - [sym_accessor_set] = ACTIONS(5944), - [sym_accessor_add] = ACTIONS(5944), - [sym_accessor_remove] = ACTIONS(5944), - [sym_accessor_init] = ACTIONS(5944), - [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(5578), + [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), @@ -532784,27 +530322,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3605] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -532814,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(4742), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4742), - [aux_sym_preproc_else_token1] = ACTIONS(4742), - [aux_sym_preproc_elif_token1] = ACTIONS(4742), + [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), @@ -532861,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(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -532893,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -532940,8 +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(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), @@ -532951,64 +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_SEMI] = ACTIONS(4021), - [anon_sym_LBRACK] = ACTIONS(4021), - [anon_sym_COLON] = ACTIONS(4021), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_RBRACK] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4021), - [anon_sym_RPAREN] = ACTIONS(4021), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_LT] = ACTIONS(4014), - [anon_sym_GT] = ACTIONS(4014), - [anon_sym_in] = ACTIONS(4014), - [anon_sym_where] = ACTIONS(4021), - [anon_sym_QMARK] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4014), - [anon_sym_PLUS_PLUS] = ACTIONS(4021), - [anon_sym_DASH_DASH] = ACTIONS(4021), - [anon_sym_PLUS] = ACTIONS(4014), - [anon_sym_DASH] = ACTIONS(4014), - [anon_sym_STAR] = ACTIONS(4021), - [anon_sym_SLASH] = ACTIONS(4014), - [anon_sym_PERCENT] = ACTIONS(4021), - [anon_sym_CARET] = ACTIONS(4021), - [anon_sym_PIPE] = ACTIONS(4014), - [anon_sym_AMP] = ACTIONS(4014), - [anon_sym_LT_LT] = ACTIONS(4021), - [anon_sym_GT_GT] = ACTIONS(4014), - [anon_sym_GT_GT_GT] = ACTIONS(4021), - [anon_sym_EQ_EQ] = ACTIONS(4021), - [anon_sym_BANG_EQ] = ACTIONS(4021), - [anon_sym_GT_EQ] = ACTIONS(4021), - [anon_sym_LT_EQ] = ACTIONS(4021), - [anon_sym_DOT] = ACTIONS(4014), - [anon_sym_EQ_GT] = ACTIONS(4021), - [anon_sym_switch] = ACTIONS(4021), - [anon_sym_DOT_DOT] = ACTIONS(4021), - [anon_sym_and] = ACTIONS(4021), - [anon_sym_or] = ACTIONS(4014), - [anon_sym_AMP_AMP] = ACTIONS(4021), - [anon_sym_PIPE_PIPE] = ACTIONS(4021), - [sym_op_coalescing] = ACTIONS(4021), - [anon_sym_from] = ACTIONS(4021), - [anon_sym_into] = ACTIONS(4021), - [anon_sym_join] = ACTIONS(4021), - [anon_sym_on] = ACTIONS(4021), - [anon_sym_equals] = ACTIONS(4021), - [anon_sym_let] = ACTIONS(4021), - [anon_sym_orderby] = ACTIONS(4021), - [anon_sym_group] = ACTIONS(4021), - [anon_sym_by] = ACTIONS(4021), - [anon_sym_select] = ACTIONS(4021), - [anon_sym_as] = ACTIONS(4021), - [anon_sym_is] = ACTIONS(4021), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(4021), - [aux_sym_preproc_if_token3] = ACTIONS(4021), - [aux_sym_preproc_else_token1] = ACTIONS(4021), - [aux_sym_preproc_elif_token1] = ACTIONS(4021), + [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), @@ -533019,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(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -533051,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5841), - [anon_sym_is] = ACTIONS(5843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -533098,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(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [sym_initializer_expression] = STATE(4228), [sym_preproc_region] = STATE(3609), [sym_preproc_endregion] = STATE(3609), [sym_preproc_line] = STATE(3609), @@ -533130,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5841), - [anon_sym_is] = ACTIONS(5843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -533179,27 +530692,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3610] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -533209,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5946), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -533258,27 +530766,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3611] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -533288,43 +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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5839), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5841), - [anon_sym_is] = ACTIONS(5843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -533337,27 +530840,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3612] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -533367,43 +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), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5946), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -533416,27 +530914,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3613] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -533446,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5946), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -533495,27 +530988,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3614] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -533525,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5835), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5837), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5839), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_on] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(5841), - [anon_sym_is] = ACTIONS(5843), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -533574,27 +531062,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3615] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -533604,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5946), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -533653,27 +531136,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3616] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), + [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), @@ -533683,43 +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), - [aux_sym_initializer_expression_repeat1] = STATE(7193), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COLON] = ACTIONS(5948), - [anon_sym_COMMA] = ACTIONS(5950), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5825), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5678), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(5833), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -533732,27 +531210,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3617] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -533762,43 +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(4786), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), - [aux_sym_preproc_if_token3] = ACTIONS(4786), - [aux_sym_preproc_else_token1] = ACTIONS(4786), - [aux_sym_preproc_elif_token1] = ACTIONS(4786), + [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), @@ -533811,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), @@ -533820,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), @@ -533890,27 +531358,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3619] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -533920,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5946), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -533969,27 +531432,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3620] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -533999,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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5946), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -534048,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), @@ -534057,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(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_BANG] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3982), - [anon_sym_DASH_DASH] = ACTIONS(3982), - [anon_sym_PLUS] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3982), - [anon_sym_SLASH] = ACTIONS(3980), - [anon_sym_PERCENT] = ACTIONS(3982), - [anon_sym_CARET] = ACTIONS(3982), - [anon_sym_PIPE] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3980), - [anon_sym_LT_LT] = ACTIONS(3982), - [anon_sym_GT_GT] = ACTIONS(3980), - [anon_sym_GT_GT_GT] = ACTIONS(3982), - [anon_sym_EQ_EQ] = ACTIONS(3982), - [anon_sym_BANG_EQ] = ACTIONS(3982), - [anon_sym_GT_EQ] = ACTIONS(3982), - [anon_sym_LT_EQ] = ACTIONS(3982), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_EQ_GT] = ACTIONS(3982), - [anon_sym_switch] = ACTIONS(3982), - [anon_sym_DOT_DOT] = ACTIONS(3982), - [anon_sym_and] = ACTIONS(3982), - [anon_sym_or] = ACTIONS(3980), - [anon_sym_AMP_AMP] = ACTIONS(3982), - [anon_sym_PIPE_PIPE] = ACTIONS(3982), - [sym_op_coalescing] = 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), + [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), @@ -534125,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(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -534157,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = 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(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), @@ -534206,27 +531654,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3623] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -534236,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(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = 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(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), @@ -534285,27 +531728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3624] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [sym_initializer_expression] = STATE(4361), [sym_preproc_region] = STATE(3624), [sym_preproc_endregion] = STATE(3624), [sym_preproc_line] = STATE(3624), @@ -534315,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(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5817), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -534364,27 +531802,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3625] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -534394,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_by] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -534443,27 +531876,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3626] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -534473,43 +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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5954), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5946), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -534522,27 +531950,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3627] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -534552,43 +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(5422), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_RBRACK] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -534601,27 +532024,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3628] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -534631,43 +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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_by] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -534680,27 +532098,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3629] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -534710,43 +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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5796), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4756), - [anon_sym_or] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5800), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_by] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(5802), - [anon_sym_is] = ACTIONS(5804), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -534759,27 +532172,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3630] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -534789,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5861), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5865), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_equals] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(5867), - [anon_sym_is] = ACTIONS(5869), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -534838,27 +532246,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3631] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -534868,43 +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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5796), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4776), - [anon_sym_or] = ACTIONS(4776), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5800), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_by] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(5802), - [anon_sym_is] = ACTIONS(5804), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -534917,6 +532320,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -534926,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(3964), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_COLON] = ACTIONS(3964), - [anon_sym_COMMA] = ACTIONS(3964), - [anon_sym_RBRACK] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_RBRACE] = ACTIONS(3964), - [anon_sym_LT] = ACTIONS(3962), - [anon_sym_GT] = ACTIONS(3962), - [anon_sym_in] = ACTIONS(3962), - [anon_sym_where] = ACTIONS(3964), - [anon_sym_QMARK] = ACTIONS(3962), - [anon_sym_BANG] = ACTIONS(3962), - [anon_sym_PLUS_PLUS] = ACTIONS(3964), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_PLUS] = ACTIONS(3962), - [anon_sym_DASH] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3964), - [anon_sym_SLASH] = ACTIONS(3962), - [anon_sym_PERCENT] = ACTIONS(3964), - [anon_sym_CARET] = ACTIONS(3964), - [anon_sym_PIPE] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_LT_LT] = ACTIONS(3964), - [anon_sym_GT_GT] = ACTIONS(3962), - [anon_sym_GT_GT_GT] = ACTIONS(3964), - [anon_sym_EQ_EQ] = ACTIONS(3964), - [anon_sym_BANG_EQ] = ACTIONS(3964), - [anon_sym_GT_EQ] = ACTIONS(3964), - [anon_sym_LT_EQ] = ACTIONS(3964), - [anon_sym_DOT] = ACTIONS(3962), - [anon_sym_EQ_GT] = ACTIONS(3964), - [anon_sym_switch] = ACTIONS(3964), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_and] = ACTIONS(3964), - [anon_sym_or] = ACTIONS(3962), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [sym_op_coalescing] = ACTIONS(3964), - [anon_sym_from] = ACTIONS(3964), - [anon_sym_into] = ACTIONS(3964), - [anon_sym_join] = ACTIONS(3964), - [anon_sym_on] = ACTIONS(3964), - [anon_sym_equals] = ACTIONS(3964), - [anon_sym_let] = ACTIONS(3964), - [anon_sym_orderby] = ACTIONS(3964), - [anon_sym_group] = ACTIONS(3964), - [anon_sym_by] = ACTIONS(3964), - [anon_sym_select] = ACTIONS(3964), - [anon_sym_as] = ACTIONS(3964), - [anon_sym_is] = ACTIONS(3964), - [anon_sym_DASH_GT] = ACTIONS(3964), - [anon_sym_with] = ACTIONS(3964), - [aux_sym_preproc_if_token3] = ACTIONS(3964), - [aux_sym_preproc_else_token1] = ACTIONS(3964), - [aux_sym_preproc_elif_token1] = ACTIONS(3964), + [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), @@ -534996,27 +532394,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3633] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -535026,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(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5817), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -535075,6 +532468,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3634] = { + [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), @@ -535084,64 +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_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_BANG] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3910), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3910), - [anon_sym_CARET] = ACTIONS(3910), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3910), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3910), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_GT_EQ] = ACTIONS(3910), - [anon_sym_LT_EQ] = ACTIONS(3910), - [anon_sym_DOT] = ACTIONS(3913), - [anon_sym_EQ_GT] = ACTIONS(3910), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3910), - [anon_sym_DOT_DOT] = ACTIONS(3910), - [anon_sym_and] = ACTIONS(3910), - [anon_sym_or] = ACTIONS(3913), - [anon_sym_AMP_AMP] = ACTIONS(3910), - [anon_sym_PIPE_PIPE] = ACTIONS(3910), - [sym_op_coalescing] = 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), + [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), @@ -535154,6 +532542,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3635] = { + [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), @@ -535163,64 +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_SEMI] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_COLON] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4342), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_where] = ACTIONS(4342), - [anon_sym_QMARK] = ACTIONS(4340), - [anon_sym_BANG] = ACTIONS(4340), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4342), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4342), - [anon_sym_CARET] = ACTIONS(4342), - [anon_sym_PIPE] = ACTIONS(4340), - [anon_sym_AMP] = ACTIONS(4340), - [anon_sym_LT_LT] = ACTIONS(4342), - [anon_sym_GT_GT] = ACTIONS(4340), - [anon_sym_GT_GT_GT] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_EQ_GT] = ACTIONS(4342), - [anon_sym_switch] = ACTIONS(4342), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_and] = ACTIONS(4342), - [anon_sym_or] = ACTIONS(4340), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [sym_op_coalescing] = ACTIONS(4342), - [anon_sym_from] = ACTIONS(4342), - [anon_sym_into] = ACTIONS(4342), - [anon_sym_join] = ACTIONS(4342), - [anon_sym_on] = ACTIONS(4342), - [anon_sym_equals] = ACTIONS(4342), - [anon_sym_let] = ACTIONS(4342), - [anon_sym_orderby] = ACTIONS(4342), - [anon_sym_group] = ACTIONS(4342), - [anon_sym_by] = ACTIONS(4342), - [anon_sym_select] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4342), - [anon_sym_DASH_GT] = ACTIONS(4342), - [anon_sym_with] = ACTIONS(4342), - [aux_sym_preproc_if_token3] = ACTIONS(4342), - [aux_sym_preproc_else_token1] = ACTIONS(4342), - [aux_sym_preproc_elif_token1] = ACTIONS(4342), + [anon_sym_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), @@ -535233,27 +532616,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3636] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -535263,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_SEMI] = ACTIONS(4798), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4798), - [aux_sym_preproc_else_token1] = ACTIONS(4798), - [aux_sym_preproc_elif_token1] = ACTIONS(4798), + [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), @@ -535312,27 +532690,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3637] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -535342,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_SEMI] = ACTIONS(4772), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4772), - [aux_sym_preproc_else_token1] = ACTIONS(4772), - [aux_sym_preproc_elif_token1] = ACTIONS(4772), + [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), @@ -535389,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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(3638), [sym_preproc_endregion] = STATE(3638), [sym_preproc_line] = STATE(3638), @@ -535421,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(5422), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_RBRACK] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5520), - [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(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [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(4468), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -535470,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), @@ -535479,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(3970), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_COLON] = ACTIONS(3970), - [anon_sym_COMMA] = ACTIONS(3970), - [anon_sym_RBRACK] = ACTIONS(3970), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_RPAREN] = ACTIONS(3970), - [anon_sym_LBRACE] = ACTIONS(3970), - [anon_sym_RBRACE] = ACTIONS(3970), - [anon_sym_LT] = ACTIONS(3968), - [anon_sym_GT] = ACTIONS(3968), - [anon_sym_in] = ACTIONS(3968), - [anon_sym_where] = ACTIONS(3970), - [anon_sym_QMARK] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(3968), - [anon_sym_PLUS_PLUS] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(3970), - [anon_sym_PLUS] = ACTIONS(3968), - [anon_sym_DASH] = ACTIONS(3968), - [anon_sym_STAR] = ACTIONS(3970), - [anon_sym_SLASH] = ACTIONS(3968), - [anon_sym_PERCENT] = ACTIONS(3970), - [anon_sym_CARET] = ACTIONS(3970), - [anon_sym_PIPE] = ACTIONS(3968), - [anon_sym_AMP] = ACTIONS(3968), - [anon_sym_LT_LT] = ACTIONS(3970), - [anon_sym_GT_GT] = ACTIONS(3968), - [anon_sym_GT_GT_GT] = ACTIONS(3970), - [anon_sym_EQ_EQ] = ACTIONS(3970), - [anon_sym_BANG_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_DOT] = ACTIONS(3968), - [anon_sym_EQ_GT] = ACTIONS(3970), - [anon_sym_switch] = ACTIONS(3970), - [anon_sym_DOT_DOT] = ACTIONS(3970), - [anon_sym_and] = ACTIONS(3970), - [anon_sym_or] = ACTIONS(3968), - [anon_sym_AMP_AMP] = ACTIONS(3970), - [anon_sym_PIPE_PIPE] = ACTIONS(3970), - [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_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(3970), - [anon_sym_with] = ACTIONS(3970), - [aux_sym_preproc_if_token3] = ACTIONS(3970), - [aux_sym_preproc_else_token1] = ACTIONS(3970), - [aux_sym_preproc_elif_token1] = ACTIONS(3970), + [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), @@ -535547,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), @@ -535558,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(3978), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_COLON] = ACTIONS(3978), - [anon_sym_COMMA] = ACTIONS(3978), - [anon_sym_RBRACK] = ACTIONS(3978), - [anon_sym_LPAREN] = ACTIONS(3978), - [anon_sym_RPAREN] = ACTIONS(3978), - [anon_sym_LBRACE] = ACTIONS(3978), - [anon_sym_RBRACE] = ACTIONS(3978), - [anon_sym_LT] = ACTIONS(3976), - [anon_sym_GT] = ACTIONS(3976), - [anon_sym_in] = ACTIONS(3976), - [anon_sym_where] = ACTIONS(3978), - [anon_sym_QMARK] = ACTIONS(3976), - [anon_sym_BANG] = ACTIONS(3976), - [anon_sym_PLUS_PLUS] = ACTIONS(3978), - [anon_sym_DASH_DASH] = ACTIONS(3978), - [anon_sym_PLUS] = ACTIONS(3976), - [anon_sym_DASH] = ACTIONS(3976), - [anon_sym_STAR] = ACTIONS(3978), - [anon_sym_SLASH] = ACTIONS(3976), - [anon_sym_PERCENT] = ACTIONS(3978), - [anon_sym_CARET] = ACTIONS(3978), - [anon_sym_PIPE] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), - [anon_sym_LT_LT] = ACTIONS(3978), - [anon_sym_GT_GT] = ACTIONS(3976), - [anon_sym_GT_GT_GT] = ACTIONS(3978), - [anon_sym_EQ_EQ] = ACTIONS(3978), - [anon_sym_BANG_EQ] = ACTIONS(3978), - [anon_sym_GT_EQ] = ACTIONS(3978), - [anon_sym_LT_EQ] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3976), - [anon_sym_EQ_GT] = ACTIONS(3978), - [anon_sym_switch] = ACTIONS(3978), - [anon_sym_DOT_DOT] = ACTIONS(3978), - [anon_sym_and] = ACTIONS(3978), - [anon_sym_or] = ACTIONS(3976), - [anon_sym_AMP_AMP] = ACTIONS(3978), - [anon_sym_PIPE_PIPE] = ACTIONS(3978), - [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_group] = ACTIONS(3978), - [anon_sym_by] = ACTIONS(3978), - [anon_sym_select] = ACTIONS(3978), - [anon_sym_as] = ACTIONS(3978), - [anon_sym_is] = ACTIONS(3978), - [anon_sym_DASH_GT] = ACTIONS(3978), - [anon_sym_with] = ACTIONS(3978), - [aux_sym_preproc_if_token3] = ACTIONS(3978), - [aux_sym_preproc_else_token1] = ACTIONS(3978), - [aux_sym_preproc_elif_token1] = ACTIONS(3978), + [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), @@ -535628,27 +532986,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3641] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(3641), [sym_preproc_endregion] = STATE(3641), [sym_preproc_line] = STATE(3641), @@ -535658,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(5422), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_RBRACK] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4786), - [anon_sym_RBRACE] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -535707,27 +533060,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3642] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -535737,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(5422), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_RBRACK] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4772), - [anon_sym_RBRACE] = ACTIONS(4772), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -535784,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), @@ -535795,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(3974), - [anon_sym_LBRACK] = ACTIONS(3974), - [anon_sym_COLON] = ACTIONS(3974), - [anon_sym_COMMA] = ACTIONS(3974), - [anon_sym_RBRACK] = ACTIONS(3974), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_RPAREN] = ACTIONS(3974), - [anon_sym_LBRACE] = ACTIONS(3974), - [anon_sym_RBRACE] = ACTIONS(3974), - [anon_sym_LT] = ACTIONS(3972), - [anon_sym_GT] = ACTIONS(3972), - [anon_sym_in] = ACTIONS(3972), - [anon_sym_where] = ACTIONS(3974), - [anon_sym_QMARK] = ACTIONS(3972), - [anon_sym_BANG] = ACTIONS(3972), - [anon_sym_PLUS_PLUS] = ACTIONS(3974), - [anon_sym_DASH_DASH] = ACTIONS(3974), - [anon_sym_PLUS] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3972), - [anon_sym_STAR] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3972), - [anon_sym_PERCENT] = ACTIONS(3974), - [anon_sym_CARET] = ACTIONS(3974), - [anon_sym_PIPE] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3972), - [anon_sym_LT_LT] = ACTIONS(3974), - [anon_sym_GT_GT] = ACTIONS(3972), - [anon_sym_GT_GT_GT] = ACTIONS(3974), - [anon_sym_EQ_EQ] = ACTIONS(3974), - [anon_sym_BANG_EQ] = ACTIONS(3974), - [anon_sym_GT_EQ] = ACTIONS(3974), - [anon_sym_LT_EQ] = ACTIONS(3974), - [anon_sym_DOT] = ACTIONS(3972), - [anon_sym_EQ_GT] = ACTIONS(3974), - [anon_sym_switch] = ACTIONS(3974), - [anon_sym_DOT_DOT] = ACTIONS(3974), - [anon_sym_and] = ACTIONS(3974), - [anon_sym_or] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3974), - [anon_sym_PIPE_PIPE] = ACTIONS(3974), - [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_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(3974), - [anon_sym_with] = ACTIONS(3974), - [aux_sym_preproc_if_token3] = ACTIONS(3974), - [aux_sym_preproc_else_token1] = ACTIONS(3974), - [aux_sym_preproc_elif_token1] = ACTIONS(3974), + [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), @@ -535863,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(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -535895,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4782), - [anon_sym_QMARK] = ACTIONS(5853), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5855), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5794), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -535942,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(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -535974,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(5518), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5809), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5817), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -536021,29 +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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -536053,43 +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_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_RBRACK] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -536100,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(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -536132,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(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(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [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(4400), - [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_on] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -536179,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(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -536211,43 +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(5518), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_when] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [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(4468), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -536258,29 +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(5300), }, [3649] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), [sym_preproc_region] = STATE(3649), [sym_preproc_endregion] = STATE(3649), [sym_preproc_line] = STATE(3649), @@ -536290,43 +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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_equals] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -536339,27 +533652,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3650] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -536369,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_SEMI] = ACTIONS(4780), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4780), - [aux_sym_preproc_else_token1] = ACTIONS(4780), - [aux_sym_preproc_elif_token1] = ACTIONS(4780), + [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), @@ -536418,7 +533726,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3651] = { - [sym_initializer_expression] = STATE(4106), + [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), @@ -536428,63 +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_SEMI] = ACTIONS(5760), - [anon_sym_LBRACK] = ACTIONS(5760), - [anon_sym_COLON] = ACTIONS(5760), - [anon_sym_COMMA] = ACTIONS(5760), - [anon_sym_RBRACK] = ACTIONS(5760), - [anon_sym_LPAREN] = ACTIONS(5760), - [anon_sym_RPAREN] = ACTIONS(5760), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(5760), - [anon_sym_LT] = ACTIONS(5762), - [anon_sym_GT] = ACTIONS(5762), - [anon_sym_in] = ACTIONS(5760), - [anon_sym_where] = ACTIONS(5760), - [anon_sym_QMARK] = ACTIONS(5762), - [anon_sym_BANG] = ACTIONS(5762), - [anon_sym_PLUS_PLUS] = ACTIONS(5760), - [anon_sym_DASH_DASH] = ACTIONS(5760), - [anon_sym_PLUS] = ACTIONS(5762), - [anon_sym_DASH] = ACTIONS(5762), - [anon_sym_STAR] = ACTIONS(5760), - [anon_sym_SLASH] = ACTIONS(5762), - [anon_sym_PERCENT] = ACTIONS(5760), - [anon_sym_CARET] = ACTIONS(5760), - [anon_sym_PIPE] = ACTIONS(5762), - [anon_sym_AMP] = ACTIONS(5762), - [anon_sym_LT_LT] = ACTIONS(5760), - [anon_sym_GT_GT] = ACTIONS(5762), - [anon_sym_GT_GT_GT] = ACTIONS(5760), - [anon_sym_EQ_EQ] = ACTIONS(5760), - [anon_sym_BANG_EQ] = ACTIONS(5760), - [anon_sym_GT_EQ] = ACTIONS(5760), - [anon_sym_LT_EQ] = ACTIONS(5760), - [anon_sym_DOT] = ACTIONS(5762), - [anon_sym_EQ_GT] = ACTIONS(5760), - [anon_sym_switch] = ACTIONS(5760), - [anon_sym_DOT_DOT] = ACTIONS(5760), - [anon_sym_and] = ACTIONS(5760), - [anon_sym_or] = ACTIONS(5762), - [anon_sym_AMP_AMP] = ACTIONS(5760), - [anon_sym_PIPE_PIPE] = ACTIONS(5760), - [sym_op_coalescing] = ACTIONS(5760), - [anon_sym_from] = ACTIONS(5760), - [anon_sym_join] = ACTIONS(5760), - [anon_sym_on] = ACTIONS(5760), - [anon_sym_equals] = ACTIONS(5760), - [anon_sym_let] = ACTIONS(5760), - [anon_sym_orderby] = ACTIONS(5760), - [anon_sym_group] = ACTIONS(5760), - [anon_sym_by] = ACTIONS(5760), - [anon_sym_select] = ACTIONS(5760), - [anon_sym_as] = ACTIONS(5760), - [anon_sym_is] = ACTIONS(5760), - [anon_sym_DASH_GT] = ACTIONS(5760), - [anon_sym_with] = ACTIONS(5760), - [aux_sym_preproc_if_token3] = ACTIONS(5760), - [aux_sym_preproc_else_token1] = ACTIONS(5760), - [aux_sym_preproc_elif_token1] = ACTIONS(5760), + [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), @@ -536497,27 +533800,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3652] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -536527,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4774), - [anon_sym_QMARK] = ACTIONS(5853), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5855), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5794), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -536576,6 +533874,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3653] = { + [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), @@ -536585,64 +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_SEMI] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4290), - [anon_sym_COLON] = ACTIONS(4290), - [anon_sym_COMMA] = ACTIONS(4290), - [anon_sym_RBRACK] = ACTIONS(4290), - [anon_sym_LPAREN] = ACTIONS(4290), - [anon_sym_RPAREN] = ACTIONS(4290), - [anon_sym_LBRACE] = ACTIONS(4290), - [anon_sym_RBRACE] = ACTIONS(4290), - [anon_sym_LT] = ACTIONS(4288), - [anon_sym_GT] = ACTIONS(4288), - [anon_sym_in] = ACTIONS(4288), - [anon_sym_where] = ACTIONS(4290), - [anon_sym_QMARK] = ACTIONS(4288), - [anon_sym_BANG] = ACTIONS(4288), - [anon_sym_PLUS_PLUS] = ACTIONS(4290), - [anon_sym_DASH_DASH] = ACTIONS(4290), - [anon_sym_PLUS] = ACTIONS(4288), - [anon_sym_DASH] = ACTIONS(4288), - [anon_sym_STAR] = ACTIONS(4290), - [anon_sym_SLASH] = ACTIONS(4288), - [anon_sym_PERCENT] = ACTIONS(4290), - [anon_sym_CARET] = ACTIONS(4290), - [anon_sym_PIPE] = ACTIONS(4288), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_LT_LT] = ACTIONS(4290), - [anon_sym_GT_GT] = ACTIONS(4288), - [anon_sym_GT_GT_GT] = ACTIONS(4290), - [anon_sym_EQ_EQ] = ACTIONS(4290), - [anon_sym_BANG_EQ] = ACTIONS(4290), - [anon_sym_GT_EQ] = ACTIONS(4290), - [anon_sym_LT_EQ] = ACTIONS(4290), - [anon_sym_DOT] = ACTIONS(4288), - [anon_sym_EQ_GT] = ACTIONS(4290), - [anon_sym_switch] = ACTIONS(4290), - [anon_sym_DOT_DOT] = ACTIONS(4290), - [anon_sym_and] = ACTIONS(4290), - [anon_sym_or] = ACTIONS(4288), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_PIPE_PIPE] = ACTIONS(4290), - [sym_op_coalescing] = ACTIONS(4290), - [anon_sym_from] = ACTIONS(4290), - [anon_sym_into] = ACTIONS(4290), - [anon_sym_join] = ACTIONS(4290), - [anon_sym_on] = ACTIONS(4290), - [anon_sym_equals] = ACTIONS(4290), - [anon_sym_let] = ACTIONS(4290), - [anon_sym_orderby] = ACTIONS(4290), - [anon_sym_group] = ACTIONS(4290), - [anon_sym_by] = ACTIONS(4290), - [anon_sym_select] = ACTIONS(4290), - [anon_sym_as] = ACTIONS(4290), - [anon_sym_is] = ACTIONS(4290), - [anon_sym_DASH_GT] = ACTIONS(4290), - [anon_sym_with] = ACTIONS(4290), - [aux_sym_preproc_if_token3] = ACTIONS(4290), - [aux_sym_preproc_else_token1] = ACTIONS(4290), - [aux_sym_preproc_elif_token1] = ACTIONS(4290), + [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), @@ -536655,27 +533948,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3654] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -536685,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(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -536734,27 +534022,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3655] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -536764,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4766), - [anon_sym_QMARK] = ACTIONS(5853), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5855), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5794), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -536813,27 +534096,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3656] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), [sym_preproc_region] = STATE(3656), [sym_preproc_endregion] = STATE(3656), [sym_preproc_line] = STATE(3656), @@ -536843,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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4748), - [anon_sym_QMARK] = ACTIONS(5853), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5855), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5794), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [anon_sym_EQ] = ACTIONS(6366), + [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_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), @@ -536892,27 +534170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3657] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [sym_initializer_expression] = STATE(4325), [sym_preproc_region] = STATE(3657), [sym_preproc_endregion] = STATE(3657), [sym_preproc_line] = STATE(3657), @@ -536922,43 +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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -536971,6 +534244,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3658] = { + [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), @@ -536980,64 +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), - [anon_sym_SEMI] = ACTIONS(5956), - [anon_sym_LBRACK] = ACTIONS(5956), - [anon_sym_COLON] = ACTIONS(5956), - [anon_sym_COMMA] = ACTIONS(5956), - [anon_sym_RBRACK] = ACTIONS(5956), - [anon_sym_LPAREN] = ACTIONS(5956), - [anon_sym_RPAREN] = ACTIONS(5956), - [anon_sym_LBRACE] = ACTIONS(5956), - [anon_sym_RBRACE] = ACTIONS(5956), - [anon_sym_LT] = ACTIONS(5958), - [anon_sym_GT] = ACTIONS(5958), - [anon_sym_in] = ACTIONS(5958), - [anon_sym_where] = ACTIONS(5956), - [anon_sym_QMARK] = ACTIONS(5958), - [anon_sym_BANG] = ACTIONS(5958), - [anon_sym_PLUS_PLUS] = ACTIONS(5956), - [anon_sym_DASH_DASH] = ACTIONS(5956), - [anon_sym_PLUS] = ACTIONS(5958), - [anon_sym_DASH] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(5956), - [anon_sym_SLASH] = ACTIONS(5958), - [anon_sym_PERCENT] = ACTIONS(5956), - [anon_sym_CARET] = ACTIONS(5956), - [anon_sym_PIPE] = ACTIONS(5958), - [anon_sym_AMP] = ACTIONS(5958), - [anon_sym_LT_LT] = ACTIONS(5956), - [anon_sym_GT_GT] = ACTIONS(5958), - [anon_sym_GT_GT_GT] = ACTIONS(5956), - [anon_sym_EQ_EQ] = ACTIONS(5956), - [anon_sym_BANG_EQ] = ACTIONS(5956), - [anon_sym_GT_EQ] = ACTIONS(5956), - [anon_sym_LT_EQ] = ACTIONS(5956), - [anon_sym_DOT] = ACTIONS(5958), - [anon_sym_EQ_GT] = ACTIONS(5956), - [anon_sym_switch] = ACTIONS(5956), - [anon_sym_DOT_DOT] = ACTIONS(5956), - [anon_sym_and] = ACTIONS(5956), - [anon_sym_or] = ACTIONS(5958), - [anon_sym_AMP_AMP] = ACTIONS(5956), - [anon_sym_PIPE_PIPE] = ACTIONS(5956), - [sym_op_coalescing] = ACTIONS(5956), - [anon_sym_from] = ACTIONS(5956), - [anon_sym_into] = ACTIONS(5956), - [anon_sym_join] = ACTIONS(5956), - [anon_sym_on] = ACTIONS(5956), - [anon_sym_equals] = ACTIONS(5956), - [anon_sym_let] = ACTIONS(5956), - [anon_sym_orderby] = ACTIONS(5956), - [anon_sym_group] = ACTIONS(5956), - [anon_sym_by] = ACTIONS(5956), - [anon_sym_select] = ACTIONS(5956), - [anon_sym_as] = ACTIONS(5956), - [anon_sym_is] = ACTIONS(5956), - [anon_sym_DASH_GT] = ACTIONS(5956), - [anon_sym_with] = ACTIONS(5956), - [aux_sym_preproc_if_token3] = ACTIONS(5956), - [aux_sym_preproc_else_token1] = ACTIONS(5956), - [aux_sym_preproc_elif_token1] = ACTIONS(5956), + [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), @@ -537050,27 +534318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3659] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [sym_initializer_expression] = STATE(4379), [sym_preproc_region] = STATE(3659), [sym_preproc_endregion] = STATE(3659), [sym_preproc_line] = STATE(3659), @@ -537080,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(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -537129,27 +534392,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3660] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -537159,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5802), - [anon_sym_is] = ACTIONS(5804), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -537208,27 +534466,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3661] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -537238,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(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -537287,27 +534540,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3662] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -537317,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5802), - [anon_sym_is] = ACTIONS(5804), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -537366,27 +534614,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3663] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), [sym_preproc_region] = STATE(3663), [sym_preproc_endregion] = STATE(3663), [sym_preproc_line] = STATE(3663), @@ -537396,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5802), - [anon_sym_is] = ACTIONS(5804), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -537445,27 +534688,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3664] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -537475,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5802), - [anon_sym_is] = ACTIONS(5804), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -537524,27 +534762,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3665] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -537554,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5794), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -537603,27 +534836,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3666] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -537633,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5794), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -537680,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(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -537712,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5796), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5800), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_by] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(5802), - [anon_sym_is] = ACTIONS(5804), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -537761,27 +534984,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3668] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -537791,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5802), - [anon_sym_is] = ACTIONS(5804), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -537840,6 +535058,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3669] = { + [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), @@ -537849,64 +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_SEMI] = ACTIONS(4460), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_COLON] = ACTIONS(4460), - [anon_sym_COMMA] = ACTIONS(4460), - [anon_sym_RBRACK] = ACTIONS(4460), - [anon_sym_LPAREN] = ACTIONS(4460), - [anon_sym_RPAREN] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4460), - [anon_sym_RBRACE] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4458), - [anon_sym_GT] = ACTIONS(4458), - [anon_sym_in] = ACTIONS(4458), - [anon_sym_where] = ACTIONS(4460), - [anon_sym_QMARK] = ACTIONS(4458), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_PLUS_PLUS] = ACTIONS(4460), - [anon_sym_DASH_DASH] = ACTIONS(4460), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4458), - [anon_sym_PERCENT] = ACTIONS(4460), - [anon_sym_CARET] = ACTIONS(4460), - [anon_sym_PIPE] = ACTIONS(4458), - [anon_sym_AMP] = ACTIONS(4458), - [anon_sym_LT_LT] = ACTIONS(4460), - [anon_sym_GT_GT] = ACTIONS(4458), - [anon_sym_GT_GT_GT] = ACTIONS(4460), - [anon_sym_EQ_EQ] = ACTIONS(4460), - [anon_sym_BANG_EQ] = ACTIONS(4460), - [anon_sym_GT_EQ] = ACTIONS(4460), - [anon_sym_LT_EQ] = ACTIONS(4460), - [anon_sym_DOT] = ACTIONS(4458), - [anon_sym_EQ_GT] = ACTIONS(4460), - [anon_sym_switch] = ACTIONS(4460), - [anon_sym_DOT_DOT] = ACTIONS(4460), - [anon_sym_and] = ACTIONS(4460), - [anon_sym_or] = ACTIONS(4458), - [anon_sym_AMP_AMP] = ACTIONS(4460), - [anon_sym_PIPE_PIPE] = ACTIONS(4460), - [sym_op_coalescing] = ACTIONS(4460), - [anon_sym_from] = ACTIONS(4460), - [anon_sym_into] = ACTIONS(4460), - [anon_sym_join] = ACTIONS(4460), - [anon_sym_on] = ACTIONS(4460), - [anon_sym_equals] = ACTIONS(4460), - [anon_sym_let] = ACTIONS(4460), - [anon_sym_orderby] = ACTIONS(4460), - [anon_sym_group] = ACTIONS(4460), - [anon_sym_by] = ACTIONS(4460), - [anon_sym_select] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4460), - [anon_sym_is] = ACTIONS(4460), - [anon_sym_DASH_GT] = ACTIONS(4460), - [anon_sym_with] = ACTIONS(4460), - [aux_sym_preproc_if_token3] = ACTIONS(4460), - [aux_sym_preproc_else_token1] = ACTIONS(4460), - [aux_sym_preproc_elif_token1] = ACTIONS(4460), + [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), @@ -537919,27 +535132,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3670] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -537949,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5794), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -537998,27 +535206,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3671] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -538028,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5802), - [anon_sym_is] = ACTIONS(5804), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -538077,6 +535280,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3672] = { + [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), @@ -538086,64 +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_SEMI] = ACTIONS(4359), - [anon_sym_LBRACK] = ACTIONS(4359), - [anon_sym_COLON] = ACTIONS(4359), - [anon_sym_COMMA] = ACTIONS(4359), - [anon_sym_RBRACK] = ACTIONS(4359), - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_RPAREN] = ACTIONS(4359), - [anon_sym_LBRACE] = ACTIONS(4359), - [anon_sym_RBRACE] = ACTIONS(4359), - [anon_sym_LT] = ACTIONS(4357), - [anon_sym_GT] = ACTIONS(4357), - [anon_sym_in] = ACTIONS(4357), - [anon_sym_where] = ACTIONS(4359), - [anon_sym_QMARK] = ACTIONS(4357), - [anon_sym_BANG] = ACTIONS(4357), - [anon_sym_PLUS_PLUS] = ACTIONS(4359), - [anon_sym_DASH_DASH] = ACTIONS(4359), - [anon_sym_PLUS] = ACTIONS(4357), - [anon_sym_DASH] = ACTIONS(4357), - [anon_sym_STAR] = ACTIONS(4359), - [anon_sym_SLASH] = ACTIONS(4357), - [anon_sym_PERCENT] = ACTIONS(4359), - [anon_sym_CARET] = ACTIONS(4359), - [anon_sym_PIPE] = ACTIONS(4357), - [anon_sym_AMP] = ACTIONS(4357), - [anon_sym_LT_LT] = ACTIONS(4359), - [anon_sym_GT_GT] = ACTIONS(4357), - [anon_sym_GT_GT_GT] = ACTIONS(4359), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_GT_EQ] = ACTIONS(4359), - [anon_sym_LT_EQ] = ACTIONS(4359), - [anon_sym_DOT] = ACTIONS(4357), - [anon_sym_EQ_GT] = ACTIONS(4359), - [anon_sym_switch] = ACTIONS(4359), - [anon_sym_DOT_DOT] = ACTIONS(4359), - [anon_sym_and] = ACTIONS(4359), - [anon_sym_or] = ACTIONS(4357), - [anon_sym_AMP_AMP] = ACTIONS(4359), - [anon_sym_PIPE_PIPE] = ACTIONS(4359), - [sym_op_coalescing] = ACTIONS(4359), - [anon_sym_from] = ACTIONS(4359), - [anon_sym_into] = ACTIONS(4359), - [anon_sym_join] = ACTIONS(4359), - [anon_sym_on] = ACTIONS(4359), - [anon_sym_equals] = ACTIONS(4359), - [anon_sym_let] = ACTIONS(4359), - [anon_sym_orderby] = ACTIONS(4359), - [anon_sym_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(4359), - [anon_sym_with] = ACTIONS(4359), - [aux_sym_preproc_if_token3] = ACTIONS(4359), - [aux_sym_preproc_else_token1] = ACTIONS(4359), - [aux_sym_preproc_elif_token1] = ACTIONS(4359), + [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), @@ -538156,27 +535354,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3673] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -538186,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5794), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -538235,27 +535428,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3674] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -538265,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5794), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -538314,27 +535502,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3675] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -538344,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -538391,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_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6370), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6010), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -538423,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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(5567), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(4811), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(5444), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5446), - [anon_sym_delegate] = ACTIONS(3709), - [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(5472), - [anon_sym_params] = ACTIONS(5450), - [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(5452), + [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), @@ -538472,27 +535650,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3677] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -538502,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -538551,27 +535724,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3678] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -538581,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5855), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5794), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -538630,27 +535798,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3679] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -538660,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_in] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -538707,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(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -538739,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4768), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_when] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -538788,27 +535946,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3681] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -538818,43 +535970,43 @@ 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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5800), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5802), - [anon_sym_is] = ACTIONS(5804), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -538865,29 +536017,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), }, [3682] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), + [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), @@ -538897,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4800), - [anon_sym_QMARK] = ACTIONS(5853), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5792), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5855), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5794), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -538944,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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -538976,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(5422), - [anon_sym_COLON] = ACTIONS(4798), - [anon_sym_COMMA] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4798), - [anon_sym_RBRACE] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5825), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5829), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(5833), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -539023,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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -539055,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(5422), - [anon_sym_COLON] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4742), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5825), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5829), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(5833), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -539104,7 +536242,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3685] = { - [sym_initializer_expression] = STATE(4158), + [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), @@ -539114,63 +536266,43 @@ 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_SEMI] = ACTIONS(5773), - [anon_sym_LBRACK] = ACTIONS(5773), - [anon_sym_COLON] = ACTIONS(5773), - [anon_sym_COMMA] = ACTIONS(5773), - [anon_sym_RBRACK] = ACTIONS(5773), - [anon_sym_LPAREN] = ACTIONS(5773), - [anon_sym_RPAREN] = ACTIONS(5773), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(5773), - [anon_sym_LT] = ACTIONS(5775), - [anon_sym_GT] = ACTIONS(5775), - [anon_sym_in] = ACTIONS(5773), - [anon_sym_where] = ACTIONS(5773), - [anon_sym_QMARK] = ACTIONS(5775), - [anon_sym_BANG] = ACTIONS(5775), - [anon_sym_PLUS_PLUS] = ACTIONS(5773), - [anon_sym_DASH_DASH] = ACTIONS(5773), - [anon_sym_PLUS] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(5775), - [anon_sym_STAR] = ACTIONS(5773), - [anon_sym_SLASH] = ACTIONS(5775), - [anon_sym_PERCENT] = ACTIONS(5773), - [anon_sym_CARET] = ACTIONS(5773), - [anon_sym_PIPE] = ACTIONS(5775), - [anon_sym_AMP] = ACTIONS(5775), - [anon_sym_LT_LT] = ACTIONS(5773), - [anon_sym_GT_GT] = ACTIONS(5775), - [anon_sym_GT_GT_GT] = ACTIONS(5773), - [anon_sym_EQ_EQ] = ACTIONS(5773), - [anon_sym_BANG_EQ] = ACTIONS(5773), - [anon_sym_GT_EQ] = ACTIONS(5773), - [anon_sym_LT_EQ] = ACTIONS(5773), - [anon_sym_DOT] = ACTIONS(5775), - [anon_sym_EQ_GT] = ACTIONS(5773), - [anon_sym_switch] = ACTIONS(5773), - [anon_sym_DOT_DOT] = ACTIONS(5773), - [anon_sym_and] = ACTIONS(5773), - [anon_sym_or] = ACTIONS(5775), - [anon_sym_AMP_AMP] = ACTIONS(5773), - [anon_sym_PIPE_PIPE] = ACTIONS(5773), - [sym_op_coalescing] = ACTIONS(5773), - [anon_sym_from] = ACTIONS(5773), - [anon_sym_join] = ACTIONS(5773), - [anon_sym_on] = ACTIONS(5773), - [anon_sym_equals] = ACTIONS(5773), - [anon_sym_let] = ACTIONS(5773), - [anon_sym_orderby] = ACTIONS(5773), - [anon_sym_group] = ACTIONS(5773), - [anon_sym_by] = ACTIONS(5773), - [anon_sym_select] = ACTIONS(5773), - [anon_sym_as] = ACTIONS(5773), - [anon_sym_is] = ACTIONS(5773), - [anon_sym_DASH_GT] = ACTIONS(5773), - [anon_sym_with] = ACTIONS(5773), - [aux_sym_preproc_if_token3] = ACTIONS(5773), - [aux_sym_preproc_else_token1] = ACTIONS(5773), - [aux_sym_preproc_elif_token1] = ACTIONS(5773), + [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), @@ -539181,29 +536313,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), }, [3686] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -539213,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_SEMI] = ACTIONS(4768), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), - [aux_sym_preproc_if_token3] = ACTIONS(4768), - [aux_sym_preproc_else_token1] = ACTIONS(4768), - [aux_sym_preproc_elif_token1] = ACTIONS(4768), + [anon_sym_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), @@ -539260,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(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -539292,42 +536414,43 @@ 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(5646), - [anon_sym_COLON] = ACTIONS(4776), - [anon_sym_COMMA] = ACTIONS(4776), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5914), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5916), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5918), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -539338,30 +536461,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(4776), + [sym_interpolation_close_brace] = ACTIONS(5308), }, [3688] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -539371,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_SEMI] = ACTIONS(4764), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4764), - [aux_sym_preproc_else_token1] = ACTIONS(4764), - [aux_sym_preproc_elif_token1] = ACTIONS(4764), + [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), @@ -539420,27 +536538,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3689] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -539450,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(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4760), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -539499,27 +536612,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3690] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -539529,43 +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), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -539578,27 +536686,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3691] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -539608,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -539657,27 +536760,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3692] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -539687,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -539736,27 +536833,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3693] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -539766,43 +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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -539815,27 +536906,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3694] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -539845,43 +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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -539894,27 +536979,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3695] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -539924,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -539973,6 +537052,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3696] = { + [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), @@ -539982,64 +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_SEMI] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5960), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_COMMA] = ACTIONS(5960), - [anon_sym_RBRACK] = ACTIONS(5960), - [anon_sym_LPAREN] = ACTIONS(5960), - [anon_sym_RPAREN] = ACTIONS(5960), - [anon_sym_LBRACE] = ACTIONS(5960), - [anon_sym_RBRACE] = ACTIONS(5960), - [anon_sym_LT] = ACTIONS(5962), - [anon_sym_GT] = ACTIONS(5962), - [anon_sym_in] = ACTIONS(5962), - [anon_sym_where] = ACTIONS(5960), - [anon_sym_QMARK] = ACTIONS(5962), - [anon_sym_BANG] = ACTIONS(5962), - [anon_sym_PLUS_PLUS] = ACTIONS(5960), - [anon_sym_DASH_DASH] = ACTIONS(5960), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5960), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_PERCENT] = ACTIONS(5960), - [anon_sym_CARET] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5962), - [anon_sym_AMP] = ACTIONS(5962), - [anon_sym_LT_LT] = ACTIONS(5960), - [anon_sym_GT_GT] = ACTIONS(5962), - [anon_sym_GT_GT_GT] = ACTIONS(5960), - [anon_sym_EQ_EQ] = ACTIONS(5960), - [anon_sym_BANG_EQ] = ACTIONS(5960), - [anon_sym_GT_EQ] = ACTIONS(5960), - [anon_sym_LT_EQ] = ACTIONS(5960), - [anon_sym_DOT] = ACTIONS(5962), - [anon_sym_EQ_GT] = ACTIONS(5960), - [anon_sym_switch] = ACTIONS(5960), - [anon_sym_DOT_DOT] = ACTIONS(5960), - [anon_sym_and] = ACTIONS(5960), - [anon_sym_or] = ACTIONS(5962), - [anon_sym_AMP_AMP] = ACTIONS(5960), - [anon_sym_PIPE_PIPE] = ACTIONS(5960), - [sym_op_coalescing] = ACTIONS(5960), - [anon_sym_from] = ACTIONS(5960), - [anon_sym_into] = ACTIONS(5960), - [anon_sym_join] = ACTIONS(5960), - [anon_sym_on] = ACTIONS(5960), - [anon_sym_equals] = ACTIONS(5960), - [anon_sym_let] = ACTIONS(5960), - [anon_sym_orderby] = ACTIONS(5960), - [anon_sym_group] = ACTIONS(5960), - [anon_sym_by] = ACTIONS(5960), - [anon_sym_select] = ACTIONS(5960), - [anon_sym_as] = ACTIONS(5960), - [anon_sym_is] = ACTIONS(5960), - [anon_sym_DASH_GT] = ACTIONS(5960), - [anon_sym_with] = ACTIONS(5960), - [aux_sym_preproc_if_token3] = ACTIONS(5960), - [aux_sym_preproc_else_token1] = ACTIONS(5960), - [aux_sym_preproc_elif_token1] = ACTIONS(5960), + [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), @@ -540052,27 +537125,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3697] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -540082,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -540131,27 +537198,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3698] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -540161,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -540210,27 +537271,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3699] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -540240,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -540289,27 +537344,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3700] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -540319,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -540368,27 +537417,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3701] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -540398,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -540447,27 +537490,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3702] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -540477,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -540526,6 +537563,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3703] = { + [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), @@ -540535,64 +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_SEMI] = ACTIONS(5964), - [anon_sym_LBRACK] = ACTIONS(5964), - [anon_sym_COLON] = ACTIONS(5964), - [anon_sym_COMMA] = ACTIONS(5964), - [anon_sym_RBRACK] = ACTIONS(5964), - [anon_sym_LPAREN] = ACTIONS(5964), - [anon_sym_RPAREN] = ACTIONS(5964), - [anon_sym_RBRACE] = ACTIONS(5964), - [anon_sym_LT] = ACTIONS(5966), - [anon_sym_GT] = ACTIONS(5966), - [anon_sym_in] = ACTIONS(5966), - [anon_sym_where] = ACTIONS(5964), - [anon_sym_QMARK] = ACTIONS(5966), - [anon_sym_BANG] = ACTIONS(5966), - [anon_sym_PLUS_PLUS] = ACTIONS(5964), - [anon_sym_DASH_DASH] = ACTIONS(5964), - [anon_sym_PLUS] = ACTIONS(5966), - [anon_sym_DASH] = ACTIONS(5966), - [anon_sym_STAR] = ACTIONS(5964), - [anon_sym_SLASH] = ACTIONS(5966), - [anon_sym_PERCENT] = ACTIONS(5964), - [anon_sym_CARET] = ACTIONS(5964), - [anon_sym_PIPE] = ACTIONS(5966), - [anon_sym_AMP] = ACTIONS(5966), - [anon_sym_LT_LT] = ACTIONS(5964), - [anon_sym_GT_GT] = ACTIONS(5966), - [anon_sym_GT_GT_GT] = ACTIONS(5964), - [anon_sym_EQ_EQ] = ACTIONS(5964), - [anon_sym_BANG_EQ] = ACTIONS(5964), - [anon_sym_GT_EQ] = ACTIONS(5964), - [anon_sym_LT_EQ] = ACTIONS(5964), - [anon_sym_DOT] = ACTIONS(5966), - [anon_sym_EQ_GT] = ACTIONS(5964), - [anon_sym_switch] = ACTIONS(5964), - [anon_sym_DOT_DOT] = ACTIONS(5964), - [anon_sym_and] = ACTIONS(5964), - [anon_sym_or] = ACTIONS(5966), - [anon_sym_AMP_AMP] = ACTIONS(5964), - [anon_sym_PIPE_PIPE] = ACTIONS(5964), - [sym_op_coalescing] = ACTIONS(5964), - [anon_sym_from] = ACTIONS(5964), - [anon_sym_into] = ACTIONS(5964), - [anon_sym_join] = ACTIONS(5964), - [anon_sym_on] = ACTIONS(5964), - [anon_sym_equals] = ACTIONS(5964), - [anon_sym_let] = ACTIONS(5964), - [anon_sym_orderby] = ACTIONS(5964), - [anon_sym_group] = ACTIONS(5964), - [anon_sym_by] = ACTIONS(5964), - [anon_sym_select] = ACTIONS(5964), - [anon_sym_as] = ACTIONS(5964), - [anon_sym_is] = ACTIONS(5964), - [anon_sym_DASH_GT] = ACTIONS(5964), - [anon_sym_with] = ACTIONS(5964), - [aux_sym_raw_string_literal_token1] = ACTIONS(5968), - [aux_sym_preproc_if_token3] = ACTIONS(5964), - [aux_sym_preproc_else_token1] = ACTIONS(5964), - [aux_sym_preproc_elif_token1] = ACTIONS(5964), + [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), @@ -540605,27 +537636,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3704] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -540635,43 +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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -540684,27 +537709,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3705] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -540714,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -540763,27 +537782,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3706] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -540793,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5796), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5800), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_by] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(5802), - [anon_sym_is] = ACTIONS(5804), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -540842,27 +537855,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3707] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -540872,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(5422), - [anon_sym_COLON] = ACTIONS(4772), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4772), - [anon_sym_RBRACE] = ACTIONS(4772), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5825), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5829), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(5833), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -540921,27 +537928,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3708] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -540951,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(5518), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_when] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -541000,27 +538001,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3709] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -541030,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -541079,27 +538074,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3710] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -541109,43 +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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5861), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5865), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_equals] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(5867), - [anon_sym_is] = ACTIONS(5869), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -541158,27 +538147,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3711] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -541188,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5861), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5865), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_equals] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(5867), - [anon_sym_is] = ACTIONS(5869), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -541237,27 +538220,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3712] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -541267,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5861), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5865), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_equals] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(5867), - [anon_sym_is] = ACTIONS(5869), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -541316,27 +538293,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3713] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -541346,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_SEMI] = ACTIONS(4760), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), - [aux_sym_preproc_if_token3] = ACTIONS(4760), - [aux_sym_preproc_else_token1] = ACTIONS(4760), - [aux_sym_preproc_elif_token1] = ACTIONS(4760), + [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), @@ -541395,6 +538366,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3714] = { + [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), @@ -541404,64 +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_SEMI] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_COLON] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_RBRACK] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_RPAREN] = ACTIONS(4416), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_where] = ACTIONS(4416), - [anon_sym_QMARK] = ACTIONS(4414), - [anon_sym_BANG] = ACTIONS(4414), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4416), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4416), - [anon_sym_CARET] = ACTIONS(4416), - [anon_sym_PIPE] = ACTIONS(4414), - [anon_sym_AMP] = ACTIONS(4414), - [anon_sym_LT_LT] = ACTIONS(4416), - [anon_sym_GT_GT] = ACTIONS(4414), - [anon_sym_GT_GT_GT] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4416), - [anon_sym_switch] = ACTIONS(4416), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_and] = ACTIONS(4416), - [anon_sym_or] = ACTIONS(4414), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [sym_op_coalescing] = ACTIONS(4416), - [anon_sym_from] = ACTIONS(4416), - [anon_sym_into] = ACTIONS(4416), - [anon_sym_join] = ACTIONS(4416), - [anon_sym_on] = ACTIONS(4416), - [anon_sym_equals] = ACTIONS(4416), - [anon_sym_let] = ACTIONS(4416), - [anon_sym_orderby] = ACTIONS(4416), - [anon_sym_group] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(4416), - [anon_sym_select] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4416), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4416), - [aux_sym_preproc_if_token3] = ACTIONS(4416), - [aux_sym_preproc_else_token1] = ACTIONS(4416), - [aux_sym_preproc_elif_token1] = ACTIONS(4416), + [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), @@ -541474,27 +538439,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3715] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -541504,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5861), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5865), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_equals] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(5867), - [anon_sym_is] = ACTIONS(5869), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -541553,6 +538512,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3716] = { + [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), @@ -541562,64 +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(4355), - [anon_sym_LBRACK] = ACTIONS(4355), - [anon_sym_COLON] = ACTIONS(4355), - [anon_sym_COMMA] = ACTIONS(4355), - [anon_sym_RBRACK] = ACTIONS(4355), - [anon_sym_LPAREN] = ACTIONS(4355), - [anon_sym_RPAREN] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4355), - [anon_sym_RBRACE] = ACTIONS(4355), - [anon_sym_LT] = ACTIONS(4353), - [anon_sym_GT] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4353), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_BANG] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4355), - [anon_sym_DASH_DASH] = ACTIONS(4355), - [anon_sym_PLUS] = ACTIONS(4353), - [anon_sym_DASH] = ACTIONS(4353), - [anon_sym_STAR] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4353), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_CARET] = ACTIONS(4355), - [anon_sym_PIPE] = ACTIONS(4353), - [anon_sym_AMP] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4355), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_GT_GT_GT] = ACTIONS(4355), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_GT_EQ] = ACTIONS(4355), - [anon_sym_LT_EQ] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4353), - [anon_sym_EQ_GT] = ACTIONS(4355), - [anon_sym_switch] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4355), - [anon_sym_and] = ACTIONS(4355), - [anon_sym_or] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4355), - [sym_op_coalescing] = ACTIONS(4355), - [anon_sym_from] = ACTIONS(4355), - [anon_sym_into] = ACTIONS(4355), - [anon_sym_join] = ACTIONS(4355), - [anon_sym_on] = ACTIONS(4355), - [anon_sym_equals] = ACTIONS(4355), - [anon_sym_let] = ACTIONS(4355), - [anon_sym_orderby] = ACTIONS(4355), - [anon_sym_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(4355), - [anon_sym_with] = ACTIONS(4355), - [aux_sym_preproc_if_token3] = ACTIONS(4355), - [aux_sym_preproc_else_token1] = ACTIONS(4355), - [aux_sym_preproc_elif_token1] = ACTIONS(4355), + [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), @@ -541632,27 +538585,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3717] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -541662,43 +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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5867), - [anon_sym_is] = ACTIONS(5869), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -541711,7 +538658,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3718] = { - [sym_initializer_expression] = STATE(4113), + [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), @@ -541721,63 +538682,42 @@ 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(4318), - [anon_sym_LBRACK] = ACTIONS(5970), - [anon_sym_COLON] = ACTIONS(5974), - [anon_sym_COMMA] = ACTIONS(5974), - [anon_sym_RBRACK] = ACTIONS(5974), - [anon_sym_LPAREN] = ACTIONS(5974), - [anon_sym_RPAREN] = ACTIONS(5974), - [anon_sym_LBRACE] = ACTIONS(5977), - [anon_sym_RBRACE] = ACTIONS(5974), - [anon_sym_LT] = ACTIONS(5980), - [anon_sym_GT] = ACTIONS(5980), - [anon_sym_in] = ACTIONS(5974), - [anon_sym_where] = ACTIONS(5974), - [anon_sym_QMARK] = ACTIONS(5983), - [anon_sym_BANG] = ACTIONS(5980), - [anon_sym_PLUS_PLUS] = ACTIONS(5974), - [anon_sym_DASH_DASH] = ACTIONS(5974), - [anon_sym_PLUS] = ACTIONS(5980), - [anon_sym_DASH] = ACTIONS(5980), - [anon_sym_STAR] = ACTIONS(5974), - [anon_sym_SLASH] = ACTIONS(5980), - [anon_sym_PERCENT] = ACTIONS(5974), - [anon_sym_CARET] = ACTIONS(5974), - [anon_sym_PIPE] = ACTIONS(5980), - [anon_sym_AMP] = ACTIONS(5980), - [anon_sym_LT_LT] = ACTIONS(5974), - [anon_sym_GT_GT] = ACTIONS(5980), - [anon_sym_GT_GT_GT] = ACTIONS(5974), - [anon_sym_EQ_EQ] = ACTIONS(5974), - [anon_sym_BANG_EQ] = ACTIONS(5974), - [anon_sym_GT_EQ] = ACTIONS(5974), - [anon_sym_LT_EQ] = ACTIONS(5974), - [anon_sym_DOT] = ACTIONS(5980), - [anon_sym_EQ_GT] = ACTIONS(5974), - [anon_sym_switch] = ACTIONS(5974), - [anon_sym_DOT_DOT] = ACTIONS(5974), - [anon_sym_and] = ACTIONS(5974), - [anon_sym_or] = ACTIONS(5980), - [anon_sym_AMP_AMP] = ACTIONS(5974), - [anon_sym_PIPE_PIPE] = ACTIONS(5974), - [sym_op_coalescing] = ACTIONS(5974), - [anon_sym_from] = ACTIONS(5974), - [anon_sym_join] = ACTIONS(5974), - [anon_sym_on] = ACTIONS(5974), - [anon_sym_equals] = ACTIONS(5974), - [anon_sym_let] = ACTIONS(5974), - [anon_sym_orderby] = ACTIONS(5974), - [anon_sym_group] = ACTIONS(5974), - [anon_sym_by] = ACTIONS(5974), - [anon_sym_select] = ACTIONS(5974), - [anon_sym_as] = ACTIONS(5974), - [anon_sym_is] = ACTIONS(5974), - [anon_sym_DASH_GT] = ACTIONS(5974), - [anon_sym_with] = ACTIONS(5974), - [aux_sym_preproc_if_token3] = ACTIONS(5974), - [aux_sym_preproc_else_token1] = ACTIONS(5974), - [aux_sym_preproc_elif_token1] = ACTIONS(5974), + [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), @@ -541788,29 +538728,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), }, [3719] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -541820,43 +538755,42 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5796), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5800), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_by] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(5802), - [anon_sym_is] = ACTIONS(5804), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -541867,29 +538801,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), }, [3720] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -541899,43 +538828,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3720), [sym_preproc_define] = STATE(3720), [sym_preproc_undef] = STATE(3720), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5867), - [anon_sym_is] = ACTIONS(5869), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -541946,29 +538874,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), }, [3721] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -541978,43 +538901,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3721), [sym_preproc_define] = STATE(3721), [sym_preproc_undef] = STATE(3721), - [anon_sym_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5867), - [anon_sym_is] = ACTIONS(5869), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -542025,29 +538947,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), }, [3722] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -542057,43 +538974,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3722), [sym_preproc_define] = STATE(3722), [sym_preproc_undef] = STATE(3722), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5987), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4794), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4794), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5954), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5946), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -542104,29 +539020,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), }, [3723] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), [sym_preproc_region] = STATE(3723), [sym_preproc_endregion] = STATE(3723), [sym_preproc_line] = STATE(3723), @@ -542136,43 +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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5867), - [anon_sym_is] = ACTIONS(5869), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -542185,27 +539096,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3724] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), [sym_preproc_region] = STATE(3724), [sym_preproc_endregion] = STATE(3724), [sym_preproc_line] = STATE(3724), @@ -542215,43 +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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_equals] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -542262,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(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -542294,43 +539193,42 @@ 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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5867), - [anon_sym_is] = ACTIONS(5869), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -542341,29 +539239,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), }, [3726] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -542373,43 +539266,42 @@ 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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5865), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5867), - [anon_sym_is] = ACTIONS(5869), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -542420,29 +539312,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), }, [3727] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -542452,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5861), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5865), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_equals] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(5867), - [anon_sym_is] = ACTIONS(5869), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -542501,27 +539388,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3728] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -542531,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(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -542580,7 +539461,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3729] = { - [sym_type_argument_list] = STATE(3930), [sym_preproc_region] = STATE(3729), [sym_preproc_endregion] = STATE(3729), [sym_preproc_line] = STATE(3729), @@ -542590,63 +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_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(5901), - [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_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), @@ -542659,27 +539534,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3730] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), [sym_preproc_region] = STATE(3730), [sym_preproc_endregion] = STATE(3730), [sym_preproc_line] = STATE(3730), @@ -542689,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(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5871), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4756), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4756), - [anon_sym_or] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5875), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5877), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -542738,6 +539607,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3731] = { + [sym_type_argument_list] = STATE(4268), [sym_preproc_region] = STATE(3731), [sym_preproc_endregion] = STATE(3731), [sym_preproc_line] = STATE(3731), @@ -542747,64 +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_SEMI] = ACTIONS(5989), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_COLON] = ACTIONS(5989), - [anon_sym_COMMA] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5989), - [anon_sym_LPAREN] = ACTIONS(5989), - [anon_sym_RPAREN] = ACTIONS(5989), - [anon_sym_LBRACE] = ACTIONS(5989), - [anon_sym_RBRACE] = ACTIONS(5989), - [anon_sym_LT] = ACTIONS(5991), - [anon_sym_GT] = ACTIONS(5991), - [anon_sym_in] = ACTIONS(5991), - [anon_sym_where] = ACTIONS(5989), - [anon_sym_QMARK] = ACTIONS(5991), - [anon_sym_BANG] = ACTIONS(5991), - [anon_sym_PLUS_PLUS] = ACTIONS(5989), - [anon_sym_DASH_DASH] = ACTIONS(5989), - [anon_sym_PLUS] = ACTIONS(5991), - [anon_sym_DASH] = ACTIONS(5991), - [anon_sym_STAR] = ACTIONS(5989), - [anon_sym_SLASH] = ACTIONS(5991), - [anon_sym_PERCENT] = ACTIONS(5989), - [anon_sym_CARET] = ACTIONS(5989), - [anon_sym_PIPE] = ACTIONS(5991), - [anon_sym_AMP] = ACTIONS(5991), - [anon_sym_LT_LT] = ACTIONS(5989), - [anon_sym_GT_GT] = ACTIONS(5991), - [anon_sym_GT_GT_GT] = ACTIONS(5989), - [anon_sym_EQ_EQ] = ACTIONS(5989), - [anon_sym_BANG_EQ] = ACTIONS(5989), - [anon_sym_GT_EQ] = ACTIONS(5989), - [anon_sym_LT_EQ] = ACTIONS(5989), - [anon_sym_DOT] = ACTIONS(5991), - [anon_sym_EQ_GT] = ACTIONS(5989), - [anon_sym_switch] = ACTIONS(5989), - [anon_sym_DOT_DOT] = ACTIONS(5989), - [anon_sym_and] = ACTIONS(5989), - [anon_sym_or] = ACTIONS(5991), - [anon_sym_AMP_AMP] = ACTIONS(5989), - [anon_sym_PIPE_PIPE] = ACTIONS(5989), - [sym_op_coalescing] = ACTIONS(5989), - [anon_sym_from] = ACTIONS(5989), - [anon_sym_into] = ACTIONS(5989), - [anon_sym_join] = ACTIONS(5989), - [anon_sym_on] = ACTIONS(5989), - [anon_sym_equals] = ACTIONS(5989), - [anon_sym_let] = ACTIONS(5989), - [anon_sym_orderby] = ACTIONS(5989), - [anon_sym_group] = ACTIONS(5989), - [anon_sym_by] = ACTIONS(5989), - [anon_sym_select] = ACTIONS(5989), - [anon_sym_as] = ACTIONS(5989), - [anon_sym_is] = ACTIONS(5989), - [anon_sym_DASH_GT] = ACTIONS(5989), - [anon_sym_with] = ACTIONS(5989), - [aux_sym_preproc_if_token3] = ACTIONS(5989), - [aux_sym_preproc_else_token1] = ACTIONS(5989), - [aux_sym_preproc_elif_token1] = ACTIONS(5989), + [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), @@ -542817,27 +539680,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3732] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), [sym_preproc_region] = STATE(3732), [sym_preproc_endregion] = STATE(3732), [sym_preproc_line] = STATE(3732), @@ -542847,42 +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(5646), - [anon_sym_COLON] = ACTIONS(4772), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5914), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5916), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5918), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -542893,30 +539751,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(4772), }, [3733] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -542926,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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5796), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5800), - [anon_sym_into] = ACTIONS(4794), - [anon_sym_by] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(5802), - [anon_sym_is] = ACTIONS(5804), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -542975,27 +539826,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3734] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), + [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), @@ -543005,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5863), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5867), - [anon_sym_is] = ACTIONS(5869), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -543054,27 +539899,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3735] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), [sym_preproc_region] = STATE(3735), [sym_preproc_endregion] = STATE(3735), [sym_preproc_line] = STATE(3735), @@ -543084,43 +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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4686), - [anon_sym_DOT_DOT] = ACTIONS(5811), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -543133,27 +539972,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3736] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), [sym_preproc_region] = STATE(3736), [sym_preproc_endregion] = STATE(3736), [sym_preproc_line] = STATE(3736), @@ -543163,42 +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(5646), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5914), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5916), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5918), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -543209,30 +540043,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(4764), }, [3737] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), [sym_preproc_region] = STATE(3737), [sym_preproc_endregion] = STATE(3737), [sym_preproc_line] = STATE(3737), @@ -543242,43 +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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5871), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4776), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4776), - [anon_sym_or] = ACTIONS(4776), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5875), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(4841), - [anon_sym_is] = ACTIONS(5877), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -543291,6 +540118,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3738] = { + [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), @@ -543300,64 +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_SEMI] = ACTIONS(4318), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_where] = ACTIONS(4318), - [anon_sym_QMARK] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4318), - [anon_sym_into] = ACTIONS(4318), - [anon_sym_join] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_let] = ACTIONS(4318), - [anon_sym_orderby] = ACTIONS(4318), - [anon_sym_group] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_select] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [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), @@ -543370,27 +540191,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3739] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -543400,42 +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_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5914), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5916), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5918), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -543446,30 +540262,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(4742), }, [3740] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -543479,43 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5987), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4780), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4780), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5954), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5946), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -543528,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), @@ -543537,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(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_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), @@ -543607,6 +540410,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3742] = { + [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), @@ -543616,64 +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(3700), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3700), - [anon_sym_where] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3700), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(3700), - [anon_sym_join] = ACTIONS(3700), - [anon_sym_on] = ACTIONS(3700), - [anon_sym_equals] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_orderby] = ACTIONS(3700), - [anon_sym_group] = ACTIONS(3700), - [anon_sym_by] = ACTIONS(3700), - [anon_sym_select] = ACTIONS(3700), - [anon_sym_as] = ACTIONS(3700), - [anon_sym_is] = ACTIONS(3700), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3700), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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), @@ -543686,27 +540483,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3743] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -543716,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5987), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4772), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4772), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5954), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5946), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -543765,6 +540556,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3744] = { + [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), @@ -543774,64 +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), - [anon_sym_SEMI] = ACTIONS(4322), - [anon_sym_LBRACK] = ACTIONS(4322), - [anon_sym_COLON] = ACTIONS(4322), - [anon_sym_COMMA] = ACTIONS(4322), - [anon_sym_RBRACK] = ACTIONS(4322), - [anon_sym_LPAREN] = ACTIONS(4322), - [anon_sym_RPAREN] = ACTIONS(4322), - [anon_sym_LBRACE] = ACTIONS(4322), - [anon_sym_RBRACE] = ACTIONS(4322), - [anon_sym_LT] = ACTIONS(4320), - [anon_sym_GT] = ACTIONS(4320), - [anon_sym_in] = ACTIONS(4320), - [anon_sym_where] = ACTIONS(4322), - [anon_sym_QMARK] = ACTIONS(4320), - [anon_sym_BANG] = ACTIONS(4320), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS] = ACTIONS(4320), - [anon_sym_DASH] = ACTIONS(4320), - [anon_sym_STAR] = ACTIONS(4322), - [anon_sym_SLASH] = ACTIONS(4320), - [anon_sym_PERCENT] = ACTIONS(4322), - [anon_sym_CARET] = ACTIONS(4322), - [anon_sym_PIPE] = ACTIONS(4320), - [anon_sym_AMP] = ACTIONS(4320), - [anon_sym_LT_LT] = ACTIONS(4322), - [anon_sym_GT_GT] = ACTIONS(4320), - [anon_sym_GT_GT_GT] = ACTIONS(4322), - [anon_sym_EQ_EQ] = ACTIONS(4322), - [anon_sym_BANG_EQ] = ACTIONS(4322), - [anon_sym_GT_EQ] = ACTIONS(4322), - [anon_sym_LT_EQ] = ACTIONS(4322), - [anon_sym_DOT] = ACTIONS(4320), - [anon_sym_EQ_GT] = ACTIONS(4322), - [anon_sym_switch] = ACTIONS(4322), - [anon_sym_DOT_DOT] = ACTIONS(4322), - [anon_sym_and] = ACTIONS(4322), - [anon_sym_or] = ACTIONS(4320), - [anon_sym_AMP_AMP] = ACTIONS(4322), - [anon_sym_PIPE_PIPE] = ACTIONS(4322), - [sym_op_coalescing] = ACTIONS(4322), - [anon_sym_from] = ACTIONS(4322), - [anon_sym_into] = ACTIONS(4322), - [anon_sym_join] = ACTIONS(4322), - [anon_sym_on] = ACTIONS(4322), - [anon_sym_equals] = ACTIONS(4322), - [anon_sym_let] = ACTIONS(4322), - [anon_sym_orderby] = ACTIONS(4322), - [anon_sym_group] = ACTIONS(4322), - [anon_sym_by] = ACTIONS(4322), - [anon_sym_select] = ACTIONS(4322), - [anon_sym_as] = ACTIONS(4322), - [anon_sym_is] = ACTIONS(4322), - [anon_sym_DASH_GT] = ACTIONS(4322), - [anon_sym_with] = ACTIONS(4322), - [aux_sym_preproc_if_token3] = ACTIONS(4322), - [aux_sym_preproc_else_token1] = ACTIONS(4322), - [aux_sym_preproc_elif_token1] = ACTIONS(4322), + [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), @@ -543844,27 +540629,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3745] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -543874,43 +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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_when] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -543923,27 +540702,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3746] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -543953,43 +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_LBRACK] = ACTIONS(4825), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5873), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -544002,27 +540775,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3747] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -544032,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5987), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4764), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4764), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5954), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5946), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -544081,27 +540848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3748] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [sym_initializer_expression] = STATE(4587), [sym_preproc_region] = STATE(3748), [sym_preproc_endregion] = STATE(3748), [sym_preproc_line] = STATE(3748), @@ -544111,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5987), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4742), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4742), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5954), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5946), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -544160,27 +540921,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3749] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -544190,42 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5918), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -544236,30 +540992,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(4686), }, [3750] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), [sym_preproc_region] = STATE(3750), [sym_preproc_endregion] = STATE(3750), [sym_preproc_line] = STATE(3750), @@ -544269,42 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5918), - [anon_sym_DASH_GT] = ACTIONS(5274), + [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), @@ -544315,30 +541065,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(4686), }, [3751] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), [sym_preproc_region] = STATE(3751), [sym_preproc_endregion] = STATE(3751), [sym_preproc_line] = STATE(3751), @@ -544348,43 +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(1435), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [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(4468), - [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(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), @@ -544397,27 +541140,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3752] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -544427,42 +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_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5918), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -544473,30 +541211,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(4686), }, [3753] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -544506,42 +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(5646), - [anon_sym_COLON] = ACTIONS(4756), - [anon_sym_COMMA] = ACTIONS(4756), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5914), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5916), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5918), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -544552,30 +541284,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(4756), }, [3754] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -544585,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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5918), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -544631,30 +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(4686), }, [3755] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -544664,43 +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_LBRACK] = ACTIONS(5422), - [anon_sym_COLON] = ACTIONS(4768), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4768), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -544713,27 +541432,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3756] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -544743,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(5422), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_RBRACK] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_RBRACE] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -544792,6 +541505,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3757] = { + [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), @@ -544801,64 +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_SEMI] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_COLON] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_RBRACK] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_RPAREN] = ACTIONS(4444), - [anon_sym_LBRACE] = ACTIONS(4444), - [anon_sym_RBRACE] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4442), - [anon_sym_GT] = ACTIONS(4442), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_where] = ACTIONS(4444), - [anon_sym_QMARK] = ACTIONS(4442), - [anon_sym_BANG] = ACTIONS(4442), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4444), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4444), - [anon_sym_CARET] = ACTIONS(4444), - [anon_sym_PIPE] = ACTIONS(4442), - [anon_sym_AMP] = ACTIONS(4442), - [anon_sym_LT_LT] = ACTIONS(4444), - [anon_sym_GT_GT] = ACTIONS(4442), - [anon_sym_GT_GT_GT] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_EQ_GT] = ACTIONS(4444), - [anon_sym_switch] = ACTIONS(4444), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_and] = ACTIONS(4444), - [anon_sym_or] = ACTIONS(4442), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [sym_op_coalescing] = ACTIONS(4444), - [anon_sym_from] = ACTIONS(4444), - [anon_sym_into] = ACTIONS(4444), - [anon_sym_join] = ACTIONS(4444), - [anon_sym_on] = ACTIONS(4444), - [anon_sym_equals] = ACTIONS(4444), - [anon_sym_let] = ACTIONS(4444), - [anon_sym_orderby] = ACTIONS(4444), - [anon_sym_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(4444), - [anon_sym_with] = ACTIONS(4444), - [aux_sym_preproc_if_token3] = ACTIONS(4444), - [aux_sym_preproc_else_token1] = ACTIONS(4444), - [aux_sym_preproc_elif_token1] = ACTIONS(4444), + [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), @@ -544871,27 +541578,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3758] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -544901,42 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5918), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -544947,30 +541649,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(4686), }, [3759] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -544980,42 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5918), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -545026,30 +541722,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(4686), }, [3760] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1336), - [sym_op_lte] = STATE(1336), - [sym_op_eq] = STATE(1338), - [sym_op_neq] = STATE(1338), - [sym_op_gt] = STATE(1336), - [sym_op_gte] = STATE(1336), - [sym_op_and] = STATE(1340), - [sym_op_or] = STATE(1345), - [sym_op_bitwise_and] = STATE(1349), - [sym_op_bitwise_or] = STATE(1350), - [sym_op_bitwise_xor] = STATE(1351), - [sym_op_left_shift] = STATE(1354), - [sym_op_right_shift] = STATE(1354), - [sym_op_unsigned_right_shift] = STATE(1354), - [sym_op_plus] = STATE(1360), - [sym_op_minus] = STATE(1360), - [sym_op_multiply] = STATE(1361), - [sym_op_divide] = STATE(1361), - [sym_op_modulo] = STATE(1361), + [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), @@ -545059,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), - [anon_sym_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5819), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5916), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5668), - [anon_sym_is] = ACTIONS(5918), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -545105,30 +541795,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(4686), }, [3761] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -545138,43 +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(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -545187,27 +541870,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3762] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -545217,43 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4760), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_when] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -545266,27 +541943,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3763] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -545296,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5987), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4798), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_when] = ACTIONS(4798), - [anon_sym_DOT_DOT] = ACTIONS(5940), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5954), - [anon_sym_as] = ACTIONS(5815), - [anon_sym_is] = ACTIONS(5946), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -545345,27 +542016,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3764] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -545375,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_SEMI] = ACTIONS(4790), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), - [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(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), @@ -545424,27 +542089,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3765] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), + [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), @@ -545454,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(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5796), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(4835), - [anon_sym_DOT_DOT] = ACTIONS(5798), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5800), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_by] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(5802), - [anon_sym_is] = ACTIONS(5804), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(4845), + [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), @@ -545503,6 +542162,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3766] = { + [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), @@ -545512,63 +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_SEMI] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5993), - [anon_sym_COLON] = ACTIONS(5993), - [anon_sym_COMMA] = ACTIONS(5993), - [anon_sym_RBRACK] = ACTIONS(5993), - [anon_sym_LPAREN] = ACTIONS(5993), - [anon_sym_RPAREN] = ACTIONS(5993), - [anon_sym_RBRACE] = ACTIONS(5993), - [anon_sym_LT] = ACTIONS(5995), - [anon_sym_GT] = ACTIONS(5995), - [anon_sym_in] = ACTIONS(5995), - [anon_sym_where] = ACTIONS(5993), - [anon_sym_QMARK] = ACTIONS(5995), - [anon_sym_BANG] = ACTIONS(5995), - [anon_sym_PLUS_PLUS] = ACTIONS(5993), - [anon_sym_DASH_DASH] = ACTIONS(5993), - [anon_sym_PLUS] = ACTIONS(5995), - [anon_sym_DASH] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5993), - [anon_sym_SLASH] = ACTIONS(5995), - [anon_sym_PERCENT] = ACTIONS(5993), - [anon_sym_CARET] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5995), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5993), - [anon_sym_GT_GT] = ACTIONS(5995), - [anon_sym_GT_GT_GT] = ACTIONS(5993), - [anon_sym_EQ_EQ] = ACTIONS(5993), - [anon_sym_BANG_EQ] = ACTIONS(5993), - [anon_sym_GT_EQ] = ACTIONS(5993), - [anon_sym_LT_EQ] = ACTIONS(5993), - [anon_sym_DOT] = ACTIONS(5995), - [anon_sym_EQ_GT] = ACTIONS(5993), - [anon_sym_switch] = ACTIONS(5993), - [anon_sym_DOT_DOT] = ACTIONS(5993), - [anon_sym_and] = ACTIONS(5993), - [anon_sym_or] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [sym_op_coalescing] = ACTIONS(5993), - [anon_sym_from] = ACTIONS(5993), - [anon_sym_into] = ACTIONS(5993), - [anon_sym_join] = ACTIONS(5993), - [anon_sym_on] = ACTIONS(5993), - [anon_sym_equals] = ACTIONS(5993), - [anon_sym_let] = ACTIONS(5993), - [anon_sym_orderby] = ACTIONS(5993), - [anon_sym_group] = ACTIONS(5993), - [anon_sym_by] = ACTIONS(5993), - [anon_sym_select] = ACTIONS(5993), - [anon_sym_as] = ACTIONS(5993), - [anon_sym_is] = ACTIONS(5993), - [anon_sym_DASH_GT] = ACTIONS(5993), - [anon_sym_with] = ACTIONS(5993), - [aux_sym_preproc_if_token3] = ACTIONS(5993), - [aux_sym_preproc_else_token1] = ACTIONS(5993), - [aux_sym_preproc_elif_token1] = ACTIONS(5993), + [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), @@ -545581,27 +542235,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3767] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), [sym_preproc_region] = STATE(3767), [sym_preproc_endregion] = STATE(3767), [sym_preproc_line] = STATE(3767), @@ -545611,75 +542244,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3767), [sym_preproc_define] = STATE(3767), [sym_preproc_undef] = STATE(3767), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5999), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6001), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3768), [sym_preproc_endregion] = STATE(3768), [sym_preproc_line] = STATE(3768), @@ -545689,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -545746,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(6005), - [anon_sym_LBRACK] = ACTIONS(6005), - [anon_sym_COLON] = ACTIONS(6005), - [anon_sym_COMMA] = ACTIONS(6005), - [anon_sym_RBRACK] = ACTIONS(6005), - [anon_sym_LPAREN] = ACTIONS(6005), - [anon_sym_RPAREN] = ACTIONS(6005), - [anon_sym_RBRACE] = ACTIONS(6005), - [anon_sym_LT] = ACTIONS(6007), - [anon_sym_GT] = ACTIONS(6007), - [anon_sym_in] = ACTIONS(6007), - [anon_sym_where] = ACTIONS(6005), - [anon_sym_QMARK] = ACTIONS(6007), - [anon_sym_BANG] = ACTIONS(6007), - [anon_sym_PLUS_PLUS] = ACTIONS(6005), - [anon_sym_DASH_DASH] = ACTIONS(6005), - [anon_sym_PLUS] = ACTIONS(6007), - [anon_sym_DASH] = ACTIONS(6007), - [anon_sym_STAR] = ACTIONS(6005), - [anon_sym_SLASH] = ACTIONS(6007), - [anon_sym_PERCENT] = ACTIONS(6005), - [anon_sym_CARET] = ACTIONS(6005), - [anon_sym_PIPE] = ACTIONS(6007), - [anon_sym_AMP] = ACTIONS(6007), - [anon_sym_LT_LT] = ACTIONS(6005), - [anon_sym_GT_GT] = ACTIONS(6007), - [anon_sym_GT_GT_GT] = ACTIONS(6005), - [anon_sym_EQ_EQ] = ACTIONS(6005), - [anon_sym_BANG_EQ] = ACTIONS(6005), - [anon_sym_GT_EQ] = ACTIONS(6005), - [anon_sym_LT_EQ] = ACTIONS(6005), - [anon_sym_DOT] = ACTIONS(6007), - [anon_sym_EQ_GT] = ACTIONS(6005), - [anon_sym_switch] = ACTIONS(6005), - [anon_sym_DOT_DOT] = ACTIONS(6005), - [anon_sym_and] = ACTIONS(6005), - [anon_sym_or] = ACTIONS(6007), - [anon_sym_AMP_AMP] = ACTIONS(6005), - [anon_sym_PIPE_PIPE] = ACTIONS(6005), - [sym_op_coalescing] = ACTIONS(6005), - [anon_sym_from] = ACTIONS(6005), - [anon_sym_into] = ACTIONS(6005), - [anon_sym_join] = ACTIONS(6005), - [anon_sym_on] = ACTIONS(6005), - [anon_sym_equals] = ACTIONS(6005), - [anon_sym_let] = ACTIONS(6005), - [anon_sym_orderby] = ACTIONS(6005), - [anon_sym_group] = ACTIONS(6005), - [anon_sym_by] = ACTIONS(6005), - [anon_sym_select] = ACTIONS(6005), - [anon_sym_as] = ACTIONS(6005), - [anon_sym_is] = ACTIONS(6005), - [anon_sym_DASH_GT] = ACTIONS(6005), - [anon_sym_with] = ACTIONS(6005), - [aux_sym_preproc_if_token3] = ACTIONS(6005), - [aux_sym_preproc_else_token1] = ACTIONS(6005), - [aux_sym_preproc_elif_token1] = ACTIONS(6005), + [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), @@ -545813,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), @@ -545824,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(6009), - [anon_sym_LBRACK] = ACTIONS(6009), - [anon_sym_COLON] = ACTIONS(6009), - [anon_sym_COMMA] = ACTIONS(6009), - [anon_sym_RBRACK] = ACTIONS(6009), - [anon_sym_LPAREN] = ACTIONS(6009), - [anon_sym_RPAREN] = ACTIONS(6009), - [anon_sym_RBRACE] = ACTIONS(6009), - [anon_sym_LT] = ACTIONS(6011), - [anon_sym_GT] = ACTIONS(6011), - [anon_sym_in] = ACTIONS(6011), - [anon_sym_where] = ACTIONS(6009), - [anon_sym_QMARK] = ACTIONS(6011), - [anon_sym_BANG] = ACTIONS(6011), - [anon_sym_PLUS_PLUS] = ACTIONS(6009), - [anon_sym_DASH_DASH] = ACTIONS(6009), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_STAR] = ACTIONS(6009), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_PERCENT] = ACTIONS(6009), - [anon_sym_CARET] = ACTIONS(6009), - [anon_sym_PIPE] = ACTIONS(6011), - [anon_sym_AMP] = ACTIONS(6011), - [anon_sym_LT_LT] = ACTIONS(6009), - [anon_sym_GT_GT] = ACTIONS(6011), - [anon_sym_GT_GT_GT] = ACTIONS(6009), - [anon_sym_EQ_EQ] = ACTIONS(6009), - [anon_sym_BANG_EQ] = ACTIONS(6009), - [anon_sym_GT_EQ] = ACTIONS(6009), - [anon_sym_LT_EQ] = ACTIONS(6009), - [anon_sym_DOT] = ACTIONS(6011), - [anon_sym_EQ_GT] = ACTIONS(6009), - [anon_sym_switch] = ACTIONS(6009), - [anon_sym_DOT_DOT] = ACTIONS(6009), - [anon_sym_and] = ACTIONS(6009), - [anon_sym_or] = ACTIONS(6011), - [anon_sym_AMP_AMP] = ACTIONS(6009), - [anon_sym_PIPE_PIPE] = ACTIONS(6009), - [sym_op_coalescing] = ACTIONS(6009), - [anon_sym_from] = ACTIONS(6009), - [anon_sym_into] = ACTIONS(6009), - [anon_sym_join] = ACTIONS(6009), - [anon_sym_on] = ACTIONS(6009), - [anon_sym_equals] = ACTIONS(6009), - [anon_sym_let] = ACTIONS(6009), - [anon_sym_orderby] = ACTIONS(6009), - [anon_sym_group] = ACTIONS(6009), - [anon_sym_by] = ACTIONS(6009), - [anon_sym_select] = ACTIONS(6009), - [anon_sym_as] = ACTIONS(6009), - [anon_sym_is] = ACTIONS(6009), - [anon_sym_DASH_GT] = ACTIONS(6009), - [anon_sym_with] = ACTIONS(6009), - [aux_sym_preproc_if_token3] = ACTIONS(6009), - [aux_sym_preproc_else_token1] = ACTIONS(6009), - [aux_sym_preproc_elif_token1] = ACTIONS(6009), + [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), @@ -545891,29 +542524,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(4550), }, [3771] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(3771), [sym_preproc_endregion] = STATE(3771), [sym_preproc_line] = STATE(3771), @@ -545923,42 +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), - [aux_sym__for_statement_conditions_repeat1] = STATE(7072), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6013), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6015), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -545971,27 +542600,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3772] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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(3772), [sym_preproc_endregion] = STATE(3772), [sym_preproc_line] = STATE(3772), @@ -546001,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_SEMI] = ACTIONS(4760), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4760), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -546049,27 +542673,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3773] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -546079,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4786), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -546127,27 +542746,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3774] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -546157,42 +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), - [aux_sym__for_statement_conditions_repeat1] = STATE(7075), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6013), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6019), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -546205,27 +542819,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3775] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -546235,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_EQ_GT] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [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(4468), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -546283,27 +542892,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3776] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(3776), [sym_preproc_endregion] = STATE(3776), [sym_preproc_line] = STATE(3776), @@ -546313,42 +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), - [aux_sym_array_rank_specifier_repeat1] = STATE(7222), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(6021), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -546361,27 +542965,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3777] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -546391,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), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), - [aux_sym_preproc_if_token3] = ACTIONS(4768), - [aux_sym_preproc_else_token1] = ACTIONS(4768), - [aux_sym_preproc_elif_token1] = ACTIONS(4768), + [anon_sym_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), @@ -546439,6 +543038,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3778] = { + [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), @@ -546448,63 +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_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_BANG] = ACTIONS(6025), - [anon_sym_PLUS_PLUS] = ACTIONS(6023), - [anon_sym_DASH_DASH] = ACTIONS(6023), - [anon_sym_PLUS] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(6025), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6023), - [anon_sym_PIPE] = ACTIONS(6025), - [anon_sym_AMP] = ACTIONS(6025), - [anon_sym_LT_LT] = ACTIONS(6023), - [anon_sym_GT_GT] = ACTIONS(6025), - [anon_sym_GT_GT_GT] = ACTIONS(6023), - [anon_sym_EQ_EQ] = ACTIONS(6023), - [anon_sym_BANG_EQ] = ACTIONS(6023), - [anon_sym_GT_EQ] = ACTIONS(6023), - [anon_sym_LT_EQ] = ACTIONS(6023), - [anon_sym_DOT] = ACTIONS(6025), - [anon_sym_EQ_GT] = ACTIONS(6023), - [anon_sym_switch] = ACTIONS(6023), - [anon_sym_DOT_DOT] = ACTIONS(6023), - [anon_sym_and] = ACTIONS(6023), - [anon_sym_or] = ACTIONS(6025), - [anon_sym_AMP_AMP] = ACTIONS(6023), - [anon_sym_PIPE_PIPE] = ACTIONS(6023), - [sym_op_coalescing] = 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), + [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), @@ -546526,63 +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_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_BANG] = ACTIONS(6029), - [anon_sym_PLUS_PLUS] = ACTIONS(6027), - [anon_sym_DASH_DASH] = ACTIONS(6027), - [anon_sym_PLUS] = ACTIONS(6029), - [anon_sym_DASH] = ACTIONS(6029), - [anon_sym_STAR] = ACTIONS(6027), - [anon_sym_SLASH] = ACTIONS(6029), - [anon_sym_PERCENT] = ACTIONS(6027), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_AMP] = ACTIONS(6029), - [anon_sym_LT_LT] = ACTIONS(6027), - [anon_sym_GT_GT] = ACTIONS(6029), - [anon_sym_GT_GT_GT] = ACTIONS(6027), - [anon_sym_EQ_EQ] = ACTIONS(6027), - [anon_sym_BANG_EQ] = ACTIONS(6027), - [anon_sym_GT_EQ] = ACTIONS(6027), - [anon_sym_LT_EQ] = ACTIONS(6027), - [anon_sym_DOT] = ACTIONS(6029), - [anon_sym_EQ_GT] = ACTIONS(6027), - [anon_sym_switch] = ACTIONS(6027), - [anon_sym_DOT_DOT] = ACTIONS(6027), - [anon_sym_and] = ACTIONS(6027), - [anon_sym_or] = ACTIONS(6029), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [sym_op_coalescing] = 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), + [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), @@ -546595,6 +543184,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3780] = { + [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(3780), [sym_preproc_endregion] = STATE(3780), [sym_preproc_line] = STATE(3780), @@ -546604,63 +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_SEMI] = ACTIONS(6031), - [anon_sym_LBRACK] = ACTIONS(6031), - [anon_sym_COLON] = ACTIONS(6031), - [anon_sym_COMMA] = ACTIONS(6031), - [anon_sym_RBRACK] = ACTIONS(6031), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_RBRACE] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6033), - [anon_sym_GT] = ACTIONS(6033), - [anon_sym_in] = ACTIONS(6033), - [anon_sym_where] = ACTIONS(6031), - [anon_sym_QMARK] = ACTIONS(6033), - [anon_sym_BANG] = ACTIONS(6033), - [anon_sym_PLUS_PLUS] = ACTIONS(6031), - [anon_sym_DASH_DASH] = ACTIONS(6031), - [anon_sym_PLUS] = ACTIONS(6033), - [anon_sym_DASH] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6031), - [anon_sym_SLASH] = ACTIONS(6033), - [anon_sym_PERCENT] = ACTIONS(6031), - [anon_sym_CARET] = ACTIONS(6031), - [anon_sym_PIPE] = ACTIONS(6033), - [anon_sym_AMP] = ACTIONS(6033), - [anon_sym_LT_LT] = ACTIONS(6031), - [anon_sym_GT_GT] = ACTIONS(6033), - [anon_sym_GT_GT_GT] = ACTIONS(6031), - [anon_sym_EQ_EQ] = ACTIONS(6031), - [anon_sym_BANG_EQ] = ACTIONS(6031), - [anon_sym_GT_EQ] = ACTIONS(6031), - [anon_sym_LT_EQ] = ACTIONS(6031), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_EQ_GT] = ACTIONS(6031), - [anon_sym_switch] = ACTIONS(6031), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(6031), - [anon_sym_or] = ACTIONS(6033), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [sym_op_coalescing] = ACTIONS(6031), - [anon_sym_from] = ACTIONS(6031), - [anon_sym_into] = ACTIONS(6031), - [anon_sym_join] = ACTIONS(6031), - [anon_sym_on] = ACTIONS(6031), - [anon_sym_equals] = ACTIONS(6031), - [anon_sym_let] = ACTIONS(6031), - [anon_sym_orderby] = ACTIONS(6031), - [anon_sym_group] = ACTIONS(6031), - [anon_sym_by] = ACTIONS(6031), - [anon_sym_select] = ACTIONS(6031), - [anon_sym_as] = ACTIONS(6031), - [anon_sym_is] = ACTIONS(6031), - [anon_sym_DASH_GT] = ACTIONS(6031), - [anon_sym_with] = ACTIONS(6031), - [aux_sym_preproc_if_token3] = ACTIONS(6031), - [aux_sym_preproc_else_token1] = ACTIONS(6031), - [aux_sym_preproc_elif_token1] = ACTIONS(6031), + [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), @@ -546673,27 +543257,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3781] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -546703,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6035), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4798), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6037), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6039), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -546749,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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), [sym_preproc_region] = STATE(3782), [sym_preproc_endregion] = STATE(3782), [sym_preproc_line] = STATE(3782), @@ -546781,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -546829,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), @@ -546838,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(6041), - [anon_sym_LBRACK] = ACTIONS(6041), - [anon_sym_COLON] = ACTIONS(6041), - [anon_sym_COMMA] = ACTIONS(6041), - [anon_sym_RBRACK] = ACTIONS(6041), - [anon_sym_LPAREN] = ACTIONS(6041), - [anon_sym_RPAREN] = ACTIONS(6041), - [anon_sym_RBRACE] = ACTIONS(6041), - [anon_sym_LT] = ACTIONS(6043), - [anon_sym_GT] = ACTIONS(6043), - [anon_sym_in] = ACTIONS(6043), - [anon_sym_where] = ACTIONS(6041), - [anon_sym_QMARK] = ACTIONS(6043), - [anon_sym_BANG] = ACTIONS(6043), - [anon_sym_PLUS_PLUS] = ACTIONS(6041), - [anon_sym_DASH_DASH] = ACTIONS(6041), - [anon_sym_PLUS] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(6043), - [anon_sym_STAR] = ACTIONS(6041), - [anon_sym_SLASH] = ACTIONS(6043), - [anon_sym_PERCENT] = ACTIONS(6041), - [anon_sym_CARET] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - [anon_sym_LT_LT] = ACTIONS(6041), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_GT_GT_GT] = ACTIONS(6041), - [anon_sym_EQ_EQ] = ACTIONS(6041), - [anon_sym_BANG_EQ] = ACTIONS(6041), - [anon_sym_GT_EQ] = ACTIONS(6041), - [anon_sym_LT_EQ] = ACTIONS(6041), - [anon_sym_DOT] = ACTIONS(6043), - [anon_sym_EQ_GT] = ACTIONS(6041), - [anon_sym_switch] = ACTIONS(6041), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_and] = ACTIONS(6041), - [anon_sym_or] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6041), - [anon_sym_PIPE_PIPE] = ACTIONS(6041), - [sym_op_coalescing] = ACTIONS(6041), - [anon_sym_from] = ACTIONS(6041), - [anon_sym_into] = ACTIONS(6041), - [anon_sym_join] = ACTIONS(6041), - [anon_sym_on] = ACTIONS(6041), - [anon_sym_equals] = ACTIONS(6041), - [anon_sym_let] = ACTIONS(6041), - [anon_sym_orderby] = ACTIONS(6041), - [anon_sym_group] = ACTIONS(6041), - [anon_sym_by] = ACTIONS(6041), - [anon_sym_select] = ACTIONS(6041), - [anon_sym_as] = ACTIONS(6041), - [anon_sym_is] = ACTIONS(6041), - [anon_sym_DASH_GT] = ACTIONS(6041), - [anon_sym_with] = ACTIONS(6041), - [aux_sym_preproc_if_token3] = ACTIONS(6041), - [aux_sym_preproc_else_token1] = ACTIONS(6041), - [aux_sym_preproc_elif_token1] = ACTIONS(6041), + [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), @@ -546907,6 +543476,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3784] = { + [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), @@ -546916,63 +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(6045), - [anon_sym_LBRACK] = ACTIONS(6045), - [anon_sym_COLON] = ACTIONS(6045), - [anon_sym_COMMA] = ACTIONS(6045), - [anon_sym_RBRACK] = ACTIONS(6045), - [anon_sym_LPAREN] = ACTIONS(6045), - [anon_sym_RPAREN] = ACTIONS(6045), - [anon_sym_RBRACE] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6047), - [anon_sym_GT] = ACTIONS(6047), - [anon_sym_in] = ACTIONS(6047), - [anon_sym_where] = ACTIONS(6045), - [anon_sym_QMARK] = ACTIONS(6047), - [anon_sym_BANG] = ACTIONS(6047), - [anon_sym_PLUS_PLUS] = ACTIONS(6045), - [anon_sym_DASH_DASH] = ACTIONS(6045), - [anon_sym_PLUS] = ACTIONS(6047), - [anon_sym_DASH] = ACTIONS(6047), - [anon_sym_STAR] = ACTIONS(6045), - [anon_sym_SLASH] = ACTIONS(6047), - [anon_sym_PERCENT] = ACTIONS(6045), - [anon_sym_CARET] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - [anon_sym_LT_LT] = ACTIONS(6045), - [anon_sym_GT_GT] = ACTIONS(6047), - [anon_sym_GT_GT_GT] = ACTIONS(6045), - [anon_sym_EQ_EQ] = ACTIONS(6045), - [anon_sym_BANG_EQ] = ACTIONS(6045), - [anon_sym_GT_EQ] = ACTIONS(6045), - [anon_sym_LT_EQ] = ACTIONS(6045), - [anon_sym_DOT] = ACTIONS(6047), - [anon_sym_EQ_GT] = ACTIONS(6045), - [anon_sym_switch] = ACTIONS(6045), - [anon_sym_DOT_DOT] = ACTIONS(6045), - [anon_sym_and] = ACTIONS(6045), - [anon_sym_or] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [sym_op_coalescing] = ACTIONS(6045), - [anon_sym_from] = ACTIONS(6045), - [anon_sym_into] = ACTIONS(6045), - [anon_sym_join] = ACTIONS(6045), - [anon_sym_on] = ACTIONS(6045), - [anon_sym_equals] = ACTIONS(6045), - [anon_sym_let] = ACTIONS(6045), - [anon_sym_orderby] = ACTIONS(6045), - [anon_sym_group] = ACTIONS(6045), - [anon_sym_by] = ACTIONS(6045), - [anon_sym_select] = ACTIONS(6045), - [anon_sym_as] = ACTIONS(6045), - [anon_sym_is] = ACTIONS(6045), - [anon_sym_DASH_GT] = ACTIONS(6045), - [anon_sym_with] = ACTIONS(6045), - [aux_sym_preproc_if_token3] = ACTIONS(6045), - [aux_sym_preproc_else_token1] = ACTIONS(6045), - [aux_sym_preproc_elif_token1] = ACTIONS(6045), + [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), @@ -546985,6 +543549,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3785] = { + [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), @@ -546994,63 +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_SEMI] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_RBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(5752), - [anon_sym_RBRACE] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_in] = ACTIONS(5754), - [anon_sym_where] = ACTIONS(5752), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5752), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5752), - [anon_sym_CARET] = ACTIONS(5752), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5752), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5752), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_EQ_GT] = ACTIONS(5752), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5752), - [anon_sym_from] = ACTIONS(5752), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_join] = ACTIONS(5752), - [anon_sym_on] = ACTIONS(5752), - [anon_sym_equals] = ACTIONS(5752), - [anon_sym_let] = ACTIONS(5752), - [anon_sym_orderby] = ACTIONS(5752), - [anon_sym_group] = ACTIONS(5752), - [anon_sym_by] = ACTIONS(5752), - [anon_sym_select] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), - [aux_sym_preproc_if_token3] = ACTIONS(5752), - [aux_sym_preproc_else_token1] = ACTIONS(5752), - [aux_sym_preproc_elif_token1] = ACTIONS(5752), + [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), @@ -547063,27 +543622,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3786] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -547093,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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4760), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -547141,27 +543695,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3787] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), + [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), @@ -547171,42 +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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -547219,27 +543768,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3788] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -547249,42 +543792,42 @@ 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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6035), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4742), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6037), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6039), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -547295,29 +543838,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(5304), }, [3789] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -547327,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6035), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4764), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6037), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6039), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -547375,27 +543914,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3790] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -547405,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6035), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4772), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6037), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6039), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -547453,27 +543987,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3791] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -547483,42 +544011,42 @@ 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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6035), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4780), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6037), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6039), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -547529,29 +544057,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), }, [3792] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -547561,42 +544084,42 @@ 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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -547607,8 +544130,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), }, [3793] = { + [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), @@ -547618,63 +544157,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3793), [sym_preproc_define] = STATE(3793), [sym_preproc_undef] = STATE(3793), - [anon_sym_SEMI] = ACTIONS(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(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), @@ -547685,8 +544203,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), }, [3794] = { + [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), @@ -547696,63 +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_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(6055), - [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), + [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), @@ -547763,8 +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(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), @@ -547774,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(6057), - [anon_sym_LBRACK] = ACTIONS(6057), - [anon_sym_COLON] = ACTIONS(6057), - [anon_sym_COMMA] = ACTIONS(6057), - [anon_sym_RBRACK] = ACTIONS(6057), - [anon_sym_LPAREN] = ACTIONS(6057), - [anon_sym_RPAREN] = ACTIONS(6057), - [anon_sym_RBRACE] = ACTIONS(6057), - [anon_sym_LT] = ACTIONS(6059), - [anon_sym_GT] = ACTIONS(6059), - [anon_sym_in] = ACTIONS(6059), - [anon_sym_where] = ACTIONS(6057), - [anon_sym_QMARK] = ACTIONS(6059), - [anon_sym_BANG] = ACTIONS(6059), - [anon_sym_PLUS_PLUS] = ACTIONS(6057), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_PLUS] = ACTIONS(6059), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_STAR] = ACTIONS(6057), - [anon_sym_SLASH] = ACTIONS(6059), - [anon_sym_PERCENT] = ACTIONS(6057), - [anon_sym_CARET] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6059), - [anon_sym_AMP] = ACTIONS(6059), - [anon_sym_LT_LT] = ACTIONS(6057), - [anon_sym_GT_GT] = ACTIONS(6059), - [anon_sym_GT_GT_GT] = ACTIONS(6057), - [anon_sym_EQ_EQ] = ACTIONS(6057), - [anon_sym_BANG_EQ] = ACTIONS(6057), - [anon_sym_GT_EQ] = ACTIONS(6057), - [anon_sym_LT_EQ] = ACTIONS(6057), - [anon_sym_DOT] = ACTIONS(6059), - [anon_sym_EQ_GT] = ACTIONS(6057), - [anon_sym_switch] = ACTIONS(6057), - [anon_sym_DOT_DOT] = ACTIONS(6057), - [anon_sym_and] = ACTIONS(6057), - [anon_sym_or] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [sym_op_coalescing] = ACTIONS(6057), - [anon_sym_from] = ACTIONS(6057), - [anon_sym_into] = ACTIONS(6057), - [anon_sym_join] = ACTIONS(6057), - [anon_sym_on] = ACTIONS(6057), - [anon_sym_equals] = ACTIONS(6057), - [anon_sym_let] = ACTIONS(6057), - [anon_sym_orderby] = ACTIONS(6057), - [anon_sym_group] = ACTIONS(6057), - [anon_sym_by] = ACTIONS(6057), - [anon_sym_select] = ACTIONS(6057), - [anon_sym_as] = ACTIONS(6057), - [anon_sym_is] = ACTIONS(6057), - [anon_sym_DASH_GT] = ACTIONS(6057), - [anon_sym_with] = ACTIONS(6057), - [aux_sym_preproc_if_token3] = ACTIONS(6057), - [aux_sym_preproc_else_token1] = ACTIONS(6057), - [aux_sym_preproc_elif_token1] = ACTIONS(6057), + [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), @@ -547843,27 +544352,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3796] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -547873,42 +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_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6061), - [anon_sym_RBRACK] = ACTIONS(6061), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6061), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -547921,27 +544425,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3797] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -547951,42 +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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4790), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -547999,27 +544498,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3798] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -548029,42 +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_SEMI] = ACTIONS(4742), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6063), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6065), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -548077,6 +544571,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3799] = { + [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), @@ -548086,63 +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_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(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), @@ -548164,63 +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(6071), - [anon_sym_LBRACK] = ACTIONS(6071), - [anon_sym_COLON] = ACTIONS(6071), - [anon_sym_COMMA] = ACTIONS(6071), - [anon_sym_RBRACK] = ACTIONS(6071), - [anon_sym_LPAREN] = ACTIONS(6071), - [anon_sym_RPAREN] = ACTIONS(6071), - [anon_sym_RBRACE] = ACTIONS(6071), - [anon_sym_LT] = ACTIONS(6073), - [anon_sym_GT] = ACTIONS(6073), - [anon_sym_in] = ACTIONS(6073), - [anon_sym_where] = ACTIONS(6071), - [anon_sym_QMARK] = ACTIONS(6073), - [anon_sym_BANG] = ACTIONS(6073), - [anon_sym_PLUS_PLUS] = ACTIONS(6071), - [anon_sym_DASH_DASH] = ACTIONS(6071), - [anon_sym_PLUS] = ACTIONS(6073), - [anon_sym_DASH] = ACTIONS(6073), - [anon_sym_STAR] = ACTIONS(6071), - [anon_sym_SLASH] = ACTIONS(6073), - [anon_sym_PERCENT] = ACTIONS(6071), - [anon_sym_CARET] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - [anon_sym_LT_LT] = ACTIONS(6071), - [anon_sym_GT_GT] = ACTIONS(6073), - [anon_sym_GT_GT_GT] = ACTIONS(6071), - [anon_sym_EQ_EQ] = ACTIONS(6071), - [anon_sym_BANG_EQ] = ACTIONS(6071), - [anon_sym_GT_EQ] = ACTIONS(6071), - [anon_sym_LT_EQ] = ACTIONS(6071), - [anon_sym_DOT] = ACTIONS(6073), - [anon_sym_EQ_GT] = ACTIONS(6071), - [anon_sym_switch] = ACTIONS(6071), - [anon_sym_DOT_DOT] = ACTIONS(6071), - [anon_sym_and] = ACTIONS(6071), - [anon_sym_or] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6071), - [anon_sym_PIPE_PIPE] = ACTIONS(6071), - [sym_op_coalescing] = ACTIONS(6071), - [anon_sym_from] = ACTIONS(6071), - [anon_sym_into] = ACTIONS(6071), - [anon_sym_join] = ACTIONS(6071), - [anon_sym_on] = ACTIONS(6071), - [anon_sym_equals] = ACTIONS(6071), - [anon_sym_let] = ACTIONS(6071), - [anon_sym_orderby] = ACTIONS(6071), - [anon_sym_group] = ACTIONS(6071), - [anon_sym_by] = ACTIONS(6071), - [anon_sym_select] = ACTIONS(6071), - [anon_sym_as] = ACTIONS(6071), - [anon_sym_is] = ACTIONS(6071), - [anon_sym_DASH_GT] = ACTIONS(6071), - [anon_sym_with] = ACTIONS(6071), - [aux_sym_preproc_if_token3] = ACTIONS(6071), - [aux_sym_preproc_else_token1] = ACTIONS(6071), - [aux_sym_preproc_elif_token1] = ACTIONS(6071), + [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), @@ -548233,27 +544717,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3801] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -548263,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6039), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -548311,6 +544790,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3802] = { + [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), @@ -548320,63 +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(6075), - [anon_sym_LBRACK] = ACTIONS(6075), - [anon_sym_COLON] = ACTIONS(6075), - [anon_sym_COMMA] = ACTIONS(6075), - [anon_sym_RBRACK] = ACTIONS(6075), - [anon_sym_LPAREN] = ACTIONS(6075), - [anon_sym_RPAREN] = ACTIONS(6075), - [anon_sym_RBRACE] = ACTIONS(6075), - [anon_sym_LT] = ACTIONS(6077), - [anon_sym_GT] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [anon_sym_where] = ACTIONS(6075), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_BANG] = ACTIONS(6077), - [anon_sym_PLUS_PLUS] = ACTIONS(6075), - [anon_sym_DASH_DASH] = ACTIONS(6075), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6075), - [anon_sym_SLASH] = ACTIONS(6077), - [anon_sym_PERCENT] = ACTIONS(6075), - [anon_sym_CARET] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - [anon_sym_LT_LT] = ACTIONS(6075), - [anon_sym_GT_GT] = ACTIONS(6077), - [anon_sym_GT_GT_GT] = ACTIONS(6075), - [anon_sym_EQ_EQ] = ACTIONS(6075), - [anon_sym_BANG_EQ] = ACTIONS(6075), - [anon_sym_GT_EQ] = ACTIONS(6075), - [anon_sym_LT_EQ] = ACTIONS(6075), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_EQ_GT] = ACTIONS(6075), - [anon_sym_switch] = ACTIONS(6075), - [anon_sym_DOT_DOT] = ACTIONS(6075), - [anon_sym_and] = ACTIONS(6075), - [anon_sym_or] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6075), - [anon_sym_PIPE_PIPE] = ACTIONS(6075), - [sym_op_coalescing] = ACTIONS(6075), - [anon_sym_from] = ACTIONS(6075), - [anon_sym_into] = ACTIONS(6075), - [anon_sym_join] = ACTIONS(6075), - [anon_sym_on] = ACTIONS(6075), - [anon_sym_equals] = ACTIONS(6075), - [anon_sym_let] = ACTIONS(6075), - [anon_sym_orderby] = ACTIONS(6075), - [anon_sym_group] = ACTIONS(6075), - [anon_sym_by] = ACTIONS(6075), - [anon_sym_select] = ACTIONS(6075), - [anon_sym_as] = ACTIONS(6075), - [anon_sym_is] = ACTIONS(6075), - [anon_sym_DASH_GT] = ACTIONS(6075), - [anon_sym_with] = ACTIONS(6075), - [aux_sym_preproc_if_token3] = ACTIONS(6075), - [aux_sym_preproc_else_token1] = ACTIONS(6075), - [aux_sym_preproc_elif_token1] = ACTIONS(6075), + [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), @@ -548389,27 +544863,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3803] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -548419,42 +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(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -548467,27 +544936,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3804] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -548497,42 +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(5422), - [anon_sym_COMMA] = ACTIONS(6079), - [anon_sym_RBRACK] = ACTIONS(6079), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6079), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -548545,27 +545009,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3805] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -548575,42 +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(4798), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6063), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6065), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -548623,6 +545082,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3806] = { + [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), @@ -548632,63 +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_SEMI] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_RBRACK] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [anon_sym_RBRACE] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_in] = ACTIONS(4817), - [anon_sym_where] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PLUS_PLUS] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_CARET] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_LT_LT] = ACTIONS(4815), - [anon_sym_GT_GT] = ACTIONS(4817), - [anon_sym_GT_GT_GT] = ACTIONS(4815), - [anon_sym_EQ_EQ] = ACTIONS(4815), - [anon_sym_BANG_EQ] = ACTIONS(4815), - [anon_sym_GT_EQ] = ACTIONS(4815), - [anon_sym_LT_EQ] = ACTIONS(4815), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_EQ_GT] = ACTIONS(4815), - [anon_sym_switch] = ACTIONS(4815), - [anon_sym_DOT_DOT] = ACTIONS(4815), - [anon_sym_and] = ACTIONS(4815), - [anon_sym_or] = ACTIONS(4817), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [sym_op_coalescing] = ACTIONS(4815), - [anon_sym_from] = ACTIONS(4815), - [anon_sym_into] = ACTIONS(4815), - [anon_sym_join] = ACTIONS(4815), - [anon_sym_on] = ACTIONS(4815), - [anon_sym_equals] = ACTIONS(4815), - [anon_sym_let] = ACTIONS(4815), - [anon_sym_orderby] = ACTIONS(4815), - [anon_sym_group] = ACTIONS(4815), - [anon_sym_by] = ACTIONS(4815), - [anon_sym_select] = ACTIONS(4815), - [anon_sym_as] = ACTIONS(4815), - [anon_sym_is] = ACTIONS(4815), - [anon_sym_DASH_GT] = ACTIONS(4815), - [anon_sym_with] = ACTIONS(4815), - [aux_sym_preproc_if_token3] = ACTIONS(4815), - [aux_sym_preproc_else_token1] = ACTIONS(4815), - [aux_sym_preproc_elif_token1] = ACTIONS(4815), + [anon_sym_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), @@ -548701,27 +545155,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3807] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -548731,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6039), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -548779,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), @@ -548788,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(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_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), @@ -548857,27 +545301,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3809] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), + [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), @@ -548887,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6085), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5999), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6001), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -548935,27 +545374,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3810] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -548965,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(6087), - [aux_sym_preproc_else_token1] = ACTIONS(6087), - [aux_sym_preproc_elif_token1] = ACTIONS(6087), + [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), @@ -549013,27 +545447,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3811] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), + [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), @@ -549043,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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -549091,27 +545520,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3812] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3812), [sym_preproc_endregion] = STATE(3812), [sym_preproc_line] = STATE(3812), @@ -549121,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6039), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -549167,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(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -549199,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), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6039), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -549247,6 +545666,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3814] = { + [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), @@ -549256,63 +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_SEMI] = ACTIONS(3974), - [anon_sym_LBRACK] = ACTIONS(3974), - [anon_sym_COLON] = ACTIONS(3974), - [anon_sym_COMMA] = ACTIONS(3974), - [anon_sym_RBRACK] = ACTIONS(3974), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_RPAREN] = ACTIONS(3974), - [anon_sym_LBRACE] = ACTIONS(3974), - [anon_sym_RBRACE] = ACTIONS(3974), - [anon_sym_LT] = ACTIONS(3972), - [anon_sym_GT] = ACTIONS(3972), - [anon_sym_in] = ACTIONS(3974), - [anon_sym_where] = ACTIONS(3974), - [anon_sym_QMARK] = ACTIONS(3972), - [anon_sym_BANG] = ACTIONS(3972), - [anon_sym_PLUS_PLUS] = ACTIONS(3974), - [anon_sym_DASH_DASH] = ACTIONS(3974), - [anon_sym_PLUS] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3972), - [anon_sym_STAR] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3972), - [anon_sym_PERCENT] = ACTIONS(3974), - [anon_sym_CARET] = ACTIONS(3974), - [anon_sym_PIPE] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3972), - [anon_sym_LT_LT] = ACTIONS(3974), - [anon_sym_GT_GT] = ACTIONS(3972), - [anon_sym_GT_GT_GT] = ACTIONS(3974), - [anon_sym_EQ_EQ] = ACTIONS(3974), - [anon_sym_BANG_EQ] = ACTIONS(3974), - [anon_sym_GT_EQ] = ACTIONS(3974), - [anon_sym_LT_EQ] = ACTIONS(3974), - [anon_sym_DOT] = ACTIONS(3972), - [anon_sym_EQ_GT] = ACTIONS(3974), - [anon_sym_switch] = ACTIONS(3974), - [anon_sym_DOT_DOT] = ACTIONS(3974), - [anon_sym_and] = ACTIONS(3974), - [anon_sym_or] = ACTIONS(3972), - [anon_sym_AMP_AMP] = ACTIONS(3974), - [anon_sym_PIPE_PIPE] = ACTIONS(3974), - [sym_op_coalescing] = ACTIONS(3974), - [anon_sym_from] = 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_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(3974), - [anon_sym_with] = ACTIONS(3974), - [aux_sym_preproc_if_token3] = ACTIONS(3974), - [aux_sym_preproc_else_token1] = ACTIONS(3974), - [aux_sym_preproc_elif_token1] = ACTIONS(3974), + [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), @@ -549334,63 +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_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(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), @@ -549403,27 +545812,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3816] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -549433,42 +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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), - [aux_sym_preproc_if_token3] = ACTIONS(4786), - [aux_sym_preproc_else_token1] = ACTIONS(4786), - [aux_sym_preproc_elif_token1] = ACTIONS(4786), + [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), @@ -549481,27 +545885,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3817] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -549511,42 +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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), - [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_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), @@ -549559,27 +545958,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3818] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), + [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), @@ -549589,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -549637,27 +546031,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3819] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), + [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), @@ -549667,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6089), - [anon_sym_is] = ACTIONS(6091), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -549715,6 +546104,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3820] = { + [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), @@ -549724,63 +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_SEMI] = ACTIONS(6093), - [anon_sym_LBRACK] = ACTIONS(6093), - [anon_sym_COLON] = ACTIONS(6093), - [anon_sym_COMMA] = ACTIONS(6093), - [anon_sym_RBRACK] = ACTIONS(6093), - [anon_sym_LPAREN] = ACTIONS(6093), - [anon_sym_RPAREN] = ACTIONS(6093), - [anon_sym_RBRACE] = ACTIONS(6093), - [anon_sym_LT] = ACTIONS(6095), - [anon_sym_GT] = ACTIONS(6095), - [anon_sym_in] = ACTIONS(6095), - [anon_sym_where] = ACTIONS(6093), - [anon_sym_QMARK] = ACTIONS(6095), - [anon_sym_BANG] = ACTIONS(6095), - [anon_sym_PLUS_PLUS] = ACTIONS(6093), - [anon_sym_DASH_DASH] = ACTIONS(6093), - [anon_sym_PLUS] = ACTIONS(6095), - [anon_sym_DASH] = ACTIONS(6095), - [anon_sym_STAR] = ACTIONS(6093), - [anon_sym_SLASH] = ACTIONS(6095), - [anon_sym_PERCENT] = ACTIONS(6093), - [anon_sym_CARET] = ACTIONS(6093), - [anon_sym_PIPE] = ACTIONS(6095), - [anon_sym_AMP] = ACTIONS(6095), - [anon_sym_LT_LT] = ACTIONS(6093), - [anon_sym_GT_GT] = ACTIONS(6095), - [anon_sym_GT_GT_GT] = ACTIONS(6093), - [anon_sym_EQ_EQ] = ACTIONS(6093), - [anon_sym_BANG_EQ] = ACTIONS(6093), - [anon_sym_GT_EQ] = ACTIONS(6093), - [anon_sym_LT_EQ] = ACTIONS(6093), - [anon_sym_DOT] = ACTIONS(6095), - [anon_sym_EQ_GT] = ACTIONS(6093), - [anon_sym_switch] = ACTIONS(6093), - [anon_sym_DOT_DOT] = ACTIONS(6093), - [anon_sym_and] = ACTIONS(6093), - [anon_sym_or] = ACTIONS(6095), - [anon_sym_AMP_AMP] = ACTIONS(6093), - [anon_sym_PIPE_PIPE] = ACTIONS(6093), - [sym_op_coalescing] = ACTIONS(6093), - [anon_sym_from] = ACTIONS(6093), - [anon_sym_into] = ACTIONS(6093), - [anon_sym_join] = ACTIONS(6093), - [anon_sym_on] = ACTIONS(6093), - [anon_sym_equals] = ACTIONS(6093), - [anon_sym_let] = ACTIONS(6093), - [anon_sym_orderby] = ACTIONS(6093), - [anon_sym_group] = ACTIONS(6093), - [anon_sym_by] = ACTIONS(6093), - [anon_sym_select] = ACTIONS(6093), - [anon_sym_as] = ACTIONS(6093), - [anon_sym_is] = ACTIONS(6093), - [anon_sym_DASH_GT] = ACTIONS(6093), - [anon_sym_with] = ACTIONS(6093), - [aux_sym_preproc_if_token3] = ACTIONS(6093), - [aux_sym_preproc_else_token1] = ACTIONS(6093), - [aux_sym_preproc_elif_token1] = ACTIONS(6093), + [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), @@ -549793,27 +546177,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3821] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), [sym_preproc_region] = STATE(3821), [sym_preproc_endregion] = STATE(3821), [sym_preproc_line] = STATE(3821), @@ -549823,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), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6085), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5999), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6001), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -549871,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), @@ -549880,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(6097), - [anon_sym_LBRACK] = ACTIONS(6097), - [anon_sym_COLON] = ACTIONS(6097), - [anon_sym_COMMA] = ACTIONS(6097), - [anon_sym_RBRACK] = ACTIONS(6097), - [anon_sym_LPAREN] = ACTIONS(6097), - [anon_sym_RPAREN] = ACTIONS(6097), - [anon_sym_RBRACE] = ACTIONS(6097), - [anon_sym_LT] = ACTIONS(6099), - [anon_sym_GT] = ACTIONS(6099), - [anon_sym_in] = ACTIONS(6099), - [anon_sym_where] = ACTIONS(6097), - [anon_sym_QMARK] = ACTIONS(6099), - [anon_sym_BANG] = ACTIONS(6099), - [anon_sym_PLUS_PLUS] = ACTIONS(6097), - [anon_sym_DASH_DASH] = ACTIONS(6097), - [anon_sym_PLUS] = ACTIONS(6099), - [anon_sym_DASH] = ACTIONS(6099), - [anon_sym_STAR] = ACTIONS(6097), - [anon_sym_SLASH] = ACTIONS(6099), - [anon_sym_PERCENT] = ACTIONS(6097), - [anon_sym_CARET] = ACTIONS(6097), - [anon_sym_PIPE] = ACTIONS(6099), - [anon_sym_AMP] = ACTIONS(6099), - [anon_sym_LT_LT] = ACTIONS(6097), - [anon_sym_GT_GT] = ACTIONS(6099), - [anon_sym_GT_GT_GT] = ACTIONS(6097), - [anon_sym_EQ_EQ] = ACTIONS(6097), - [anon_sym_BANG_EQ] = ACTIONS(6097), - [anon_sym_GT_EQ] = ACTIONS(6097), - [anon_sym_LT_EQ] = ACTIONS(6097), - [anon_sym_DOT] = ACTIONS(6099), - [anon_sym_EQ_GT] = ACTIONS(6097), - [anon_sym_switch] = ACTIONS(6097), - [anon_sym_DOT_DOT] = ACTIONS(6097), - [anon_sym_and] = ACTIONS(6097), - [anon_sym_or] = ACTIONS(6099), - [anon_sym_AMP_AMP] = ACTIONS(6097), - [anon_sym_PIPE_PIPE] = ACTIONS(6097), - [sym_op_coalescing] = ACTIONS(6097), - [anon_sym_from] = ACTIONS(6097), - [anon_sym_into] = ACTIONS(6097), - [anon_sym_join] = ACTIONS(6097), - [anon_sym_on] = ACTIONS(6097), - [anon_sym_equals] = ACTIONS(6097), - [anon_sym_let] = ACTIONS(6097), - [anon_sym_orderby] = ACTIONS(6097), - [anon_sym_group] = ACTIONS(6097), - [anon_sym_by] = ACTIONS(6097), - [anon_sym_select] = ACTIONS(6097), - [anon_sym_as] = ACTIONS(6097), - [anon_sym_is] = ACTIONS(6097), - [anon_sym_DASH_GT] = ACTIONS(6097), - [anon_sym_with] = ACTIONS(6097), - [aux_sym_preproc_if_token3] = ACTIONS(6097), - [aux_sym_preproc_else_token1] = ACTIONS(6097), - [aux_sym_preproc_elif_token1] = ACTIONS(6097), + [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), @@ -549949,27 +546323,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3823] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(3823), [sym_preproc_endregion] = STATE(3823), [sym_preproc_line] = STATE(3823), @@ -549979,42 +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_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6101), - [anon_sym_RBRACK] = ACTIONS(6101), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6101), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -550027,27 +546396,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3824] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(3824), [sym_preproc_endregion] = STATE(3824), [sym_preproc_line] = STATE(3824), @@ -550057,42 +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_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6061), - [anon_sym_RBRACK] = ACTIONS(6061), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6061), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -550105,27 +546469,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3825] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), + [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), @@ -550135,42 +546493,42 @@ 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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -550181,29 +546539,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), }, [3826] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -550213,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6039), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -550261,27 +546615,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3827] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), + [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), @@ -550291,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(5518), - [anon_sym_COLON] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6085), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5999), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6001), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -550339,29 +546688,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3828] = { - [sym_attribute_list] = STATE(5914), - [sym__attribute_list] = STATE(5916), - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6214), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym__lambda_parameters] = STATE(7940), - [sym_identifier] = STATE(6058), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_if_in_attribute_list] = STATE(5914), + [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), @@ -550371,40 +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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(5567), - [aux_sym__lambda_expression_init_repeat1] = STATE(4893), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LBRACK] = ACTIONS(5444), - [anon_sym_LPAREN] = ACTIONS(4099), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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_if_token1] = ACTIONS(5452), + [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), @@ -550417,27 +546761,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3829] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(3829), [sym_preproc_endregion] = STATE(3829), [sym_preproc_line] = STATE(3829), @@ -550447,75 +546770,85 @@ 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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6039), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [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(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), + [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), @@ -550525,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6085), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5999), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6001), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -550573,27 +546907,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3831] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -550603,42 +546931,42 @@ 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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -550649,29 +546977,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), }, [3832] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), + [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), @@ -550681,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -550729,27 +547053,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3833] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), + [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), @@ -550759,42 +547077,42 @@ 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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6085), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5999), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6001), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -550805,6 +547123,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), }, [3834] = { [sym_preproc_region] = STATE(3834), @@ -550816,75 +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(3978), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_COLON] = ACTIONS(3978), - [anon_sym_COMMA] = ACTIONS(3978), - [anon_sym_RBRACK] = ACTIONS(3978), - [anon_sym_LPAREN] = ACTIONS(3978), - [anon_sym_RPAREN] = ACTIONS(3978), - [anon_sym_LBRACE] = ACTIONS(3978), - [anon_sym_RBRACE] = ACTIONS(3978), - [anon_sym_LT] = ACTIONS(3976), - [anon_sym_GT] = ACTIONS(3976), - [anon_sym_in] = ACTIONS(3978), - [anon_sym_where] = ACTIONS(3978), - [anon_sym_QMARK] = ACTIONS(3976), - [anon_sym_BANG] = ACTIONS(3976), - [anon_sym_PLUS_PLUS] = ACTIONS(3978), - [anon_sym_DASH_DASH] = ACTIONS(3978), - [anon_sym_PLUS] = ACTIONS(3976), - [anon_sym_DASH] = ACTIONS(3976), - [anon_sym_STAR] = ACTIONS(3978), - [anon_sym_SLASH] = ACTIONS(3976), - [anon_sym_PERCENT] = ACTIONS(3978), - [anon_sym_CARET] = ACTIONS(3978), - [anon_sym_PIPE] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), - [anon_sym_LT_LT] = ACTIONS(3978), - [anon_sym_GT_GT] = ACTIONS(3976), - [anon_sym_GT_GT_GT] = ACTIONS(3978), - [anon_sym_EQ_EQ] = ACTIONS(3978), - [anon_sym_BANG_EQ] = ACTIONS(3978), - [anon_sym_GT_EQ] = ACTIONS(3978), - [anon_sym_LT_EQ] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3976), - [anon_sym_EQ_GT] = ACTIONS(3978), - [anon_sym_switch] = ACTIONS(3978), - [anon_sym_DOT_DOT] = ACTIONS(3978), - [anon_sym_and] = ACTIONS(3978), - [anon_sym_or] = ACTIONS(3976), - [anon_sym_AMP_AMP] = ACTIONS(3978), - [anon_sym_PIPE_PIPE] = ACTIONS(3978), - [sym_op_coalescing] = ACTIONS(3978), - [anon_sym_from] = ACTIONS(3978), - [anon_sym_join] = ACTIONS(3978), - [anon_sym_on] = ACTIONS(3978), - [anon_sym_equals] = ACTIONS(3978), - [anon_sym_let] = ACTIONS(3978), - [anon_sym_orderby] = ACTIONS(3978), - [anon_sym_group] = ACTIONS(3978), - [anon_sym_by] = ACTIONS(3978), - [anon_sym_select] = ACTIONS(3978), - [anon_sym_as] = ACTIONS(3978), - [anon_sym_is] = ACTIONS(3978), - [anon_sym_DASH_GT] = ACTIONS(3978), - [anon_sym_with] = ACTIONS(3978), - [aux_sym_preproc_if_token3] = ACTIONS(3978), - [aux_sym_preproc_else_token1] = ACTIONS(3978), - [aux_sym_preproc_elif_token1] = ACTIONS(3978), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [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(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), @@ -550894,63 +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_SEMI] = ACTIONS(3970), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_COLON] = ACTIONS(3970), - [anon_sym_COMMA] = ACTIONS(3970), - [anon_sym_RBRACK] = ACTIONS(3970), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_RPAREN] = ACTIONS(3970), - [anon_sym_LBRACE] = ACTIONS(3970), - [anon_sym_RBRACE] = ACTIONS(3970), - [anon_sym_LT] = ACTIONS(3968), - [anon_sym_GT] = ACTIONS(3968), - [anon_sym_in] = ACTIONS(3970), - [anon_sym_where] = ACTIONS(3970), - [anon_sym_QMARK] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(3968), - [anon_sym_PLUS_PLUS] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(3970), - [anon_sym_PLUS] = ACTIONS(3968), - [anon_sym_DASH] = ACTIONS(3968), - [anon_sym_STAR] = ACTIONS(3970), - [anon_sym_SLASH] = ACTIONS(3968), - [anon_sym_PERCENT] = ACTIONS(3970), - [anon_sym_CARET] = ACTIONS(3970), - [anon_sym_PIPE] = ACTIONS(3968), - [anon_sym_AMP] = ACTIONS(3968), - [anon_sym_LT_LT] = ACTIONS(3970), - [anon_sym_GT_GT] = ACTIONS(3968), - [anon_sym_GT_GT_GT] = ACTIONS(3970), - [anon_sym_EQ_EQ] = ACTIONS(3970), - [anon_sym_BANG_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_DOT] = ACTIONS(3968), - [anon_sym_EQ_GT] = ACTIONS(3970), - [anon_sym_switch] = ACTIONS(3970), - [anon_sym_DOT_DOT] = ACTIONS(3970), - [anon_sym_and] = ACTIONS(3970), - [anon_sym_or] = ACTIONS(3968), - [anon_sym_AMP_AMP] = ACTIONS(3970), - [anon_sym_PIPE_PIPE] = ACTIONS(3970), - [sym_op_coalescing] = ACTIONS(3970), - [anon_sym_from] = 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_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(3970), - [anon_sym_with] = ACTIONS(3970), - [aux_sym_preproc_if_token3] = ACTIONS(3970), - [aux_sym_preproc_else_token1] = ACTIONS(3970), - [aux_sym_preproc_elif_token1] = ACTIONS(3970), + [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), @@ -550963,27 +547272,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3836] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), + [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), @@ -550993,42 +547296,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3836), [sym_preproc_define] = STATE(3836), [sym_preproc_undef] = STATE(3836), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6103), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6107), - [anon_sym_equals] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(6109), - [anon_sym_is] = ACTIONS(6111), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -551039,29 +547342,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), }, [3837] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -551071,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_in] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -551119,27 +547418,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3838] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -551149,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -551197,6 +547491,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3839] = { + [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), @@ -551206,63 +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_SEMI] = ACTIONS(6113), - [anon_sym_LBRACK] = ACTIONS(6113), - [anon_sym_COLON] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_RBRACK] = ACTIONS(6113), - [anon_sym_LPAREN] = ACTIONS(6113), - [anon_sym_RPAREN] = ACTIONS(6113), - [anon_sym_RBRACE] = ACTIONS(6113), - [anon_sym_LT] = ACTIONS(6115), - [anon_sym_GT] = ACTIONS(6115), - [anon_sym_in] = ACTIONS(6115), - [anon_sym_where] = ACTIONS(6113), - [anon_sym_QMARK] = ACTIONS(6115), - [anon_sym_BANG] = ACTIONS(6115), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS] = ACTIONS(6115), - [anon_sym_DASH] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(6113), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_PERCENT] = ACTIONS(6113), - [anon_sym_CARET] = ACTIONS(6113), - [anon_sym_PIPE] = ACTIONS(6115), - [anon_sym_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(6113), - [anon_sym_GT_GT] = ACTIONS(6115), - [anon_sym_GT_GT_GT] = ACTIONS(6113), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6113), - [anon_sym_DOT] = ACTIONS(6115), - [anon_sym_EQ_GT] = ACTIONS(6113), - [anon_sym_switch] = ACTIONS(6113), - [anon_sym_DOT_DOT] = ACTIONS(6113), - [anon_sym_and] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6115), - [anon_sym_AMP_AMP] = ACTIONS(6113), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [sym_op_coalescing] = ACTIONS(6113), - [anon_sym_from] = ACTIONS(6113), - [anon_sym_into] = ACTIONS(6113), - [anon_sym_join] = ACTIONS(6113), - [anon_sym_on] = ACTIONS(6113), - [anon_sym_equals] = ACTIONS(6113), - [anon_sym_let] = ACTIONS(6113), - [anon_sym_orderby] = ACTIONS(6113), - [anon_sym_group] = ACTIONS(6113), - [anon_sym_by] = ACTIONS(6113), - [anon_sym_select] = ACTIONS(6113), - [anon_sym_as] = ACTIONS(6113), - [anon_sym_is] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6113), - [anon_sym_with] = ACTIONS(6113), - [aux_sym_preproc_if_token3] = ACTIONS(6113), - [aux_sym_preproc_else_token1] = ACTIONS(6113), - [aux_sym_preproc_elif_token1] = ACTIONS(6113), + [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), @@ -551273,29 +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(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), + [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), @@ -551305,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_by] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -551353,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), @@ -551362,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(6117), - [anon_sym_LBRACK] = ACTIONS(6117), - [anon_sym_COLON] = ACTIONS(6117), - [anon_sym_COMMA] = ACTIONS(6117), - [anon_sym_RBRACK] = ACTIONS(6117), - [anon_sym_LPAREN] = ACTIONS(6117), - [anon_sym_RPAREN] = ACTIONS(6117), - [anon_sym_RBRACE] = ACTIONS(6117), - [anon_sym_LT] = ACTIONS(6119), - [anon_sym_GT] = ACTIONS(6119), - [anon_sym_in] = ACTIONS(6119), - [anon_sym_where] = ACTIONS(6117), - [anon_sym_QMARK] = ACTIONS(6119), - [anon_sym_BANG] = ACTIONS(6119), - [anon_sym_PLUS_PLUS] = ACTIONS(6117), - [anon_sym_DASH_DASH] = ACTIONS(6117), - [anon_sym_PLUS] = ACTIONS(6119), - [anon_sym_DASH] = ACTIONS(6119), - [anon_sym_STAR] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(6119), - [anon_sym_PERCENT] = ACTIONS(6117), - [anon_sym_CARET] = ACTIONS(6117), - [anon_sym_PIPE] = ACTIONS(6119), - [anon_sym_AMP] = ACTIONS(6119), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6117), - [anon_sym_BANG_EQ] = ACTIONS(6117), - [anon_sym_GT_EQ] = ACTIONS(6117), - [anon_sym_LT_EQ] = ACTIONS(6117), - [anon_sym_DOT] = ACTIONS(6119), - [anon_sym_EQ_GT] = ACTIONS(6117), - [anon_sym_switch] = ACTIONS(6117), - [anon_sym_DOT_DOT] = ACTIONS(6117), - [anon_sym_and] = ACTIONS(6117), - [anon_sym_or] = ACTIONS(6119), - [anon_sym_AMP_AMP] = ACTIONS(6117), - [anon_sym_PIPE_PIPE] = ACTIONS(6117), - [sym_op_coalescing] = ACTIONS(6117), - [anon_sym_from] = ACTIONS(6117), - [anon_sym_into] = ACTIONS(6117), - [anon_sym_join] = ACTIONS(6117), - [anon_sym_on] = ACTIONS(6117), - [anon_sym_equals] = ACTIONS(6117), - [anon_sym_let] = ACTIONS(6117), - [anon_sym_orderby] = ACTIONS(6117), - [anon_sym_group] = ACTIONS(6117), - [anon_sym_by] = ACTIONS(6117), - [anon_sym_select] = ACTIONS(6117), - [anon_sym_as] = ACTIONS(6117), - [anon_sym_is] = ACTIONS(6117), - [anon_sym_DASH_GT] = ACTIONS(6117), - [anon_sym_with] = ACTIONS(6117), - [aux_sym_preproc_if_token3] = ACTIONS(6117), - [aux_sym_preproc_else_token1] = ACTIONS(6117), - [aux_sym_preproc_elif_token1] = ACTIONS(6117), + [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), @@ -551431,6 +547710,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3842] = { + [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), @@ -551440,63 +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_SEMI] = ACTIONS(6121), - [anon_sym_LBRACK] = ACTIONS(6121), - [anon_sym_COLON] = ACTIONS(6121), - [anon_sym_COMMA] = ACTIONS(6121), - [anon_sym_RBRACK] = ACTIONS(6121), - [anon_sym_LPAREN] = ACTIONS(6121), - [anon_sym_RPAREN] = ACTIONS(6121), - [anon_sym_RBRACE] = ACTIONS(6121), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_in] = ACTIONS(6123), - [anon_sym_where] = ACTIONS(6121), - [anon_sym_QMARK] = ACTIONS(6123), - [anon_sym_BANG] = ACTIONS(6123), - [anon_sym_PLUS_PLUS] = ACTIONS(6121), - [anon_sym_DASH_DASH] = ACTIONS(6121), - [anon_sym_PLUS] = ACTIONS(6123), - [anon_sym_DASH] = ACTIONS(6123), - [anon_sym_STAR] = ACTIONS(6121), - [anon_sym_SLASH] = ACTIONS(6123), - [anon_sym_PERCENT] = ACTIONS(6121), - [anon_sym_CARET] = ACTIONS(6121), - [anon_sym_PIPE] = ACTIONS(6123), - [anon_sym_AMP] = ACTIONS(6123), - [anon_sym_LT_LT] = ACTIONS(6121), - [anon_sym_GT_GT] = ACTIONS(6123), - [anon_sym_GT_GT_GT] = ACTIONS(6121), - [anon_sym_EQ_EQ] = ACTIONS(6121), - [anon_sym_BANG_EQ] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6121), - [anon_sym_LT_EQ] = ACTIONS(6121), - [anon_sym_DOT] = ACTIONS(6123), - [anon_sym_EQ_GT] = ACTIONS(6121), - [anon_sym_switch] = ACTIONS(6121), - [anon_sym_DOT_DOT] = ACTIONS(6121), - [anon_sym_and] = ACTIONS(6121), - [anon_sym_or] = ACTIONS(6123), - [anon_sym_AMP_AMP] = ACTIONS(6121), - [anon_sym_PIPE_PIPE] = ACTIONS(6121), - [sym_op_coalescing] = ACTIONS(6121), - [anon_sym_from] = ACTIONS(6121), - [anon_sym_into] = ACTIONS(6121), - [anon_sym_join] = ACTIONS(6121), - [anon_sym_on] = ACTIONS(6121), - [anon_sym_equals] = ACTIONS(6121), - [anon_sym_let] = ACTIONS(6121), - [anon_sym_orderby] = ACTIONS(6121), - [anon_sym_group] = ACTIONS(6121), - [anon_sym_by] = ACTIONS(6121), - [anon_sym_select] = ACTIONS(6121), - [anon_sym_as] = ACTIONS(6121), - [anon_sym_is] = ACTIONS(6121), - [anon_sym_DASH_GT] = ACTIONS(6121), - [anon_sym_with] = ACTIONS(6121), - [aux_sym_preproc_if_token3] = ACTIONS(6121), - [aux_sym_preproc_else_token1] = ACTIONS(6121), - [aux_sym_preproc_elif_token1] = ACTIONS(6121), + [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), @@ -551509,27 +547783,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3843] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -551539,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -551587,27 +547856,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3844] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -551617,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6037), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6039), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -551665,27 +547929,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3845] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -551695,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -551743,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), @@ -551752,63 +548014,55 @@ 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(6125), - [anon_sym_LBRACK] = ACTIONS(6125), - [anon_sym_COLON] = ACTIONS(6125), - [anon_sym_COMMA] = ACTIONS(6125), - [anon_sym_RBRACK] = ACTIONS(6125), - [anon_sym_LPAREN] = ACTIONS(6125), - [anon_sym_RPAREN] = ACTIONS(6125), - [anon_sym_RBRACE] = ACTIONS(6125), - [anon_sym_LT] = ACTIONS(6127), - [anon_sym_GT] = ACTIONS(6127), - [anon_sym_in] = ACTIONS(6127), - [anon_sym_where] = ACTIONS(6125), - [anon_sym_QMARK] = ACTIONS(6127), - [anon_sym_BANG] = ACTIONS(6127), - [anon_sym_PLUS_PLUS] = ACTIONS(6125), - [anon_sym_DASH_DASH] = ACTIONS(6125), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6125), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6125), - [anon_sym_CARET] = ACTIONS(6125), - [anon_sym_PIPE] = ACTIONS(6127), - [anon_sym_AMP] = ACTIONS(6127), - [anon_sym_LT_LT] = ACTIONS(6125), - [anon_sym_GT_GT] = ACTIONS(6127), - [anon_sym_GT_GT_GT] = ACTIONS(6125), - [anon_sym_EQ_EQ] = ACTIONS(6125), - [anon_sym_BANG_EQ] = ACTIONS(6125), - [anon_sym_GT_EQ] = ACTIONS(6125), - [anon_sym_LT_EQ] = ACTIONS(6125), - [anon_sym_DOT] = ACTIONS(6127), - [anon_sym_EQ_GT] = ACTIONS(6125), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6125), - [anon_sym_and] = ACTIONS(6125), - [anon_sym_or] = ACTIONS(6127), - [anon_sym_AMP_AMP] = ACTIONS(6125), - [anon_sym_PIPE_PIPE] = ACTIONS(6125), - [sym_op_coalescing] = ACTIONS(6125), - [anon_sym_from] = ACTIONS(6125), - [anon_sym_into] = ACTIONS(6125), - [anon_sym_join] = ACTIONS(6125), - [anon_sym_on] = ACTIONS(6125), - [anon_sym_equals] = ACTIONS(6125), - [anon_sym_let] = ACTIONS(6125), - [anon_sym_orderby] = ACTIONS(6125), - [anon_sym_group] = ACTIONS(6125), - [anon_sym_by] = ACTIONS(6125), - [anon_sym_select] = ACTIONS(6125), - [anon_sym_as] = ACTIONS(6125), - [anon_sym_is] = ACTIONS(6125), - [anon_sym_DASH_GT] = ACTIONS(6125), - [anon_sym_with] = ACTIONS(6125), - [aux_sym_preproc_if_token3] = ACTIONS(6125), - [aux_sym_preproc_else_token1] = ACTIONS(6125), - [aux_sym_preproc_elif_token1] = ACTIONS(6125), + [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), @@ -551821,27 +548075,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3847] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -551851,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -551908,63 +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_SEMI] = ACTIONS(6129), - [anon_sym_LBRACK] = ACTIONS(6129), - [anon_sym_COLON] = ACTIONS(6129), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_RBRACK] = ACTIONS(6129), - [anon_sym_LPAREN] = ACTIONS(6129), - [anon_sym_RPAREN] = ACTIONS(6129), - [anon_sym_RBRACE] = ACTIONS(6129), - [anon_sym_LT] = ACTIONS(6131), - [anon_sym_GT] = ACTIONS(6131), - [anon_sym_in] = ACTIONS(6131), - [anon_sym_where] = ACTIONS(6129), - [anon_sym_QMARK] = ACTIONS(6131), - [anon_sym_BANG] = ACTIONS(6131), - [anon_sym_PLUS_PLUS] = ACTIONS(6129), - [anon_sym_DASH_DASH] = ACTIONS(6129), - [anon_sym_PLUS] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6131), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6129), - [anon_sym_PIPE] = ACTIONS(6131), - [anon_sym_AMP] = ACTIONS(6131), - [anon_sym_LT_LT] = ACTIONS(6129), - [anon_sym_GT_GT] = ACTIONS(6131), - [anon_sym_GT_GT_GT] = ACTIONS(6129), - [anon_sym_EQ_EQ] = ACTIONS(6129), - [anon_sym_BANG_EQ] = ACTIONS(6129), - [anon_sym_GT_EQ] = ACTIONS(6129), - [anon_sym_LT_EQ] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6131), - [anon_sym_EQ_GT] = ACTIONS(6129), - [anon_sym_switch] = ACTIONS(6129), - [anon_sym_DOT_DOT] = ACTIONS(6129), - [anon_sym_and] = ACTIONS(6129), - [anon_sym_or] = ACTIONS(6131), - [anon_sym_AMP_AMP] = ACTIONS(6129), - [anon_sym_PIPE_PIPE] = ACTIONS(6129), - [sym_op_coalescing] = ACTIONS(6129), - [anon_sym_from] = ACTIONS(6129), - [anon_sym_into] = ACTIONS(6129), - [anon_sym_join] = ACTIONS(6129), - [anon_sym_on] = ACTIONS(6129), - [anon_sym_equals] = ACTIONS(6129), - [anon_sym_let] = ACTIONS(6129), - [anon_sym_orderby] = ACTIONS(6129), - [anon_sym_group] = ACTIONS(6129), - [anon_sym_by] = ACTIONS(6129), - [anon_sym_select] = ACTIONS(6129), - [anon_sym_as] = ACTIONS(6129), - [anon_sym_is] = ACTIONS(6129), - [anon_sym_DASH_GT] = ACTIONS(6129), - [anon_sym_with] = ACTIONS(6129), - [aux_sym_preproc_if_token3] = ACTIONS(6129), - [aux_sym_preproc_else_token1] = ACTIONS(6129), - [aux_sym_preproc_elif_token1] = ACTIONS(6129), + [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), @@ -551975,29 +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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -552007,42 +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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4772), - [aux_sym_preproc_else_token1] = ACTIONS(4772), - [aux_sym_preproc_elif_token1] = ACTIONS(4772), + [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), @@ -552055,27 +548294,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3850] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(3850), [sym_preproc_endregion] = STATE(3850), [sym_preproc_line] = STATE(3850), @@ -552085,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), - [aux_sym_array_rank_specifier_repeat1] = STATE(7059), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(6133), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -552131,29 +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(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [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), @@ -552163,41 +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_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5744), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5746), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -552208,30 +548438,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(4686), }, [3852] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), + [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), @@ -552241,42 +548464,42 @@ 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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_equals] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -552287,29 +548510,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), }, [3853] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -552319,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -552367,27 +548586,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3854] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), + [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), @@ -552397,42 +548610,42 @@ 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), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6089), - [anon_sym_is] = ACTIONS(6091), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -552443,8 +548656,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), }, [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), @@ -552454,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(4764), - [anon_sym_LBRACK] = ACTIONS(4764), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_RBRACK] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4764), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_in] = ACTIONS(4766), - [anon_sym_where] = ACTIONS(4764), - [anon_sym_QMARK] = ACTIONS(4766), - [anon_sym_BANG] = ACTIONS(4766), - [anon_sym_PLUS_PLUS] = ACTIONS(4764), - [anon_sym_DASH_DASH] = ACTIONS(4764), - [anon_sym_PLUS] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4766), - [anon_sym_PERCENT] = ACTIONS(4764), - [anon_sym_CARET] = ACTIONS(4764), - [anon_sym_PIPE] = ACTIONS(4766), - [anon_sym_AMP] = ACTIONS(4766), - [anon_sym_LT_LT] = ACTIONS(4764), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_GT_GT_GT] = ACTIONS(4764), - [anon_sym_EQ_EQ] = ACTIONS(4764), - [anon_sym_BANG_EQ] = ACTIONS(4764), - [anon_sym_GT_EQ] = ACTIONS(4764), - [anon_sym_LT_EQ] = ACTIONS(4764), - [anon_sym_DOT] = ACTIONS(4766), - [anon_sym_EQ_GT] = ACTIONS(4764), - [anon_sym_switch] = ACTIONS(4764), - [anon_sym_DOT_DOT] = ACTIONS(4764), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4764), - [anon_sym_PIPE_PIPE] = ACTIONS(4764), - [sym_op_coalescing] = ACTIONS(4764), - [anon_sym_from] = ACTIONS(4764), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_join] = ACTIONS(4764), - [anon_sym_on] = ACTIONS(4764), - [anon_sym_equals] = ACTIONS(4764), - [anon_sym_let] = ACTIONS(4764), - [anon_sym_orderby] = ACTIONS(4764), - [anon_sym_group] = ACTIONS(4764), - [anon_sym_by] = ACTIONS(4764), - [anon_sym_select] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4764), - [anon_sym_is] = ACTIONS(4764), - [anon_sym_DASH_GT] = ACTIONS(4764), - [anon_sym_with] = ACTIONS(4764), - [aux_sym_preproc_if_token3] = ACTIONS(4764), - [aux_sym_preproc_else_token1] = ACTIONS(4764), - [aux_sym_preproc_elif_token1] = ACTIONS(4764), + [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), @@ -552523,27 +548732,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3856] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), + [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), @@ -552553,42 +548756,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3856), [sym_preproc_define] = STATE(3856), [sym_preproc_undef] = STATE(3856), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6089), - [anon_sym_is] = ACTIONS(6091), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -552599,29 +548802,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), }, [3857] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), [sym_preproc_region] = STATE(3857), [sym_preproc_endregion] = STATE(3857), [sym_preproc_line] = STATE(3857), @@ -552631,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_on] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -552679,27 +548878,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3858] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -552709,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6065), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -552757,6 +548951,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3859] = { + [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), @@ -552766,63 +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_SEMI] = ACTIONS(6135), - [anon_sym_LBRACK] = ACTIONS(6135), - [anon_sym_COLON] = ACTIONS(6135), - [anon_sym_COMMA] = ACTIONS(6135), - [anon_sym_RBRACK] = ACTIONS(6135), - [anon_sym_LPAREN] = ACTIONS(6135), - [anon_sym_RPAREN] = ACTIONS(6135), - [anon_sym_RBRACE] = ACTIONS(6135), - [anon_sym_LT] = ACTIONS(6137), - [anon_sym_GT] = ACTIONS(6137), - [anon_sym_in] = ACTIONS(6137), - [anon_sym_where] = ACTIONS(6135), - [anon_sym_QMARK] = ACTIONS(6137), - [anon_sym_BANG] = ACTIONS(6137), - [anon_sym_PLUS_PLUS] = ACTIONS(6135), - [anon_sym_DASH_DASH] = ACTIONS(6135), - [anon_sym_PLUS] = ACTIONS(6137), - [anon_sym_DASH] = ACTIONS(6137), - [anon_sym_STAR] = ACTIONS(6135), - [anon_sym_SLASH] = ACTIONS(6137), - [anon_sym_PERCENT] = ACTIONS(6135), - [anon_sym_CARET] = ACTIONS(6135), - [anon_sym_PIPE] = ACTIONS(6137), - [anon_sym_AMP] = ACTIONS(6137), - [anon_sym_LT_LT] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6137), - [anon_sym_GT_GT_GT] = ACTIONS(6135), - [anon_sym_EQ_EQ] = ACTIONS(6135), - [anon_sym_BANG_EQ] = ACTIONS(6135), - [anon_sym_GT_EQ] = ACTIONS(6135), - [anon_sym_LT_EQ] = ACTIONS(6135), - [anon_sym_DOT] = ACTIONS(6137), - [anon_sym_EQ_GT] = ACTIONS(6135), - [anon_sym_switch] = ACTIONS(6135), - [anon_sym_DOT_DOT] = ACTIONS(6135), - [anon_sym_and] = ACTIONS(6135), - [anon_sym_or] = ACTIONS(6137), - [anon_sym_AMP_AMP] = ACTIONS(6135), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [sym_op_coalescing] = ACTIONS(6135), - [anon_sym_from] = ACTIONS(6135), - [anon_sym_into] = ACTIONS(6135), - [anon_sym_join] = ACTIONS(6135), - [anon_sym_on] = ACTIONS(6135), - [anon_sym_equals] = ACTIONS(6135), - [anon_sym_let] = ACTIONS(6135), - [anon_sym_orderby] = ACTIONS(6135), - [anon_sym_group] = ACTIONS(6135), - [anon_sym_by] = ACTIONS(6135), - [anon_sym_select] = ACTIONS(6135), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6135), - [anon_sym_DASH_GT] = ACTIONS(6135), - [anon_sym_with] = ACTIONS(6135), - [aux_sym_preproc_if_token3] = ACTIONS(6135), - [aux_sym_preproc_else_token1] = ACTIONS(6135), - [aux_sym_preproc_elif_token1] = ACTIONS(6135), + [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), @@ -552835,27 +549024,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3860] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), + [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), @@ -552865,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6089), - [anon_sym_is] = ACTIONS(6091), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -552913,6 +549097,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3861] = { + [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), @@ -552922,63 +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_SEMI] = ACTIONS(6139), - [anon_sym_LBRACK] = ACTIONS(6139), - [anon_sym_COLON] = ACTIONS(6139), - [anon_sym_COMMA] = ACTIONS(6139), - [anon_sym_RBRACK] = ACTIONS(6139), - [anon_sym_LPAREN] = ACTIONS(6139), - [anon_sym_RPAREN] = ACTIONS(6139), - [anon_sym_RBRACE] = ACTIONS(6139), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_GT] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_where] = ACTIONS(6139), - [anon_sym_QMARK] = ACTIONS(6141), - [anon_sym_BANG] = ACTIONS(6141), - [anon_sym_PLUS_PLUS] = ACTIONS(6139), - [anon_sym_DASH_DASH] = ACTIONS(6139), - [anon_sym_PLUS] = ACTIONS(6141), - [anon_sym_DASH] = ACTIONS(6141), - [anon_sym_STAR] = ACTIONS(6139), - [anon_sym_SLASH] = ACTIONS(6141), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_CARET] = ACTIONS(6139), - [anon_sym_PIPE] = ACTIONS(6141), - [anon_sym_AMP] = ACTIONS(6141), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(6139), - [anon_sym_BANG_EQ] = ACTIONS(6139), - [anon_sym_GT_EQ] = ACTIONS(6139), - [anon_sym_LT_EQ] = ACTIONS(6139), - [anon_sym_DOT] = ACTIONS(6141), - [anon_sym_EQ_GT] = ACTIONS(6139), - [anon_sym_switch] = ACTIONS(6139), - [anon_sym_DOT_DOT] = ACTIONS(6139), - [anon_sym_and] = ACTIONS(6139), - [anon_sym_or] = ACTIONS(6141), - [anon_sym_AMP_AMP] = ACTIONS(6139), - [anon_sym_PIPE_PIPE] = ACTIONS(6139), - [sym_op_coalescing] = ACTIONS(6139), - [anon_sym_from] = ACTIONS(6139), - [anon_sym_into] = ACTIONS(6139), - [anon_sym_join] = ACTIONS(6139), - [anon_sym_on] = ACTIONS(6139), - [anon_sym_equals] = ACTIONS(6139), - [anon_sym_let] = ACTIONS(6139), - [anon_sym_orderby] = ACTIONS(6139), - [anon_sym_group] = ACTIONS(6139), - [anon_sym_by] = ACTIONS(6139), - [anon_sym_select] = ACTIONS(6139), - [anon_sym_as] = ACTIONS(6139), - [anon_sym_is] = ACTIONS(6139), - [anon_sym_DASH_GT] = ACTIONS(6139), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(6139), - [aux_sym_preproc_else_token1] = ACTIONS(6139), - [aux_sym_preproc_elif_token1] = ACTIONS(6139), + [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), @@ -552991,27 +549170,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3862] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -553021,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4768), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_and] = ACTIONS(4768), - [anon_sym_or] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -553069,6 +549243,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3863] = { + [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), @@ -553078,63 +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_SEMI] = ACTIONS(6143), - [anon_sym_LBRACK] = ACTIONS(6143), - [anon_sym_COLON] = ACTIONS(6143), - [anon_sym_COMMA] = ACTIONS(6143), - [anon_sym_RBRACK] = ACTIONS(6143), - [anon_sym_LPAREN] = ACTIONS(6143), - [anon_sym_RPAREN] = ACTIONS(6143), - [anon_sym_RBRACE] = ACTIONS(6143), - [anon_sym_LT] = ACTIONS(6145), - [anon_sym_GT] = ACTIONS(6145), - [anon_sym_in] = ACTIONS(6145), - [anon_sym_where] = ACTIONS(6143), - [anon_sym_QMARK] = ACTIONS(6145), - [anon_sym_BANG] = ACTIONS(6145), - [anon_sym_PLUS_PLUS] = ACTIONS(6143), - [anon_sym_DASH_DASH] = ACTIONS(6143), - [anon_sym_PLUS] = ACTIONS(6145), - [anon_sym_DASH] = ACTIONS(6145), - [anon_sym_STAR] = ACTIONS(6143), - [anon_sym_SLASH] = ACTIONS(6145), - [anon_sym_PERCENT] = ACTIONS(6143), - [anon_sym_CARET] = ACTIONS(6143), - [anon_sym_PIPE] = ACTIONS(6145), - [anon_sym_AMP] = ACTIONS(6145), - [anon_sym_LT_LT] = ACTIONS(6143), - [anon_sym_GT_GT] = ACTIONS(6145), - [anon_sym_GT_GT_GT] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6143), - [anon_sym_BANG_EQ] = ACTIONS(6143), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_DOT] = ACTIONS(6145), - [anon_sym_EQ_GT] = ACTIONS(6143), - [anon_sym_switch] = ACTIONS(6143), - [anon_sym_DOT_DOT] = ACTIONS(6143), - [anon_sym_and] = ACTIONS(6143), - [anon_sym_or] = ACTIONS(6145), - [anon_sym_AMP_AMP] = ACTIONS(6143), - [anon_sym_PIPE_PIPE] = ACTIONS(6143), - [sym_op_coalescing] = ACTIONS(6143), - [anon_sym_from] = ACTIONS(6143), - [anon_sym_into] = ACTIONS(6143), - [anon_sym_join] = ACTIONS(6143), - [anon_sym_on] = ACTIONS(6143), - [anon_sym_equals] = ACTIONS(6143), - [anon_sym_let] = ACTIONS(6143), - [anon_sym_orderby] = ACTIONS(6143), - [anon_sym_group] = ACTIONS(6143), - [anon_sym_by] = ACTIONS(6143), - [anon_sym_select] = ACTIONS(6143), - [anon_sym_as] = ACTIONS(6143), - [anon_sym_is] = ACTIONS(6143), - [anon_sym_DASH_GT] = ACTIONS(6143), - [anon_sym_with] = ACTIONS(6143), - [aux_sym_preproc_if_token3] = ACTIONS(6143), - [aux_sym_preproc_else_token1] = ACTIONS(6143), - [aux_sym_preproc_elif_token1] = ACTIONS(6143), + [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), @@ -553147,6 +549316,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3864] = { + [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), @@ -553156,63 +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_SEMI] = ACTIONS(6147), - [anon_sym_LBRACK] = ACTIONS(6147), - [anon_sym_COLON] = ACTIONS(6147), - [anon_sym_COMMA] = ACTIONS(6147), - [anon_sym_RBRACK] = ACTIONS(6147), - [anon_sym_LPAREN] = ACTIONS(6147), - [anon_sym_RPAREN] = ACTIONS(6147), - [anon_sym_RBRACE] = ACTIONS(6147), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_in] = ACTIONS(6149), - [anon_sym_where] = ACTIONS(6147), - [anon_sym_QMARK] = ACTIONS(6149), - [anon_sym_BANG] = ACTIONS(6149), - [anon_sym_PLUS_PLUS] = ACTIONS(6147), - [anon_sym_DASH_DASH] = ACTIONS(6147), - [anon_sym_PLUS] = ACTIONS(6149), - [anon_sym_DASH] = ACTIONS(6149), - [anon_sym_STAR] = ACTIONS(6147), - [anon_sym_SLASH] = ACTIONS(6149), - [anon_sym_PERCENT] = ACTIONS(6147), - [anon_sym_CARET] = ACTIONS(6147), - [anon_sym_PIPE] = ACTIONS(6149), - [anon_sym_AMP] = ACTIONS(6149), - [anon_sym_LT_LT] = ACTIONS(6147), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6147), - [anon_sym_EQ_EQ] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6147), - [anon_sym_LT_EQ] = ACTIONS(6147), - [anon_sym_DOT] = ACTIONS(6149), - [anon_sym_EQ_GT] = ACTIONS(6147), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6147), - [anon_sym_and] = ACTIONS(6147), - [anon_sym_or] = ACTIONS(6149), - [anon_sym_AMP_AMP] = ACTIONS(6147), - [anon_sym_PIPE_PIPE] = ACTIONS(6147), - [sym_op_coalescing] = ACTIONS(6147), - [anon_sym_from] = ACTIONS(6147), - [anon_sym_into] = ACTIONS(6147), - [anon_sym_join] = ACTIONS(6147), - [anon_sym_on] = ACTIONS(6147), - [anon_sym_equals] = ACTIONS(6147), - [anon_sym_let] = ACTIONS(6147), - [anon_sym_orderby] = ACTIONS(6147), - [anon_sym_group] = ACTIONS(6147), - [anon_sym_by] = ACTIONS(6147), - [anon_sym_select] = ACTIONS(6147), - [anon_sym_as] = ACTIONS(6147), - [anon_sym_is] = ACTIONS(6147), - [anon_sym_DASH_GT] = ACTIONS(6147), - [anon_sym_with] = ACTIONS(6147), - [aux_sym_preproc_if_token3] = ACTIONS(6147), - [aux_sym_preproc_else_token1] = ACTIONS(6147), - [aux_sym_preproc_elif_token1] = ACTIONS(6147), + [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), @@ -553225,6 +549389,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3865] = { + [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), @@ -553234,63 +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_SEMI] = ACTIONS(6151), - [anon_sym_LBRACK] = ACTIONS(6151), - [anon_sym_COLON] = ACTIONS(6151), - [anon_sym_COMMA] = ACTIONS(6151), - [anon_sym_RBRACK] = ACTIONS(6151), - [anon_sym_LPAREN] = ACTIONS(6151), - [anon_sym_RPAREN] = ACTIONS(6151), - [anon_sym_RBRACE] = ACTIONS(6151), - [anon_sym_LT] = ACTIONS(6153), - [anon_sym_GT] = ACTIONS(6153), - [anon_sym_in] = ACTIONS(6153), - [anon_sym_where] = ACTIONS(6151), - [anon_sym_QMARK] = ACTIONS(6153), - [anon_sym_BANG] = ACTIONS(6153), - [anon_sym_PLUS_PLUS] = ACTIONS(6151), - [anon_sym_DASH_DASH] = ACTIONS(6151), - [anon_sym_PLUS] = ACTIONS(6153), - [anon_sym_DASH] = ACTIONS(6153), - [anon_sym_STAR] = ACTIONS(6151), - [anon_sym_SLASH] = ACTIONS(6153), - [anon_sym_PERCENT] = ACTIONS(6151), - [anon_sym_CARET] = ACTIONS(6151), - [anon_sym_PIPE] = ACTIONS(6153), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_GT_GT] = ACTIONS(6153), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_EQ_EQ] = ACTIONS(6151), - [anon_sym_BANG_EQ] = ACTIONS(6151), - [anon_sym_GT_EQ] = ACTIONS(6151), - [anon_sym_LT_EQ] = ACTIONS(6151), - [anon_sym_DOT] = ACTIONS(6153), - [anon_sym_EQ_GT] = ACTIONS(6151), - [anon_sym_switch] = ACTIONS(6151), - [anon_sym_DOT_DOT] = ACTIONS(6151), - [anon_sym_and] = ACTIONS(6151), - [anon_sym_or] = ACTIONS(6153), - [anon_sym_AMP_AMP] = ACTIONS(6151), - [anon_sym_PIPE_PIPE] = ACTIONS(6151), - [sym_op_coalescing] = ACTIONS(6151), - [anon_sym_from] = ACTIONS(6151), - [anon_sym_into] = ACTIONS(6151), - [anon_sym_join] = ACTIONS(6151), - [anon_sym_on] = ACTIONS(6151), - [anon_sym_equals] = ACTIONS(6151), - [anon_sym_let] = ACTIONS(6151), - [anon_sym_orderby] = ACTIONS(6151), - [anon_sym_group] = ACTIONS(6151), - [anon_sym_by] = ACTIONS(6151), - [anon_sym_select] = ACTIONS(6151), - [anon_sym_as] = ACTIONS(6151), - [anon_sym_is] = ACTIONS(6151), - [anon_sym_DASH_GT] = ACTIONS(6151), - [anon_sym_with] = ACTIONS(6151), - [aux_sym_preproc_if_token3] = ACTIONS(6151), - [aux_sym_preproc_else_token1] = ACTIONS(6151), - [aux_sym_preproc_elif_token1] = ACTIONS(6151), + [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), @@ -553303,27 +549462,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3866] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -553333,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(6155), - [aux_sym_preproc_else_token1] = ACTIONS(6155), - [aux_sym_preproc_elif_token1] = ACTIONS(6155), + [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), @@ -553381,27 +549535,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3867] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), [sym_preproc_region] = STATE(3867), [sym_preproc_endregion] = STATE(3867), [sym_preproc_line] = STATE(3867), @@ -553411,41 +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(5646), - [anon_sym_COLON] = ACTIONS(4768), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -553456,30 +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(4768), + [sym_interpolation_close_brace] = ACTIONS(4530), }, [3868] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -553489,42 +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_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6157), - [anon_sym_RBRACK] = ACTIONS(6157), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6157), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -553537,6 +549681,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3869] = { + [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), @@ -553546,63 +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_SEMI] = ACTIONS(6159), - [anon_sym_LBRACK] = ACTIONS(6159), - [anon_sym_COLON] = ACTIONS(6159), - [anon_sym_COMMA] = ACTIONS(6159), - [anon_sym_RBRACK] = ACTIONS(6159), - [anon_sym_LPAREN] = ACTIONS(6159), - [anon_sym_RPAREN] = ACTIONS(6159), - [anon_sym_RBRACE] = ACTIONS(6159), - [anon_sym_LT] = ACTIONS(6161), - [anon_sym_GT] = ACTIONS(6161), - [anon_sym_in] = ACTIONS(6161), - [anon_sym_where] = ACTIONS(6159), - [anon_sym_QMARK] = ACTIONS(6161), - [anon_sym_BANG] = ACTIONS(6161), - [anon_sym_PLUS_PLUS] = ACTIONS(6159), - [anon_sym_DASH_DASH] = ACTIONS(6159), - [anon_sym_PLUS] = ACTIONS(6161), - [anon_sym_DASH] = ACTIONS(6161), - [anon_sym_STAR] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6161), - [anon_sym_PERCENT] = ACTIONS(6159), - [anon_sym_CARET] = ACTIONS(6159), - [anon_sym_PIPE] = ACTIONS(6161), - [anon_sym_AMP] = ACTIONS(6161), - [anon_sym_LT_LT] = ACTIONS(6159), - [anon_sym_GT_GT] = ACTIONS(6161), - [anon_sym_GT_GT_GT] = ACTIONS(6159), - [anon_sym_EQ_EQ] = ACTIONS(6159), - [anon_sym_BANG_EQ] = ACTIONS(6159), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(6161), - [anon_sym_EQ_GT] = ACTIONS(6159), - [anon_sym_switch] = ACTIONS(6159), - [anon_sym_DOT_DOT] = ACTIONS(6159), - [anon_sym_and] = ACTIONS(6159), - [anon_sym_or] = ACTIONS(6161), - [anon_sym_AMP_AMP] = ACTIONS(6159), - [anon_sym_PIPE_PIPE] = ACTIONS(6159), - [sym_op_coalescing] = ACTIONS(6159), - [anon_sym_from] = ACTIONS(6159), - [anon_sym_into] = ACTIONS(6159), - [anon_sym_join] = ACTIONS(6159), - [anon_sym_on] = ACTIONS(6159), - [anon_sym_equals] = ACTIONS(6159), - [anon_sym_let] = ACTIONS(6159), - [anon_sym_orderby] = ACTIONS(6159), - [anon_sym_group] = ACTIONS(6159), - [anon_sym_by] = ACTIONS(6159), - [anon_sym_select] = ACTIONS(6159), - [anon_sym_as] = ACTIONS(6159), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(6159), - [anon_sym_with] = ACTIONS(6159), - [aux_sym_preproc_if_token3] = ACTIONS(6159), - [aux_sym_preproc_else_token1] = ACTIONS(6159), - [aux_sym_preproc_elif_token1] = ACTIONS(6159), + [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), @@ -553615,27 +549754,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3870] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [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), @@ -553645,41 +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_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [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(5302), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [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(5274), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -553690,30 +549825,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), }, [3871] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -553723,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -553771,27 +549900,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3872] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -553801,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -553858,63 +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_SEMI] = ACTIONS(6163), - [anon_sym_LBRACK] = ACTIONS(6163), - [anon_sym_COLON] = ACTIONS(6163), - [anon_sym_COMMA] = ACTIONS(6163), - [anon_sym_RBRACK] = ACTIONS(6163), - [anon_sym_LPAREN] = ACTIONS(6163), - [anon_sym_RPAREN] = ACTIONS(6163), - [anon_sym_RBRACE] = ACTIONS(6163), - [anon_sym_LT] = ACTIONS(6165), - [anon_sym_GT] = ACTIONS(6165), - [anon_sym_in] = ACTIONS(6165), - [anon_sym_where] = ACTIONS(6163), - [anon_sym_QMARK] = ACTIONS(6165), - [anon_sym_BANG] = ACTIONS(6165), - [anon_sym_PLUS_PLUS] = ACTIONS(6163), - [anon_sym_DASH_DASH] = ACTIONS(6163), - [anon_sym_PLUS] = ACTIONS(6165), - [anon_sym_DASH] = ACTIONS(6165), - [anon_sym_STAR] = ACTIONS(6163), - [anon_sym_SLASH] = ACTIONS(6165), - [anon_sym_PERCENT] = ACTIONS(6163), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_PIPE] = ACTIONS(6165), - [anon_sym_AMP] = ACTIONS(6165), - [anon_sym_LT_LT] = ACTIONS(6163), - [anon_sym_GT_GT] = ACTIONS(6165), - [anon_sym_GT_GT_GT] = ACTIONS(6163), - [anon_sym_EQ_EQ] = ACTIONS(6163), - [anon_sym_BANG_EQ] = ACTIONS(6163), - [anon_sym_GT_EQ] = ACTIONS(6163), - [anon_sym_LT_EQ] = ACTIONS(6163), - [anon_sym_DOT] = ACTIONS(6165), - [anon_sym_EQ_GT] = ACTIONS(6163), - [anon_sym_switch] = ACTIONS(6163), - [anon_sym_DOT_DOT] = ACTIONS(6163), - [anon_sym_and] = ACTIONS(6163), - [anon_sym_or] = ACTIONS(6165), - [anon_sym_AMP_AMP] = ACTIONS(6163), - [anon_sym_PIPE_PIPE] = ACTIONS(6163), - [sym_op_coalescing] = ACTIONS(6163), - [anon_sym_from] = ACTIONS(6163), - [anon_sym_into] = ACTIONS(6163), - [anon_sym_join] = ACTIONS(6163), - [anon_sym_on] = ACTIONS(6163), - [anon_sym_equals] = ACTIONS(6163), - [anon_sym_let] = ACTIONS(6163), - [anon_sym_orderby] = ACTIONS(6163), - [anon_sym_group] = ACTIONS(6163), - [anon_sym_by] = ACTIONS(6163), - [anon_sym_select] = ACTIONS(6163), - [anon_sym_as] = ACTIONS(6163), - [anon_sym_is] = ACTIONS(6163), - [anon_sym_DASH_GT] = ACTIONS(6163), - [anon_sym_with] = ACTIONS(6163), - [aux_sym_preproc_if_token3] = ACTIONS(6163), - [aux_sym_preproc_else_token1] = ACTIONS(6163), - [aux_sym_preproc_elif_token1] = ACTIONS(6163), + [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), @@ -553925,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), @@ -553936,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(3964), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_COLON] = ACTIONS(3964), - [anon_sym_COMMA] = ACTIONS(3964), - [anon_sym_RBRACK] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_RBRACE] = ACTIONS(3964), - [anon_sym_LT] = ACTIONS(3962), - [anon_sym_GT] = ACTIONS(3962), - [anon_sym_in] = ACTIONS(3964), - [anon_sym_where] = ACTIONS(3964), - [anon_sym_QMARK] = ACTIONS(3962), - [anon_sym_BANG] = ACTIONS(3962), - [anon_sym_PLUS_PLUS] = ACTIONS(3964), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_PLUS] = ACTIONS(3962), - [anon_sym_DASH] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3964), - [anon_sym_SLASH] = ACTIONS(3962), - [anon_sym_PERCENT] = ACTIONS(3964), - [anon_sym_CARET] = ACTIONS(3964), - [anon_sym_PIPE] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_LT_LT] = ACTIONS(3964), - [anon_sym_GT_GT] = ACTIONS(3962), - [anon_sym_GT_GT_GT] = ACTIONS(3964), - [anon_sym_EQ_EQ] = ACTIONS(3964), - [anon_sym_BANG_EQ] = ACTIONS(3964), - [anon_sym_GT_EQ] = ACTIONS(3964), - [anon_sym_LT_EQ] = ACTIONS(3964), - [anon_sym_DOT] = ACTIONS(3962), - [anon_sym_EQ_GT] = ACTIONS(3964), - [anon_sym_switch] = ACTIONS(3964), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_and] = ACTIONS(3964), - [anon_sym_or] = ACTIONS(3962), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [sym_op_coalescing] = ACTIONS(3964), - [anon_sym_from] = ACTIONS(3964), - [anon_sym_join] = ACTIONS(3964), - [anon_sym_on] = ACTIONS(3964), - [anon_sym_equals] = ACTIONS(3964), - [anon_sym_let] = ACTIONS(3964), - [anon_sym_orderby] = ACTIONS(3964), - [anon_sym_group] = ACTIONS(3964), - [anon_sym_by] = ACTIONS(3964), - [anon_sym_select] = ACTIONS(3964), - [anon_sym_as] = ACTIONS(3964), - [anon_sym_is] = ACTIONS(3964), - [anon_sym_DASH_GT] = ACTIONS(3964), - [anon_sym_with] = ACTIONS(3964), - [aux_sym_preproc_if_token3] = ACTIONS(3964), - [aux_sym_preproc_else_token1] = ACTIONS(3964), - [aux_sym_preproc_elif_token1] = ACTIONS(3964), + [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), @@ -554005,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), @@ -554014,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(6167), - [anon_sym_LBRACK] = ACTIONS(6167), - [anon_sym_COLON] = ACTIONS(6167), - [anon_sym_COMMA] = ACTIONS(6167), - [anon_sym_RBRACK] = ACTIONS(6167), - [anon_sym_LPAREN] = ACTIONS(6167), - [anon_sym_RPAREN] = ACTIONS(6167), - [anon_sym_RBRACE] = ACTIONS(6167), - [anon_sym_LT] = ACTIONS(6169), - [anon_sym_GT] = ACTIONS(6169), - [anon_sym_in] = ACTIONS(6169), - [anon_sym_where] = ACTIONS(6167), - [anon_sym_QMARK] = ACTIONS(6169), - [anon_sym_BANG] = ACTIONS(6169), - [anon_sym_PLUS_PLUS] = ACTIONS(6167), - [anon_sym_DASH_DASH] = ACTIONS(6167), - [anon_sym_PLUS] = ACTIONS(6169), - [anon_sym_DASH] = ACTIONS(6169), - [anon_sym_STAR] = ACTIONS(6167), - [anon_sym_SLASH] = ACTIONS(6169), - [anon_sym_PERCENT] = ACTIONS(6167), - [anon_sym_CARET] = ACTIONS(6167), - [anon_sym_PIPE] = ACTIONS(6169), - [anon_sym_AMP] = ACTIONS(6169), - [anon_sym_LT_LT] = ACTIONS(6167), - [anon_sym_GT_GT] = ACTIONS(6169), - [anon_sym_GT_GT_GT] = ACTIONS(6167), - [anon_sym_EQ_EQ] = ACTIONS(6167), - [anon_sym_BANG_EQ] = ACTIONS(6167), - [anon_sym_GT_EQ] = ACTIONS(6167), - [anon_sym_LT_EQ] = ACTIONS(6167), - [anon_sym_DOT] = ACTIONS(6169), - [anon_sym_EQ_GT] = ACTIONS(6167), - [anon_sym_switch] = ACTIONS(6167), - [anon_sym_DOT_DOT] = ACTIONS(6167), - [anon_sym_and] = ACTIONS(6167), - [anon_sym_or] = ACTIONS(6169), - [anon_sym_AMP_AMP] = ACTIONS(6167), - [anon_sym_PIPE_PIPE] = ACTIONS(6167), - [sym_op_coalescing] = ACTIONS(6167), - [anon_sym_from] = ACTIONS(6167), - [anon_sym_into] = ACTIONS(6167), - [anon_sym_join] = ACTIONS(6167), - [anon_sym_on] = ACTIONS(6167), - [anon_sym_equals] = ACTIONS(6167), - [anon_sym_let] = ACTIONS(6167), - [anon_sym_orderby] = ACTIONS(6167), - [anon_sym_group] = ACTIONS(6167), - [anon_sym_by] = ACTIONS(6167), - [anon_sym_select] = ACTIONS(6167), - [anon_sym_as] = ACTIONS(6167), - [anon_sym_is] = ACTIONS(6167), - [anon_sym_DASH_GT] = ACTIONS(6167), - [anon_sym_with] = ACTIONS(6167), - [aux_sym_preproc_if_token3] = ACTIONS(6167), - [aux_sym_preproc_else_token1] = ACTIONS(6167), - [aux_sym_preproc_elif_token1] = ACTIONS(6167), + [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), @@ -554083,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), @@ -554092,63 +550216,42 @@ 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(6171), - [anon_sym_LBRACK] = ACTIONS(6171), - [anon_sym_COLON] = ACTIONS(6171), - [anon_sym_COMMA] = ACTIONS(6171), - [anon_sym_RBRACK] = ACTIONS(6171), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_RPAREN] = ACTIONS(6171), - [anon_sym_RBRACE] = ACTIONS(6171), - [anon_sym_LT] = ACTIONS(6173), - [anon_sym_GT] = ACTIONS(6173), - [anon_sym_in] = ACTIONS(6173), - [anon_sym_where] = ACTIONS(6171), - [anon_sym_QMARK] = ACTIONS(6173), - [anon_sym_BANG] = ACTIONS(6173), - [anon_sym_PLUS_PLUS] = ACTIONS(6171), - [anon_sym_DASH_DASH] = ACTIONS(6171), - [anon_sym_PLUS] = ACTIONS(6173), - [anon_sym_DASH] = ACTIONS(6173), - [anon_sym_STAR] = ACTIONS(6171), - [anon_sym_SLASH] = ACTIONS(6173), - [anon_sym_PERCENT] = ACTIONS(6171), - [anon_sym_CARET] = ACTIONS(6171), - [anon_sym_PIPE] = ACTIONS(6173), - [anon_sym_AMP] = ACTIONS(6173), - [anon_sym_LT_LT] = ACTIONS(6171), - [anon_sym_GT_GT] = ACTIONS(6173), - [anon_sym_GT_GT_GT] = ACTIONS(6171), - [anon_sym_EQ_EQ] = ACTIONS(6171), - [anon_sym_BANG_EQ] = ACTIONS(6171), - [anon_sym_GT_EQ] = ACTIONS(6171), - [anon_sym_LT_EQ] = ACTIONS(6171), - [anon_sym_DOT] = ACTIONS(6173), - [anon_sym_EQ_GT] = ACTIONS(6171), - [anon_sym_switch] = ACTIONS(6171), - [anon_sym_DOT_DOT] = ACTIONS(6171), - [anon_sym_and] = ACTIONS(6171), - [anon_sym_or] = ACTIONS(6173), - [anon_sym_AMP_AMP] = ACTIONS(6171), - [anon_sym_PIPE_PIPE] = ACTIONS(6171), - [sym_op_coalescing] = ACTIONS(6171), - [anon_sym_from] = ACTIONS(6171), - [anon_sym_into] = ACTIONS(6171), - [anon_sym_join] = ACTIONS(6171), - [anon_sym_on] = ACTIONS(6171), - [anon_sym_equals] = ACTIONS(6171), - [anon_sym_let] = ACTIONS(6171), - [anon_sym_orderby] = ACTIONS(6171), - [anon_sym_group] = ACTIONS(6171), - [anon_sym_by] = ACTIONS(6171), - [anon_sym_select] = ACTIONS(6171), - [anon_sym_as] = ACTIONS(6171), - [anon_sym_is] = ACTIONS(6171), - [anon_sym_DASH_GT] = ACTIONS(6171), - [anon_sym_with] = ACTIONS(6171), - [aux_sym_preproc_if_token3] = ACTIONS(6171), - [aux_sym_preproc_else_token1] = ACTIONS(6171), - [aux_sym_preproc_elif_token1] = ACTIONS(6171), + [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), @@ -554159,6 +550262,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(5360), }, [3877] = { [sym_preproc_region] = STATE(3877), @@ -554170,73 +550274,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3877), [sym_preproc_define] = STATE(3877), [sym_preproc_undef] = STATE(3877), - [anon_sym_SEMI] = ACTIONS(6175), - [anon_sym_LBRACK] = ACTIONS(6175), - [anon_sym_COLON] = ACTIONS(6175), - [anon_sym_COMMA] = ACTIONS(6175), - [anon_sym_RBRACK] = ACTIONS(6175), - [anon_sym_LPAREN] = ACTIONS(6175), - [anon_sym_RPAREN] = ACTIONS(6175), - [anon_sym_RBRACE] = ACTIONS(6175), - [anon_sym_LT] = ACTIONS(6177), - [anon_sym_GT] = ACTIONS(6177), - [anon_sym_in] = ACTIONS(6177), - [anon_sym_where] = ACTIONS(6175), - [anon_sym_QMARK] = ACTIONS(6177), - [anon_sym_BANG] = ACTIONS(6177), - [anon_sym_PLUS_PLUS] = ACTIONS(6175), - [anon_sym_DASH_DASH] = ACTIONS(6175), - [anon_sym_PLUS] = ACTIONS(6177), - [anon_sym_DASH] = ACTIONS(6177), - [anon_sym_STAR] = ACTIONS(6175), - [anon_sym_SLASH] = ACTIONS(6177), - [anon_sym_PERCENT] = ACTIONS(6175), - [anon_sym_CARET] = ACTIONS(6175), - [anon_sym_PIPE] = ACTIONS(6177), - [anon_sym_AMP] = ACTIONS(6177), - [anon_sym_LT_LT] = ACTIONS(6175), - [anon_sym_GT_GT] = ACTIONS(6177), - [anon_sym_GT_GT_GT] = ACTIONS(6175), - [anon_sym_EQ_EQ] = ACTIONS(6175), - [anon_sym_BANG_EQ] = ACTIONS(6175), - [anon_sym_GT_EQ] = ACTIONS(6175), - [anon_sym_LT_EQ] = ACTIONS(6175), - [anon_sym_DOT] = ACTIONS(6177), - [anon_sym_EQ_GT] = ACTIONS(6175), - [anon_sym_switch] = ACTIONS(6175), - [anon_sym_DOT_DOT] = ACTIONS(6175), - [anon_sym_and] = ACTIONS(6175), - [anon_sym_or] = ACTIONS(6177), - [anon_sym_AMP_AMP] = ACTIONS(6175), - [anon_sym_PIPE_PIPE] = ACTIONS(6175), - [sym_op_coalescing] = ACTIONS(6175), - [anon_sym_from] = ACTIONS(6175), - [anon_sym_into] = ACTIONS(6175), - [anon_sym_join] = ACTIONS(6175), - [anon_sym_on] = ACTIONS(6175), - [anon_sym_equals] = ACTIONS(6175), - [anon_sym_let] = ACTIONS(6175), - [anon_sym_orderby] = ACTIONS(6175), - [anon_sym_group] = ACTIONS(6175), - [anon_sym_by] = ACTIONS(6175), - [anon_sym_select] = ACTIONS(6175), - [anon_sym_as] = ACTIONS(6175), - [anon_sym_is] = ACTIONS(6175), - [anon_sym_DASH_GT] = ACTIONS(6175), - [anon_sym_with] = ACTIONS(6175), - [aux_sym_preproc_if_token3] = ACTIONS(6175), - [aux_sym_preproc_else_token1] = ACTIONS(6175), - [aux_sym_preproc_elif_token1] = ACTIONS(6175), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), + [anon_sym_EQ] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [3878] = { [sym_preproc_region] = STATE(3878), @@ -554248,63 +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_SEMI] = ACTIONS(6179), - [anon_sym_LBRACK] = ACTIONS(6179), - [anon_sym_COLON] = ACTIONS(6179), - [anon_sym_COMMA] = ACTIONS(6179), - [anon_sym_RBRACK] = ACTIONS(6179), - [anon_sym_LPAREN] = ACTIONS(6179), - [anon_sym_RPAREN] = ACTIONS(6179), - [anon_sym_RBRACE] = ACTIONS(6179), - [anon_sym_LT] = ACTIONS(6181), - [anon_sym_GT] = ACTIONS(6181), - [anon_sym_in] = ACTIONS(6181), - [anon_sym_where] = ACTIONS(6179), - [anon_sym_QMARK] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(6181), - [anon_sym_PLUS_PLUS] = ACTIONS(6179), - [anon_sym_DASH_DASH] = ACTIONS(6179), - [anon_sym_PLUS] = ACTIONS(6181), - [anon_sym_DASH] = ACTIONS(6181), - [anon_sym_STAR] = ACTIONS(6179), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6179), - [anon_sym_CARET] = ACTIONS(6179), - [anon_sym_PIPE] = ACTIONS(6181), - [anon_sym_AMP] = ACTIONS(6181), - [anon_sym_LT_LT] = ACTIONS(6179), - [anon_sym_GT_GT] = ACTIONS(6181), - [anon_sym_GT_GT_GT] = ACTIONS(6179), - [anon_sym_EQ_EQ] = ACTIONS(6179), - [anon_sym_BANG_EQ] = ACTIONS(6179), - [anon_sym_GT_EQ] = ACTIONS(6179), - [anon_sym_LT_EQ] = ACTIONS(6179), - [anon_sym_DOT] = ACTIONS(6181), - [anon_sym_EQ_GT] = ACTIONS(6179), - [anon_sym_switch] = ACTIONS(6179), - [anon_sym_DOT_DOT] = ACTIONS(6179), - [anon_sym_and] = ACTIONS(6179), - [anon_sym_or] = ACTIONS(6181), - [anon_sym_AMP_AMP] = ACTIONS(6179), - [anon_sym_PIPE_PIPE] = ACTIONS(6179), - [sym_op_coalescing] = ACTIONS(6179), - [anon_sym_from] = ACTIONS(6179), - [anon_sym_into] = ACTIONS(6179), - [anon_sym_join] = ACTIONS(6179), - [anon_sym_on] = ACTIONS(6179), - [anon_sym_equals] = ACTIONS(6179), - [anon_sym_let] = ACTIONS(6179), - [anon_sym_orderby] = ACTIONS(6179), - [anon_sym_group] = ACTIONS(6179), - [anon_sym_by] = ACTIONS(6179), - [anon_sym_select] = ACTIONS(6179), - [anon_sym_as] = ACTIONS(6179), - [anon_sym_is] = ACTIONS(6179), - [anon_sym_DASH_GT] = ACTIONS(6179), - [anon_sym_with] = ACTIONS(6179), - [aux_sym_preproc_if_token3] = ACTIONS(6179), - [aux_sym_preproc_else_token1] = ACTIONS(6179), - [aux_sym_preproc_elif_token1] = ACTIONS(6179), + [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), @@ -554317,6 +550411,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3879] = { + [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), @@ -554326,63 +550435,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(3879), [sym_preproc_define] = STATE(3879), [sym_preproc_undef] = STATE(3879), - [anon_sym_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_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), @@ -554393,29 +550481,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(5364), }, [3880] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), [sym_preproc_region] = STATE(3880), [sym_preproc_endregion] = STATE(3880), [sym_preproc_line] = STATE(3880), @@ -554425,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -554473,27 +550557,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3881] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), [sym_preproc_region] = STATE(3881), [sym_preproc_endregion] = STATE(3881), [sym_preproc_line] = STATE(3881), @@ -554503,42 +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(4780), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6063), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6065), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -554549,29 +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(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), + [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), @@ -554581,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [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(4468), - [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_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), @@ -554629,27 +550703,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3883] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), [sym_preproc_region] = STATE(3883), [sym_preproc_endregion] = STATE(3883), [sym_preproc_line] = STATE(3883), @@ -554659,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -554716,63 +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_SEMI] = ACTIONS(6183), - [anon_sym_LBRACK] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6183), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RBRACK] = ACTIONS(6183), - [anon_sym_LPAREN] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6183), - [anon_sym_RBRACE] = ACTIONS(6183), - [anon_sym_LT] = ACTIONS(6185), - [anon_sym_GT] = ACTIONS(6185), - [anon_sym_in] = ACTIONS(6185), - [anon_sym_where] = ACTIONS(6183), - [anon_sym_QMARK] = ACTIONS(6185), - [anon_sym_BANG] = ACTIONS(6185), - [anon_sym_PLUS_PLUS] = ACTIONS(6183), - [anon_sym_DASH_DASH] = ACTIONS(6183), - [anon_sym_PLUS] = ACTIONS(6185), - [anon_sym_DASH] = ACTIONS(6185), - [anon_sym_STAR] = ACTIONS(6183), - [anon_sym_SLASH] = ACTIONS(6185), - [anon_sym_PERCENT] = ACTIONS(6183), - [anon_sym_CARET] = ACTIONS(6183), - [anon_sym_PIPE] = ACTIONS(6185), - [anon_sym_AMP] = ACTIONS(6185), - [anon_sym_LT_LT] = ACTIONS(6183), - [anon_sym_GT_GT] = ACTIONS(6185), - [anon_sym_GT_GT_GT] = ACTIONS(6183), - [anon_sym_EQ_EQ] = ACTIONS(6183), - [anon_sym_BANG_EQ] = ACTIONS(6183), - [anon_sym_GT_EQ] = ACTIONS(6183), - [anon_sym_LT_EQ] = ACTIONS(6183), - [anon_sym_DOT] = ACTIONS(6185), - [anon_sym_EQ_GT] = ACTIONS(6183), - [anon_sym_switch] = ACTIONS(6183), - [anon_sym_DOT_DOT] = ACTIONS(6183), - [anon_sym_and] = ACTIONS(6183), - [anon_sym_or] = ACTIONS(6185), - [anon_sym_AMP_AMP] = ACTIONS(6183), - [anon_sym_PIPE_PIPE] = ACTIONS(6183), - [sym_op_coalescing] = ACTIONS(6183), - [anon_sym_from] = ACTIONS(6183), - [anon_sym_into] = ACTIONS(6183), - [anon_sym_join] = ACTIONS(6183), - [anon_sym_on] = ACTIONS(6183), - [anon_sym_equals] = ACTIONS(6183), - [anon_sym_let] = ACTIONS(6183), - [anon_sym_orderby] = ACTIONS(6183), - [anon_sym_group] = ACTIONS(6183), - [anon_sym_by] = ACTIONS(6183), - [anon_sym_select] = ACTIONS(6183), - [anon_sym_as] = ACTIONS(6183), - [anon_sym_is] = ACTIONS(6183), - [anon_sym_DASH_GT] = ACTIONS(6183), - [anon_sym_with] = ACTIONS(6183), - [aux_sym_preproc_if_token3] = ACTIONS(6183), - [aux_sym_preproc_else_token1] = ACTIONS(6183), - [aux_sym_preproc_elif_token1] = ACTIONS(6183), + [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), @@ -554794,63 +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_SEMI] = ACTIONS(6187), - [anon_sym_LBRACK] = ACTIONS(6187), - [anon_sym_COLON] = ACTIONS(6187), - [anon_sym_COMMA] = ACTIONS(6187), - [anon_sym_RBRACK] = ACTIONS(6187), - [anon_sym_LPAREN] = ACTIONS(6187), - [anon_sym_RPAREN] = ACTIONS(6187), - [anon_sym_RBRACE] = ACTIONS(6187), - [anon_sym_LT] = ACTIONS(6189), - [anon_sym_GT] = ACTIONS(6189), - [anon_sym_in] = ACTIONS(6189), - [anon_sym_where] = ACTIONS(6187), - [anon_sym_QMARK] = ACTIONS(6189), - [anon_sym_BANG] = ACTIONS(6189), - [anon_sym_PLUS_PLUS] = ACTIONS(6187), - [anon_sym_DASH_DASH] = ACTIONS(6187), - [anon_sym_PLUS] = ACTIONS(6189), - [anon_sym_DASH] = ACTIONS(6189), - [anon_sym_STAR] = ACTIONS(6187), - [anon_sym_SLASH] = ACTIONS(6189), - [anon_sym_PERCENT] = ACTIONS(6187), - [anon_sym_CARET] = ACTIONS(6187), - [anon_sym_PIPE] = ACTIONS(6189), - [anon_sym_AMP] = ACTIONS(6189), - [anon_sym_LT_LT] = ACTIONS(6187), - [anon_sym_GT_GT] = ACTIONS(6189), - [anon_sym_GT_GT_GT] = ACTIONS(6187), - [anon_sym_EQ_EQ] = ACTIONS(6187), - [anon_sym_BANG_EQ] = ACTIONS(6187), - [anon_sym_GT_EQ] = ACTIONS(6187), - [anon_sym_LT_EQ] = ACTIONS(6187), - [anon_sym_DOT] = ACTIONS(6189), - [anon_sym_EQ_GT] = ACTIONS(6187), - [anon_sym_switch] = ACTIONS(6187), - [anon_sym_DOT_DOT] = ACTIONS(6187), - [anon_sym_and] = ACTIONS(6187), - [anon_sym_or] = ACTIONS(6189), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6187), - [sym_op_coalescing] = ACTIONS(6187), - [anon_sym_from] = ACTIONS(6187), - [anon_sym_into] = ACTIONS(6187), - [anon_sym_join] = ACTIONS(6187), - [anon_sym_on] = ACTIONS(6187), - [anon_sym_equals] = ACTIONS(6187), - [anon_sym_let] = ACTIONS(6187), - [anon_sym_orderby] = ACTIONS(6187), - [anon_sym_group] = ACTIONS(6187), - [anon_sym_by] = ACTIONS(6187), - [anon_sym_select] = ACTIONS(6187), - [anon_sym_as] = ACTIONS(6187), - [anon_sym_is] = ACTIONS(6187), - [anon_sym_DASH_GT] = ACTIONS(6187), - [anon_sym_with] = ACTIONS(6187), - [aux_sym_preproc_if_token3] = ACTIONS(6187), - [aux_sym_preproc_else_token1] = ACTIONS(6187), - [aux_sym_preproc_elif_token1] = ACTIONS(6187), + [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), @@ -554861,29 +550919,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(3953), }, [3886] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(3886), [sym_preproc_endregion] = STATE(3886), [sym_preproc_line] = STATE(3886), @@ -554893,42 +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), - [aux_sym__for_statement_conditions_repeat1] = STATE(7229), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6013), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6191), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -554941,27 +550995,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3887] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(3887), [sym_preproc_endregion] = STATE(3887), [sym_preproc_line] = STATE(3887), @@ -554971,42 +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_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6193), - [anon_sym_RBRACK] = ACTIONS(6193), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6193), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -555017,6 +551065,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(4542), }, [3888] = { [sym_preproc_region] = STATE(3888), @@ -555028,63 +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_SEMI] = ACTIONS(6195), - [anon_sym_LBRACK] = ACTIONS(6195), - [anon_sym_COLON] = ACTIONS(6195), - [anon_sym_COMMA] = ACTIONS(6195), - [anon_sym_RBRACK] = ACTIONS(6195), - [anon_sym_LPAREN] = ACTIONS(6195), - [anon_sym_RPAREN] = ACTIONS(6195), - [anon_sym_RBRACE] = ACTIONS(6195), - [anon_sym_LT] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6197), - [anon_sym_in] = ACTIONS(6197), - [anon_sym_where] = ACTIONS(6195), - [anon_sym_QMARK] = ACTIONS(6197), - [anon_sym_BANG] = ACTIONS(6197), - [anon_sym_PLUS_PLUS] = ACTIONS(6195), - [anon_sym_DASH_DASH] = ACTIONS(6195), - [anon_sym_PLUS] = ACTIONS(6197), - [anon_sym_DASH] = ACTIONS(6197), - [anon_sym_STAR] = ACTIONS(6195), - [anon_sym_SLASH] = ACTIONS(6197), - [anon_sym_PERCENT] = ACTIONS(6195), - [anon_sym_CARET] = ACTIONS(6195), - [anon_sym_PIPE] = ACTIONS(6197), - [anon_sym_AMP] = ACTIONS(6197), - [anon_sym_LT_LT] = ACTIONS(6195), - [anon_sym_GT_GT] = ACTIONS(6197), - [anon_sym_GT_GT_GT] = ACTIONS(6195), - [anon_sym_EQ_EQ] = ACTIONS(6195), - [anon_sym_BANG_EQ] = ACTIONS(6195), - [anon_sym_GT_EQ] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6195), - [anon_sym_DOT] = ACTIONS(6197), - [anon_sym_EQ_GT] = ACTIONS(6195), - [anon_sym_switch] = ACTIONS(6195), - [anon_sym_DOT_DOT] = ACTIONS(6195), - [anon_sym_and] = ACTIONS(6195), - [anon_sym_or] = ACTIONS(6197), - [anon_sym_AMP_AMP] = ACTIONS(6195), - [anon_sym_PIPE_PIPE] = ACTIONS(6195), - [sym_op_coalescing] = ACTIONS(6195), - [anon_sym_from] = ACTIONS(6195), - [anon_sym_into] = ACTIONS(6195), - [anon_sym_join] = ACTIONS(6195), - [anon_sym_on] = ACTIONS(6195), - [anon_sym_equals] = ACTIONS(6195), - [anon_sym_let] = ACTIONS(6195), - [anon_sym_orderby] = ACTIONS(6195), - [anon_sym_group] = ACTIONS(6195), - [anon_sym_by] = ACTIONS(6195), - [anon_sym_select] = ACTIONS(6195), - [anon_sym_as] = ACTIONS(6195), - [anon_sym_is] = ACTIONS(6195), - [anon_sym_DASH_GT] = ACTIONS(6195), - [anon_sym_with] = ACTIONS(6195), - [aux_sym_preproc_if_token3] = ACTIONS(6195), - [aux_sym_preproc_else_token1] = ACTIONS(6195), - [aux_sym_preproc_elif_token1] = ACTIONS(6195), + [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), @@ -555095,8 +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(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), @@ -555106,63 +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_SEMI] = ACTIONS(6199), - [anon_sym_LBRACK] = ACTIONS(6199), - [anon_sym_COLON] = ACTIONS(6199), - [anon_sym_COMMA] = ACTIONS(6199), - [anon_sym_RBRACK] = ACTIONS(6199), - [anon_sym_LPAREN] = ACTIONS(6199), - [anon_sym_RPAREN] = ACTIONS(6199), - [anon_sym_RBRACE] = ACTIONS(6199), - [anon_sym_LT] = ACTIONS(6201), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_in] = ACTIONS(6201), - [anon_sym_where] = ACTIONS(6199), - [anon_sym_QMARK] = ACTIONS(6201), - [anon_sym_BANG] = ACTIONS(6201), - [anon_sym_PLUS_PLUS] = ACTIONS(6199), - [anon_sym_DASH_DASH] = ACTIONS(6199), - [anon_sym_PLUS] = ACTIONS(6201), - [anon_sym_DASH] = ACTIONS(6201), - [anon_sym_STAR] = ACTIONS(6199), - [anon_sym_SLASH] = ACTIONS(6201), - [anon_sym_PERCENT] = ACTIONS(6199), - [anon_sym_CARET] = ACTIONS(6199), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_AMP] = ACTIONS(6201), - [anon_sym_LT_LT] = ACTIONS(6199), - [anon_sym_GT_GT] = ACTIONS(6201), - [anon_sym_GT_GT_GT] = ACTIONS(6199), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_GT_EQ] = ACTIONS(6199), - [anon_sym_LT_EQ] = ACTIONS(6199), - [anon_sym_DOT] = ACTIONS(6201), - [anon_sym_EQ_GT] = ACTIONS(6199), - [anon_sym_switch] = ACTIONS(6199), - [anon_sym_DOT_DOT] = ACTIONS(6199), - [anon_sym_and] = ACTIONS(6199), - [anon_sym_or] = ACTIONS(6201), - [anon_sym_AMP_AMP] = ACTIONS(6199), - [anon_sym_PIPE_PIPE] = ACTIONS(6199), - [sym_op_coalescing] = ACTIONS(6199), - [anon_sym_from] = ACTIONS(6199), - [anon_sym_into] = ACTIONS(6199), - [anon_sym_join] = ACTIONS(6199), - [anon_sym_on] = ACTIONS(6199), - [anon_sym_equals] = ACTIONS(6199), - [anon_sym_let] = ACTIONS(6199), - [anon_sym_orderby] = ACTIONS(6199), - [anon_sym_group] = ACTIONS(6199), - [anon_sym_by] = ACTIONS(6199), - [anon_sym_select] = ACTIONS(6199), - [anon_sym_as] = ACTIONS(6199), - [anon_sym_is] = ACTIONS(6199), - [anon_sym_DASH_GT] = ACTIONS(6199), - [anon_sym_with] = ACTIONS(6199), - [aux_sym_preproc_if_token3] = ACTIONS(6199), - [aux_sym_preproc_else_token1] = ACTIONS(6199), - [aux_sym_preproc_elif_token1] = ACTIONS(6199), + [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), @@ -555175,27 +551214,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3890] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), [sym_preproc_region] = STATE(3890), [sym_preproc_endregion] = STATE(3890), [sym_preproc_line] = STATE(3890), @@ -555205,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_SEMI] = ACTIONS(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -555253,27 +551287,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3891] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), + [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), @@ -555283,42 +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(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -555331,6 +551360,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3892] = { + [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), @@ -555340,63 +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_SEMI] = ACTIONS(6203), - [anon_sym_LBRACK] = ACTIONS(6203), - [anon_sym_COLON] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_RBRACK] = ACTIONS(6203), - [anon_sym_LPAREN] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6203), - [anon_sym_RBRACE] = ACTIONS(6203), - [anon_sym_LT] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6205), - [anon_sym_in] = ACTIONS(6205), - [anon_sym_where] = ACTIONS(6203), - [anon_sym_QMARK] = ACTIONS(6205), - [anon_sym_BANG] = ACTIONS(6205), - [anon_sym_PLUS_PLUS] = ACTIONS(6203), - [anon_sym_DASH_DASH] = ACTIONS(6203), - [anon_sym_PLUS] = ACTIONS(6205), - [anon_sym_DASH] = ACTIONS(6205), - [anon_sym_STAR] = ACTIONS(6203), - [anon_sym_SLASH] = ACTIONS(6205), - [anon_sym_PERCENT] = ACTIONS(6203), - [anon_sym_CARET] = ACTIONS(6203), - [anon_sym_PIPE] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6203), - [anon_sym_GT_GT] = ACTIONS(6205), - [anon_sym_GT_GT_GT] = ACTIONS(6203), - [anon_sym_EQ_EQ] = ACTIONS(6203), - [anon_sym_BANG_EQ] = ACTIONS(6203), - [anon_sym_GT_EQ] = ACTIONS(6203), - [anon_sym_LT_EQ] = ACTIONS(6203), - [anon_sym_DOT] = ACTIONS(6205), - [anon_sym_EQ_GT] = ACTIONS(6203), - [anon_sym_switch] = ACTIONS(6203), - [anon_sym_DOT_DOT] = ACTIONS(6203), - [anon_sym_and] = ACTIONS(6203), - [anon_sym_or] = ACTIONS(6205), - [anon_sym_AMP_AMP] = ACTIONS(6203), - [anon_sym_PIPE_PIPE] = ACTIONS(6203), - [sym_op_coalescing] = ACTIONS(6203), - [anon_sym_from] = ACTIONS(6203), - [anon_sym_into] = ACTIONS(6203), - [anon_sym_join] = ACTIONS(6203), - [anon_sym_on] = ACTIONS(6203), - [anon_sym_equals] = ACTIONS(6203), - [anon_sym_let] = ACTIONS(6203), - [anon_sym_orderby] = ACTIONS(6203), - [anon_sym_group] = ACTIONS(6203), - [anon_sym_by] = ACTIONS(6203), - [anon_sym_select] = ACTIONS(6203), - [anon_sym_as] = ACTIONS(6203), - [anon_sym_is] = ACTIONS(6203), - [anon_sym_DASH_GT] = ACTIONS(6203), - [anon_sym_with] = ACTIONS(6203), - [aux_sym_preproc_if_token3] = ACTIONS(6203), - [aux_sym_preproc_else_token1] = ACTIONS(6203), - [aux_sym_preproc_elif_token1] = ACTIONS(6203), + [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), @@ -555409,27 +551433,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3893] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -555439,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_SEMI] = ACTIONS(4790), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -555487,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), @@ -555496,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(6207), - [anon_sym_LBRACK] = ACTIONS(6207), - [anon_sym_COLON] = ACTIONS(6207), - [anon_sym_COMMA] = ACTIONS(6207), - [anon_sym_RBRACK] = ACTIONS(6207), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_RPAREN] = ACTIONS(6207), - [anon_sym_RBRACE] = ACTIONS(6207), - [anon_sym_LT] = ACTIONS(6209), - [anon_sym_GT] = ACTIONS(6209), - [anon_sym_in] = ACTIONS(6209), - [anon_sym_where] = ACTIONS(6207), - [anon_sym_QMARK] = ACTIONS(6209), - [anon_sym_BANG] = ACTIONS(6209), - [anon_sym_PLUS_PLUS] = ACTIONS(6207), - [anon_sym_DASH_DASH] = ACTIONS(6207), - [anon_sym_PLUS] = ACTIONS(6209), - [anon_sym_DASH] = ACTIONS(6209), - [anon_sym_STAR] = ACTIONS(6207), - [anon_sym_SLASH] = ACTIONS(6209), - [anon_sym_PERCENT] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6207), - [anon_sym_PIPE] = ACTIONS(6209), - [anon_sym_AMP] = ACTIONS(6209), - [anon_sym_LT_LT] = ACTIONS(6207), - [anon_sym_GT_GT] = ACTIONS(6209), - [anon_sym_GT_GT_GT] = ACTIONS(6207), - [anon_sym_EQ_EQ] = ACTIONS(6207), - [anon_sym_BANG_EQ] = ACTIONS(6207), - [anon_sym_GT_EQ] = ACTIONS(6207), - [anon_sym_LT_EQ] = ACTIONS(6207), - [anon_sym_DOT] = ACTIONS(6209), - [anon_sym_EQ_GT] = ACTIONS(6207), - [anon_sym_switch] = ACTIONS(6207), - [anon_sym_DOT_DOT] = ACTIONS(6207), - [anon_sym_and] = ACTIONS(6207), - [anon_sym_or] = ACTIONS(6209), - [anon_sym_AMP_AMP] = ACTIONS(6207), - [anon_sym_PIPE_PIPE] = ACTIONS(6207), - [sym_op_coalescing] = ACTIONS(6207), - [anon_sym_from] = ACTIONS(6207), - [anon_sym_into] = ACTIONS(6207), - [anon_sym_join] = ACTIONS(6207), - [anon_sym_on] = ACTIONS(6207), - [anon_sym_equals] = ACTIONS(6207), - [anon_sym_let] = ACTIONS(6207), - [anon_sym_orderby] = ACTIONS(6207), - [anon_sym_group] = ACTIONS(6207), - [anon_sym_by] = ACTIONS(6207), - [anon_sym_select] = ACTIONS(6207), - [anon_sym_as] = ACTIONS(6207), - [anon_sym_is] = ACTIONS(6207), - [anon_sym_DASH_GT] = ACTIONS(6207), - [anon_sym_with] = ACTIONS(6207), - [aux_sym_preproc_if_token3] = ACTIONS(6207), - [aux_sym_preproc_else_token1] = ACTIONS(6207), - [aux_sym_preproc_elif_token1] = ACTIONS(6207), + [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), @@ -555565,27 +551579,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3895] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), + [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), @@ -555595,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6103), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6107), - [anon_sym_equals] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(6109), - [anon_sym_is] = ACTIONS(6111), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -555643,27 +551652,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3896] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), + [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), @@ -555673,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -555721,27 +551725,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3897] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), + [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), @@ -555751,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(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -555799,27 +551798,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3898] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(3898), [sym_preproc_endregion] = STATE(3898), [sym_preproc_line] = STATE(3898), @@ -555829,42 +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_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6211), - [anon_sym_RBRACK] = ACTIONS(6211), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6211), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -555886,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(6213), - [anon_sym_LBRACK] = ACTIONS(6213), - [anon_sym_COLON] = ACTIONS(6213), - [anon_sym_COMMA] = ACTIONS(6213), - [anon_sym_RBRACK] = ACTIONS(6213), - [anon_sym_LPAREN] = ACTIONS(6213), - [anon_sym_RPAREN] = ACTIONS(6213), - [anon_sym_RBRACE] = ACTIONS(6213), - [anon_sym_LT] = ACTIONS(6215), - [anon_sym_GT] = ACTIONS(6215), - [anon_sym_in] = ACTIONS(6215), - [anon_sym_where] = ACTIONS(6213), - [anon_sym_QMARK] = ACTIONS(6215), - [anon_sym_BANG] = ACTIONS(6215), - [anon_sym_PLUS_PLUS] = ACTIONS(6213), - [anon_sym_DASH_DASH] = ACTIONS(6213), - [anon_sym_PLUS] = ACTIONS(6215), - [anon_sym_DASH] = ACTIONS(6215), - [anon_sym_STAR] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6215), - [anon_sym_PERCENT] = ACTIONS(6213), - [anon_sym_CARET] = ACTIONS(6213), - [anon_sym_PIPE] = ACTIONS(6215), - [anon_sym_AMP] = ACTIONS(6215), - [anon_sym_LT_LT] = ACTIONS(6213), - [anon_sym_GT_GT] = ACTIONS(6215), - [anon_sym_GT_GT_GT] = ACTIONS(6213), - [anon_sym_EQ_EQ] = ACTIONS(6213), - [anon_sym_BANG_EQ] = ACTIONS(6213), - [anon_sym_GT_EQ] = ACTIONS(6213), - [anon_sym_LT_EQ] = ACTIONS(6213), - [anon_sym_DOT] = ACTIONS(6215), - [anon_sym_EQ_GT] = ACTIONS(6213), - [anon_sym_switch] = ACTIONS(6213), - [anon_sym_DOT_DOT] = ACTIONS(6213), - [anon_sym_and] = ACTIONS(6213), - [anon_sym_or] = ACTIONS(6215), - [anon_sym_AMP_AMP] = ACTIONS(6213), - [anon_sym_PIPE_PIPE] = ACTIONS(6213), - [sym_op_coalescing] = ACTIONS(6213), - [anon_sym_from] = ACTIONS(6213), - [anon_sym_into] = ACTIONS(6213), - [anon_sym_join] = ACTIONS(6213), - [anon_sym_on] = ACTIONS(6213), - [anon_sym_equals] = ACTIONS(6213), - [anon_sym_let] = ACTIONS(6213), - [anon_sym_orderby] = ACTIONS(6213), - [anon_sym_group] = ACTIONS(6213), - [anon_sym_by] = ACTIONS(6213), - [anon_sym_select] = ACTIONS(6213), - [anon_sym_as] = ACTIONS(6213), - [anon_sym_is] = ACTIONS(6213), - [anon_sym_DASH_GT] = ACTIONS(6213), - [anon_sym_with] = ACTIONS(6213), - [aux_sym_preproc_if_token3] = ACTIONS(6213), - [aux_sym_preproc_else_token1] = ACTIONS(6213), - [aux_sym_preproc_elif_token1] = ACTIONS(6213), + [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), @@ -555955,27 +551944,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3900] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), + [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), @@ -555985,42 +551968,43 @@ 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(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6001), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -556033,27 +552017,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3901] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), + [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), @@ -556063,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6001), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -556111,27 +552090,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3902] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), [sym_preproc_region] = STATE(3902), [sym_preproc_endregion] = STATE(3902), [sym_preproc_line] = STATE(3902), @@ -556141,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6103), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6107), - [anon_sym_equals] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(6109), - [anon_sym_is] = ACTIONS(6111), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -556189,27 +552163,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3903] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -556219,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_SEMI] = ACTIONS(4786), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -556267,27 +552236,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3904] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), + [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), @@ -556297,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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6103), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6107), - [anon_sym_equals] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(6109), - [anon_sym_is] = ACTIONS(6111), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -556345,27 +552309,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3905] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), [sym_preproc_region] = STATE(3905), [sym_preproc_endregion] = STATE(3905), [sym_preproc_line] = STATE(3905), @@ -556375,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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6103), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6107), - [anon_sym_equals] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(6109), - [anon_sym_is] = ACTIONS(6111), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -556423,27 +552382,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3906] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), + [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), @@ -556453,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(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6001), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -556501,27 +552455,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3907] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), [sym_preproc_region] = STATE(3907), [sym_preproc_endregion] = STATE(3907), [sym_preproc_line] = STATE(3907), @@ -556531,42 +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), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_equals] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -556579,27 +552528,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3908] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), + [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), @@ -556609,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6103), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6107), - [anon_sym_equals] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(6109), - [anon_sym_is] = ACTIONS(6111), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -556657,27 +552601,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3909] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), [sym_preproc_region] = STATE(3909), [sym_preproc_endregion] = STATE(3909), [sym_preproc_line] = STATE(3909), @@ -556687,75 +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), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [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(4468), - [anon_sym_with] = ACTIONS(1435), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -556765,42 +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), - [aux_sym_initializer_expression_repeat1] = STATE(7053), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6217), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(6219), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -556813,6 +552747,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3911] = { + [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), @@ -556822,63 +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_SEMI] = ACTIONS(6221), - [anon_sym_LBRACK] = ACTIONS(6221), - [anon_sym_COLON] = ACTIONS(6221), - [anon_sym_COMMA] = ACTIONS(6221), - [anon_sym_RBRACK] = ACTIONS(6221), - [anon_sym_LPAREN] = ACTIONS(6221), - [anon_sym_RPAREN] = ACTIONS(6221), - [anon_sym_RBRACE] = ACTIONS(6221), - [anon_sym_LT] = ACTIONS(6223), - [anon_sym_GT] = ACTIONS(6223), - [anon_sym_in] = ACTIONS(6223), - [anon_sym_where] = ACTIONS(6221), - [anon_sym_QMARK] = ACTIONS(6223), - [anon_sym_BANG] = ACTIONS(6223), - [anon_sym_PLUS_PLUS] = ACTIONS(6221), - [anon_sym_DASH_DASH] = ACTIONS(6221), - [anon_sym_PLUS] = ACTIONS(6223), - [anon_sym_DASH] = ACTIONS(6223), - [anon_sym_STAR] = ACTIONS(6221), - [anon_sym_SLASH] = ACTIONS(6223), - [anon_sym_PERCENT] = ACTIONS(6221), - [anon_sym_CARET] = ACTIONS(6221), - [anon_sym_PIPE] = ACTIONS(6223), - [anon_sym_AMP] = ACTIONS(6223), - [anon_sym_LT_LT] = ACTIONS(6221), - [anon_sym_GT_GT] = ACTIONS(6223), - [anon_sym_GT_GT_GT] = ACTIONS(6221), - [anon_sym_EQ_EQ] = ACTIONS(6221), - [anon_sym_BANG_EQ] = ACTIONS(6221), - [anon_sym_GT_EQ] = ACTIONS(6221), - [anon_sym_LT_EQ] = ACTIONS(6221), - [anon_sym_DOT] = ACTIONS(6223), - [anon_sym_EQ_GT] = ACTIONS(6221), - [anon_sym_switch] = ACTIONS(6221), - [anon_sym_DOT_DOT] = ACTIONS(6221), - [anon_sym_and] = ACTIONS(6221), - [anon_sym_or] = ACTIONS(6223), - [anon_sym_AMP_AMP] = ACTIONS(6221), - [anon_sym_PIPE_PIPE] = ACTIONS(6221), - [sym_op_coalescing] = ACTIONS(6221), - [anon_sym_from] = ACTIONS(6221), - [anon_sym_into] = ACTIONS(6221), - [anon_sym_join] = ACTIONS(6221), - [anon_sym_on] = ACTIONS(6221), - [anon_sym_equals] = ACTIONS(6221), - [anon_sym_let] = ACTIONS(6221), - [anon_sym_orderby] = ACTIONS(6221), - [anon_sym_group] = ACTIONS(6221), - [anon_sym_by] = ACTIONS(6221), - [anon_sym_select] = ACTIONS(6221), - [anon_sym_as] = ACTIONS(6221), - [anon_sym_is] = ACTIONS(6221), - [anon_sym_DASH_GT] = ACTIONS(6221), - [anon_sym_with] = ACTIONS(6221), - [aux_sym_preproc_if_token3] = ACTIONS(6221), - [aux_sym_preproc_else_token1] = ACTIONS(6221), - [aux_sym_preproc_elif_token1] = ACTIONS(6221), + [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), @@ -556891,27 +552820,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3912] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), + [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), @@ -556921,42 +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(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6001), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -556969,6 +552893,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -556978,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(6225), - [anon_sym_LBRACK] = ACTIONS(6225), - [anon_sym_COLON] = ACTIONS(6225), - [anon_sym_COMMA] = ACTIONS(6225), - [anon_sym_RBRACK] = ACTIONS(6225), - [anon_sym_LPAREN] = ACTIONS(6225), - [anon_sym_RPAREN] = ACTIONS(6225), - [anon_sym_RBRACE] = ACTIONS(6225), - [anon_sym_LT] = ACTIONS(6227), - [anon_sym_GT] = ACTIONS(6227), - [anon_sym_in] = ACTIONS(6227), - [anon_sym_where] = ACTIONS(6225), - [anon_sym_QMARK] = ACTIONS(6227), - [anon_sym_BANG] = ACTIONS(6227), - [anon_sym_PLUS_PLUS] = ACTIONS(6225), - [anon_sym_DASH_DASH] = ACTIONS(6225), - [anon_sym_PLUS] = ACTIONS(6227), - [anon_sym_DASH] = ACTIONS(6227), - [anon_sym_STAR] = ACTIONS(6225), - [anon_sym_SLASH] = ACTIONS(6227), - [anon_sym_PERCENT] = ACTIONS(6225), - [anon_sym_CARET] = ACTIONS(6225), - [anon_sym_PIPE] = ACTIONS(6227), - [anon_sym_AMP] = ACTIONS(6227), - [anon_sym_LT_LT] = ACTIONS(6225), - [anon_sym_GT_GT] = ACTIONS(6227), - [anon_sym_GT_GT_GT] = ACTIONS(6225), - [anon_sym_EQ_EQ] = ACTIONS(6225), - [anon_sym_BANG_EQ] = ACTIONS(6225), - [anon_sym_GT_EQ] = ACTIONS(6225), - [anon_sym_LT_EQ] = ACTIONS(6225), - [anon_sym_DOT] = ACTIONS(6227), - [anon_sym_EQ_GT] = ACTIONS(6225), - [anon_sym_switch] = ACTIONS(6225), - [anon_sym_DOT_DOT] = ACTIONS(6225), - [anon_sym_and] = ACTIONS(6225), - [anon_sym_or] = ACTIONS(6227), - [anon_sym_AMP_AMP] = ACTIONS(6225), - [anon_sym_PIPE_PIPE] = ACTIONS(6225), - [sym_op_coalescing] = ACTIONS(6225), - [anon_sym_from] = ACTIONS(6225), - [anon_sym_into] = ACTIONS(6225), - [anon_sym_join] = ACTIONS(6225), - [anon_sym_on] = ACTIONS(6225), - [anon_sym_equals] = ACTIONS(6225), - [anon_sym_let] = ACTIONS(6225), - [anon_sym_orderby] = ACTIONS(6225), - [anon_sym_group] = ACTIONS(6225), - [anon_sym_by] = ACTIONS(6225), - [anon_sym_select] = ACTIONS(6225), - [anon_sym_as] = ACTIONS(6225), - [anon_sym_is] = ACTIONS(6225), - [anon_sym_DASH_GT] = ACTIONS(6225), - [anon_sym_with] = ACTIONS(6225), - [aux_sym_preproc_if_token3] = ACTIONS(6225), - [aux_sym_preproc_else_token1] = ACTIONS(6225), - [aux_sym_preproc_elif_token1] = ACTIONS(6225), + [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), @@ -557047,27 +552966,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3914] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -557077,42 +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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -557125,27 +553039,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3915] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -557155,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -557203,6 +553112,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3916] = { + [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), @@ -557212,63 +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_SEMI] = ACTIONS(6229), - [anon_sym_LBRACK] = ACTIONS(6229), - [anon_sym_COLON] = ACTIONS(6229), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_RBRACK] = ACTIONS(6229), - [anon_sym_LPAREN] = ACTIONS(6229), - [anon_sym_RPAREN] = ACTIONS(6229), - [anon_sym_RBRACE] = ACTIONS(6229), - [anon_sym_LT] = ACTIONS(6231), - [anon_sym_GT] = ACTIONS(6231), - [anon_sym_in] = ACTIONS(6231), - [anon_sym_where] = ACTIONS(6229), - [anon_sym_QMARK] = ACTIONS(6231), - [anon_sym_BANG] = ACTIONS(6231), - [anon_sym_PLUS_PLUS] = ACTIONS(6229), - [anon_sym_DASH_DASH] = ACTIONS(6229), - [anon_sym_PLUS] = ACTIONS(6231), - [anon_sym_DASH] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(6229), - [anon_sym_SLASH] = ACTIONS(6231), - [anon_sym_PERCENT] = ACTIONS(6229), - [anon_sym_CARET] = ACTIONS(6229), - [anon_sym_PIPE] = ACTIONS(6231), - [anon_sym_AMP] = ACTIONS(6231), - [anon_sym_LT_LT] = ACTIONS(6229), - [anon_sym_GT_GT] = ACTIONS(6231), - [anon_sym_GT_GT_GT] = ACTIONS(6229), - [anon_sym_EQ_EQ] = ACTIONS(6229), - [anon_sym_BANG_EQ] = ACTIONS(6229), - [anon_sym_GT_EQ] = ACTIONS(6229), - [anon_sym_LT_EQ] = ACTIONS(6229), - [anon_sym_DOT] = ACTIONS(6231), - [anon_sym_EQ_GT] = ACTIONS(6229), - [anon_sym_switch] = ACTIONS(6229), - [anon_sym_DOT_DOT] = ACTIONS(6229), - [anon_sym_and] = ACTIONS(6229), - [anon_sym_or] = ACTIONS(6231), - [anon_sym_AMP_AMP] = ACTIONS(6229), - [anon_sym_PIPE_PIPE] = ACTIONS(6229), - [sym_op_coalescing] = ACTIONS(6229), - [anon_sym_from] = ACTIONS(6229), - [anon_sym_into] = ACTIONS(6229), - [anon_sym_join] = ACTIONS(6229), - [anon_sym_on] = ACTIONS(6229), - [anon_sym_equals] = ACTIONS(6229), - [anon_sym_let] = ACTIONS(6229), - [anon_sym_orderby] = ACTIONS(6229), - [anon_sym_group] = ACTIONS(6229), - [anon_sym_by] = ACTIONS(6229), - [anon_sym_select] = ACTIONS(6229), - [anon_sym_as] = ACTIONS(6229), - [anon_sym_is] = ACTIONS(6229), - [anon_sym_DASH_GT] = ACTIONS(6229), - [anon_sym_with] = ACTIONS(6229), - [aux_sym_preproc_if_token3] = ACTIONS(6229), - [aux_sym_preproc_else_token1] = ACTIONS(6229), - [aux_sym_preproc_elif_token1] = ACTIONS(6229), + [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), @@ -557281,6 +553185,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3917] = { + [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), @@ -557290,63 +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_SEMI] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6233), - [anon_sym_COLON] = ACTIONS(6233), - [anon_sym_COMMA] = ACTIONS(6233), - [anon_sym_RBRACK] = ACTIONS(6233), - [anon_sym_LPAREN] = ACTIONS(6233), - [anon_sym_RPAREN] = ACTIONS(6233), - [anon_sym_RBRACE] = ACTIONS(6233), - [anon_sym_LT] = ACTIONS(6235), - [anon_sym_GT] = ACTIONS(6235), - [anon_sym_in] = ACTIONS(6235), - [anon_sym_where] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6235), - [anon_sym_BANG] = ACTIONS(6235), - [anon_sym_PLUS_PLUS] = ACTIONS(6233), - [anon_sym_DASH_DASH] = ACTIONS(6233), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6233), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6233), - [anon_sym_CARET] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_AMP] = ACTIONS(6235), - [anon_sym_LT_LT] = ACTIONS(6233), - [anon_sym_GT_GT] = ACTIONS(6235), - [anon_sym_GT_GT_GT] = ACTIONS(6233), - [anon_sym_EQ_EQ] = ACTIONS(6233), - [anon_sym_BANG_EQ] = ACTIONS(6233), - [anon_sym_GT_EQ] = ACTIONS(6233), - [anon_sym_LT_EQ] = ACTIONS(6233), - [anon_sym_DOT] = ACTIONS(6235), - [anon_sym_EQ_GT] = ACTIONS(6233), - [anon_sym_switch] = ACTIONS(6233), - [anon_sym_DOT_DOT] = ACTIONS(6233), - [anon_sym_and] = ACTIONS(6233), - [anon_sym_or] = ACTIONS(6235), - [anon_sym_AMP_AMP] = ACTIONS(6233), - [anon_sym_PIPE_PIPE] = ACTIONS(6233), - [sym_op_coalescing] = ACTIONS(6233), - [anon_sym_from] = ACTIONS(6233), - [anon_sym_into] = ACTIONS(6233), - [anon_sym_join] = ACTIONS(6233), - [anon_sym_on] = ACTIONS(6233), - [anon_sym_equals] = ACTIONS(6233), - [anon_sym_let] = ACTIONS(6233), - [anon_sym_orderby] = ACTIONS(6233), - [anon_sym_group] = ACTIONS(6233), - [anon_sym_by] = ACTIONS(6233), - [anon_sym_select] = ACTIONS(6233), - [anon_sym_as] = ACTIONS(6233), - [anon_sym_is] = ACTIONS(6233), - [anon_sym_DASH_GT] = ACTIONS(6233), - [anon_sym_with] = ACTIONS(6233), - [aux_sym_preproc_if_token3] = ACTIONS(6233), - [aux_sym_preproc_else_token1] = ACTIONS(6233), - [aux_sym_preproc_elif_token1] = ACTIONS(6233), + [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), @@ -557359,27 +553258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3918] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), + [sym_type_argument_list] = STATE(4268), [sym_preproc_region] = STATE(3918), [sym_preproc_endregion] = STATE(3918), [sym_preproc_line] = STATE(3918), @@ -557389,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [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(4468), - [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(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), @@ -557437,27 +553331,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3919] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), [sym_preproc_region] = STATE(3919), [sym_preproc_endregion] = STATE(3919), [sym_preproc_line] = STATE(3919), @@ -557467,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_by] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -557515,27 +553404,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3920] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), + [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), @@ -557545,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), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6001), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -557593,27 +553477,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3921] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), + [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), @@ -557623,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_equals] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -557680,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(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(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), @@ -557749,27 +553623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3923] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), + [sym_initializer_expression] = STATE(4633), [sym_preproc_region] = STATE(3923), [sym_preproc_endregion] = STATE(3923), [sym_preproc_line] = STATE(3923), @@ -557779,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [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(4468), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -557827,27 +553696,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3924] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), [sym_preproc_region] = STATE(3924), [sym_preproc_endregion] = STATE(3924), [sym_preproc_line] = STATE(3924), @@ -557857,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(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6001), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -557905,6 +553769,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3925] = { + [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), @@ -557914,63 +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_SEMI] = ACTIONS(6241), - [anon_sym_LBRACK] = ACTIONS(6241), - [anon_sym_COLON] = ACTIONS(6241), - [anon_sym_COMMA] = ACTIONS(6241), - [anon_sym_RBRACK] = ACTIONS(6241), - [anon_sym_LPAREN] = ACTIONS(6241), - [anon_sym_RPAREN] = ACTIONS(6241), - [anon_sym_RBRACE] = ACTIONS(6241), - [anon_sym_LT] = ACTIONS(6243), - [anon_sym_GT] = ACTIONS(6243), - [anon_sym_in] = ACTIONS(6243), - [anon_sym_where] = ACTIONS(6241), - [anon_sym_QMARK] = ACTIONS(6243), - [anon_sym_BANG] = ACTIONS(6243), - [anon_sym_PLUS_PLUS] = ACTIONS(6241), - [anon_sym_DASH_DASH] = ACTIONS(6241), - [anon_sym_PLUS] = ACTIONS(6243), - [anon_sym_DASH] = ACTIONS(6243), - [anon_sym_STAR] = ACTIONS(6241), - [anon_sym_SLASH] = ACTIONS(6243), - [anon_sym_PERCENT] = ACTIONS(6241), - [anon_sym_CARET] = ACTIONS(6241), - [anon_sym_PIPE] = ACTIONS(6243), - [anon_sym_AMP] = ACTIONS(6243), - [anon_sym_LT_LT] = ACTIONS(6241), - [anon_sym_GT_GT] = ACTIONS(6243), - [anon_sym_GT_GT_GT] = ACTIONS(6241), - [anon_sym_EQ_EQ] = ACTIONS(6241), - [anon_sym_BANG_EQ] = ACTIONS(6241), - [anon_sym_GT_EQ] = ACTIONS(6241), - [anon_sym_LT_EQ] = ACTIONS(6241), - [anon_sym_DOT] = ACTIONS(6243), - [anon_sym_EQ_GT] = ACTIONS(6241), - [anon_sym_switch] = ACTIONS(6241), - [anon_sym_DOT_DOT] = ACTIONS(6241), - [anon_sym_and] = ACTIONS(6241), - [anon_sym_or] = ACTIONS(6243), - [anon_sym_AMP_AMP] = ACTIONS(6241), - [anon_sym_PIPE_PIPE] = ACTIONS(6241), - [sym_op_coalescing] = ACTIONS(6241), - [anon_sym_from] = ACTIONS(6241), - [anon_sym_into] = ACTIONS(6241), - [anon_sym_join] = ACTIONS(6241), - [anon_sym_on] = ACTIONS(6241), - [anon_sym_equals] = ACTIONS(6241), - [anon_sym_let] = ACTIONS(6241), - [anon_sym_orderby] = ACTIONS(6241), - [anon_sym_group] = ACTIONS(6241), - [anon_sym_by] = ACTIONS(6241), - [anon_sym_select] = ACTIONS(6241), - [anon_sym_as] = ACTIONS(6241), - [anon_sym_is] = ACTIONS(6241), - [anon_sym_DASH_GT] = ACTIONS(6241), - [anon_sym_with] = ACTIONS(6241), - [aux_sym_preproc_if_token3] = ACTIONS(6241), - [aux_sym_preproc_else_token1] = ACTIONS(6241), - [aux_sym_preproc_elif_token1] = ACTIONS(6241), + [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), @@ -557983,27 +553842,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3926] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), [sym_preproc_region] = STATE(3926), [sym_preproc_endregion] = STATE(3926), [sym_preproc_line] = STATE(3926), @@ -558013,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -558061,27 +553915,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3927] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), [sym_preproc_region] = STATE(3927), [sym_preproc_endregion] = STATE(3927), [sym_preproc_line] = STATE(3927), @@ -558091,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -558137,29 +553985,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), }, [3928] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), [sym_preproc_region] = STATE(3928), [sym_preproc_endregion] = STATE(3928), [sym_preproc_line] = STATE(3928), @@ -558169,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -558217,27 +554061,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3929] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), [sym_preproc_region] = STATE(3929), [sym_preproc_endregion] = STATE(3929), [sym_preproc_line] = STATE(3929), @@ -558247,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), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -558304,63 +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(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_BANG] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3982), - [anon_sym_DASH_DASH] = ACTIONS(3982), - [anon_sym_PLUS] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3982), - [anon_sym_SLASH] = ACTIONS(3980), - [anon_sym_PERCENT] = ACTIONS(3982), - [anon_sym_CARET] = ACTIONS(3982), - [anon_sym_PIPE] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3980), - [anon_sym_LT_LT] = ACTIONS(3982), - [anon_sym_GT_GT] = ACTIONS(3980), - [anon_sym_GT_GT_GT] = ACTIONS(3982), - [anon_sym_EQ_EQ] = ACTIONS(3982), - [anon_sym_BANG_EQ] = ACTIONS(3982), - [anon_sym_GT_EQ] = ACTIONS(3982), - [anon_sym_LT_EQ] = ACTIONS(3982), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_EQ_GT] = ACTIONS(3982), - [anon_sym_switch] = ACTIONS(3982), - [anon_sym_DOT_DOT] = ACTIONS(3982), - [anon_sym_and] = ACTIONS(3982), - [anon_sym_or] = ACTIONS(3980), - [anon_sym_AMP_AMP] = ACTIONS(3982), - [anon_sym_PIPE_PIPE] = ACTIONS(3982), - [sym_op_coalescing] = 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), + [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), @@ -558373,27 +554207,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3931] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), + [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), @@ -558403,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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -558451,27 +554280,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3932] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -558481,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(7237), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6245), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(6247), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -558529,27 +554353,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3933] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(3933), [sym_preproc_endregion] = STATE(3933), [sym_preproc_line] = STATE(3933), @@ -558559,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), - [aux_sym__for_statement_conditions_repeat1] = STATE(7071), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6013), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6249), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -558607,27 +554426,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3934] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), + [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), @@ -558637,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6109), - [anon_sym_is] = ACTIONS(6111), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -558685,27 +554499,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3935] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), [sym_preproc_region] = STATE(3935), [sym_preproc_endregion] = STATE(3935), [sym_preproc_line] = STATE(3935), @@ -558715,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6109), - [anon_sym_is] = ACTIONS(6111), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -558763,27 +554572,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3936] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), [sym_preproc_region] = STATE(3936), [sym_preproc_endregion] = STATE(3936), [sym_preproc_line] = STATE(3936), @@ -558793,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6089), - [anon_sym_is] = ACTIONS(6091), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -558841,27 +554645,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3937] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(3937), [sym_preproc_endregion] = STATE(3937), [sym_preproc_line] = STATE(3937), @@ -558871,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(7354), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(6251), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -558928,63 +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_SEMI] = ACTIONS(6253), - [anon_sym_LBRACK] = ACTIONS(6253), - [anon_sym_COLON] = ACTIONS(6253), - [anon_sym_COMMA] = ACTIONS(6253), - [anon_sym_RBRACK] = ACTIONS(6253), - [anon_sym_LPAREN] = ACTIONS(6253), - [anon_sym_RPAREN] = ACTIONS(6253), - [anon_sym_RBRACE] = ACTIONS(6253), - [anon_sym_LT] = ACTIONS(6255), - [anon_sym_GT] = ACTIONS(6255), - [anon_sym_in] = ACTIONS(6255), - [anon_sym_where] = ACTIONS(6253), - [anon_sym_QMARK] = ACTIONS(6255), - [anon_sym_BANG] = ACTIONS(6255), - [anon_sym_PLUS_PLUS] = ACTIONS(6253), - [anon_sym_DASH_DASH] = ACTIONS(6253), - [anon_sym_PLUS] = ACTIONS(6255), - [anon_sym_DASH] = ACTIONS(6255), - [anon_sym_STAR] = ACTIONS(6253), - [anon_sym_SLASH] = ACTIONS(6255), - [anon_sym_PERCENT] = ACTIONS(6253), - [anon_sym_CARET] = ACTIONS(6253), - [anon_sym_PIPE] = ACTIONS(6255), - [anon_sym_AMP] = ACTIONS(6255), - [anon_sym_LT_LT] = ACTIONS(6253), - [anon_sym_GT_GT] = ACTIONS(6255), - [anon_sym_GT_GT_GT] = ACTIONS(6253), - [anon_sym_EQ_EQ] = ACTIONS(6253), - [anon_sym_BANG_EQ] = ACTIONS(6253), - [anon_sym_GT_EQ] = ACTIONS(6253), - [anon_sym_LT_EQ] = ACTIONS(6253), - [anon_sym_DOT] = ACTIONS(6255), - [anon_sym_EQ_GT] = ACTIONS(6253), - [anon_sym_switch] = ACTIONS(6253), - [anon_sym_DOT_DOT] = ACTIONS(6253), - [anon_sym_and] = ACTIONS(6253), - [anon_sym_or] = ACTIONS(6255), - [anon_sym_AMP_AMP] = ACTIONS(6253), - [anon_sym_PIPE_PIPE] = ACTIONS(6253), - [sym_op_coalescing] = ACTIONS(6253), - [anon_sym_from] = ACTIONS(6253), - [anon_sym_into] = ACTIONS(6253), - [anon_sym_join] = ACTIONS(6253), - [anon_sym_on] = ACTIONS(6253), - [anon_sym_equals] = ACTIONS(6253), - [anon_sym_let] = ACTIONS(6253), - [anon_sym_orderby] = ACTIONS(6253), - [anon_sym_group] = ACTIONS(6253), - [anon_sym_by] = ACTIONS(6253), - [anon_sym_select] = ACTIONS(6253), - [anon_sym_as] = ACTIONS(6253), - [anon_sym_is] = ACTIONS(6253), - [anon_sym_DASH_GT] = ACTIONS(6253), - [anon_sym_with] = ACTIONS(6253), - [aux_sym_preproc_if_token3] = ACTIONS(6253), - [aux_sym_preproc_else_token1] = ACTIONS(6253), - [aux_sym_preproc_elif_token1] = ACTIONS(6253), + [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), @@ -558997,27 +554791,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3939] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [sym_initializer_expression] = STATE(4572), [sym_preproc_region] = STATE(3939), [sym_preproc_endregion] = STATE(3939), [sym_preproc_line] = STATE(3939), @@ -559027,41 +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(5646), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_COMMA] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -559072,30 +554862,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), }, [3940] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), + [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), @@ -559105,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6109), - [anon_sym_is] = ACTIONS(6111), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -559153,27 +554937,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3941] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), + [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), @@ -559183,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6109), - [anon_sym_is] = ACTIONS(6111), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -559231,27 +555010,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3942] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), [sym_preproc_region] = STATE(3942), [sym_preproc_endregion] = STATE(3942), [sym_preproc_line] = STATE(3942), @@ -559261,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6109), - [anon_sym_is] = ACTIONS(6111), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -559309,27 +555083,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3943] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -559339,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(6257), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6063), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6065), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -559387,27 +555156,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3944] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), + [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), @@ -559417,42 +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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6089), - [anon_sym_is] = ACTIONS(6091), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -559465,27 +555229,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3945] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), [sym_preproc_region] = STATE(3945), [sym_preproc_endregion] = STATE(3945), [sym_preproc_line] = STATE(3945), @@ -559495,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -559543,27 +555302,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3946] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), [sym_preproc_region] = STATE(3946), [sym_preproc_endregion] = STATE(3946), [sym_preproc_line] = STATE(3946), @@ -559573,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_SEMI] = ACTIONS(4764), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6063), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6065), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -559630,63 +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_SEMI] = ACTIONS(6259), - [anon_sym_LBRACK] = ACTIONS(6259), - [anon_sym_COLON] = ACTIONS(6259), - [anon_sym_COMMA] = ACTIONS(6259), - [anon_sym_RBRACK] = ACTIONS(6259), - [anon_sym_LPAREN] = ACTIONS(6259), - [anon_sym_RPAREN] = ACTIONS(6259), - [anon_sym_RBRACE] = ACTIONS(6259), - [anon_sym_LT] = ACTIONS(6261), - [anon_sym_GT] = ACTIONS(6261), - [anon_sym_in] = ACTIONS(6261), - [anon_sym_where] = ACTIONS(6259), - [anon_sym_QMARK] = ACTIONS(6261), - [anon_sym_BANG] = ACTIONS(6261), - [anon_sym_PLUS_PLUS] = ACTIONS(6259), - [anon_sym_DASH_DASH] = ACTIONS(6259), - [anon_sym_PLUS] = ACTIONS(6261), - [anon_sym_DASH] = ACTIONS(6261), - [anon_sym_STAR] = ACTIONS(6259), - [anon_sym_SLASH] = ACTIONS(6261), - [anon_sym_PERCENT] = ACTIONS(6259), - [anon_sym_CARET] = ACTIONS(6259), - [anon_sym_PIPE] = ACTIONS(6261), - [anon_sym_AMP] = ACTIONS(6261), - [anon_sym_LT_LT] = ACTIONS(6259), - [anon_sym_GT_GT] = ACTIONS(6261), - [anon_sym_GT_GT_GT] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6259), - [anon_sym_BANG_EQ] = ACTIONS(6259), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_DOT] = ACTIONS(6261), - [anon_sym_EQ_GT] = ACTIONS(6259), - [anon_sym_switch] = ACTIONS(6259), - [anon_sym_DOT_DOT] = ACTIONS(6259), - [anon_sym_and] = ACTIONS(6259), - [anon_sym_or] = ACTIONS(6261), - [anon_sym_AMP_AMP] = ACTIONS(6259), - [anon_sym_PIPE_PIPE] = ACTIONS(6259), - [sym_op_coalescing] = ACTIONS(6259), - [anon_sym_from] = ACTIONS(6259), - [anon_sym_into] = ACTIONS(6259), - [anon_sym_join] = ACTIONS(6259), - [anon_sym_on] = ACTIONS(6259), - [anon_sym_equals] = ACTIONS(6259), - [anon_sym_let] = ACTIONS(6259), - [anon_sym_orderby] = ACTIONS(6259), - [anon_sym_group] = ACTIONS(6259), - [anon_sym_by] = ACTIONS(6259), - [anon_sym_select] = ACTIONS(6259), - [anon_sym_as] = ACTIONS(6259), - [anon_sym_is] = ACTIONS(6259), - [anon_sym_DASH_GT] = ACTIONS(6259), - [anon_sym_with] = ACTIONS(6259), - [aux_sym_preproc_if_token3] = ACTIONS(6259), - [aux_sym_preproc_else_token1] = ACTIONS(6259), - [aux_sym_preproc_elif_token1] = ACTIONS(6259), + [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), @@ -559699,27 +555448,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3948] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [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), @@ -559729,41 +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_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_COMMA] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -559774,30 +555519,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), }, [3949] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), + [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), @@ -559807,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6109), - [anon_sym_is] = ACTIONS(6111), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -559855,27 +555594,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3950] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), + [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), @@ -559885,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -559933,27 +555667,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3951] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), [sym_preproc_region] = STATE(3951), [sym_preproc_endregion] = STATE(3951), [sym_preproc_line] = STATE(3951), @@ -559963,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6105), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6107), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6109), - [anon_sym_is] = ACTIONS(6111), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -560011,27 +555740,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3952] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), + [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), @@ -560041,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6263), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6089), - [anon_sym_is] = ACTIONS(6091), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -560089,27 +555813,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3953] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [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), @@ -560119,41 +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(5646), - [anon_sym_COLON] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5740), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5744), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5746), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -560164,9 +555884,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(4780), }, [3954] = { + [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), @@ -560176,63 +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(6265), - [anon_sym_LBRACK] = ACTIONS(6265), - [anon_sym_COLON] = ACTIONS(6265), - [anon_sym_COMMA] = ACTIONS(6265), - [anon_sym_RBRACK] = ACTIONS(6265), - [anon_sym_LPAREN] = ACTIONS(6265), - [anon_sym_RPAREN] = ACTIONS(6265), - [anon_sym_RBRACE] = ACTIONS(6265), - [anon_sym_LT] = ACTIONS(6267), - [anon_sym_GT] = ACTIONS(6267), - [anon_sym_in] = ACTIONS(6267), - [anon_sym_where] = ACTIONS(6265), - [anon_sym_QMARK] = ACTIONS(6267), - [anon_sym_BANG] = ACTIONS(6267), - [anon_sym_PLUS_PLUS] = ACTIONS(6265), - [anon_sym_DASH_DASH] = ACTIONS(6265), - [anon_sym_PLUS] = ACTIONS(6267), - [anon_sym_DASH] = ACTIONS(6267), - [anon_sym_STAR] = ACTIONS(6265), - [anon_sym_SLASH] = ACTIONS(6267), - [anon_sym_PERCENT] = ACTIONS(6265), - [anon_sym_CARET] = ACTIONS(6265), - [anon_sym_PIPE] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6265), - [anon_sym_GT_GT] = ACTIONS(6267), - [anon_sym_GT_GT_GT] = ACTIONS(6265), - [anon_sym_EQ_EQ] = ACTIONS(6265), - [anon_sym_BANG_EQ] = ACTIONS(6265), - [anon_sym_GT_EQ] = ACTIONS(6265), - [anon_sym_LT_EQ] = ACTIONS(6265), - [anon_sym_DOT] = ACTIONS(6267), - [anon_sym_EQ_GT] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6265), - [anon_sym_DOT_DOT] = ACTIONS(6265), - [anon_sym_and] = ACTIONS(6265), - [anon_sym_or] = ACTIONS(6267), - [anon_sym_AMP_AMP] = ACTIONS(6265), - [anon_sym_PIPE_PIPE] = ACTIONS(6265), - [sym_op_coalescing] = ACTIONS(6265), - [anon_sym_from] = ACTIONS(6265), - [anon_sym_into] = ACTIONS(6265), - [anon_sym_join] = ACTIONS(6265), - [anon_sym_on] = ACTIONS(6265), - [anon_sym_equals] = ACTIONS(6265), - [anon_sym_let] = ACTIONS(6265), - [anon_sym_orderby] = ACTIONS(6265), - [anon_sym_group] = ACTIONS(6265), - [anon_sym_by] = ACTIONS(6265), - [anon_sym_select] = ACTIONS(6265), - [anon_sym_as] = ACTIONS(6265), - [anon_sym_is] = ACTIONS(6265), - [anon_sym_DASH_GT] = ACTIONS(6265), - [anon_sym_with] = ACTIONS(6265), - [aux_sym_preproc_if_token3] = ACTIONS(6265), - [aux_sym_preproc_else_token1] = ACTIONS(6265), - [aux_sym_preproc_elif_token1] = ACTIONS(6265), + [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), @@ -560245,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), @@ -560254,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(6269), - [anon_sym_LBRACK] = ACTIONS(6269), - [anon_sym_COLON] = ACTIONS(6269), - [anon_sym_COMMA] = ACTIONS(6269), - [anon_sym_RBRACK] = ACTIONS(6269), - [anon_sym_LPAREN] = ACTIONS(6269), - [anon_sym_RPAREN] = ACTIONS(6269), - [anon_sym_RBRACE] = ACTIONS(6269), - [anon_sym_LT] = ACTIONS(6271), - [anon_sym_GT] = ACTIONS(6271), - [anon_sym_in] = ACTIONS(6271), - [anon_sym_where] = ACTIONS(6269), - [anon_sym_QMARK] = ACTIONS(6271), - [anon_sym_BANG] = ACTIONS(6271), - [anon_sym_PLUS_PLUS] = ACTIONS(6269), - [anon_sym_DASH_DASH] = ACTIONS(6269), - [anon_sym_PLUS] = ACTIONS(6271), - [anon_sym_DASH] = ACTIONS(6271), - [anon_sym_STAR] = ACTIONS(6269), - [anon_sym_SLASH] = ACTIONS(6271), - [anon_sym_PERCENT] = ACTIONS(6269), - [anon_sym_CARET] = ACTIONS(6269), - [anon_sym_PIPE] = ACTIONS(6271), - [anon_sym_AMP] = ACTIONS(6271), - [anon_sym_LT_LT] = ACTIONS(6269), - [anon_sym_GT_GT] = ACTIONS(6271), - [anon_sym_GT_GT_GT] = ACTIONS(6269), - [anon_sym_EQ_EQ] = ACTIONS(6269), - [anon_sym_BANG_EQ] = ACTIONS(6269), - [anon_sym_GT_EQ] = ACTIONS(6269), - [anon_sym_LT_EQ] = ACTIONS(6269), - [anon_sym_DOT] = ACTIONS(6271), - [anon_sym_EQ_GT] = ACTIONS(6269), - [anon_sym_switch] = ACTIONS(6269), - [anon_sym_DOT_DOT] = ACTIONS(6269), - [anon_sym_and] = ACTIONS(6269), - [anon_sym_or] = ACTIONS(6271), - [anon_sym_AMP_AMP] = ACTIONS(6269), - [anon_sym_PIPE_PIPE] = ACTIONS(6269), - [sym_op_coalescing] = ACTIONS(6269), - [anon_sym_from] = ACTIONS(6269), - [anon_sym_into] = ACTIONS(6269), - [anon_sym_join] = ACTIONS(6269), - [anon_sym_on] = ACTIONS(6269), - [anon_sym_equals] = ACTIONS(6269), - [anon_sym_let] = ACTIONS(6269), - [anon_sym_orderby] = ACTIONS(6269), - [anon_sym_group] = ACTIONS(6269), - [anon_sym_by] = ACTIONS(6269), - [anon_sym_select] = ACTIONS(6269), - [anon_sym_as] = ACTIONS(6269), - [anon_sym_is] = ACTIONS(6269), - [anon_sym_DASH_GT] = ACTIONS(6269), - [anon_sym_with] = ACTIONS(6269), - [aux_sym_preproc_if_token3] = ACTIONS(6269), - [aux_sym_preproc_else_token1] = ACTIONS(6269), - [aux_sym_preproc_elif_token1] = ACTIONS(6269), + [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), @@ -560323,27 +556032,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3956] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -560353,42 +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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -560401,6 +556105,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -560410,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(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(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), @@ -560479,27 +556178,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3958] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -560509,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -560557,27 +556251,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3959] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -560587,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -560635,27 +556324,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3960] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -560665,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), - [aux_sym_preproc_if_token3] = ACTIONS(4760), - [aux_sym_preproc_else_token1] = ACTIONS(4760), - [aux_sym_preproc_elif_token1] = ACTIONS(4760), + [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), @@ -560722,73 +556406,68 @@ 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_SEMI] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_COLON] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_RBRACK] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_RPAREN] = ACTIONS(4416), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_in] = ACTIONS(4416), - [anon_sym_where] = ACTIONS(4416), - [anon_sym_QMARK] = ACTIONS(4414), - [anon_sym_BANG] = ACTIONS(4414), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4416), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4416), - [anon_sym_CARET] = ACTIONS(4416), - [anon_sym_PIPE] = ACTIONS(4414), - [anon_sym_AMP] = ACTIONS(4414), - [anon_sym_LT_LT] = ACTIONS(4416), - [anon_sym_GT_GT] = ACTIONS(4414), - [anon_sym_GT_GT_GT] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4416), - [anon_sym_switch] = ACTIONS(4416), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_and] = ACTIONS(4416), - [anon_sym_or] = ACTIONS(4414), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [sym_op_coalescing] = ACTIONS(4416), - [anon_sym_from] = ACTIONS(4416), - [anon_sym_join] = ACTIONS(4416), - [anon_sym_on] = ACTIONS(4416), - [anon_sym_equals] = ACTIONS(4416), - [anon_sym_let] = ACTIONS(4416), - [anon_sym_orderby] = ACTIONS(4416), - [anon_sym_group] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(4416), - [anon_sym_select] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4416), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4416), - [aux_sym_preproc_if_token3] = ACTIONS(4416), - [aux_sym_preproc_else_token1] = ACTIONS(4416), - [aux_sym_preproc_elif_token1] = ACTIONS(4416), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(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), }, [3962] = { [sym_preproc_region] = STATE(3962), @@ -560800,73 +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(6273), - [anon_sym_LBRACK] = ACTIONS(6273), - [anon_sym_COLON] = ACTIONS(6273), - [anon_sym_COMMA] = ACTIONS(6273), - [anon_sym_RBRACK] = ACTIONS(6273), - [anon_sym_LPAREN] = ACTIONS(6273), - [anon_sym_RPAREN] = ACTIONS(6273), - [anon_sym_RBRACE] = ACTIONS(6273), - [anon_sym_LT] = ACTIONS(6275), - [anon_sym_GT] = ACTIONS(6275), - [anon_sym_in] = ACTIONS(6275), - [anon_sym_where] = ACTIONS(6273), - [anon_sym_QMARK] = ACTIONS(6275), - [anon_sym_BANG] = ACTIONS(6275), - [anon_sym_PLUS_PLUS] = ACTIONS(6273), - [anon_sym_DASH_DASH] = ACTIONS(6273), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_STAR] = ACTIONS(6273), - [anon_sym_SLASH] = ACTIONS(6275), - [anon_sym_PERCENT] = ACTIONS(6273), - [anon_sym_CARET] = ACTIONS(6273), - [anon_sym_PIPE] = ACTIONS(6275), - [anon_sym_AMP] = ACTIONS(6275), - [anon_sym_LT_LT] = ACTIONS(6273), - [anon_sym_GT_GT] = ACTIONS(6275), - [anon_sym_GT_GT_GT] = ACTIONS(6273), - [anon_sym_EQ_EQ] = ACTIONS(6273), - [anon_sym_BANG_EQ] = ACTIONS(6273), - [anon_sym_GT_EQ] = ACTIONS(6273), - [anon_sym_LT_EQ] = ACTIONS(6273), - [anon_sym_DOT] = ACTIONS(6275), - [anon_sym_EQ_GT] = ACTIONS(6273), - [anon_sym_switch] = ACTIONS(6273), - [anon_sym_DOT_DOT] = ACTIONS(6273), - [anon_sym_and] = ACTIONS(6273), - [anon_sym_or] = ACTIONS(6275), - [anon_sym_AMP_AMP] = ACTIONS(6273), - [anon_sym_PIPE_PIPE] = ACTIONS(6273), - [sym_op_coalescing] = ACTIONS(6273), - [anon_sym_from] = ACTIONS(6273), - [anon_sym_into] = ACTIONS(6273), - [anon_sym_join] = ACTIONS(6273), - [anon_sym_on] = ACTIONS(6273), - [anon_sym_equals] = ACTIONS(6273), - [anon_sym_let] = ACTIONS(6273), - [anon_sym_orderby] = ACTIONS(6273), - [anon_sym_group] = ACTIONS(6273), - [anon_sym_by] = ACTIONS(6273), - [anon_sym_select] = ACTIONS(6273), - [anon_sym_as] = ACTIONS(6273), - [anon_sym_is] = ACTIONS(6273), - [anon_sym_DASH_GT] = ACTIONS(6273), - [anon_sym_with] = ACTIONS(6273), - [aux_sym_preproc_if_token3] = ACTIONS(6273), - [aux_sym_preproc_else_token1] = ACTIONS(6273), - [aux_sym_preproc_elif_token1] = ACTIONS(6273), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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), @@ -560878,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(6277), - [anon_sym_LBRACK] = ACTIONS(6277), - [anon_sym_COLON] = ACTIONS(6277), - [anon_sym_COMMA] = ACTIONS(6277), - [anon_sym_RBRACK] = ACTIONS(6277), - [anon_sym_LPAREN] = ACTIONS(6277), - [anon_sym_RPAREN] = ACTIONS(6277), - [anon_sym_RBRACE] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6279), - [anon_sym_GT] = ACTIONS(6279), - [anon_sym_in] = ACTIONS(6279), - [anon_sym_where] = ACTIONS(6277), - [anon_sym_QMARK] = ACTIONS(6279), - [anon_sym_BANG] = ACTIONS(6279), - [anon_sym_PLUS_PLUS] = ACTIONS(6277), - [anon_sym_DASH_DASH] = ACTIONS(6277), - [anon_sym_PLUS] = ACTIONS(6279), - [anon_sym_DASH] = ACTIONS(6279), - [anon_sym_STAR] = ACTIONS(6277), - [anon_sym_SLASH] = ACTIONS(6279), - [anon_sym_PERCENT] = ACTIONS(6277), - [anon_sym_CARET] = ACTIONS(6277), - [anon_sym_PIPE] = ACTIONS(6279), - [anon_sym_AMP] = ACTIONS(6279), - [anon_sym_LT_LT] = ACTIONS(6277), - [anon_sym_GT_GT] = ACTIONS(6279), - [anon_sym_GT_GT_GT] = ACTIONS(6277), - [anon_sym_EQ_EQ] = ACTIONS(6277), - [anon_sym_BANG_EQ] = ACTIONS(6277), - [anon_sym_GT_EQ] = ACTIONS(6277), - [anon_sym_LT_EQ] = ACTIONS(6277), - [anon_sym_DOT] = ACTIONS(6279), - [anon_sym_EQ_GT] = ACTIONS(6277), - [anon_sym_switch] = ACTIONS(6277), - [anon_sym_DOT_DOT] = ACTIONS(6277), - [anon_sym_and] = ACTIONS(6277), - [anon_sym_or] = ACTIONS(6279), - [anon_sym_AMP_AMP] = ACTIONS(6277), - [anon_sym_PIPE_PIPE] = ACTIONS(6277), - [sym_op_coalescing] = ACTIONS(6277), - [anon_sym_from] = ACTIONS(6277), - [anon_sym_into] = ACTIONS(6277), - [anon_sym_join] = ACTIONS(6277), - [anon_sym_on] = ACTIONS(6277), - [anon_sym_equals] = ACTIONS(6277), - [anon_sym_let] = ACTIONS(6277), - [anon_sym_orderby] = ACTIONS(6277), - [anon_sym_group] = ACTIONS(6277), - [anon_sym_by] = ACTIONS(6277), - [anon_sym_select] = ACTIONS(6277), - [anon_sym_as] = ACTIONS(6277), - [anon_sym_is] = ACTIONS(6277), - [anon_sym_DASH_GT] = ACTIONS(6277), - [anon_sym_with] = ACTIONS(6277), - [aux_sym_preproc_if_token3] = ACTIONS(6277), - [aux_sym_preproc_else_token1] = ACTIONS(6277), - [aux_sym_preproc_elif_token1] = ACTIONS(6277), + [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), @@ -560947,27 +556616,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3964] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -560977,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [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(4468), - [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_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), @@ -561025,6 +556689,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3965] = { + [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), @@ -561034,63 +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(4322), - [anon_sym_LBRACK] = ACTIONS(4322), - [anon_sym_COLON] = ACTIONS(4322), - [anon_sym_COMMA] = ACTIONS(4322), - [anon_sym_RBRACK] = ACTIONS(4322), - [anon_sym_LPAREN] = ACTIONS(4322), - [anon_sym_RPAREN] = ACTIONS(4322), - [anon_sym_LBRACE] = ACTIONS(4322), - [anon_sym_RBRACE] = ACTIONS(4322), - [anon_sym_LT] = ACTIONS(4320), - [anon_sym_GT] = ACTIONS(4320), - [anon_sym_in] = ACTIONS(4322), - [anon_sym_where] = ACTIONS(4322), - [anon_sym_QMARK] = ACTIONS(4320), - [anon_sym_BANG] = ACTIONS(4320), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS] = ACTIONS(4320), - [anon_sym_DASH] = ACTIONS(4320), - [anon_sym_STAR] = ACTIONS(4322), - [anon_sym_SLASH] = ACTIONS(4320), - [anon_sym_PERCENT] = ACTIONS(4322), - [anon_sym_CARET] = ACTIONS(4322), - [anon_sym_PIPE] = ACTIONS(4320), - [anon_sym_AMP] = ACTIONS(4320), - [anon_sym_LT_LT] = ACTIONS(4322), - [anon_sym_GT_GT] = ACTIONS(4320), - [anon_sym_GT_GT_GT] = ACTIONS(4322), - [anon_sym_EQ_EQ] = ACTIONS(4322), - [anon_sym_BANG_EQ] = ACTIONS(4322), - [anon_sym_GT_EQ] = ACTIONS(4322), - [anon_sym_LT_EQ] = ACTIONS(4322), - [anon_sym_DOT] = ACTIONS(4320), - [anon_sym_EQ_GT] = ACTIONS(4322), - [anon_sym_switch] = ACTIONS(4322), - [anon_sym_DOT_DOT] = ACTIONS(4322), - [anon_sym_and] = ACTIONS(4322), - [anon_sym_or] = ACTIONS(4320), - [anon_sym_AMP_AMP] = ACTIONS(4322), - [anon_sym_PIPE_PIPE] = ACTIONS(4322), - [sym_op_coalescing] = ACTIONS(4322), - [anon_sym_from] = ACTIONS(4322), - [anon_sym_join] = ACTIONS(4322), - [anon_sym_on] = ACTIONS(4322), - [anon_sym_equals] = ACTIONS(4322), - [anon_sym_let] = ACTIONS(4322), - [anon_sym_orderby] = ACTIONS(4322), - [anon_sym_group] = ACTIONS(4322), - [anon_sym_by] = ACTIONS(4322), - [anon_sym_select] = ACTIONS(4322), - [anon_sym_as] = ACTIONS(4322), - [anon_sym_is] = ACTIONS(4322), - [anon_sym_DASH_GT] = ACTIONS(4322), - [anon_sym_with] = ACTIONS(4322), - [aux_sym_preproc_if_token3] = ACTIONS(4322), - [aux_sym_preproc_else_token1] = ACTIONS(4322), - [aux_sym_preproc_elif_token1] = ACTIONS(4322), + [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), @@ -561103,27 +556762,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3966] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -561133,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(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -561181,6 +556835,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3967] = { + [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), @@ -561190,63 +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_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(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), @@ -561259,27 +556908,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3968] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -561289,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -561337,6 +556981,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3969] = { + [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), @@ -561346,63 +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(6285), - [anon_sym_LBRACK] = ACTIONS(6285), - [anon_sym_COLON] = ACTIONS(6285), - [anon_sym_COMMA] = ACTIONS(6285), - [anon_sym_RBRACK] = ACTIONS(6285), - [anon_sym_LPAREN] = ACTIONS(6285), - [anon_sym_RPAREN] = ACTIONS(6285), - [anon_sym_RBRACE] = ACTIONS(6285), - [anon_sym_LT] = ACTIONS(6287), - [anon_sym_GT] = ACTIONS(6287), - [anon_sym_in] = ACTIONS(6287), - [anon_sym_where] = ACTIONS(6285), - [anon_sym_QMARK] = ACTIONS(6287), - [anon_sym_BANG] = ACTIONS(6287), - [anon_sym_PLUS_PLUS] = ACTIONS(6285), - [anon_sym_DASH_DASH] = ACTIONS(6285), - [anon_sym_PLUS] = ACTIONS(6287), - [anon_sym_DASH] = ACTIONS(6287), - [anon_sym_STAR] = ACTIONS(6285), - [anon_sym_SLASH] = ACTIONS(6287), - [anon_sym_PERCENT] = ACTIONS(6285), - [anon_sym_CARET] = ACTIONS(6285), - [anon_sym_PIPE] = ACTIONS(6287), - [anon_sym_AMP] = ACTIONS(6287), - [anon_sym_LT_LT] = ACTIONS(6285), - [anon_sym_GT_GT] = ACTIONS(6287), - [anon_sym_GT_GT_GT] = ACTIONS(6285), - [anon_sym_EQ_EQ] = ACTIONS(6285), - [anon_sym_BANG_EQ] = ACTIONS(6285), - [anon_sym_GT_EQ] = ACTIONS(6285), - [anon_sym_LT_EQ] = ACTIONS(6285), - [anon_sym_DOT] = ACTIONS(6287), - [anon_sym_EQ_GT] = ACTIONS(6285), - [anon_sym_switch] = ACTIONS(6285), - [anon_sym_DOT_DOT] = ACTIONS(6285), - [anon_sym_and] = ACTIONS(6285), - [anon_sym_or] = ACTIONS(6287), - [anon_sym_AMP_AMP] = ACTIONS(6285), - [anon_sym_PIPE_PIPE] = ACTIONS(6285), - [sym_op_coalescing] = ACTIONS(6285), - [anon_sym_from] = ACTIONS(6285), - [anon_sym_into] = ACTIONS(6285), - [anon_sym_join] = ACTIONS(6285), - [anon_sym_on] = ACTIONS(6285), - [anon_sym_equals] = ACTIONS(6285), - [anon_sym_let] = ACTIONS(6285), - [anon_sym_orderby] = ACTIONS(6285), - [anon_sym_group] = ACTIONS(6285), - [anon_sym_by] = ACTIONS(6285), - [anon_sym_select] = ACTIONS(6285), - [anon_sym_as] = ACTIONS(6285), - [anon_sym_is] = ACTIONS(6285), - [anon_sym_DASH_GT] = ACTIONS(6285), - [anon_sym_with] = ACTIONS(6285), - [aux_sym_preproc_if_token3] = ACTIONS(6285), - [aux_sym_preproc_else_token1] = ACTIONS(6285), - [aux_sym_preproc_elif_token1] = ACTIONS(6285), + [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), @@ -561415,6 +557054,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3970] = { + [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), @@ -561424,63 +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_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(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), @@ -561493,27 +557127,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3971] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -561523,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -561571,6 +557200,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3972] = { + [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), @@ -561580,63 +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), - [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(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), @@ -561649,27 +557273,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3973] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), [sym_preproc_region] = STATE(3973), [sym_preproc_endregion] = STATE(3973), [sym_preproc_line] = STATE(3973), @@ -561679,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6297), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6301), - [anon_sym_on] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(6303), - [anon_sym_is] = ACTIONS(6305), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -561725,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), @@ -561736,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(4355), - [anon_sym_LBRACK] = ACTIONS(4355), - [anon_sym_COLON] = ACTIONS(4355), - [anon_sym_COMMA] = ACTIONS(4355), - [anon_sym_RBRACK] = ACTIONS(4355), - [anon_sym_LPAREN] = ACTIONS(4355), - [anon_sym_RPAREN] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4355), - [anon_sym_RBRACE] = ACTIONS(4355), - [anon_sym_LT] = ACTIONS(4353), - [anon_sym_GT] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_where] = ACTIONS(4355), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_BANG] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4355), - [anon_sym_DASH_DASH] = ACTIONS(4355), - [anon_sym_PLUS] = ACTIONS(4353), - [anon_sym_DASH] = ACTIONS(4353), - [anon_sym_STAR] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4353), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_CARET] = ACTIONS(4355), - [anon_sym_PIPE] = ACTIONS(4353), - [anon_sym_AMP] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4355), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_GT_GT_GT] = ACTIONS(4355), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_GT_EQ] = ACTIONS(4355), - [anon_sym_LT_EQ] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4353), - [anon_sym_EQ_GT] = ACTIONS(4355), - [anon_sym_switch] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4355), - [anon_sym_and] = ACTIONS(4355), - [anon_sym_or] = ACTIONS(4353), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4355), - [sym_op_coalescing] = ACTIONS(4355), - [anon_sym_from] = 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_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(4355), - [anon_sym_with] = ACTIONS(4355), - [aux_sym_preproc_if_token3] = ACTIONS(4355), - [aux_sym_preproc_else_token1] = ACTIONS(4355), - [aux_sym_preproc_elif_token1] = ACTIONS(4355), + [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), @@ -561805,27 +557419,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3975] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), + [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), @@ -561835,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_on] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -561883,27 +557492,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3976] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -561913,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__for_statement_conditions_repeat1] = STATE(7128), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6013), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6307), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -561961,6 +557565,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3977] = { + [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), @@ -561970,63 +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), - [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(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), @@ -562039,6 +557638,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3978] = { + [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), @@ -562048,63 +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), - [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(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), @@ -562117,27 +557711,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3979] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -562147,42 +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), - [aux_sym_initializer_expression_repeat1] = STATE(7328), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6317), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(6319), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -562195,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), @@ -562204,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_EQ] = ACTIONS(6321), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_where] = ACTIONS(5752), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(6323), - [anon_sym_DASH_EQ] = ACTIONS(6323), - [anon_sym_STAR_EQ] = ACTIONS(6323), - [anon_sym_SLASH_EQ] = ACTIONS(6323), - [anon_sym_PERCENT_EQ] = ACTIONS(6323), - [anon_sym_AMP_EQ] = ACTIONS(6323), - [anon_sym_CARET_EQ] = ACTIONS(6323), - [anon_sym_PIPE_EQ] = ACTIONS(6323), - [anon_sym_LT_LT_EQ] = ACTIONS(6323), - [anon_sym_GT_GT_EQ] = ACTIONS(6323), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6323), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6323), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5752), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_join] = ACTIONS(5752), - [anon_sym_let] = ACTIONS(5752), - [anon_sym_orderby] = ACTIONS(5752), - [anon_sym_ascending] = ACTIONS(5752), - [anon_sym_descending] = ACTIONS(5752), - [anon_sym_group] = ACTIONS(5752), - [anon_sym_select] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5754), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -562273,27 +557857,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3981] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), + [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), @@ -562303,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(5518), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -562351,6 +557930,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3982] = { + [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), @@ -562360,63 +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(6325), - [anon_sym_LBRACK] = ACTIONS(6325), - [anon_sym_COLON] = ACTIONS(6325), - [anon_sym_COMMA] = ACTIONS(6325), - [anon_sym_RBRACK] = ACTIONS(6325), - [anon_sym_LPAREN] = ACTIONS(6325), - [anon_sym_RPAREN] = ACTIONS(6325), - [anon_sym_RBRACE] = ACTIONS(6325), - [anon_sym_LT] = ACTIONS(6327), - [anon_sym_GT] = ACTIONS(6327), - [anon_sym_in] = ACTIONS(6327), - [anon_sym_where] = ACTIONS(6325), - [anon_sym_QMARK] = ACTIONS(6327), - [anon_sym_BANG] = ACTIONS(6327), - [anon_sym_PLUS_PLUS] = ACTIONS(6325), - [anon_sym_DASH_DASH] = ACTIONS(6325), - [anon_sym_PLUS] = ACTIONS(6327), - [anon_sym_DASH] = ACTIONS(6327), - [anon_sym_STAR] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6327), - [anon_sym_PERCENT] = ACTIONS(6325), - [anon_sym_CARET] = ACTIONS(6325), - [anon_sym_PIPE] = ACTIONS(6327), - [anon_sym_AMP] = ACTIONS(6327), - [anon_sym_LT_LT] = ACTIONS(6325), - [anon_sym_GT_GT] = ACTIONS(6327), - [anon_sym_GT_GT_GT] = ACTIONS(6325), - [anon_sym_EQ_EQ] = ACTIONS(6325), - [anon_sym_BANG_EQ] = ACTIONS(6325), - [anon_sym_GT_EQ] = ACTIONS(6325), - [anon_sym_LT_EQ] = ACTIONS(6325), - [anon_sym_DOT] = ACTIONS(6327), - [anon_sym_EQ_GT] = ACTIONS(6325), - [anon_sym_switch] = ACTIONS(6325), - [anon_sym_DOT_DOT] = ACTIONS(6325), - [anon_sym_and] = ACTIONS(6325), - [anon_sym_or] = ACTIONS(6327), - [anon_sym_AMP_AMP] = ACTIONS(6325), - [anon_sym_PIPE_PIPE] = ACTIONS(6325), - [sym_op_coalescing] = ACTIONS(6325), - [anon_sym_from] = ACTIONS(6325), - [anon_sym_into] = ACTIONS(6325), - [anon_sym_join] = ACTIONS(6325), - [anon_sym_on] = ACTIONS(6325), - [anon_sym_equals] = ACTIONS(6325), - [anon_sym_let] = ACTIONS(6325), - [anon_sym_orderby] = ACTIONS(6325), - [anon_sym_group] = ACTIONS(6325), - [anon_sym_by] = ACTIONS(6325), - [anon_sym_select] = ACTIONS(6325), - [anon_sym_as] = ACTIONS(6325), - [anon_sym_is] = ACTIONS(6325), - [anon_sym_DASH_GT] = ACTIONS(6325), - [anon_sym_with] = ACTIONS(6325), - [aux_sym_preproc_if_token3] = ACTIONS(6325), - [aux_sym_preproc_else_token1] = ACTIONS(6325), - [aux_sym_preproc_elif_token1] = ACTIONS(6325), + [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), @@ -562429,6 +558003,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3983] = { + [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), @@ -562438,63 +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_SEMI] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_COLON] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4342), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_in] = ACTIONS(4342), - [anon_sym_where] = ACTIONS(4342), - [anon_sym_QMARK] = ACTIONS(4340), - [anon_sym_BANG] = ACTIONS(4340), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4342), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4342), - [anon_sym_CARET] = ACTIONS(4342), - [anon_sym_PIPE] = ACTIONS(4340), - [anon_sym_AMP] = ACTIONS(4340), - [anon_sym_LT_LT] = ACTIONS(4342), - [anon_sym_GT_GT] = ACTIONS(4340), - [anon_sym_GT_GT_GT] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_EQ_GT] = ACTIONS(4342), - [anon_sym_switch] = ACTIONS(4342), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_and] = ACTIONS(4342), - [anon_sym_or] = ACTIONS(4340), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [sym_op_coalescing] = ACTIONS(4342), - [anon_sym_from] = ACTIONS(4342), - [anon_sym_join] = ACTIONS(4342), - [anon_sym_on] = ACTIONS(4342), - [anon_sym_equals] = ACTIONS(4342), - [anon_sym_let] = ACTIONS(4342), - [anon_sym_orderby] = ACTIONS(4342), - [anon_sym_group] = ACTIONS(4342), - [anon_sym_by] = ACTIONS(4342), - [anon_sym_select] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4342), - [anon_sym_DASH_GT] = ACTIONS(4342), - [anon_sym_with] = ACTIONS(4342), - [aux_sym_preproc_if_token3] = ACTIONS(4342), - [aux_sym_preproc_else_token1] = ACTIONS(4342), - [aux_sym_preproc_elif_token1] = ACTIONS(4342), + [anon_sym_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), @@ -562507,27 +558076,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3984] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -562537,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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6331), - [anon_sym_as] = ACTIONS(6333), - [anon_sym_is] = ACTIONS(6335), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -562585,27 +558149,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3985] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -562615,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -562663,27 +558222,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3986] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), [sym_preproc_region] = STATE(3986), [sym_preproc_endregion] = STATE(3986), [sym_preproc_line] = STATE(3986), @@ -562693,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6333), - [anon_sym_is] = ACTIONS(6335), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -562739,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(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -562771,42 +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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6333), - [anon_sym_is] = ACTIONS(6335), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -562819,27 +558368,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3988] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -562849,42 +558392,43 @@ 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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6333), - [anon_sym_is] = ACTIONS(6335), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -562897,27 +558441,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3989] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -562927,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6333), - [anon_sym_is] = ACTIONS(6335), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -562975,27 +558514,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3990] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -563005,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6333), - [anon_sym_is] = ACTIONS(6335), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -563053,27 +558587,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3991] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -563083,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), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6333), - [anon_sym_is] = ACTIONS(6335), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -563131,27 +558660,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3992] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -563161,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -563209,27 +558733,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3993] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -563239,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -563287,27 +558806,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3994] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), + [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), @@ -563317,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6297), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6301), - [anon_sym_on] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(6303), - [anon_sym_is] = ACTIONS(6305), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -563365,27 +558879,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3995] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -563395,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -563443,27 +558952,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3996] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1471), - [sym_op_lte] = STATE(1471), - [sym_op_eq] = STATE(1470), - [sym_op_neq] = STATE(1470), - [sym_op_gt] = STATE(1471), - [sym_op_gte] = STATE(1471), - [sym_op_and] = STATE(1469), - [sym_op_or] = STATE(1468), - [sym_op_bitwise_and] = STATE(1461), - [sym_op_bitwise_or] = STATE(1459), - [sym_op_bitwise_xor] = STATE(1456), - [sym_op_left_shift] = STATE(1451), - [sym_op_right_shift] = STATE(1451), - [sym_op_unsigned_right_shift] = STATE(1451), - [sym_op_plus] = STATE(1449), - [sym_op_minus] = STATE(1449), - [sym_op_multiply] = STATE(1447), - [sym_op_divide] = STATE(1447), - [sym_op_modulo] = STATE(1447), + [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), @@ -563473,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(5422), - [anon_sym_COLON] = ACTIONS(4780), - [anon_sym_COMMA] = ACTIONS(6337), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5825), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5829), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(5833), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -563521,27 +559025,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3997] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -563551,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4798), - [aux_sym_preproc_else_token1] = ACTIONS(4798), - [aux_sym_preproc_elif_token1] = ACTIONS(4798), + [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), @@ -563599,27 +559098,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3998] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), + [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), @@ -563629,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(5518), - [anon_sym_COLON] = ACTIONS(4794), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6085), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(5997), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5999), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6001), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -563677,27 +559171,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [3999] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -563707,42 +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(4686), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4686), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -563755,27 +559244,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4000] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -563785,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(5422), - [anon_sym_COMMA] = ACTIONS(6339), - [anon_sym_RBRACK] = ACTIONS(6339), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6339), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -563833,27 +559317,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4001] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), + [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), @@ -563863,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6297), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6301), - [anon_sym_on] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(6303), - [anon_sym_is] = ACTIONS(6305), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -563911,27 +559390,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4002] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), + [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), @@ -563941,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6297), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6301), - [anon_sym_on] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(6303), - [anon_sym_is] = ACTIONS(6305), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -563989,27 +559463,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4003] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -564019,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_initializer_expression_repeat1] = STATE(7193), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(5950), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -564067,6 +559536,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4004] = { + [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), @@ -564076,63 +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_SEMI] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4450), - [anon_sym_COLON] = ACTIONS(4450), - [anon_sym_COMMA] = ACTIONS(4450), - [anon_sym_RBRACK] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_RPAREN] = ACTIONS(4450), - [anon_sym_LBRACE] = ACTIONS(4450), - [anon_sym_RBRACE] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4448), - [anon_sym_GT] = ACTIONS(4448), - [anon_sym_in] = ACTIONS(4450), - [anon_sym_where] = ACTIONS(4450), - [anon_sym_QMARK] = ACTIONS(4448), - [anon_sym_BANG] = ACTIONS(4448), - [anon_sym_PLUS_PLUS] = ACTIONS(4450), - [anon_sym_DASH_DASH] = ACTIONS(4450), - [anon_sym_PLUS] = ACTIONS(4448), - [anon_sym_DASH] = ACTIONS(4448), - [anon_sym_STAR] = ACTIONS(4450), - [anon_sym_SLASH] = ACTIONS(4448), - [anon_sym_PERCENT] = ACTIONS(4450), - [anon_sym_CARET] = ACTIONS(4450), - [anon_sym_PIPE] = ACTIONS(4448), - [anon_sym_AMP] = ACTIONS(4448), - [anon_sym_LT_LT] = ACTIONS(4450), - [anon_sym_GT_GT] = ACTIONS(4448), - [anon_sym_GT_GT_GT] = ACTIONS(4450), - [anon_sym_EQ_EQ] = ACTIONS(4450), - [anon_sym_BANG_EQ] = ACTIONS(4450), - [anon_sym_GT_EQ] = ACTIONS(4450), - [anon_sym_LT_EQ] = ACTIONS(4450), - [anon_sym_DOT] = ACTIONS(4448), - [anon_sym_EQ_GT] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4450), - [anon_sym_DOT_DOT] = ACTIONS(4450), - [anon_sym_and] = ACTIONS(4450), - [anon_sym_or] = ACTIONS(4448), - [anon_sym_AMP_AMP] = ACTIONS(4450), - [anon_sym_PIPE_PIPE] = ACTIONS(4450), - [sym_op_coalescing] = ACTIONS(4450), - [anon_sym_from] = 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_group] = ACTIONS(4450), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_select] = ACTIONS(4450), - [anon_sym_as] = ACTIONS(4450), - [anon_sym_is] = ACTIONS(4450), - [anon_sym_DASH_GT] = ACTIONS(4450), - [anon_sym_with] = ACTIONS(4450), - [aux_sym_preproc_if_token3] = ACTIONS(4450), - [aux_sym_preproc_else_token1] = ACTIONS(4450), - [aux_sym_preproc_elif_token1] = ACTIONS(4450), + [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), @@ -564145,27 +559609,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4005] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -564175,42 +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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_in] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -564223,27 +559682,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4006] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), + [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), @@ -564253,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_equals] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -564301,27 +559755,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4007] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [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), @@ -564331,41 +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_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -564376,30 +559826,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4686), }, [4008] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -564409,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4764), - [aux_sym_preproc_else_token1] = ACTIONS(4764), - [aux_sym_preproc_elif_token1] = ACTIONS(4764), + [aux_sym__class_declaration_initializer_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), @@ -564457,6 +559901,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4009] = { + [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), @@ -564466,63 +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_SEMI] = ACTIONS(4464), - [anon_sym_LBRACK] = ACTIONS(4464), - [anon_sym_COLON] = ACTIONS(4464), - [anon_sym_COMMA] = ACTIONS(4464), - [anon_sym_RBRACK] = ACTIONS(4464), - [anon_sym_LPAREN] = ACTIONS(4464), - [anon_sym_RPAREN] = ACTIONS(4464), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_RBRACE] = ACTIONS(4464), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_in] = ACTIONS(4464), - [anon_sym_where] = ACTIONS(4464), - [anon_sym_QMARK] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PLUS_PLUS] = ACTIONS(4464), - [anon_sym_DASH_DASH] = ACTIONS(4464), - [anon_sym_PLUS] = ACTIONS(4462), - [anon_sym_DASH] = ACTIONS(4462), - [anon_sym_STAR] = ACTIONS(4464), - [anon_sym_SLASH] = ACTIONS(4462), - [anon_sym_PERCENT] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4464), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_AMP] = ACTIONS(4462), - [anon_sym_LT_LT] = ACTIONS(4464), - [anon_sym_GT_GT] = ACTIONS(4462), - [anon_sym_GT_GT_GT] = ACTIONS(4464), - [anon_sym_EQ_EQ] = ACTIONS(4464), - [anon_sym_BANG_EQ] = ACTIONS(4464), - [anon_sym_GT_EQ] = ACTIONS(4464), - [anon_sym_LT_EQ] = ACTIONS(4464), - [anon_sym_DOT] = ACTIONS(4462), - [anon_sym_EQ_GT] = ACTIONS(4464), - [anon_sym_switch] = ACTIONS(4464), - [anon_sym_DOT_DOT] = ACTIONS(4464), - [anon_sym_and] = ACTIONS(4464), - [anon_sym_or] = ACTIONS(4462), - [anon_sym_AMP_AMP] = ACTIONS(4464), - [anon_sym_PIPE_PIPE] = ACTIONS(4464), - [sym_op_coalescing] = ACTIONS(4464), - [anon_sym_from] = 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_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(4464), - [anon_sym_with] = ACTIONS(4464), - [aux_sym_preproc_if_token3] = ACTIONS(4464), - [aux_sym_preproc_else_token1] = ACTIONS(4464), - [aux_sym_preproc_elif_token1] = ACTIONS(4464), + [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), @@ -564535,27 +559974,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4010] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [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), @@ -564565,41 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -564610,30 +560045,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(4686), }, [4011] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -564643,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), - [aux_sym_array_rank_specifier_repeat1] = STATE(7154), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(6341), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -564691,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), @@ -564700,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(4021), - [anon_sym_LBRACK] = ACTIONS(4021), - [anon_sym_COLON] = ACTIONS(4021), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_RBRACK] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4021), - [anon_sym_RPAREN] = ACTIONS(4021), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_LT] = ACTIONS(4014), - [anon_sym_GT] = ACTIONS(4014), - [anon_sym_in] = ACTIONS(4021), - [anon_sym_where] = ACTIONS(4021), - [anon_sym_QMARK] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4014), - [anon_sym_PLUS_PLUS] = ACTIONS(4021), - [anon_sym_DASH_DASH] = ACTIONS(4021), - [anon_sym_PLUS] = ACTIONS(4014), - [anon_sym_DASH] = ACTIONS(4014), - [anon_sym_STAR] = ACTIONS(4021), - [anon_sym_SLASH] = ACTIONS(4014), - [anon_sym_PERCENT] = ACTIONS(4021), - [anon_sym_CARET] = ACTIONS(4021), - [anon_sym_PIPE] = ACTIONS(4014), - [anon_sym_AMP] = ACTIONS(4014), - [anon_sym_LT_LT] = ACTIONS(4021), - [anon_sym_GT_GT] = ACTIONS(4014), - [anon_sym_GT_GT_GT] = ACTIONS(4021), - [anon_sym_EQ_EQ] = ACTIONS(4021), - [anon_sym_BANG_EQ] = ACTIONS(4021), - [anon_sym_GT_EQ] = ACTIONS(4021), - [anon_sym_LT_EQ] = ACTIONS(4021), - [anon_sym_DOT] = ACTIONS(4014), - [anon_sym_EQ_GT] = ACTIONS(4021), - [anon_sym_switch] = ACTIONS(4021), - [anon_sym_DOT_DOT] = ACTIONS(4021), - [anon_sym_and] = ACTIONS(4021), - [anon_sym_or] = ACTIONS(4014), - [anon_sym_AMP_AMP] = ACTIONS(4021), - [anon_sym_PIPE_PIPE] = ACTIONS(4021), - [sym_op_coalescing] = ACTIONS(4021), - [anon_sym_from] = ACTIONS(4021), - [anon_sym_join] = ACTIONS(4021), - [anon_sym_on] = ACTIONS(4021), - [anon_sym_equals] = ACTIONS(4021), - [anon_sym_let] = ACTIONS(4021), - [anon_sym_orderby] = ACTIONS(4021), - [anon_sym_group] = ACTIONS(4021), - [anon_sym_by] = ACTIONS(4021), - [anon_sym_select] = ACTIONS(4021), - [anon_sym_as] = ACTIONS(4021), - [anon_sym_is] = ACTIONS(4021), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(4021), - [aux_sym_preproc_if_token3] = ACTIONS(4021), - [aux_sym_preproc_else_token1] = ACTIONS(4021), - [aux_sym_preproc_elif_token1] = ACTIONS(4021), + [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), @@ -564769,27 +560193,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4013] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [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), @@ -564799,41 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -564844,30 +560264,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(4686), }, [4014] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [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), @@ -564877,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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5746), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -564922,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(4686), }, [4015] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), [sym_preproc_region] = STATE(4015), [sym_preproc_endregion] = STATE(4015), [sym_preproc_line] = STATE(4015), @@ -564955,41 +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_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5746), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [anon_sym_EQ] = ACTIONS(6650), + [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_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), @@ -565000,9 +560410,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(4686), }, [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), @@ -565012,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(4460), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_COLON] = ACTIONS(4460), - [anon_sym_COMMA] = ACTIONS(4460), - [anon_sym_RBRACK] = ACTIONS(4460), - [anon_sym_LPAREN] = ACTIONS(4460), - [anon_sym_RPAREN] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4460), - [anon_sym_RBRACE] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4458), - [anon_sym_GT] = ACTIONS(4458), - [anon_sym_in] = ACTIONS(4460), - [anon_sym_where] = ACTIONS(4460), - [anon_sym_QMARK] = ACTIONS(4458), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_PLUS_PLUS] = ACTIONS(4460), - [anon_sym_DASH_DASH] = ACTIONS(4460), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4458), - [anon_sym_PERCENT] = ACTIONS(4460), - [anon_sym_CARET] = ACTIONS(4460), - [anon_sym_PIPE] = ACTIONS(4458), - [anon_sym_AMP] = ACTIONS(4458), - [anon_sym_LT_LT] = ACTIONS(4460), - [anon_sym_GT_GT] = ACTIONS(4458), - [anon_sym_GT_GT_GT] = ACTIONS(4460), - [anon_sym_EQ_EQ] = ACTIONS(4460), - [anon_sym_BANG_EQ] = ACTIONS(4460), - [anon_sym_GT_EQ] = ACTIONS(4460), - [anon_sym_LT_EQ] = ACTIONS(4460), - [anon_sym_DOT] = ACTIONS(4458), - [anon_sym_EQ_GT] = ACTIONS(4460), - [anon_sym_switch] = ACTIONS(4460), - [anon_sym_DOT_DOT] = ACTIONS(4460), - [anon_sym_and] = ACTIONS(4460), - [anon_sym_or] = ACTIONS(4458), - [anon_sym_AMP_AMP] = ACTIONS(4460), - [anon_sym_PIPE_PIPE] = ACTIONS(4460), - [sym_op_coalescing] = ACTIONS(4460), - [anon_sym_from] = ACTIONS(4460), - [anon_sym_join] = ACTIONS(4460), - [anon_sym_on] = ACTIONS(4460), - [anon_sym_equals] = ACTIONS(4460), - [anon_sym_let] = ACTIONS(4460), - [anon_sym_orderby] = ACTIONS(4460), - [anon_sym_group] = ACTIONS(4460), - [anon_sym_by] = ACTIONS(4460), - [anon_sym_select] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4460), - [anon_sym_is] = ACTIONS(4460), - [anon_sym_DASH_GT] = ACTIONS(4460), - [anon_sym_with] = ACTIONS(4460), - [aux_sym_preproc_if_token3] = ACTIONS(4460), - [aux_sym_preproc_else_token1] = ACTIONS(4460), - [aux_sym_preproc_elif_token1] = ACTIONS(4460), + [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), @@ -565081,27 +560485,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4017] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [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), @@ -565111,41 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5746), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -565156,9 +560556,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(4686), }, [4018] = { + [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), @@ -565168,63 +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_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(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), @@ -565237,27 +560631,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4019] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), + [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), @@ -565267,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6343), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6263), - [anon_sym_by] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(6089), - [anon_sym_is] = ACTIONS(6091), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -565315,27 +560704,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4020] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), + [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), @@ -565345,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_by] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -565393,27 +560777,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4021] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -565423,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4780), - [anon_sym_QMARK] = ACTIONS(6345), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6331), - [anon_sym_as] = ACTIONS(6333), - [anon_sym_is] = ACTIONS(6335), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -565471,27 +560850,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4022] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -565501,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4772), - [anon_sym_QMARK] = ACTIONS(6345), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6331), - [anon_sym_as] = ACTIONS(6333), - [anon_sym_is] = ACTIONS(6335), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -565549,27 +560923,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4023] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [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), @@ -565579,41 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5746), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -565624,7 +560994,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(4686), }, [4024] = { [sym_preproc_region] = STATE(4024), @@ -565636,63 +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_SEMI] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_COLON] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_RBRACK] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_RPAREN] = ACTIONS(4444), - [anon_sym_LBRACE] = ACTIONS(4444), - [anon_sym_RBRACE] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4442), - [anon_sym_GT] = ACTIONS(4442), - [anon_sym_in] = ACTIONS(4444), - [anon_sym_where] = ACTIONS(4444), - [anon_sym_QMARK] = ACTIONS(4442), - [anon_sym_BANG] = ACTIONS(4442), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4444), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4444), - [anon_sym_CARET] = ACTIONS(4444), - [anon_sym_PIPE] = ACTIONS(4442), - [anon_sym_AMP] = ACTIONS(4442), - [anon_sym_LT_LT] = ACTIONS(4444), - [anon_sym_GT_GT] = ACTIONS(4442), - [anon_sym_GT_GT_GT] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_EQ_GT] = ACTIONS(4444), - [anon_sym_switch] = ACTIONS(4444), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_and] = ACTIONS(4444), - [anon_sym_or] = ACTIONS(4442), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [sym_op_coalescing] = ACTIONS(4444), - [anon_sym_from] = 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_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(4444), - [anon_sym_with] = ACTIONS(4444), - [aux_sym_preproc_if_token3] = ACTIONS(4444), - [aux_sym_preproc_else_token1] = ACTIONS(4444), - [aux_sym_preproc_elif_token1] = ACTIONS(4444), + [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), @@ -565705,27 +561069,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4025] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), [sym_preproc_region] = STATE(4025), [sym_preproc_endregion] = STATE(4025), [sym_preproc_line] = STATE(4025), @@ -565735,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), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_on] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -565783,27 +561141,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4026] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), + [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), @@ -565813,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), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6343), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6263), - [anon_sym_by] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(6089), - [anon_sym_is] = ACTIONS(6091), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -565861,27 +561213,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4027] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), + [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), @@ -565891,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6343), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6263), - [anon_sym_by] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(6089), - [anon_sym_is] = ACTIONS(6091), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -565939,27 +561285,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4028] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), [sym_preproc_region] = STATE(4028), [sym_preproc_endregion] = STATE(4028), [sym_preproc_line] = STATE(4028), @@ -565969,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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6297), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6301), - [anon_sym_on] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(6303), - [anon_sym_is] = ACTIONS(6305), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(6664), + [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(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(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), [sym_preproc_region] = STATE(4029), [sym_preproc_endregion] = STATE(4029), [sym_preproc_line] = STATE(4029), @@ -566047,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6297), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6301), - [anon_sym_on] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(6303), - [anon_sym_is] = ACTIONS(6305), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -566104,63 +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), - [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), + [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), @@ -566173,27 +561501,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4031] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4031), [sym_preproc_endregion] = STATE(4031), [sym_preproc_line] = STATE(4031), @@ -566203,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), - [aux_sym_array_rank_specifier_repeat1] = STATE(7355), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(6347), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -566251,27 +561573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4032] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), + [sym_initializer_expression] = STATE(4574), [sym_preproc_region] = STATE(4032), [sym_preproc_endregion] = STATE(4032), [sym_preproc_line] = STATE(4032), @@ -566281,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6343), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_and] = ACTIONS(4772), - [anon_sym_or] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6263), - [anon_sym_by] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(6089), - [anon_sym_is] = ACTIONS(6091), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -566338,63 +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_SEMI] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3381), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_RBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_RPAREN] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_in] = ACTIONS(3379), - [anon_sym_where] = ACTIONS(3381), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3381), - [anon_sym_CARET] = ACTIONS(3381), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LT_LT] = ACTIONS(3381), - [anon_sym_GT_GT] = ACTIONS(3379), - [anon_sym_GT_GT_GT] = ACTIONS(3381), - [anon_sym_EQ_EQ] = ACTIONS(3381), - [anon_sym_BANG_EQ] = ACTIONS(3381), - [anon_sym_GT_EQ] = ACTIONS(3381), - [anon_sym_LT_EQ] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_EQ_GT] = ACTIONS(3381), - [anon_sym_switch] = ACTIONS(3381), - [anon_sym_DOT_DOT] = ACTIONS(3381), - [anon_sym_and] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [sym_op_coalescing] = ACTIONS(3381), - [anon_sym_from] = ACTIONS(3381), - [anon_sym_into] = ACTIONS(3381), - [anon_sym_join] = ACTIONS(3381), - [anon_sym_on] = ACTIONS(3381), - [anon_sym_equals] = ACTIONS(3381), - [anon_sym_let] = ACTIONS(3381), - [anon_sym_orderby] = ACTIONS(3381), - [anon_sym_group] = ACTIONS(3381), - [anon_sym_by] = ACTIONS(3381), - [anon_sym_select] = ACTIONS(3381), - [anon_sym_as] = ACTIONS(3381), - [anon_sym_is] = ACTIONS(3381), - [anon_sym_DASH_GT] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3381), - [aux_sym_preproc_if_token3] = ACTIONS(3381), - [aux_sym_preproc_else_token1] = ACTIONS(3381), - [aux_sym_preproc_elif_token1] = ACTIONS(3381), + [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), @@ -566407,27 +561717,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4034] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -566437,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_in] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -566485,6 +561789,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4035] = { + [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), @@ -566494,63 +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_SEMI] = ACTIONS(4359), - [anon_sym_LBRACK] = ACTIONS(4359), - [anon_sym_COLON] = ACTIONS(4359), - [anon_sym_COMMA] = ACTIONS(4359), - [anon_sym_RBRACK] = ACTIONS(4359), - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_RPAREN] = ACTIONS(4359), - [anon_sym_LBRACE] = ACTIONS(4359), - [anon_sym_RBRACE] = ACTIONS(4359), - [anon_sym_LT] = ACTIONS(4357), - [anon_sym_GT] = ACTIONS(4357), - [anon_sym_in] = ACTIONS(4359), - [anon_sym_where] = ACTIONS(4359), - [anon_sym_QMARK] = ACTIONS(4357), - [anon_sym_BANG] = ACTIONS(4357), - [anon_sym_PLUS_PLUS] = ACTIONS(4359), - [anon_sym_DASH_DASH] = ACTIONS(4359), - [anon_sym_PLUS] = ACTIONS(4357), - [anon_sym_DASH] = ACTIONS(4357), - [anon_sym_STAR] = ACTIONS(4359), - [anon_sym_SLASH] = ACTIONS(4357), - [anon_sym_PERCENT] = ACTIONS(4359), - [anon_sym_CARET] = ACTIONS(4359), - [anon_sym_PIPE] = ACTIONS(4357), - [anon_sym_AMP] = ACTIONS(4357), - [anon_sym_LT_LT] = ACTIONS(4359), - [anon_sym_GT_GT] = ACTIONS(4357), - [anon_sym_GT_GT_GT] = ACTIONS(4359), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_GT_EQ] = ACTIONS(4359), - [anon_sym_LT_EQ] = ACTIONS(4359), - [anon_sym_DOT] = ACTIONS(4357), - [anon_sym_EQ_GT] = ACTIONS(4359), - [anon_sym_switch] = ACTIONS(4359), - [anon_sym_DOT_DOT] = ACTIONS(4359), - [anon_sym_and] = ACTIONS(4359), - [anon_sym_or] = ACTIONS(4357), - [anon_sym_AMP_AMP] = ACTIONS(4359), - [anon_sym_PIPE_PIPE] = ACTIONS(4359), - [sym_op_coalescing] = ACTIONS(4359), - [anon_sym_from] = 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_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(4359), - [anon_sym_with] = ACTIONS(4359), - [aux_sym_preproc_if_token3] = ACTIONS(4359), - [aux_sym_preproc_else_token1] = ACTIONS(4359), - [aux_sym_preproc_elif_token1] = ACTIONS(4359), + [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), @@ -566563,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), @@ -566572,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(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), + [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), @@ -566641,27 +561933,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4037] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -566671,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(7141), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(6349), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -566719,27 +562005,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4038] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -566749,42 +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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_in] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [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(4468), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -566797,27 +562077,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4039] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -566827,42 +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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4780), - [aux_sym_preproc_else_token1] = ACTIONS(4780), - [aux_sym_preproc_elif_token1] = ACTIONS(4780), + [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), @@ -566875,27 +562149,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4040] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -566905,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4764), - [anon_sym_QMARK] = ACTIONS(6345), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6331), - [anon_sym_as] = ACTIONS(6333), - [anon_sym_is] = ACTIONS(6335), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -566962,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(4318), - [anon_sym_LBRACK] = ACTIONS(4318), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_where] = ACTIONS(4318), - [anon_sym_QMARK] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4318), - [anon_sym_join] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_let] = ACTIONS(4318), - [anon_sym_orderby] = ACTIONS(4318), - [anon_sym_group] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_select] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [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), @@ -567031,27 +562293,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4042] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4042), [sym_preproc_endregion] = STATE(4042), [sym_preproc_line] = STATE(4042), @@ -567061,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), - [aux_sym_initializer_expression_repeat1] = STATE(7100), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6351), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(6353), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -567109,27 +562365,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4043] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), + [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), @@ -567139,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_and] = ACTIONS(4786), - [anon_sym_or] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_on] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -567187,27 +562437,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4044] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), [sym_preproc_region] = STATE(4044), [sym_preproc_endregion] = STATE(4044), [sym_preproc_line] = STATE(4044), @@ -567217,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_and] = ACTIONS(4790), - [anon_sym_or] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_by] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -567274,63 +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_SEMI] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4290), - [anon_sym_COLON] = ACTIONS(4290), - [anon_sym_COMMA] = ACTIONS(4290), - [anon_sym_RBRACK] = ACTIONS(4290), - [anon_sym_LPAREN] = ACTIONS(4290), - [anon_sym_RPAREN] = ACTIONS(4290), - [anon_sym_LBRACE] = ACTIONS(4290), - [anon_sym_RBRACE] = ACTIONS(4290), - [anon_sym_LT] = ACTIONS(4288), - [anon_sym_GT] = ACTIONS(4288), - [anon_sym_in] = ACTIONS(4290), - [anon_sym_where] = ACTIONS(4290), - [anon_sym_QMARK] = ACTIONS(4288), - [anon_sym_BANG] = ACTIONS(4288), - [anon_sym_PLUS_PLUS] = ACTIONS(4290), - [anon_sym_DASH_DASH] = ACTIONS(4290), - [anon_sym_PLUS] = ACTIONS(4288), - [anon_sym_DASH] = ACTIONS(4288), - [anon_sym_STAR] = ACTIONS(4290), - [anon_sym_SLASH] = ACTIONS(4288), - [anon_sym_PERCENT] = ACTIONS(4290), - [anon_sym_CARET] = ACTIONS(4290), - [anon_sym_PIPE] = ACTIONS(4288), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_LT_LT] = ACTIONS(4290), - [anon_sym_GT_GT] = ACTIONS(4288), - [anon_sym_GT_GT_GT] = ACTIONS(4290), - [anon_sym_EQ_EQ] = ACTIONS(4290), - [anon_sym_BANG_EQ] = ACTIONS(4290), - [anon_sym_GT_EQ] = ACTIONS(4290), - [anon_sym_LT_EQ] = ACTIONS(4290), - [anon_sym_DOT] = ACTIONS(4288), - [anon_sym_EQ_GT] = ACTIONS(4290), - [anon_sym_switch] = ACTIONS(4290), - [anon_sym_DOT_DOT] = ACTIONS(4290), - [anon_sym_and] = ACTIONS(4290), - [anon_sym_or] = ACTIONS(4288), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_PIPE_PIPE] = ACTIONS(4290), - [sym_op_coalescing] = ACTIONS(4290), - [anon_sym_from] = ACTIONS(4290), - [anon_sym_join] = ACTIONS(4290), - [anon_sym_on] = ACTIONS(4290), - [anon_sym_equals] = ACTIONS(4290), - [anon_sym_let] = ACTIONS(4290), - [anon_sym_orderby] = ACTIONS(4290), - [anon_sym_group] = ACTIONS(4290), - [anon_sym_by] = ACTIONS(4290), - [anon_sym_select] = ACTIONS(4290), - [anon_sym_as] = ACTIONS(4290), - [anon_sym_is] = ACTIONS(4290), - [anon_sym_DASH_GT] = ACTIONS(4290), - [anon_sym_with] = ACTIONS(4290), - [aux_sym_preproc_if_token3] = ACTIONS(4290), - [aux_sym_preproc_else_token1] = ACTIONS(4290), - [aux_sym_preproc_elif_token1] = ACTIONS(4290), + [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), @@ -567343,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), @@ -567352,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(4318), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_where] = ACTIONS(4318), - [anon_sym_QMARK] = ACTIONS(6355), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4318), - [anon_sym_join] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_let] = ACTIONS(4318), - [anon_sym_orderby] = ACTIONS(4318), - [anon_sym_group] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_select] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [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), @@ -567421,7 +562653,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4047] = { - [sym_modifier] = STATE(4309), + [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), @@ -567431,62 +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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(4047), - [sym__identifier_token] = ACTIONS(6358), - [anon_sym_extern] = ACTIONS(6360), - [anon_sym_alias] = ACTIONS(6358), - [anon_sym_global] = ACTIONS(6358), - [anon_sym_unsafe] = ACTIONS(6360), - [anon_sym_static] = ACTIONS(6360), - [anon_sym_LPAREN] = ACTIONS(6363), - [anon_sym_event] = ACTIONS(6358), - [anon_sym_class] = ACTIONS(6358), - [anon_sym_ref] = ACTIONS(6358), - [anon_sym_struct] = ACTIONS(6358), - [anon_sym_enum] = ACTIONS(6358), - [anon_sym_interface] = ACTIONS(6358), - [anon_sym_delegate] = ACTIONS(6358), - [anon_sym_record] = ACTIONS(6358), - [anon_sym_public] = ACTIONS(6360), - [anon_sym_private] = ACTIONS(6360), - [anon_sym_readonly] = ACTIONS(6360), - [anon_sym_abstract] = ACTIONS(6360), - [anon_sym_async] = ACTIONS(6360), - [anon_sym_const] = ACTIONS(6360), - [anon_sym_file] = ACTIONS(6360), - [anon_sym_fixed] = ACTIONS(6360), - [anon_sym_internal] = ACTIONS(6360), - [anon_sym_new] = ACTIONS(6360), - [anon_sym_override] = ACTIONS(6360), - [anon_sym_partial] = ACTIONS(6360), - [anon_sym_protected] = ACTIONS(6360), - [anon_sym_required] = ACTIONS(6360), - [anon_sym_sealed] = ACTIONS(6360), - [anon_sym_virtual] = ACTIONS(6360), - [anon_sym_volatile] = ACTIONS(6360), - [anon_sym_where] = ACTIONS(6358), - [anon_sym_notnull] = ACTIONS(6358), - [anon_sym_unmanaged] = ACTIONS(6358), - [anon_sym_implicit] = ACTIONS(6358), - [anon_sym_explicit] = ACTIONS(6358), - [anon_sym_scoped] = ACTIONS(6358), - [anon_sym_var] = ACTIONS(6358), - [sym_predefined_type] = ACTIONS(6358), - [anon_sym_yield] = ACTIONS(6358), - [anon_sym_when] = ACTIONS(6358), - [anon_sym_from] = ACTIONS(6358), - [anon_sym_into] = ACTIONS(6358), - [anon_sym_join] = ACTIONS(6358), - [anon_sym_on] = ACTIONS(6358), - [anon_sym_equals] = ACTIONS(6358), - [anon_sym_let] = ACTIONS(6358), - [anon_sym_orderby] = ACTIONS(6358), - [anon_sym_ascending] = ACTIONS(6358), - [anon_sym_descending] = ACTIONS(6358), - [anon_sym_group] = ACTIONS(6358), - [anon_sym_by] = ACTIONS(6358), - [anon_sym_select] = ACTIONS(6358), - [sym_grit_metavariable] = ACTIONS(6363), + [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), @@ -567499,27 +562725,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4048] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), + [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), @@ -567529,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6035), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4794), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6003), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6037), - [anon_sym_as] = ACTIONS(5536), - [anon_sym_is] = ACTIONS(6039), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -567577,6 +562797,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4049] = { + [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), @@ -567586,63 +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_SEMI] = ACTIONS(4318), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_where] = ACTIONS(4318), - [anon_sym_QMARK] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4318), - [anon_sym_join] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_let] = ACTIONS(4318), - [anon_sym_orderby] = ACTIONS(4318), - [anon_sym_group] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_select] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [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), @@ -567655,27 +562869,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4050] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -567685,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4742), - [anon_sym_QMARK] = ACTIONS(6345), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [anon_sym_and] = ACTIONS(4742), - [anon_sym_or] = ACTIONS(4742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6331), - [anon_sym_as] = ACTIONS(6333), - [anon_sym_is] = ACTIONS(6335), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -567733,27 +562941,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4051] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -567763,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), - [anon_sym_SEMI] = ACTIONS(4768), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -567811,27 +563013,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4052] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), [sym_preproc_region] = STATE(4052), [sym_preproc_endregion] = STATE(4052), [sym_preproc_line] = STATE(4052), @@ -567841,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4794), - [anon_sym_QMARK] = ACTIONS(6345), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6331), - [anon_sym_as] = ACTIONS(6333), - [anon_sym_is] = ACTIONS(6335), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -567889,27 +563085,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4053] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -567919,42 +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), - [aux_sym__for_statement_conditions_repeat1] = STATE(7210), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6013), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6365), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -567967,27 +563157,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4054] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), + [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), @@ -567997,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6343), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_and] = ACTIONS(4780), - [anon_sym_or] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6263), - [anon_sym_by] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(6089), - [anon_sym_is] = ACTIONS(6091), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -568045,27 +563229,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4055] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), [sym_preproc_region] = STATE(4055), [sym_preproc_endregion] = STATE(4055), [sym_preproc_line] = STATE(4055), @@ -568075,42 +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), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -568123,27 +563301,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4056] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -568153,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), - [aux_sym_array_rank_specifier_repeat1] = STATE(7133), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(6367), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -568201,27 +563373,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4057] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4057), [sym_preproc_endregion] = STATE(4057), [sym_preproc_line] = STATE(4057), @@ -568231,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), - [aux_sym__for_statement_conditions_repeat1] = STATE(7211), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6013), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6369), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -568279,27 +563445,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4058] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), + [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), @@ -568309,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -568357,27 +563517,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4059] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [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), @@ -568387,41 +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(5646), - [anon_sym_COLON] = ACTIONS(4798), - [anon_sym_COMMA] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5740), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5744), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5746), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -568432,30 +563587,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(4798), }, [4060] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), + [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), @@ -568465,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -568513,27 +563661,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4061] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -568543,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4686), - [aux_sym_preproc_else_token1] = ACTIONS(4686), - [aux_sym_preproc_elif_token1] = ACTIONS(4686), + [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), @@ -568591,27 +563733,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4062] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), [sym_preproc_region] = STATE(4062), [sym_preproc_endregion] = STATE(4062), [sym_preproc_line] = STATE(4062), @@ -568621,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), - [aux_sym__for_statement_conditions_repeat1] = STATE(7165), - [anon_sym_SEMI] = ACTIONS(6371), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6373), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6063), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6065), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -568669,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), @@ -568678,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(6375), - [anon_sym_LBRACK] = ACTIONS(6375), - [anon_sym_COLON] = ACTIONS(6375), - [anon_sym_COMMA] = ACTIONS(6375), - [anon_sym_RBRACK] = ACTIONS(6375), - [anon_sym_LPAREN] = ACTIONS(6375), - [anon_sym_RPAREN] = ACTIONS(6375), - [anon_sym_RBRACE] = ACTIONS(6375), - [anon_sym_LT] = ACTIONS(6377), - [anon_sym_GT] = ACTIONS(6377), - [anon_sym_in] = ACTIONS(6377), - [anon_sym_where] = ACTIONS(6375), - [anon_sym_QMARK] = ACTIONS(6377), - [anon_sym_BANG] = ACTIONS(6377), - [anon_sym_PLUS_PLUS] = ACTIONS(6375), - [anon_sym_DASH_DASH] = ACTIONS(6375), - [anon_sym_PLUS] = ACTIONS(6377), - [anon_sym_DASH] = ACTIONS(6377), - [anon_sym_STAR] = ACTIONS(6375), - [anon_sym_SLASH] = ACTIONS(6377), - [anon_sym_PERCENT] = ACTIONS(6375), - [anon_sym_CARET] = ACTIONS(6375), - [anon_sym_PIPE] = ACTIONS(6377), - [anon_sym_AMP] = ACTIONS(6377), - [anon_sym_LT_LT] = ACTIONS(6375), - [anon_sym_GT_GT] = ACTIONS(6377), - [anon_sym_GT_GT_GT] = ACTIONS(6375), - [anon_sym_EQ_EQ] = ACTIONS(6375), - [anon_sym_BANG_EQ] = ACTIONS(6375), - [anon_sym_GT_EQ] = ACTIONS(6375), - [anon_sym_LT_EQ] = ACTIONS(6375), - [anon_sym_DOT] = ACTIONS(6377), - [anon_sym_EQ_GT] = ACTIONS(6375), - [anon_sym_switch] = ACTIONS(6375), - [anon_sym_DOT_DOT] = ACTIONS(6375), - [anon_sym_and] = ACTIONS(6375), - [anon_sym_or] = ACTIONS(6377), - [anon_sym_AMP_AMP] = ACTIONS(6375), - [anon_sym_PIPE_PIPE] = ACTIONS(6375), - [sym_op_coalescing] = ACTIONS(6375), - [anon_sym_from] = ACTIONS(6375), - [anon_sym_into] = ACTIONS(6375), - [anon_sym_join] = ACTIONS(6375), - [anon_sym_on] = ACTIONS(6375), - [anon_sym_equals] = ACTIONS(6375), - [anon_sym_let] = ACTIONS(6375), - [anon_sym_orderby] = ACTIONS(6375), - [anon_sym_group] = ACTIONS(6375), - [anon_sym_by] = ACTIONS(6375), - [anon_sym_select] = ACTIONS(6375), - [anon_sym_as] = ACTIONS(6375), - [anon_sym_is] = ACTIONS(6375), - [anon_sym_DASH_GT] = ACTIONS(6375), - [anon_sym_with] = ACTIONS(6375), - [aux_sym_preproc_if_token3] = ACTIONS(6375), - [aux_sym_preproc_else_token1] = ACTIONS(6375), - [aux_sym_preproc_elif_token1] = ACTIONS(6375), + [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), @@ -568747,6 +563877,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4064] = { + [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), @@ -568756,63 +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_SEMI] = ACTIONS(6379), - [anon_sym_LBRACK] = ACTIONS(6379), - [anon_sym_COLON] = ACTIONS(6379), - [anon_sym_COMMA] = ACTIONS(6379), - [anon_sym_RBRACK] = ACTIONS(6379), - [anon_sym_LPAREN] = ACTIONS(6379), - [anon_sym_RPAREN] = ACTIONS(6379), - [anon_sym_RBRACE] = ACTIONS(6379), - [anon_sym_LT] = ACTIONS(6381), - [anon_sym_GT] = ACTIONS(6381), - [anon_sym_in] = ACTIONS(6381), - [anon_sym_where] = ACTIONS(6379), - [anon_sym_QMARK] = ACTIONS(6381), - [anon_sym_BANG] = ACTIONS(6381), - [anon_sym_PLUS_PLUS] = ACTIONS(6379), - [anon_sym_DASH_DASH] = ACTIONS(6379), - [anon_sym_PLUS] = ACTIONS(6381), - [anon_sym_DASH] = ACTIONS(6381), - [anon_sym_STAR] = ACTIONS(6379), - [anon_sym_SLASH] = ACTIONS(6381), - [anon_sym_PERCENT] = ACTIONS(6379), - [anon_sym_CARET] = ACTIONS(6379), - [anon_sym_PIPE] = ACTIONS(6381), - [anon_sym_AMP] = ACTIONS(6381), - [anon_sym_LT_LT] = ACTIONS(6379), - [anon_sym_GT_GT] = ACTIONS(6381), - [anon_sym_GT_GT_GT] = ACTIONS(6379), - [anon_sym_EQ_EQ] = ACTIONS(6379), - [anon_sym_BANG_EQ] = ACTIONS(6379), - [anon_sym_GT_EQ] = ACTIONS(6379), - [anon_sym_LT_EQ] = ACTIONS(6379), - [anon_sym_DOT] = ACTIONS(6381), - [anon_sym_EQ_GT] = ACTIONS(6379), - [anon_sym_switch] = ACTIONS(6379), - [anon_sym_DOT_DOT] = ACTIONS(6379), - [anon_sym_and] = ACTIONS(6379), - [anon_sym_or] = ACTIONS(6381), - [anon_sym_AMP_AMP] = ACTIONS(6379), - [anon_sym_PIPE_PIPE] = ACTIONS(6379), - [sym_op_coalescing] = ACTIONS(6379), - [anon_sym_from] = ACTIONS(6379), - [anon_sym_into] = ACTIONS(6379), - [anon_sym_join] = ACTIONS(6379), - [anon_sym_on] = ACTIONS(6379), - [anon_sym_equals] = ACTIONS(6379), - [anon_sym_let] = ACTIONS(6379), - [anon_sym_orderby] = ACTIONS(6379), - [anon_sym_group] = ACTIONS(6379), - [anon_sym_by] = ACTIONS(6379), - [anon_sym_select] = ACTIONS(6379), - [anon_sym_as] = ACTIONS(6379), - [anon_sym_is] = ACTIONS(6379), - [anon_sym_DASH_GT] = ACTIONS(6379), - [anon_sym_with] = ACTIONS(6379), - [aux_sym_preproc_if_token3] = ACTIONS(6379), - [aux_sym_preproc_else_token1] = ACTIONS(6379), - [aux_sym_preproc_elif_token1] = ACTIONS(6379), + [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), @@ -568825,27 +563949,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4065] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -568855,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(4742), - [aux_sym_preproc_else_token1] = ACTIONS(4742), - [aux_sym_preproc_elif_token1] = ACTIONS(4742), + [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), @@ -568903,27 +564021,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4066] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), [sym_preproc_region] = STATE(4066), [sym_preproc_endregion] = STATE(4066), [sym_preproc_line] = STATE(4066), @@ -568933,41 +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_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4760), - [anon_sym_COMMA] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -568978,30 +564091,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(4760), }, [4067] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -569011,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), - [aux_sym__for_statement_conditions_repeat1] = STATE(7314), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6013), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6383), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -569059,27 +564165,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4068] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [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), @@ -569089,41 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5746), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -569134,30 +564235,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(4686), }, [4069] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), + [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), @@ -569167,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6343), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6049), - [anon_sym_and] = ACTIONS(4794), - [anon_sym_or] = ACTIONS(4794), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6263), - [anon_sym_by] = ACTIONS(4794), - [anon_sym_as] = ACTIONS(6089), - [anon_sym_is] = ACTIONS(6091), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -569215,27 +564309,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4070] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), [sym_preproc_region] = STATE(4070), [sym_preproc_endregion] = STATE(4070), [sym_preproc_line] = STATE(4070), @@ -569245,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6303), - [anon_sym_is] = ACTIONS(6305), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -569293,27 +564381,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4071] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), [sym_preproc_region] = STATE(4071), [sym_preproc_endregion] = STATE(4071), [sym_preproc_line] = STATE(4071), @@ -569323,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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_in] = ACTIONS(4760), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [anon_sym_and] = ACTIONS(4760), - [anon_sym_or] = ACTIONS(4760), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [anon_sym_EQ] = ACTIONS(6745), + [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(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), @@ -569371,27 +564453,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4072] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), + [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), @@ -569401,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6303), - [anon_sym_is] = ACTIONS(6305), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = 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(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), @@ -569449,27 +564525,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4073] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -569479,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4798), - [anon_sym_QMARK] = ACTIONS(6345), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6329), - [anon_sym_and] = ACTIONS(4798), - [anon_sym_or] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6331), - [anon_sym_as] = ACTIONS(6333), - [anon_sym_is] = ACTIONS(6335), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -569527,27 +564597,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4074] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), + [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), @@ -569557,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6303), - [anon_sym_is] = ACTIONS(6305), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -569605,6 +564669,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4075] = { + [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), @@ -569614,63 +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_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), + [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), @@ -569683,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), @@ -569692,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(4420), - [anon_sym_LBRACK] = ACTIONS(4420), - [anon_sym_COLON] = ACTIONS(4420), - [anon_sym_COMMA] = ACTIONS(4420), - [anon_sym_RBRACK] = ACTIONS(4420), - [anon_sym_LPAREN] = ACTIONS(4420), - [anon_sym_RPAREN] = ACTIONS(4420), - [anon_sym_LBRACE] = ACTIONS(4420), - [anon_sym_RBRACE] = ACTIONS(4420), - [anon_sym_LT] = ACTIONS(4418), - [anon_sym_GT] = ACTIONS(4418), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_where] = ACTIONS(4420), - [anon_sym_QMARK] = ACTIONS(4418), - [anon_sym_BANG] = ACTIONS(4418), - [anon_sym_PLUS_PLUS] = ACTIONS(4420), - [anon_sym_DASH_DASH] = ACTIONS(4420), - [anon_sym_PLUS] = ACTIONS(4418), - [anon_sym_DASH] = ACTIONS(4418), - [anon_sym_STAR] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4418), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_CARET] = ACTIONS(4420), - [anon_sym_PIPE] = ACTIONS(4418), - [anon_sym_AMP] = ACTIONS(4418), - [anon_sym_LT_LT] = ACTIONS(4420), - [anon_sym_GT_GT] = ACTIONS(4418), - [anon_sym_GT_GT_GT] = ACTIONS(4420), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_GT_EQ] = ACTIONS(4420), - [anon_sym_LT_EQ] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4418), - [anon_sym_EQ_GT] = ACTIONS(4420), - [anon_sym_switch] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4420), - [anon_sym_and] = ACTIONS(4420), - [anon_sym_or] = ACTIONS(4418), - [anon_sym_AMP_AMP] = ACTIONS(4420), - [anon_sym_PIPE_PIPE] = ACTIONS(4420), - [sym_op_coalescing] = ACTIONS(4420), - [anon_sym_from] = ACTIONS(4420), - [anon_sym_join] = ACTIONS(4420), - [anon_sym_on] = ACTIONS(4420), - [anon_sym_equals] = ACTIONS(4420), - [anon_sym_let] = ACTIONS(4420), - [anon_sym_orderby] = ACTIONS(4420), - [anon_sym_group] = ACTIONS(4420), - [anon_sym_by] = ACTIONS(4420), - [anon_sym_select] = ACTIONS(4420), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_DASH_GT] = ACTIONS(4420), - [anon_sym_with] = ACTIONS(4420), - [aux_sym_preproc_if_token3] = ACTIONS(4420), - [aux_sym_preproc_else_token1] = ACTIONS(4420), - [aux_sym_preproc_elif_token1] = ACTIONS(4420), + [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), @@ -569761,6 +564813,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4077] = { + [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), @@ -569770,63 +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_SEMI] = ACTIONS(4318), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_where] = ACTIONS(4318), - [anon_sym_QMARK] = ACTIONS(6355), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4318), - [anon_sym_join] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_let] = ACTIONS(4318), - [anon_sym_orderby] = ACTIONS(4318), - [anon_sym_group] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_select] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [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), @@ -569839,27 +564885,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4078] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [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), @@ -569869,41 +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(5646), - [anon_sym_COLON] = ACTIONS(4742), - [anon_sym_COMMA] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5740), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5744), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5746), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -569914,30 +564955,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(4742), }, [4079] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [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), @@ -569947,41 +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(5646), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5740), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5744), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5746), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -569992,9 +565027,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(4764), }, [4080] = { + [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), @@ -570004,63 +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_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), + [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), @@ -570073,6 +565101,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4081] = { + [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), @@ -570082,63 +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), - [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), + [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), @@ -570151,27 +565173,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4082] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), + [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), @@ -570181,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [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(4468), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -570229,27 +565245,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4083] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [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), @@ -570259,41 +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_LBRACK] = ACTIONS(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5746), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -570304,30 +565315,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(4686), }, [4084] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), + [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), @@ -570337,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6303), - [anon_sym_is] = ACTIONS(6305), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -570394,63 +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_SEMI] = ACTIONS(4338), - [anon_sym_LBRACK] = ACTIONS(4338), - [anon_sym_COLON] = ACTIONS(4338), - [anon_sym_COMMA] = ACTIONS(4338), - [anon_sym_RBRACK] = ACTIONS(4338), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_RPAREN] = ACTIONS(4338), - [anon_sym_LBRACE] = ACTIONS(4338), - [anon_sym_RBRACE] = ACTIONS(4338), - [anon_sym_LT] = ACTIONS(4336), - [anon_sym_GT] = ACTIONS(4336), - [anon_sym_in] = ACTIONS(4338), - [anon_sym_where] = ACTIONS(4338), - [anon_sym_QMARK] = ACTIONS(4336), - [anon_sym_BANG] = ACTIONS(4336), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS] = ACTIONS(4336), - [anon_sym_DASH] = ACTIONS(4336), - [anon_sym_STAR] = ACTIONS(4338), - [anon_sym_SLASH] = ACTIONS(4336), - [anon_sym_PERCENT] = ACTIONS(4338), - [anon_sym_CARET] = ACTIONS(4338), - [anon_sym_PIPE] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym_LT_LT] = ACTIONS(4338), - [anon_sym_GT_GT] = ACTIONS(4336), - [anon_sym_GT_GT_GT] = ACTIONS(4338), - [anon_sym_EQ_EQ] = ACTIONS(4338), - [anon_sym_BANG_EQ] = ACTIONS(4338), - [anon_sym_GT_EQ] = ACTIONS(4338), - [anon_sym_LT_EQ] = ACTIONS(4338), - [anon_sym_DOT] = ACTIONS(4336), - [anon_sym_EQ_GT] = ACTIONS(4338), - [anon_sym_switch] = ACTIONS(4338), - [anon_sym_DOT_DOT] = ACTIONS(4338), - [anon_sym_and] = ACTIONS(4338), - [anon_sym_or] = ACTIONS(4336), - [anon_sym_AMP_AMP] = ACTIONS(4338), - [anon_sym_PIPE_PIPE] = ACTIONS(4338), - [sym_op_coalescing] = ACTIONS(4338), - [anon_sym_from] = ACTIONS(4338), - [anon_sym_join] = ACTIONS(4338), - [anon_sym_on] = ACTIONS(4338), - [anon_sym_equals] = ACTIONS(4338), - [anon_sym_let] = ACTIONS(4338), - [anon_sym_orderby] = ACTIONS(4338), - [anon_sym_group] = ACTIONS(4338), - [anon_sym_by] = ACTIONS(4338), - [anon_sym_select] = ACTIONS(4338), - [anon_sym_as] = ACTIONS(4338), - [anon_sym_is] = ACTIONS(4338), - [anon_sym_DASH_GT] = ACTIONS(4338), - [anon_sym_with] = ACTIONS(4338), - [aux_sym_preproc_if_token3] = ACTIONS(4338), - [aux_sym_preproc_else_token1] = ACTIONS(4338), - [aux_sym_preproc_elif_token1] = ACTIONS(4338), + [anon_sym_SEMI] = ACTIONS(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), @@ -570472,63 +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_SEMI] = ACTIONS(4326), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4326), - [anon_sym_RBRACK] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_RPAREN] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4326), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_where] = ACTIONS(4326), - [anon_sym_QMARK] = ACTIONS(4324), - [anon_sym_BANG] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_CARET] = ACTIONS(4326), - [anon_sym_PIPE] = ACTIONS(4324), - [anon_sym_AMP] = ACTIONS(4324), - [anon_sym_LT_LT] = ACTIONS(4326), - [anon_sym_GT_GT] = ACTIONS(4324), - [anon_sym_GT_GT_GT] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_EQ_GT] = ACTIONS(4326), - [anon_sym_switch] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_and] = ACTIONS(4326), - [anon_sym_or] = ACTIONS(4324), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [sym_op_coalescing] = ACTIONS(4326), - [anon_sym_from] = ACTIONS(4326), - [anon_sym_join] = ACTIONS(4326), - [anon_sym_on] = ACTIONS(4326), - [anon_sym_equals] = ACTIONS(4326), - [anon_sym_let] = ACTIONS(4326), - [anon_sym_orderby] = ACTIONS(4326), - [anon_sym_group] = ACTIONS(4326), - [anon_sym_by] = ACTIONS(4326), - [anon_sym_select] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_DASH_GT] = ACTIONS(4326), - [anon_sym_with] = ACTIONS(4326), - [aux_sym_preproc_if_token3] = ACTIONS(4326), - [aux_sym_preproc_else_token1] = ACTIONS(4326), - [aux_sym_preproc_elif_token1] = ACTIONS(4326), + [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), @@ -570541,27 +565533,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4087] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), + [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), @@ -570571,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6303), - [anon_sym_is] = ACTIONS(6305), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -570619,27 +565605,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4088] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), [sym_preproc_region] = STATE(4088), [sym_preproc_endregion] = STATE(4088), [sym_preproc_line] = STATE(4088), @@ -570649,42 +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_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6303), - [anon_sym_is] = ACTIONS(6305), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -570706,63 +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_SEMI] = ACTIONS(5752), - [anon_sym_EQ] = ACTIONS(6389), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_RBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(5752), - [anon_sym_RBRACE] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(6391), - [anon_sym_DASH_EQ] = ACTIONS(6391), - [anon_sym_STAR_EQ] = ACTIONS(6391), - [anon_sym_SLASH_EQ] = ACTIONS(6391), - [anon_sym_PERCENT_EQ] = ACTIONS(6391), - [anon_sym_AMP_EQ] = ACTIONS(6391), - [anon_sym_CARET_EQ] = ACTIONS(6391), - [anon_sym_PIPE_EQ] = ACTIONS(6391), - [anon_sym_LT_LT_EQ] = ACTIONS(6391), - [anon_sym_GT_GT_EQ] = ACTIONS(6391), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6391), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6391), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), - [aux_sym_preproc_if_token3] = ACTIONS(5752), - [aux_sym_preproc_else_token1] = ACTIONS(5752), - [aux_sym_preproc_elif_token1] = ACTIONS(5752), + [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), @@ -570775,27 +565749,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4090] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -570805,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(5422), - [anon_sym_COMMA] = ACTIONS(6337), - [anon_sym_RBRACK] = ACTIONS(6337), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6337), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -570853,27 +565821,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4091] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -570883,42 +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_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6337), - [anon_sym_RBRACK] = ACTIONS(6337), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -570931,27 +565893,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4092] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), [sym_preproc_region] = STATE(4092), [sym_preproc_endregion] = STATE(4092), [sym_preproc_line] = STATE(4092), @@ -570961,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -571009,27 +565965,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4093] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4093), [sym_preproc_endregion] = STATE(4093), [sym_preproc_line] = STATE(4093), @@ -571039,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), - [aux_sym_initializer_expression_repeat1] = STATE(7218), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6393), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(6395), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -571087,27 +566037,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4094] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4094), [sym_preproc_endregion] = STATE(4094), [sym_preproc_line] = STATE(4094), @@ -571117,42 +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_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6397), - [anon_sym_RBRACK] = ACTIONS(6397), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6397), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -571165,27 +566109,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4095] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [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), @@ -571195,41 +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(5646), - [anon_sym_COLON] = ACTIONS(4772), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5740), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5744), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5746), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -571240,30 +566179,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(4772), }, [4096] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [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), @@ -571273,41 +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(5646), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_COMMA] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -571318,30 +566251,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(4686), }, [4097] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -571351,42 +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), - [aux_sym_array_rank_specifier_repeat1] = STATE(7078), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(6399), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -571399,27 +566325,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4098] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -571429,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_SEMI] = ACTIONS(4772), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(4772), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6063), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6065), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -571477,27 +566397,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4099] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -571507,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(5422), - [anon_sym_COMMA] = ACTIONS(6401), - [anon_sym_RBRACK] = ACTIONS(6401), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6401), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -571555,27 +566469,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4100] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), [sym_preproc_region] = STATE(4100), [sym_preproc_endregion] = STATE(4100), [sym_preproc_line] = STATE(4100), @@ -571585,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(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5530), - [anon_sym_DOT_DOT] = ACTIONS(6299), - [anon_sym_and] = ACTIONS(4686), - [anon_sym_or] = ACTIONS(4686), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6301), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6303), - [anon_sym_is] = ACTIONS(6305), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5540), + [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), @@ -571633,6 +566541,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4101] = { + [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), @@ -571642,62 +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), - [sym__identifier_token] = ACTIONS(3735), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(3735), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_global] = ACTIONS(3735), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(3700), - [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(3700), - [anon_sym_where] = ACTIONS(3735), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_notnull] = ACTIONS(3735), - [anon_sym_unmanaged] = ACTIONS(3735), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_scoped] = ACTIONS(3735), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [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(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), @@ -571710,27 +566613,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4102] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [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(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), @@ -571740,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -571787,27 +566685,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4103] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -571817,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6405), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4776), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6409), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6411), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -571864,27 +566757,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4104] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), [sym_preproc_region] = STATE(4104), [sym_preproc_endregion] = STATE(4104), [sym_preproc_line] = STATE(4104), @@ -571894,41 +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_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6101), - [anon_sym_RBRACK] = ACTIONS(6101), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -571941,27 +566829,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4105] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), [sym_preproc_region] = STATE(4105), [sym_preproc_endregion] = STATE(4105), [sym_preproc_line] = STATE(4105), @@ -571971,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6413), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6417), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_on] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(6419), - [anon_sym_is] = ACTIONS(6421), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -572018,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), @@ -572027,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(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_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_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(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), @@ -572095,27 +566973,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4107] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), + [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), @@ -572125,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_on] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -572172,27 +567045,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4108] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), + [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), @@ -572202,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6413), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6417), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_on] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(6419), - [anon_sym_is] = ACTIONS(6421), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -572249,27 +567117,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4109] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), [sym_preproc_region] = STATE(4109), [sym_preproc_endregion] = STATE(4109), [sym_preproc_line] = STATE(4109), @@ -572279,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6413), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6417), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_on] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(6419), - [anon_sym_is] = ACTIONS(6421), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -572326,27 +567189,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4110] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), + [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), @@ -572356,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_in] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -572403,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), @@ -572412,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(6041), - [anon_sym_LBRACK] = ACTIONS(6041), - [anon_sym_COLON] = ACTIONS(6041), - [anon_sym_COMMA] = ACTIONS(6041), - [anon_sym_RBRACK] = ACTIONS(6041), - [anon_sym_LPAREN] = ACTIONS(6041), - [anon_sym_RPAREN] = ACTIONS(6041), - [anon_sym_RBRACE] = ACTIONS(6041), - [anon_sym_LT] = ACTIONS(6043), - [anon_sym_GT] = ACTIONS(6043), - [anon_sym_in] = ACTIONS(6041), - [anon_sym_where] = ACTIONS(6041), - [anon_sym_QMARK] = ACTIONS(6043), - [anon_sym_BANG] = ACTIONS(6043), - [anon_sym_PLUS_PLUS] = ACTIONS(6041), - [anon_sym_DASH_DASH] = ACTIONS(6041), - [anon_sym_PLUS] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(6043), - [anon_sym_STAR] = ACTIONS(6041), - [anon_sym_SLASH] = ACTIONS(6043), - [anon_sym_PERCENT] = ACTIONS(6041), - [anon_sym_CARET] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - [anon_sym_LT_LT] = ACTIONS(6041), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_GT_GT_GT] = ACTIONS(6041), - [anon_sym_EQ_EQ] = ACTIONS(6041), - [anon_sym_BANG_EQ] = ACTIONS(6041), - [anon_sym_GT_EQ] = ACTIONS(6041), - [anon_sym_LT_EQ] = ACTIONS(6041), - [anon_sym_DOT] = ACTIONS(6043), - [anon_sym_EQ_GT] = ACTIONS(6041), - [anon_sym_switch] = ACTIONS(6041), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_and] = ACTIONS(6041), - [anon_sym_or] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6041), - [anon_sym_PIPE_PIPE] = ACTIONS(6041), - [sym_op_coalescing] = ACTIONS(6041), - [anon_sym_from] = ACTIONS(6041), - [anon_sym_join] = ACTIONS(6041), - [anon_sym_on] = ACTIONS(6041), - [anon_sym_equals] = ACTIONS(6041), - [anon_sym_let] = ACTIONS(6041), - [anon_sym_orderby] = ACTIONS(6041), - [anon_sym_group] = ACTIONS(6041), - [anon_sym_by] = ACTIONS(6041), - [anon_sym_select] = ACTIONS(6041), - [anon_sym_as] = ACTIONS(6041), - [anon_sym_is] = ACTIONS(6041), - [anon_sym_DASH_GT] = ACTIONS(6041), - [anon_sym_with] = ACTIONS(6041), - [aux_sym_preproc_if_token3] = ACTIONS(6041), - [aux_sym_preproc_else_token1] = ACTIONS(6041), - [aux_sym_preproc_elif_token1] = ACTIONS(6041), + [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), @@ -572480,27 +567333,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4112] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), + [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), @@ -572510,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6413), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6417), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_on] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(6419), - [anon_sym_is] = ACTIONS(6421), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -572557,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), @@ -572566,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(6031), - [anon_sym_LBRACK] = ACTIONS(6031), - [anon_sym_COLON] = ACTIONS(6031), - [anon_sym_COMMA] = ACTIONS(6031), - [anon_sym_RBRACK] = ACTIONS(6031), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_RBRACE] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6033), - [anon_sym_GT] = ACTIONS(6033), - [anon_sym_in] = ACTIONS(6031), - [anon_sym_where] = ACTIONS(6031), - [anon_sym_QMARK] = ACTIONS(6033), - [anon_sym_BANG] = ACTIONS(6033), - [anon_sym_PLUS_PLUS] = ACTIONS(6031), - [anon_sym_DASH_DASH] = ACTIONS(6031), - [anon_sym_PLUS] = ACTIONS(6033), - [anon_sym_DASH] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6031), - [anon_sym_SLASH] = ACTIONS(6033), - [anon_sym_PERCENT] = ACTIONS(6031), - [anon_sym_CARET] = ACTIONS(6031), - [anon_sym_PIPE] = ACTIONS(6033), - [anon_sym_AMP] = ACTIONS(6033), - [anon_sym_LT_LT] = ACTIONS(6031), - [anon_sym_GT_GT] = ACTIONS(6033), - [anon_sym_GT_GT_GT] = ACTIONS(6031), - [anon_sym_EQ_EQ] = ACTIONS(6031), - [anon_sym_BANG_EQ] = ACTIONS(6031), - [anon_sym_GT_EQ] = ACTIONS(6031), - [anon_sym_LT_EQ] = ACTIONS(6031), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_EQ_GT] = ACTIONS(6031), - [anon_sym_switch] = ACTIONS(6031), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(6031), - [anon_sym_or] = ACTIONS(6033), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [sym_op_coalescing] = ACTIONS(6031), - [anon_sym_from] = ACTIONS(6031), - [anon_sym_join] = ACTIONS(6031), - [anon_sym_on] = ACTIONS(6031), - [anon_sym_equals] = ACTIONS(6031), - [anon_sym_let] = ACTIONS(6031), - [anon_sym_orderby] = ACTIONS(6031), - [anon_sym_group] = ACTIONS(6031), - [anon_sym_by] = ACTIONS(6031), - [anon_sym_select] = ACTIONS(6031), - [anon_sym_as] = ACTIONS(6031), - [anon_sym_is] = ACTIONS(6031), - [anon_sym_DASH_GT] = ACTIONS(6031), - [anon_sym_with] = ACTIONS(6031), - [aux_sym_preproc_if_token3] = ACTIONS(6031), - [aux_sym_preproc_else_token1] = ACTIONS(6031), - [aux_sym_preproc_elif_token1] = ACTIONS(6031), + [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), @@ -572643,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_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_where] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(5008), - [anon_sym_BANG] = ACTIONS(5008), - [anon_sym_PLUS_PLUS] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5008), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5008), - [anon_sym_CARET] = ACTIONS(5008), - [anon_sym_PIPE] = ACTIONS(5008), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym_LT_LT] = ACTIONS(5008), - [anon_sym_GT_GT] = ACTIONS(5008), - [anon_sym_GT_GT_GT] = ACTIONS(5008), - [anon_sym_EQ_EQ] = ACTIONS(5005), - [anon_sym_BANG_EQ] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(5005), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_switch] = ACTIONS(5005), - [anon_sym_DOT_DOT] = ACTIONS(5005), - [anon_sym_and] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(5011), - [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(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(5005), - [sym_op_coalescing] = ACTIONS(5008), - [anon_sym_from] = ACTIONS(5003), - [anon_sym_into] = ACTIONS(5003), - [anon_sym_join] = ACTIONS(5003), - [anon_sym_let] = ACTIONS(5003), - [anon_sym_orderby] = ACTIONS(5003), - [anon_sym_group] = ACTIONS(5003), - [anon_sym_select] = ACTIONS(5003), - [anon_sym_as] = ACTIONS(5005), - [anon_sym_is] = ACTIONS(5005), - [anon_sym_DASH_GT] = ACTIONS(5005), - [anon_sym_with] = ACTIONS(5005), + [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), @@ -572711,27 +567549,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4115] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [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(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), @@ -572741,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_equals] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -572788,27 +567621,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4116] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), + [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), @@ -572818,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6417), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6419), - [anon_sym_is] = ACTIONS(6421), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -572865,27 +567693,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4117] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), [sym_preproc_region] = STATE(4117), [sym_preproc_endregion] = STATE(4117), [sym_preproc_line] = STATE(4117), @@ -572895,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -572942,27 +567765,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4118] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), + [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), @@ -572972,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6419), - [anon_sym_is] = ACTIONS(6421), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -573019,27 +567837,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4119] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), + [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), @@ -573049,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6419), - [anon_sym_is] = ACTIONS(6421), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -573096,27 +567909,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4120] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), + [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), @@ -573126,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_in] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -573173,27 +567981,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4121] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), [sym_preproc_region] = STATE(4121), [sym_preproc_endregion] = STATE(4121), [sym_preproc_line] = STATE(4121), @@ -573203,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6419), - [anon_sym_is] = ACTIONS(6421), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -573250,27 +568053,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4122] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), [sym_preproc_region] = STATE(4122), [sym_preproc_endregion] = STATE(4122), [sym_preproc_line] = STATE(4122), @@ -573280,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6419), - [anon_sym_is] = ACTIONS(6421), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -573327,27 +568125,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4123] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), [sym_preproc_region] = STATE(4123), [sym_preproc_endregion] = STATE(4123), [sym_preproc_line] = STATE(4123), @@ -573357,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6419), - [anon_sym_is] = ACTIONS(6421), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -573404,27 +568197,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4124] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), [sym_preproc_region] = STATE(4124), [sym_preproc_endregion] = STATE(4124), [sym_preproc_line] = STATE(4124), @@ -573434,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6419), - [anon_sym_is] = ACTIONS(6421), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -573481,27 +568269,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4125] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), + [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), @@ -573511,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -573558,27 +568341,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4126] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), [sym_preproc_region] = STATE(4126), [sym_preproc_endregion] = STATE(4126), [sym_preproc_line] = STATE(4126), @@ -573588,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -573635,27 +568413,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4127] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), + [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), @@ -573665,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -573712,27 +568485,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4128] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -573742,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(5422), - [anon_sym_COMMA] = ACTIONS(6423), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(6423), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -573789,27 +568557,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4129] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -573819,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -573866,27 +568629,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4130] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -573896,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -573943,27 +568701,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4131] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -573973,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -574020,27 +568773,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4132] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -574050,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -574097,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), @@ -574106,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(6071), - [anon_sym_LBRACK] = ACTIONS(6071), - [anon_sym_COLON] = ACTIONS(6071), - [anon_sym_COMMA] = ACTIONS(6071), - [anon_sym_RBRACK] = ACTIONS(6071), - [anon_sym_LPAREN] = ACTIONS(6071), - [anon_sym_RPAREN] = ACTIONS(6071), - [anon_sym_RBRACE] = ACTIONS(6071), - [anon_sym_LT] = ACTIONS(6073), - [anon_sym_GT] = ACTIONS(6073), - [anon_sym_in] = ACTIONS(6071), - [anon_sym_where] = ACTIONS(6071), - [anon_sym_QMARK] = ACTIONS(6073), - [anon_sym_BANG] = ACTIONS(6073), - [anon_sym_PLUS_PLUS] = ACTIONS(6071), - [anon_sym_DASH_DASH] = ACTIONS(6071), - [anon_sym_PLUS] = ACTIONS(6073), - [anon_sym_DASH] = ACTIONS(6073), - [anon_sym_STAR] = ACTIONS(6071), - [anon_sym_SLASH] = ACTIONS(6073), - [anon_sym_PERCENT] = ACTIONS(6071), - [anon_sym_CARET] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - [anon_sym_LT_LT] = ACTIONS(6071), - [anon_sym_GT_GT] = ACTIONS(6073), - [anon_sym_GT_GT_GT] = ACTIONS(6071), - [anon_sym_EQ_EQ] = ACTIONS(6071), - [anon_sym_BANG_EQ] = ACTIONS(6071), - [anon_sym_GT_EQ] = ACTIONS(6071), - [anon_sym_LT_EQ] = ACTIONS(6071), - [anon_sym_DOT] = ACTIONS(6073), - [anon_sym_EQ_GT] = ACTIONS(6071), - [anon_sym_switch] = ACTIONS(6071), - [anon_sym_DOT_DOT] = ACTIONS(6071), - [anon_sym_and] = ACTIONS(6071), - [anon_sym_or] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6071), - [anon_sym_PIPE_PIPE] = ACTIONS(6071), - [sym_op_coalescing] = ACTIONS(6071), - [anon_sym_from] = ACTIONS(6071), - [anon_sym_join] = ACTIONS(6071), - [anon_sym_on] = ACTIONS(6071), - [anon_sym_equals] = ACTIONS(6071), - [anon_sym_let] = ACTIONS(6071), - [anon_sym_orderby] = ACTIONS(6071), - [anon_sym_group] = ACTIONS(6071), - [anon_sym_by] = ACTIONS(6071), - [anon_sym_select] = ACTIONS(6071), - [anon_sym_as] = ACTIONS(6071), - [anon_sym_is] = ACTIONS(6071), - [anon_sym_DASH_GT] = ACTIONS(6071), - [anon_sym_with] = ACTIONS(6071), - [aux_sym_preproc_if_token3] = ACTIONS(6071), - [aux_sym_preproc_else_token1] = ACTIONS(6071), - [aux_sym_preproc_elif_token1] = ACTIONS(6071), + [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), @@ -574174,6 +568917,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4134] = { + [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), @@ -574183,62 +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_SEMI] = ACTIONS(6113), - [anon_sym_LBRACK] = ACTIONS(6113), - [anon_sym_COLON] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_RBRACK] = ACTIONS(6113), - [anon_sym_LPAREN] = ACTIONS(6113), - [anon_sym_RPAREN] = ACTIONS(6113), - [anon_sym_RBRACE] = ACTIONS(6113), - [anon_sym_LT] = ACTIONS(6115), - [anon_sym_GT] = ACTIONS(6115), - [anon_sym_in] = ACTIONS(6113), - [anon_sym_where] = ACTIONS(6113), - [anon_sym_QMARK] = ACTIONS(6115), - [anon_sym_BANG] = ACTIONS(6115), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS] = ACTIONS(6115), - [anon_sym_DASH] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(6113), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_PERCENT] = ACTIONS(6113), - [anon_sym_CARET] = ACTIONS(6113), - [anon_sym_PIPE] = ACTIONS(6115), - [anon_sym_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(6113), - [anon_sym_GT_GT] = ACTIONS(6115), - [anon_sym_GT_GT_GT] = ACTIONS(6113), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6113), - [anon_sym_DOT] = ACTIONS(6115), - [anon_sym_EQ_GT] = ACTIONS(6113), - [anon_sym_switch] = ACTIONS(6113), - [anon_sym_DOT_DOT] = ACTIONS(6113), - [anon_sym_and] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6115), - [anon_sym_AMP_AMP] = ACTIONS(6113), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [sym_op_coalescing] = ACTIONS(6113), - [anon_sym_from] = ACTIONS(6113), - [anon_sym_join] = ACTIONS(6113), - [anon_sym_on] = ACTIONS(6113), - [anon_sym_equals] = ACTIONS(6113), - [anon_sym_let] = ACTIONS(6113), - [anon_sym_orderby] = ACTIONS(6113), - [anon_sym_group] = ACTIONS(6113), - [anon_sym_by] = ACTIONS(6113), - [anon_sym_select] = ACTIONS(6113), - [anon_sym_as] = ACTIONS(6113), - [anon_sym_is] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6113), - [anon_sym_with] = ACTIONS(6113), - [aux_sym_preproc_if_token3] = ACTIONS(6113), - [aux_sym_preproc_else_token1] = ACTIONS(6113), - [aux_sym_preproc_elif_token1] = ACTIONS(6113), + [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), @@ -574251,27 +568989,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4135] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4135), [sym_preproc_endregion] = STATE(4135), [sym_preproc_line] = STATE(4135), @@ -574281,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(5422), - [anon_sym_COMMA] = ACTIONS(6101), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6425), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -574328,27 +569061,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4136] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4136), [sym_preproc_endregion] = STATE(4136), [sym_preproc_line] = STATE(4136), @@ -574358,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_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6101), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6427), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -574405,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), @@ -574414,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(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_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), @@ -574482,6 +569205,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4138] = { + [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), @@ -574491,62 +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_SEMI] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5993), - [anon_sym_COLON] = ACTIONS(5993), - [anon_sym_COMMA] = ACTIONS(5993), - [anon_sym_RBRACK] = ACTIONS(5993), - [anon_sym_LPAREN] = ACTIONS(5993), - [anon_sym_RPAREN] = ACTIONS(5993), - [anon_sym_RBRACE] = ACTIONS(5993), - [anon_sym_LT] = ACTIONS(5995), - [anon_sym_GT] = ACTIONS(5995), - [anon_sym_in] = ACTIONS(5993), - [anon_sym_where] = ACTIONS(5993), - [anon_sym_QMARK] = ACTIONS(5995), - [anon_sym_BANG] = ACTIONS(5995), - [anon_sym_PLUS_PLUS] = ACTIONS(5993), - [anon_sym_DASH_DASH] = ACTIONS(5993), - [anon_sym_PLUS] = ACTIONS(5995), - [anon_sym_DASH] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5993), - [anon_sym_SLASH] = ACTIONS(5995), - [anon_sym_PERCENT] = ACTIONS(5993), - [anon_sym_CARET] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5995), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5993), - [anon_sym_GT_GT] = ACTIONS(5995), - [anon_sym_GT_GT_GT] = ACTIONS(5993), - [anon_sym_EQ_EQ] = ACTIONS(5993), - [anon_sym_BANG_EQ] = ACTIONS(5993), - [anon_sym_GT_EQ] = ACTIONS(5993), - [anon_sym_LT_EQ] = ACTIONS(5993), - [anon_sym_DOT] = ACTIONS(5995), - [anon_sym_EQ_GT] = ACTIONS(5993), - [anon_sym_switch] = ACTIONS(5993), - [anon_sym_DOT_DOT] = ACTIONS(5993), - [anon_sym_and] = ACTIONS(5993), - [anon_sym_or] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [sym_op_coalescing] = ACTIONS(5993), - [anon_sym_from] = ACTIONS(5993), - [anon_sym_join] = ACTIONS(5993), - [anon_sym_on] = ACTIONS(5993), - [anon_sym_equals] = ACTIONS(5993), - [anon_sym_let] = ACTIONS(5993), - [anon_sym_orderby] = ACTIONS(5993), - [anon_sym_group] = ACTIONS(5993), - [anon_sym_by] = ACTIONS(5993), - [anon_sym_select] = ACTIONS(5993), - [anon_sym_as] = ACTIONS(5993), - [anon_sym_is] = ACTIONS(5993), - [anon_sym_DASH_GT] = ACTIONS(5993), - [anon_sym_with] = ACTIONS(5993), - [aux_sym_preproc_if_token3] = ACTIONS(5993), - [aux_sym_preproc_else_token1] = ACTIONS(5993), - [aux_sym_preproc_elif_token1] = ACTIONS(5993), + [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), @@ -574559,6 +569277,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4139] = { + [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), @@ -574568,62 +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_SEMI] = ACTIONS(6135), - [anon_sym_LBRACK] = ACTIONS(6135), - [anon_sym_COLON] = ACTIONS(6135), - [anon_sym_COMMA] = ACTIONS(6135), - [anon_sym_RBRACK] = ACTIONS(6135), - [anon_sym_LPAREN] = ACTIONS(6135), - [anon_sym_RPAREN] = ACTIONS(6135), - [anon_sym_RBRACE] = ACTIONS(6135), - [anon_sym_LT] = ACTIONS(6137), - [anon_sym_GT] = ACTIONS(6137), - [anon_sym_in] = ACTIONS(6135), - [anon_sym_where] = ACTIONS(6135), - [anon_sym_QMARK] = ACTIONS(6137), - [anon_sym_BANG] = ACTIONS(6137), - [anon_sym_PLUS_PLUS] = ACTIONS(6135), - [anon_sym_DASH_DASH] = ACTIONS(6135), - [anon_sym_PLUS] = ACTIONS(6137), - [anon_sym_DASH] = ACTIONS(6137), - [anon_sym_STAR] = ACTIONS(6135), - [anon_sym_SLASH] = ACTIONS(6137), - [anon_sym_PERCENT] = ACTIONS(6135), - [anon_sym_CARET] = ACTIONS(6135), - [anon_sym_PIPE] = ACTIONS(6137), - [anon_sym_AMP] = ACTIONS(6137), - [anon_sym_LT_LT] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6137), - [anon_sym_GT_GT_GT] = ACTIONS(6135), - [anon_sym_EQ_EQ] = ACTIONS(6135), - [anon_sym_BANG_EQ] = ACTIONS(6135), - [anon_sym_GT_EQ] = ACTIONS(6135), - [anon_sym_LT_EQ] = ACTIONS(6135), - [anon_sym_DOT] = ACTIONS(6137), - [anon_sym_EQ_GT] = ACTIONS(6135), - [anon_sym_switch] = ACTIONS(6135), - [anon_sym_DOT_DOT] = ACTIONS(6135), - [anon_sym_and] = ACTIONS(6135), - [anon_sym_or] = ACTIONS(6137), - [anon_sym_AMP_AMP] = ACTIONS(6135), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [sym_op_coalescing] = ACTIONS(6135), - [anon_sym_from] = ACTIONS(6135), - [anon_sym_join] = ACTIONS(6135), - [anon_sym_on] = ACTIONS(6135), - [anon_sym_equals] = ACTIONS(6135), - [anon_sym_let] = ACTIONS(6135), - [anon_sym_orderby] = ACTIONS(6135), - [anon_sym_group] = ACTIONS(6135), - [anon_sym_by] = ACTIONS(6135), - [anon_sym_select] = ACTIONS(6135), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6135), - [anon_sym_DASH_GT] = ACTIONS(6135), - [anon_sym_with] = ACTIONS(6135), - [aux_sym_preproc_if_token3] = ACTIONS(6135), - [aux_sym_preproc_else_token1] = ACTIONS(6135), - [aux_sym_preproc_elif_token1] = ACTIONS(6135), + [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), @@ -574636,27 +569349,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4140] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -574666,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(5422), - [anon_sym_COMMA] = ACTIONS(6429), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6429), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -574713,27 +569421,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4141] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), [sym_preproc_region] = STATE(4141), [sym_preproc_endregion] = STATE(4141), [sym_preproc_line] = STATE(4141), @@ -574743,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4782), - [anon_sym_QMARK] = ACTIONS(6431), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6435), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6437), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -574790,27 +569493,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4142] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4142), [sym_preproc_endregion] = STATE(4142), [sym_preproc_line] = STATE(4142), @@ -574820,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(5422), - [anon_sym_COMMA] = ACTIONS(6439), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6439), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -574876,62 +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_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_where] = ACTIONS(6027), - [anon_sym_QMARK] = ACTIONS(6029), - [anon_sym_BANG] = ACTIONS(6029), - [anon_sym_PLUS_PLUS] = ACTIONS(6027), - [anon_sym_DASH_DASH] = ACTIONS(6027), - [anon_sym_PLUS] = ACTIONS(6029), - [anon_sym_DASH] = ACTIONS(6029), - [anon_sym_STAR] = ACTIONS(6027), - [anon_sym_SLASH] = ACTIONS(6029), - [anon_sym_PERCENT] = ACTIONS(6027), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_AMP] = ACTIONS(6029), - [anon_sym_LT_LT] = ACTIONS(6027), - [anon_sym_GT_GT] = ACTIONS(6029), - [anon_sym_GT_GT_GT] = ACTIONS(6027), - [anon_sym_EQ_EQ] = ACTIONS(6027), - [anon_sym_BANG_EQ] = ACTIONS(6027), - [anon_sym_GT_EQ] = ACTIONS(6027), - [anon_sym_LT_EQ] = ACTIONS(6027), - [anon_sym_DOT] = ACTIONS(6029), - [anon_sym_EQ_GT] = ACTIONS(6027), - [anon_sym_switch] = ACTIONS(6027), - [anon_sym_DOT_DOT] = ACTIONS(6027), - [anon_sym_and] = ACTIONS(6027), - [anon_sym_or] = ACTIONS(6029), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [sym_op_coalescing] = ACTIONS(6027), - [anon_sym_from] = 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), + [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), @@ -574944,6 +569637,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4144] = { + [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), @@ -574953,62 +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_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_where] = ACTIONS(6023), - [anon_sym_QMARK] = ACTIONS(6025), - [anon_sym_BANG] = ACTIONS(6025), - [anon_sym_PLUS_PLUS] = ACTIONS(6023), - [anon_sym_DASH_DASH] = ACTIONS(6023), - [anon_sym_PLUS] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(6025), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6023), - [anon_sym_PIPE] = ACTIONS(6025), - [anon_sym_AMP] = ACTIONS(6025), - [anon_sym_LT_LT] = ACTIONS(6023), - [anon_sym_GT_GT] = ACTIONS(6025), - [anon_sym_GT_GT_GT] = ACTIONS(6023), - [anon_sym_EQ_EQ] = ACTIONS(6023), - [anon_sym_BANG_EQ] = ACTIONS(6023), - [anon_sym_GT_EQ] = ACTIONS(6023), - [anon_sym_LT_EQ] = ACTIONS(6023), - [anon_sym_DOT] = ACTIONS(6025), - [anon_sym_EQ_GT] = ACTIONS(6023), - [anon_sym_switch] = ACTIONS(6023), - [anon_sym_DOT_DOT] = ACTIONS(6023), - [anon_sym_and] = ACTIONS(6023), - [anon_sym_or] = ACTIONS(6025), - [anon_sym_AMP_AMP] = ACTIONS(6023), - [anon_sym_PIPE_PIPE] = ACTIONS(6023), - [sym_op_coalescing] = ACTIONS(6023), - [anon_sym_from] = 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__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), @@ -575021,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), @@ -575030,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(6009), - [anon_sym_LBRACK] = ACTIONS(6009), - [anon_sym_COLON] = ACTIONS(6009), - [anon_sym_COMMA] = ACTIONS(6009), - [anon_sym_RBRACK] = ACTIONS(6009), - [anon_sym_LPAREN] = ACTIONS(6009), - [anon_sym_RPAREN] = ACTIONS(6009), - [anon_sym_RBRACE] = ACTIONS(6009), - [anon_sym_LT] = ACTIONS(6011), - [anon_sym_GT] = ACTIONS(6011), - [anon_sym_in] = ACTIONS(6009), - [anon_sym_where] = ACTIONS(6009), - [anon_sym_QMARK] = ACTIONS(6011), - [anon_sym_BANG] = ACTIONS(6011), - [anon_sym_PLUS_PLUS] = ACTIONS(6009), - [anon_sym_DASH_DASH] = ACTIONS(6009), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_STAR] = ACTIONS(6009), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_PERCENT] = ACTIONS(6009), - [anon_sym_CARET] = ACTIONS(6009), - [anon_sym_PIPE] = ACTIONS(6011), - [anon_sym_AMP] = ACTIONS(6011), - [anon_sym_LT_LT] = ACTIONS(6009), - [anon_sym_GT_GT] = ACTIONS(6011), - [anon_sym_GT_GT_GT] = ACTIONS(6009), - [anon_sym_EQ_EQ] = ACTIONS(6009), - [anon_sym_BANG_EQ] = ACTIONS(6009), - [anon_sym_GT_EQ] = ACTIONS(6009), - [anon_sym_LT_EQ] = ACTIONS(6009), - [anon_sym_DOT] = ACTIONS(6011), - [anon_sym_EQ_GT] = ACTIONS(6009), - [anon_sym_switch] = ACTIONS(6009), - [anon_sym_DOT_DOT] = ACTIONS(6009), - [anon_sym_and] = ACTIONS(6009), - [anon_sym_or] = ACTIONS(6011), - [anon_sym_AMP_AMP] = ACTIONS(6009), - [anon_sym_PIPE_PIPE] = ACTIONS(6009), - [sym_op_coalescing] = ACTIONS(6009), - [anon_sym_from] = ACTIONS(6009), - [anon_sym_join] = ACTIONS(6009), - [anon_sym_on] = ACTIONS(6009), - [anon_sym_equals] = ACTIONS(6009), - [anon_sym_let] = ACTIONS(6009), - [anon_sym_orderby] = ACTIONS(6009), - [anon_sym_group] = ACTIONS(6009), - [anon_sym_by] = ACTIONS(6009), - [anon_sym_select] = ACTIONS(6009), - [anon_sym_as] = ACTIONS(6009), - [anon_sym_is] = ACTIONS(6009), - [anon_sym_DASH_GT] = ACTIONS(6009), - [anon_sym_with] = ACTIONS(6009), - [aux_sym_preproc_if_token3] = ACTIONS(6009), - [aux_sym_preproc_else_token1] = ACTIONS(6009), - [aux_sym_preproc_elif_token1] = ACTIONS(6009), + [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), @@ -575098,27 +569781,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4146] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -575128,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(5422), - [anon_sym_COMMA] = ACTIONS(6441), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6441), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -575184,62 +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_SEMI] = ACTIONS(6163), - [anon_sym_LBRACK] = ACTIONS(6163), - [anon_sym_COLON] = ACTIONS(6163), - [anon_sym_COMMA] = ACTIONS(6163), - [anon_sym_RBRACK] = ACTIONS(6163), - [anon_sym_LPAREN] = ACTIONS(6163), - [anon_sym_RPAREN] = ACTIONS(6163), - [anon_sym_RBRACE] = ACTIONS(6163), - [anon_sym_LT] = ACTIONS(6165), - [anon_sym_GT] = ACTIONS(6165), - [anon_sym_in] = ACTIONS(6163), - [anon_sym_where] = ACTIONS(6163), - [anon_sym_QMARK] = ACTIONS(6165), - [anon_sym_BANG] = ACTIONS(6165), - [anon_sym_PLUS_PLUS] = ACTIONS(6163), - [anon_sym_DASH_DASH] = ACTIONS(6163), - [anon_sym_PLUS] = ACTIONS(6165), - [anon_sym_DASH] = ACTIONS(6165), - [anon_sym_STAR] = ACTIONS(6163), - [anon_sym_SLASH] = ACTIONS(6165), - [anon_sym_PERCENT] = ACTIONS(6163), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_PIPE] = ACTIONS(6165), - [anon_sym_AMP] = ACTIONS(6165), - [anon_sym_LT_LT] = ACTIONS(6163), - [anon_sym_GT_GT] = ACTIONS(6165), - [anon_sym_GT_GT_GT] = ACTIONS(6163), - [anon_sym_EQ_EQ] = ACTIONS(6163), - [anon_sym_BANG_EQ] = ACTIONS(6163), - [anon_sym_GT_EQ] = ACTIONS(6163), - [anon_sym_LT_EQ] = ACTIONS(6163), - [anon_sym_DOT] = ACTIONS(6165), - [anon_sym_EQ_GT] = ACTIONS(6163), - [anon_sym_switch] = ACTIONS(6163), - [anon_sym_DOT_DOT] = ACTIONS(6163), - [anon_sym_and] = ACTIONS(6163), - [anon_sym_or] = ACTIONS(6165), - [anon_sym_AMP_AMP] = ACTIONS(6163), - [anon_sym_PIPE_PIPE] = ACTIONS(6163), - [sym_op_coalescing] = ACTIONS(6163), - [anon_sym_from] = ACTIONS(6163), - [anon_sym_join] = ACTIONS(6163), - [anon_sym_on] = ACTIONS(6163), - [anon_sym_equals] = ACTIONS(6163), - [anon_sym_let] = ACTIONS(6163), - [anon_sym_orderby] = ACTIONS(6163), - [anon_sym_group] = ACTIONS(6163), - [anon_sym_by] = ACTIONS(6163), - [anon_sym_select] = ACTIONS(6163), - [anon_sym_as] = ACTIONS(6163), - [anon_sym_is] = ACTIONS(6163), - [anon_sym_DASH_GT] = ACTIONS(6163), - [anon_sym_with] = ACTIONS(6163), - [aux_sym_preproc_if_token3] = ACTIONS(6163), - [aux_sym_preproc_else_token1] = ACTIONS(6163), - [aux_sym_preproc_elif_token1] = ACTIONS(6163), + [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), @@ -575252,27 +569925,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4148] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -575282,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4768), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -575329,27 +569997,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4149] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -575359,41 +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_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6443), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6443), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -575415,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(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), + [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), @@ -575483,27 +570141,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4151] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), [sym_preproc_region] = STATE(4151), [sym_preproc_endregion] = STATE(4151), [sym_preproc_line] = STATE(4151), @@ -575513,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4758), - [anon_sym_QMARK] = ACTIONS(6431), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6435), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6437), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -575560,27 +570213,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4152] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), + [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), @@ -575590,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4778), - [anon_sym_QMARK] = ACTIONS(6431), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6435), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6437), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -575635,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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4153), [sym_preproc_endregion] = STATE(4153), [sym_preproc_line] = STATE(4153), @@ -575667,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(5422), - [anon_sym_COMMA] = ACTIONS(6445), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6445), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -575714,6 +570357,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4154] = { + [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), @@ -575723,62 +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_SEMI] = ACTIONS(6167), - [anon_sym_LBRACK] = ACTIONS(6167), - [anon_sym_COLON] = ACTIONS(6167), - [anon_sym_COMMA] = ACTIONS(6167), - [anon_sym_RBRACK] = ACTIONS(6167), - [anon_sym_LPAREN] = ACTIONS(6167), - [anon_sym_RPAREN] = ACTIONS(6167), - [anon_sym_RBRACE] = ACTIONS(6167), - [anon_sym_LT] = ACTIONS(6169), - [anon_sym_GT] = ACTIONS(6169), - [anon_sym_in] = ACTIONS(6167), - [anon_sym_where] = ACTIONS(6167), - [anon_sym_QMARK] = ACTIONS(6169), - [anon_sym_BANG] = ACTIONS(6169), - [anon_sym_PLUS_PLUS] = ACTIONS(6167), - [anon_sym_DASH_DASH] = ACTIONS(6167), - [anon_sym_PLUS] = ACTIONS(6169), - [anon_sym_DASH] = ACTIONS(6169), - [anon_sym_STAR] = ACTIONS(6167), - [anon_sym_SLASH] = ACTIONS(6169), - [anon_sym_PERCENT] = ACTIONS(6167), - [anon_sym_CARET] = ACTIONS(6167), - [anon_sym_PIPE] = ACTIONS(6169), - [anon_sym_AMP] = ACTIONS(6169), - [anon_sym_LT_LT] = ACTIONS(6167), - [anon_sym_GT_GT] = ACTIONS(6169), - [anon_sym_GT_GT_GT] = ACTIONS(6167), - [anon_sym_EQ_EQ] = ACTIONS(6167), - [anon_sym_BANG_EQ] = ACTIONS(6167), - [anon_sym_GT_EQ] = ACTIONS(6167), - [anon_sym_LT_EQ] = ACTIONS(6167), - [anon_sym_DOT] = ACTIONS(6169), - [anon_sym_EQ_GT] = ACTIONS(6167), - [anon_sym_switch] = ACTIONS(6167), - [anon_sym_DOT_DOT] = ACTIONS(6167), - [anon_sym_and] = ACTIONS(6167), - [anon_sym_or] = ACTIONS(6169), - [anon_sym_AMP_AMP] = ACTIONS(6167), - [anon_sym_PIPE_PIPE] = ACTIONS(6167), - [sym_op_coalescing] = ACTIONS(6167), - [anon_sym_from] = ACTIONS(6167), - [anon_sym_join] = ACTIONS(6167), - [anon_sym_on] = ACTIONS(6167), - [anon_sym_equals] = ACTIONS(6167), - [anon_sym_let] = ACTIONS(6167), - [anon_sym_orderby] = ACTIONS(6167), - [anon_sym_group] = ACTIONS(6167), - [anon_sym_by] = ACTIONS(6167), - [anon_sym_select] = ACTIONS(6167), - [anon_sym_as] = ACTIONS(6167), - [anon_sym_is] = ACTIONS(6167), - [anon_sym_DASH_GT] = ACTIONS(6167), - [anon_sym_with] = ACTIONS(6167), - [aux_sym_preproc_if_token3] = ACTIONS(6167), - [aux_sym_preproc_else_token1] = ACTIONS(6167), - [aux_sym_preproc_elif_token1] = ACTIONS(6167), + [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), @@ -575791,27 +570429,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4155] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -575821,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4760), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -575868,6 +570501,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4156] = { + [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), @@ -575877,62 +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_SEMI] = ACTIONS(6171), - [anon_sym_LBRACK] = ACTIONS(6171), - [anon_sym_COLON] = ACTIONS(6171), - [anon_sym_COMMA] = ACTIONS(6171), - [anon_sym_RBRACK] = ACTIONS(6171), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_RPAREN] = ACTIONS(6171), - [anon_sym_RBRACE] = ACTIONS(6171), - [anon_sym_LT] = ACTIONS(6173), - [anon_sym_GT] = ACTIONS(6173), - [anon_sym_in] = ACTIONS(6171), - [anon_sym_where] = ACTIONS(6171), - [anon_sym_QMARK] = ACTIONS(6173), - [anon_sym_BANG] = ACTIONS(6173), - [anon_sym_PLUS_PLUS] = ACTIONS(6171), - [anon_sym_DASH_DASH] = ACTIONS(6171), - [anon_sym_PLUS] = ACTIONS(6173), - [anon_sym_DASH] = ACTIONS(6173), - [anon_sym_STAR] = ACTIONS(6171), - [anon_sym_SLASH] = ACTIONS(6173), - [anon_sym_PERCENT] = ACTIONS(6171), - [anon_sym_CARET] = ACTIONS(6171), - [anon_sym_PIPE] = ACTIONS(6173), - [anon_sym_AMP] = ACTIONS(6173), - [anon_sym_LT_LT] = ACTIONS(6171), - [anon_sym_GT_GT] = ACTIONS(6173), - [anon_sym_GT_GT_GT] = ACTIONS(6171), - [anon_sym_EQ_EQ] = ACTIONS(6171), - [anon_sym_BANG_EQ] = ACTIONS(6171), - [anon_sym_GT_EQ] = ACTIONS(6171), - [anon_sym_LT_EQ] = ACTIONS(6171), - [anon_sym_DOT] = ACTIONS(6173), - [anon_sym_EQ_GT] = ACTIONS(6171), - [anon_sym_switch] = ACTIONS(6171), - [anon_sym_DOT_DOT] = ACTIONS(6171), - [anon_sym_and] = ACTIONS(6171), - [anon_sym_or] = ACTIONS(6173), - [anon_sym_AMP_AMP] = ACTIONS(6171), - [anon_sym_PIPE_PIPE] = ACTIONS(6171), - [sym_op_coalescing] = ACTIONS(6171), - [anon_sym_from] = ACTIONS(6171), - [anon_sym_join] = ACTIONS(6171), - [anon_sym_on] = ACTIONS(6171), - [anon_sym_equals] = ACTIONS(6171), - [anon_sym_let] = ACTIONS(6171), - [anon_sym_orderby] = ACTIONS(6171), - [anon_sym_group] = ACTIONS(6171), - [anon_sym_by] = ACTIONS(6171), - [anon_sym_select] = ACTIONS(6171), - [anon_sym_as] = ACTIONS(6171), - [anon_sym_is] = ACTIONS(6171), - [anon_sym_DASH_GT] = ACTIONS(6171), - [anon_sym_with] = ACTIONS(6171), - [aux_sym_preproc_if_token3] = ACTIONS(6171), - [aux_sym_preproc_else_token1] = ACTIONS(6171), - [aux_sym_preproc_elif_token1] = ACTIONS(6171), + [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), @@ -575954,62 +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_SEMI] = ACTIONS(4363), - [anon_sym_LBRACK] = 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(6447), - [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_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), @@ -576022,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), @@ -576031,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(6175), - [anon_sym_LBRACK] = ACTIONS(6175), - [anon_sym_COLON] = ACTIONS(6175), - [anon_sym_COMMA] = ACTIONS(6175), - [anon_sym_RBRACK] = ACTIONS(6175), - [anon_sym_LPAREN] = ACTIONS(6175), - [anon_sym_RPAREN] = ACTIONS(6175), - [anon_sym_RBRACE] = ACTIONS(6175), - [anon_sym_LT] = ACTIONS(6177), - [anon_sym_GT] = ACTIONS(6177), - [anon_sym_in] = ACTIONS(6175), - [anon_sym_where] = ACTIONS(6175), - [anon_sym_QMARK] = ACTIONS(6177), - [anon_sym_BANG] = ACTIONS(6177), - [anon_sym_PLUS_PLUS] = ACTIONS(6175), - [anon_sym_DASH_DASH] = ACTIONS(6175), - [anon_sym_PLUS] = ACTIONS(6177), - [anon_sym_DASH] = ACTIONS(6177), - [anon_sym_STAR] = ACTIONS(6175), - [anon_sym_SLASH] = ACTIONS(6177), - [anon_sym_PERCENT] = ACTIONS(6175), - [anon_sym_CARET] = ACTIONS(6175), - [anon_sym_PIPE] = ACTIONS(6177), - [anon_sym_AMP] = ACTIONS(6177), - [anon_sym_LT_LT] = ACTIONS(6175), - [anon_sym_GT_GT] = ACTIONS(6177), - [anon_sym_GT_GT_GT] = ACTIONS(6175), - [anon_sym_EQ_EQ] = ACTIONS(6175), - [anon_sym_BANG_EQ] = ACTIONS(6175), - [anon_sym_GT_EQ] = ACTIONS(6175), - [anon_sym_LT_EQ] = ACTIONS(6175), - [anon_sym_DOT] = ACTIONS(6177), - [anon_sym_EQ_GT] = ACTIONS(6175), - [anon_sym_switch] = ACTIONS(6175), - [anon_sym_DOT_DOT] = ACTIONS(6175), - [anon_sym_and] = ACTIONS(6175), - [anon_sym_or] = ACTIONS(6177), - [anon_sym_AMP_AMP] = ACTIONS(6175), - [anon_sym_PIPE_PIPE] = ACTIONS(6175), - [sym_op_coalescing] = ACTIONS(6175), - [anon_sym_from] = ACTIONS(6175), - [anon_sym_join] = ACTIONS(6175), - [anon_sym_on] = ACTIONS(6175), - [anon_sym_equals] = ACTIONS(6175), - [anon_sym_let] = ACTIONS(6175), - [anon_sym_orderby] = ACTIONS(6175), - [anon_sym_group] = ACTIONS(6175), - [anon_sym_by] = ACTIONS(6175), - [anon_sym_select] = ACTIONS(6175), - [anon_sym_as] = ACTIONS(6175), - [anon_sym_is] = ACTIONS(6175), - [anon_sym_DASH_GT] = ACTIONS(6175), - [anon_sym_with] = ACTIONS(6175), - [aux_sym_preproc_if_token3] = ACTIONS(6175), - [aux_sym_preproc_else_token1] = ACTIONS(6175), - [aux_sym_preproc_elif_token1] = ACTIONS(6175), + [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), @@ -576099,27 +570717,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4159] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -576129,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(5422), - [anon_sym_COMMA] = ACTIONS(6337), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6337), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -576176,27 +570789,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4160] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -576206,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6405), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4756), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6409), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6411), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -576253,6 +570861,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4161] = { + [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), @@ -576262,62 +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_SEMI] = ACTIONS(6129), - [anon_sym_LBRACK] = ACTIONS(6129), - [anon_sym_COLON] = ACTIONS(6129), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_RBRACK] = ACTIONS(6129), - [anon_sym_LPAREN] = ACTIONS(6129), - [anon_sym_RPAREN] = ACTIONS(6129), - [anon_sym_RBRACE] = ACTIONS(6129), - [anon_sym_LT] = ACTIONS(6131), - [anon_sym_GT] = ACTIONS(6131), - [anon_sym_in] = ACTIONS(6129), - [anon_sym_where] = ACTIONS(6129), - [anon_sym_QMARK] = ACTIONS(6131), - [anon_sym_BANG] = ACTIONS(6131), - [anon_sym_PLUS_PLUS] = ACTIONS(6129), - [anon_sym_DASH_DASH] = ACTIONS(6129), - [anon_sym_PLUS] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6131), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6129), - [anon_sym_PIPE] = ACTIONS(6131), - [anon_sym_AMP] = ACTIONS(6131), - [anon_sym_LT_LT] = ACTIONS(6129), - [anon_sym_GT_GT] = ACTIONS(6131), - [anon_sym_GT_GT_GT] = ACTIONS(6129), - [anon_sym_EQ_EQ] = ACTIONS(6129), - [anon_sym_BANG_EQ] = ACTIONS(6129), - [anon_sym_GT_EQ] = ACTIONS(6129), - [anon_sym_LT_EQ] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6131), - [anon_sym_EQ_GT] = ACTIONS(6129), - [anon_sym_switch] = ACTIONS(6129), - [anon_sym_DOT_DOT] = ACTIONS(6129), - [anon_sym_and] = ACTIONS(6129), - [anon_sym_or] = ACTIONS(6131), - [anon_sym_AMP_AMP] = ACTIONS(6129), - [anon_sym_PIPE_PIPE] = ACTIONS(6129), - [sym_op_coalescing] = ACTIONS(6129), - [anon_sym_from] = ACTIONS(6129), - [anon_sym_join] = ACTIONS(6129), - [anon_sym_on] = ACTIONS(6129), - [anon_sym_equals] = ACTIONS(6129), - [anon_sym_let] = ACTIONS(6129), - [anon_sym_orderby] = ACTIONS(6129), - [anon_sym_group] = ACTIONS(6129), - [anon_sym_by] = ACTIONS(6129), - [anon_sym_select] = ACTIONS(6129), - [anon_sym_as] = ACTIONS(6129), - [anon_sym_is] = ACTIONS(6129), - [anon_sym_DASH_GT] = ACTIONS(6129), - [anon_sym_with] = ACTIONS(6129), - [aux_sym_preproc_if_token3] = ACTIONS(6129), - [aux_sym_preproc_else_token1] = ACTIONS(6129), - [aux_sym_preproc_elif_token1] = ACTIONS(6129), + [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), @@ -576330,6 +570933,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4162] = { + [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), @@ -576339,62 +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_SEMI] = ACTIONS(6179), - [anon_sym_LBRACK] = ACTIONS(6179), - [anon_sym_COLON] = ACTIONS(6179), - [anon_sym_COMMA] = ACTIONS(6179), - [anon_sym_RBRACK] = ACTIONS(6179), - [anon_sym_LPAREN] = ACTIONS(6179), - [anon_sym_RPAREN] = ACTIONS(6179), - [anon_sym_RBRACE] = ACTIONS(6179), - [anon_sym_LT] = ACTIONS(6181), - [anon_sym_GT] = ACTIONS(6181), - [anon_sym_in] = ACTIONS(6179), - [anon_sym_where] = ACTIONS(6179), - [anon_sym_QMARK] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(6181), - [anon_sym_PLUS_PLUS] = ACTIONS(6179), - [anon_sym_DASH_DASH] = ACTIONS(6179), - [anon_sym_PLUS] = ACTIONS(6181), - [anon_sym_DASH] = ACTIONS(6181), - [anon_sym_STAR] = ACTIONS(6179), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6179), - [anon_sym_CARET] = ACTIONS(6179), - [anon_sym_PIPE] = ACTIONS(6181), - [anon_sym_AMP] = ACTIONS(6181), - [anon_sym_LT_LT] = ACTIONS(6179), - [anon_sym_GT_GT] = ACTIONS(6181), - [anon_sym_GT_GT_GT] = ACTIONS(6179), - [anon_sym_EQ_EQ] = ACTIONS(6179), - [anon_sym_BANG_EQ] = ACTIONS(6179), - [anon_sym_GT_EQ] = ACTIONS(6179), - [anon_sym_LT_EQ] = ACTIONS(6179), - [anon_sym_DOT] = ACTIONS(6181), - [anon_sym_EQ_GT] = ACTIONS(6179), - [anon_sym_switch] = ACTIONS(6179), - [anon_sym_DOT_DOT] = ACTIONS(6179), - [anon_sym_and] = ACTIONS(6179), - [anon_sym_or] = ACTIONS(6181), - [anon_sym_AMP_AMP] = ACTIONS(6179), - [anon_sym_PIPE_PIPE] = ACTIONS(6179), - [sym_op_coalescing] = ACTIONS(6179), - [anon_sym_from] = ACTIONS(6179), - [anon_sym_join] = ACTIONS(6179), - [anon_sym_on] = ACTIONS(6179), - [anon_sym_equals] = ACTIONS(6179), - [anon_sym_let] = ACTIONS(6179), - [anon_sym_orderby] = ACTIONS(6179), - [anon_sym_group] = ACTIONS(6179), - [anon_sym_by] = ACTIONS(6179), - [anon_sym_select] = ACTIONS(6179), - [anon_sym_as] = ACTIONS(6179), - [anon_sym_is] = ACTIONS(6179), - [anon_sym_DASH_GT] = ACTIONS(6179), - [anon_sym_with] = ACTIONS(6179), - [aux_sym_preproc_if_token3] = ACTIONS(6179), - [aux_sym_preproc_else_token1] = ACTIONS(6179), - [aux_sym_preproc_elif_token1] = ACTIONS(6179), + [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), @@ -576407,6 +571005,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4163] = { + [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), @@ -576416,62 +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_SEMI] = ACTIONS(4318), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_where] = ACTIONS(4318), - [anon_sym_QMARK] = ACTIONS(6355), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(6447), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_from] = ACTIONS(4318), - [anon_sym_join] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_let] = ACTIONS(4318), - [anon_sym_orderby] = ACTIONS(4318), - [anon_sym_group] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_select] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [sym__identifier_token] = ACTIONS(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), @@ -576484,27 +571077,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4164] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -576514,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(5422), - [anon_sym_COMMA] = ACTIONS(6449), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6449), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -576561,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), @@ -576570,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_EQ] = ACTIONS(6451), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_where] = ACTIONS(5752), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(6453), - [anon_sym_DASH_EQ] = ACTIONS(6453), - [anon_sym_STAR_EQ] = ACTIONS(6453), - [anon_sym_SLASH_EQ] = ACTIONS(6453), - [anon_sym_PERCENT_EQ] = ACTIONS(6453), - [anon_sym_AMP_EQ] = ACTIONS(6453), - [anon_sym_CARET_EQ] = ACTIONS(6453), - [anon_sym_PIPE_EQ] = ACTIONS(6453), - [anon_sym_LT_LT_EQ] = ACTIONS(6453), - [anon_sym_GT_GT_EQ] = ACTIONS(6453), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6453), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6453), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5752), - [anon_sym_join] = ACTIONS(5752), - [anon_sym_let] = ACTIONS(5752), - [anon_sym_orderby] = ACTIONS(5752), - [anon_sym_ascending] = ACTIONS(5752), - [anon_sym_descending] = ACTIONS(5752), - [anon_sym_group] = ACTIONS(5752), - [anon_sym_select] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5754), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -576638,27 +571221,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4166] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), [sym_preproc_region] = STATE(4166), [sym_preproc_endregion] = STATE(4166), [sym_preproc_line] = STATE(4166), @@ -576668,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_on] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -576715,6 +571293,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4167] = { + [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), @@ -576724,62 +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_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), + [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), @@ -576801,62 +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(6075), - [anon_sym_LBRACK] = ACTIONS(6075), - [anon_sym_COLON] = ACTIONS(6075), - [anon_sym_COMMA] = ACTIONS(6075), - [anon_sym_RBRACK] = ACTIONS(6075), - [anon_sym_LPAREN] = ACTIONS(6075), - [anon_sym_RPAREN] = ACTIONS(6075), - [anon_sym_RBRACE] = ACTIONS(6075), - [anon_sym_LT] = ACTIONS(6077), - [anon_sym_GT] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6075), - [anon_sym_where] = ACTIONS(6075), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_BANG] = ACTIONS(6077), - [anon_sym_PLUS_PLUS] = ACTIONS(6075), - [anon_sym_DASH_DASH] = ACTIONS(6075), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6075), - [anon_sym_SLASH] = ACTIONS(6077), - [anon_sym_PERCENT] = ACTIONS(6075), - [anon_sym_CARET] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - [anon_sym_LT_LT] = ACTIONS(6075), - [anon_sym_GT_GT] = ACTIONS(6077), - [anon_sym_GT_GT_GT] = ACTIONS(6075), - [anon_sym_EQ_EQ] = ACTIONS(6075), - [anon_sym_BANG_EQ] = ACTIONS(6075), - [anon_sym_GT_EQ] = ACTIONS(6075), - [anon_sym_LT_EQ] = ACTIONS(6075), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_EQ_GT] = ACTIONS(6075), - [anon_sym_switch] = ACTIONS(6075), - [anon_sym_DOT_DOT] = ACTIONS(6075), - [anon_sym_and] = ACTIONS(6075), - [anon_sym_or] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6075), - [anon_sym_PIPE_PIPE] = ACTIONS(6075), - [sym_op_coalescing] = ACTIONS(6075), - [anon_sym_from] = ACTIONS(6075), - [anon_sym_join] = ACTIONS(6075), - [anon_sym_on] = ACTIONS(6075), - [anon_sym_equals] = ACTIONS(6075), - [anon_sym_let] = ACTIONS(6075), - [anon_sym_orderby] = ACTIONS(6075), - [anon_sym_group] = ACTIONS(6075), - [anon_sym_by] = ACTIONS(6075), - [anon_sym_select] = ACTIONS(6075), - [anon_sym_as] = ACTIONS(6075), - [anon_sym_is] = ACTIONS(6075), - [anon_sym_DASH_GT] = ACTIONS(6075), - [anon_sym_with] = ACTIONS(6075), - [aux_sym_preproc_if_token3] = ACTIONS(6075), - [aux_sym_preproc_else_token1] = ACTIONS(6075), - [aux_sym_preproc_elif_token1] = ACTIONS(6075), + [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), @@ -576869,6 +571437,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4169] = { + [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), @@ -576878,62 +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_SEMI] = ACTIONS(6183), - [anon_sym_LBRACK] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6183), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RBRACK] = ACTIONS(6183), - [anon_sym_LPAREN] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6183), - [anon_sym_RBRACE] = ACTIONS(6183), - [anon_sym_LT] = ACTIONS(6185), - [anon_sym_GT] = ACTIONS(6185), - [anon_sym_in] = ACTIONS(6183), - [anon_sym_where] = ACTIONS(6183), - [anon_sym_QMARK] = ACTIONS(6185), - [anon_sym_BANG] = ACTIONS(6185), - [anon_sym_PLUS_PLUS] = ACTIONS(6183), - [anon_sym_DASH_DASH] = ACTIONS(6183), - [anon_sym_PLUS] = ACTIONS(6185), - [anon_sym_DASH] = ACTIONS(6185), - [anon_sym_STAR] = ACTIONS(6183), - [anon_sym_SLASH] = ACTIONS(6185), - [anon_sym_PERCENT] = ACTIONS(6183), - [anon_sym_CARET] = ACTIONS(6183), - [anon_sym_PIPE] = ACTIONS(6185), - [anon_sym_AMP] = ACTIONS(6185), - [anon_sym_LT_LT] = ACTIONS(6183), - [anon_sym_GT_GT] = ACTIONS(6185), - [anon_sym_GT_GT_GT] = ACTIONS(6183), - [anon_sym_EQ_EQ] = ACTIONS(6183), - [anon_sym_BANG_EQ] = ACTIONS(6183), - [anon_sym_GT_EQ] = ACTIONS(6183), - [anon_sym_LT_EQ] = ACTIONS(6183), - [anon_sym_DOT] = ACTIONS(6185), - [anon_sym_EQ_GT] = ACTIONS(6183), - [anon_sym_switch] = ACTIONS(6183), - [anon_sym_DOT_DOT] = ACTIONS(6183), - [anon_sym_and] = ACTIONS(6183), - [anon_sym_or] = ACTIONS(6185), - [anon_sym_AMP_AMP] = ACTIONS(6183), - [anon_sym_PIPE_PIPE] = ACTIONS(6183), - [sym_op_coalescing] = ACTIONS(6183), - [anon_sym_from] = ACTIONS(6183), - [anon_sym_join] = ACTIONS(6183), - [anon_sym_on] = ACTIONS(6183), - [anon_sym_equals] = ACTIONS(6183), - [anon_sym_let] = ACTIONS(6183), - [anon_sym_orderby] = ACTIONS(6183), - [anon_sym_group] = ACTIONS(6183), - [anon_sym_by] = ACTIONS(6183), - [anon_sym_select] = ACTIONS(6183), - [anon_sym_as] = ACTIONS(6183), - [anon_sym_is] = ACTIONS(6183), - [anon_sym_DASH_GT] = ACTIONS(6183), - [anon_sym_with] = ACTIONS(6183), - [aux_sym_preproc_if_token3] = ACTIONS(6183), - [aux_sym_preproc_else_token1] = ACTIONS(6183), - [aux_sym_preproc_elif_token1] = ACTIONS(6183), + [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), @@ -576946,6 +571509,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4170] = { + [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), @@ -576955,62 +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_SEMI] = ACTIONS(6199), - [anon_sym_LBRACK] = ACTIONS(6199), - [anon_sym_COLON] = ACTIONS(6199), - [anon_sym_COMMA] = ACTIONS(6199), - [anon_sym_RBRACK] = ACTIONS(6199), - [anon_sym_LPAREN] = ACTIONS(6199), - [anon_sym_RPAREN] = ACTIONS(6199), - [anon_sym_RBRACE] = ACTIONS(6199), - [anon_sym_LT] = ACTIONS(6201), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_in] = ACTIONS(6199), - [anon_sym_where] = ACTIONS(6199), - [anon_sym_QMARK] = ACTIONS(6201), - [anon_sym_BANG] = ACTIONS(6201), - [anon_sym_PLUS_PLUS] = ACTIONS(6199), - [anon_sym_DASH_DASH] = ACTIONS(6199), - [anon_sym_PLUS] = ACTIONS(6201), - [anon_sym_DASH] = ACTIONS(6201), - [anon_sym_STAR] = ACTIONS(6199), - [anon_sym_SLASH] = ACTIONS(6201), - [anon_sym_PERCENT] = ACTIONS(6199), - [anon_sym_CARET] = ACTIONS(6199), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_AMP] = ACTIONS(6201), - [anon_sym_LT_LT] = ACTIONS(6199), - [anon_sym_GT_GT] = ACTIONS(6201), - [anon_sym_GT_GT_GT] = ACTIONS(6199), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_GT_EQ] = ACTIONS(6199), - [anon_sym_LT_EQ] = ACTIONS(6199), - [anon_sym_DOT] = ACTIONS(6201), - [anon_sym_EQ_GT] = ACTIONS(6199), - [anon_sym_switch] = ACTIONS(6199), - [anon_sym_DOT_DOT] = ACTIONS(6199), - [anon_sym_and] = ACTIONS(6199), - [anon_sym_or] = ACTIONS(6201), - [anon_sym_AMP_AMP] = ACTIONS(6199), - [anon_sym_PIPE_PIPE] = ACTIONS(6199), - [sym_op_coalescing] = ACTIONS(6199), - [anon_sym_from] = ACTIONS(6199), - [anon_sym_join] = ACTIONS(6199), - [anon_sym_on] = ACTIONS(6199), - [anon_sym_equals] = ACTIONS(6199), - [anon_sym_let] = ACTIONS(6199), - [anon_sym_orderby] = ACTIONS(6199), - [anon_sym_group] = ACTIONS(6199), - [anon_sym_by] = ACTIONS(6199), - [anon_sym_select] = ACTIONS(6199), - [anon_sym_as] = ACTIONS(6199), - [anon_sym_is] = ACTIONS(6199), - [anon_sym_DASH_GT] = ACTIONS(6199), - [anon_sym_with] = ACTIONS(6199), - [aux_sym_preproc_if_token3] = ACTIONS(6199), - [aux_sym_preproc_else_token1] = ACTIONS(6199), - [aux_sym_preproc_elif_token1] = ACTIONS(6199), + [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), @@ -577023,6 +571581,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4171] = { + [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), @@ -577032,62 +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_SEMI] = ACTIONS(6203), - [anon_sym_LBRACK] = ACTIONS(6203), - [anon_sym_COLON] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_RBRACK] = ACTIONS(6203), - [anon_sym_LPAREN] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6203), - [anon_sym_RBRACE] = ACTIONS(6203), - [anon_sym_LT] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6205), - [anon_sym_in] = ACTIONS(6203), - [anon_sym_where] = ACTIONS(6203), - [anon_sym_QMARK] = ACTIONS(6205), - [anon_sym_BANG] = ACTIONS(6205), - [anon_sym_PLUS_PLUS] = ACTIONS(6203), - [anon_sym_DASH_DASH] = ACTIONS(6203), - [anon_sym_PLUS] = ACTIONS(6205), - [anon_sym_DASH] = ACTIONS(6205), - [anon_sym_STAR] = ACTIONS(6203), - [anon_sym_SLASH] = ACTIONS(6205), - [anon_sym_PERCENT] = ACTIONS(6203), - [anon_sym_CARET] = ACTIONS(6203), - [anon_sym_PIPE] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6203), - [anon_sym_GT_GT] = ACTIONS(6205), - [anon_sym_GT_GT_GT] = ACTIONS(6203), - [anon_sym_EQ_EQ] = ACTIONS(6203), - [anon_sym_BANG_EQ] = ACTIONS(6203), - [anon_sym_GT_EQ] = ACTIONS(6203), - [anon_sym_LT_EQ] = ACTIONS(6203), - [anon_sym_DOT] = ACTIONS(6205), - [anon_sym_EQ_GT] = ACTIONS(6203), - [anon_sym_switch] = ACTIONS(6203), - [anon_sym_DOT_DOT] = ACTIONS(6203), - [anon_sym_and] = ACTIONS(6203), - [anon_sym_or] = ACTIONS(6205), - [anon_sym_AMP_AMP] = ACTIONS(6203), - [anon_sym_PIPE_PIPE] = ACTIONS(6203), - [sym_op_coalescing] = ACTIONS(6203), - [anon_sym_from] = ACTIONS(6203), - [anon_sym_join] = ACTIONS(6203), - [anon_sym_on] = ACTIONS(6203), - [anon_sym_equals] = ACTIONS(6203), - [anon_sym_let] = ACTIONS(6203), - [anon_sym_orderby] = ACTIONS(6203), - [anon_sym_group] = ACTIONS(6203), - [anon_sym_by] = ACTIONS(6203), - [anon_sym_select] = ACTIONS(6203), - [anon_sym_as] = ACTIONS(6203), - [anon_sym_is] = ACTIONS(6203), - [anon_sym_DASH_GT] = ACTIONS(6203), - [anon_sym_with] = ACTIONS(6203), - [aux_sym_preproc_if_token3] = ACTIONS(6203), - [aux_sym_preproc_else_token1] = ACTIONS(6203), - [aux_sym_preproc_elif_token1] = ACTIONS(6203), + [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), @@ -577100,27 +571653,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4172] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -577130,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(5422), - [anon_sym_COMMA] = ACTIONS(6455), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(6455), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -577177,27 +571725,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4173] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -577207,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(5422), - [anon_sym_COMMA] = ACTIONS(6101), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6457), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -577252,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), @@ -577263,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), - [anon_sym_SEMI] = ACTIONS(6117), - [anon_sym_LBRACK] = ACTIONS(6117), - [anon_sym_COLON] = ACTIONS(6117), - [anon_sym_COMMA] = ACTIONS(6117), - [anon_sym_RBRACK] = ACTIONS(6117), - [anon_sym_LPAREN] = ACTIONS(6117), - [anon_sym_RPAREN] = ACTIONS(6117), - [anon_sym_RBRACE] = ACTIONS(6117), - [anon_sym_LT] = ACTIONS(6119), - [anon_sym_GT] = ACTIONS(6119), - [anon_sym_in] = ACTIONS(6117), - [anon_sym_where] = ACTIONS(6117), - [anon_sym_QMARK] = ACTIONS(6119), - [anon_sym_BANG] = ACTIONS(6119), - [anon_sym_PLUS_PLUS] = ACTIONS(6117), - [anon_sym_DASH_DASH] = ACTIONS(6117), - [anon_sym_PLUS] = ACTIONS(6119), - [anon_sym_DASH] = ACTIONS(6119), - [anon_sym_STAR] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(6119), - [anon_sym_PERCENT] = ACTIONS(6117), - [anon_sym_CARET] = ACTIONS(6117), - [anon_sym_PIPE] = ACTIONS(6119), - [anon_sym_AMP] = ACTIONS(6119), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6117), - [anon_sym_BANG_EQ] = ACTIONS(6117), - [anon_sym_GT_EQ] = ACTIONS(6117), - [anon_sym_LT_EQ] = ACTIONS(6117), - [anon_sym_DOT] = ACTIONS(6119), - [anon_sym_EQ_GT] = ACTIONS(6117), - [anon_sym_switch] = ACTIONS(6117), - [anon_sym_DOT_DOT] = ACTIONS(6117), - [anon_sym_and] = ACTIONS(6117), - [anon_sym_or] = ACTIONS(6119), - [anon_sym_AMP_AMP] = ACTIONS(6117), - [anon_sym_PIPE_PIPE] = ACTIONS(6117), - [sym_op_coalescing] = ACTIONS(6117), - [anon_sym_from] = ACTIONS(6117), - [anon_sym_join] = ACTIONS(6117), - [anon_sym_on] = ACTIONS(6117), - [anon_sym_equals] = ACTIONS(6117), - [anon_sym_let] = ACTIONS(6117), - [anon_sym_orderby] = ACTIONS(6117), - [anon_sym_group] = ACTIONS(6117), - [anon_sym_by] = ACTIONS(6117), - [anon_sym_select] = ACTIONS(6117), - [anon_sym_as] = ACTIONS(6117), - [anon_sym_is] = ACTIONS(6117), - [anon_sym_DASH_GT] = ACTIONS(6117), - [anon_sym_with] = ACTIONS(6117), - [aux_sym_preproc_if_token3] = ACTIONS(6117), - [aux_sym_preproc_else_token1] = ACTIONS(6117), - [aux_sym_preproc_elif_token1] = ACTIONS(6117), + [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), @@ -577329,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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -577361,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_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6155), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(6155), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -577408,27 +571941,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4176] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4176), [sym_preproc_endregion] = STATE(4176), [sym_preproc_line] = STATE(4176), @@ -577438,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(5422), - [anon_sym_COMMA] = ACTIONS(6459), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(6459), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -577485,6 +572013,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4177] = { + [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), @@ -577494,62 +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_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_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_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_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), @@ -577571,62 +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_SEMI] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(6125), - [anon_sym_COLON] = ACTIONS(6125), - [anon_sym_COMMA] = ACTIONS(6125), - [anon_sym_RBRACK] = ACTIONS(6125), - [anon_sym_LPAREN] = ACTIONS(6125), - [anon_sym_RPAREN] = ACTIONS(6125), - [anon_sym_RBRACE] = ACTIONS(6125), - [anon_sym_LT] = ACTIONS(6127), - [anon_sym_GT] = ACTIONS(6127), - [anon_sym_in] = ACTIONS(6125), - [anon_sym_where] = ACTIONS(6125), - [anon_sym_QMARK] = ACTIONS(6127), - [anon_sym_BANG] = ACTIONS(6127), - [anon_sym_PLUS_PLUS] = ACTIONS(6125), - [anon_sym_DASH_DASH] = ACTIONS(6125), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6125), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6125), - [anon_sym_CARET] = ACTIONS(6125), - [anon_sym_PIPE] = ACTIONS(6127), - [anon_sym_AMP] = ACTIONS(6127), - [anon_sym_LT_LT] = ACTIONS(6125), - [anon_sym_GT_GT] = ACTIONS(6127), - [anon_sym_GT_GT_GT] = ACTIONS(6125), - [anon_sym_EQ_EQ] = ACTIONS(6125), - [anon_sym_BANG_EQ] = ACTIONS(6125), - [anon_sym_GT_EQ] = ACTIONS(6125), - [anon_sym_LT_EQ] = ACTIONS(6125), - [anon_sym_DOT] = ACTIONS(6127), - [anon_sym_EQ_GT] = ACTIONS(6125), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6125), - [anon_sym_and] = ACTIONS(6125), - [anon_sym_or] = ACTIONS(6127), - [anon_sym_AMP_AMP] = ACTIONS(6125), - [anon_sym_PIPE_PIPE] = ACTIONS(6125), - [sym_op_coalescing] = ACTIONS(6125), - [anon_sym_from] = ACTIONS(6125), - [anon_sym_join] = ACTIONS(6125), - [anon_sym_on] = ACTIONS(6125), - [anon_sym_equals] = ACTIONS(6125), - [anon_sym_let] = ACTIONS(6125), - [anon_sym_orderby] = ACTIONS(6125), - [anon_sym_group] = ACTIONS(6125), - [anon_sym_by] = ACTIONS(6125), - [anon_sym_select] = ACTIONS(6125), - [anon_sym_as] = ACTIONS(6125), - [anon_sym_is] = ACTIONS(6125), - [anon_sym_DASH_GT] = ACTIONS(6125), - [anon_sym_with] = ACTIONS(6125), - [aux_sym_preproc_if_token3] = ACTIONS(6125), - [aux_sym_preproc_else_token1] = ACTIONS(6125), - [aux_sym_preproc_elif_token1] = ACTIONS(6125), + [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), @@ -577639,6 +572157,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4179] = { + [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), @@ -577648,62 +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), - [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(5942), - [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(6461), - [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(5942), + [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), @@ -577716,6 +572229,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4180] = { + [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), @@ -577725,62 +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_SEMI] = ACTIONS(6057), - [anon_sym_LBRACK] = ACTIONS(6057), - [anon_sym_COLON] = ACTIONS(6057), - [anon_sym_COMMA] = ACTIONS(6057), - [anon_sym_RBRACK] = ACTIONS(6057), - [anon_sym_LPAREN] = ACTIONS(6057), - [anon_sym_RPAREN] = ACTIONS(6057), - [anon_sym_RBRACE] = ACTIONS(6057), - [anon_sym_LT] = ACTIONS(6059), - [anon_sym_GT] = ACTIONS(6059), - [anon_sym_in] = ACTIONS(6057), - [anon_sym_where] = ACTIONS(6057), - [anon_sym_QMARK] = ACTIONS(6059), - [anon_sym_BANG] = ACTIONS(6059), - [anon_sym_PLUS_PLUS] = ACTIONS(6057), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_PLUS] = ACTIONS(6059), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_STAR] = ACTIONS(6057), - [anon_sym_SLASH] = ACTIONS(6059), - [anon_sym_PERCENT] = ACTIONS(6057), - [anon_sym_CARET] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6059), - [anon_sym_AMP] = ACTIONS(6059), - [anon_sym_LT_LT] = ACTIONS(6057), - [anon_sym_GT_GT] = ACTIONS(6059), - [anon_sym_GT_GT_GT] = ACTIONS(6057), - [anon_sym_EQ_EQ] = ACTIONS(6057), - [anon_sym_BANG_EQ] = ACTIONS(6057), - [anon_sym_GT_EQ] = ACTIONS(6057), - [anon_sym_LT_EQ] = ACTIONS(6057), - [anon_sym_DOT] = ACTIONS(6059), - [anon_sym_EQ_GT] = ACTIONS(6057), - [anon_sym_switch] = ACTIONS(6057), - [anon_sym_DOT_DOT] = ACTIONS(6057), - [anon_sym_and] = ACTIONS(6057), - [anon_sym_or] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [sym_op_coalescing] = ACTIONS(6057), - [anon_sym_from] = ACTIONS(6057), - [anon_sym_join] = ACTIONS(6057), - [anon_sym_on] = ACTIONS(6057), - [anon_sym_equals] = ACTIONS(6057), - [anon_sym_let] = ACTIONS(6057), - [anon_sym_orderby] = ACTIONS(6057), - [anon_sym_group] = ACTIONS(6057), - [anon_sym_by] = ACTIONS(6057), - [anon_sym_select] = ACTIONS(6057), - [anon_sym_as] = ACTIONS(6057), - [anon_sym_is] = ACTIONS(6057), - [anon_sym_DASH_GT] = ACTIONS(6057), - [anon_sym_with] = ACTIONS(6057), - [aux_sym_preproc_if_token3] = ACTIONS(6057), - [aux_sym_preproc_else_token1] = ACTIONS(6057), - [aux_sym_preproc_elif_token1] = ACTIONS(6057), + [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), @@ -577793,27 +572301,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4181] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -577823,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(5422), - [anon_sym_COMMA] = ACTIONS(6463), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(6463), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -577879,62 +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_EQ] = ACTIONS(6465), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_where] = ACTIONS(5752), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_PLUS_EQ] = ACTIONS(6467), - [anon_sym_DASH_EQ] = ACTIONS(6467), - [anon_sym_STAR_EQ] = ACTIONS(6467), - [anon_sym_SLASH_EQ] = ACTIONS(6467), - [anon_sym_PERCENT_EQ] = ACTIONS(6467), - [anon_sym_AMP_EQ] = ACTIONS(6467), - [anon_sym_CARET_EQ] = ACTIONS(6467), - [anon_sym_PIPE_EQ] = ACTIONS(6467), - [anon_sym_LT_LT_EQ] = ACTIONS(6467), - [anon_sym_GT_GT_EQ] = ACTIONS(6467), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6467), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6467), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5752), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_join] = ACTIONS(5752), - [anon_sym_let] = ACTIONS(5752), - [anon_sym_orderby] = ACTIONS(5752), - [anon_sym_group] = ACTIONS(5752), - [anon_sym_select] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -577947,27 +572445,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4183] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4183), [sym_preproc_endregion] = STATE(4183), [sym_preproc_line] = STATE(4183), @@ -577977,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(5422), - [anon_sym_COMMA] = ACTIONS(6101), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6469), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -578024,27 +572517,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4184] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), [sym_preproc_region] = STATE(4184), [sym_preproc_endregion] = STATE(4184), [sym_preproc_line] = STATE(4184), @@ -578054,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6471), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6475), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_by] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(6477), - [anon_sym_is] = ACTIONS(6479), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -578101,27 +572589,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4185] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), [sym_preproc_region] = STATE(4185), [sym_preproc_endregion] = STATE(4185), [sym_preproc_line] = STATE(4185), @@ -578131,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6471), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6475), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_by] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(6477), - [anon_sym_is] = ACTIONS(6479), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -578178,27 +572661,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4186] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), [sym_preproc_region] = STATE(4186), [sym_preproc_endregion] = STATE(4186), [sym_preproc_line] = STATE(4186), @@ -578208,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6471), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6475), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_by] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(6477), - [anon_sym_is] = ACTIONS(6479), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -578255,27 +572733,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4187] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), [sym_preproc_region] = STATE(4187), [sym_preproc_endregion] = STATE(4187), [sym_preproc_line] = STATE(4187), @@ -578285,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -578332,27 +572805,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4188] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), [sym_preproc_region] = STATE(4188), [sym_preproc_endregion] = STATE(4188), [sym_preproc_line] = STATE(4188), @@ -578362,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -578409,27 +572877,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4189] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), + [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), @@ -578439,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -578486,27 +572949,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4190] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), [sym_preproc_region] = STATE(4190), [sym_preproc_endregion] = STATE(4190), [sym_preproc_line] = STATE(4190), @@ -578516,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6477), - [anon_sym_is] = ACTIONS(6479), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -578563,27 +573021,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4191] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), + [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), @@ -578593,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6477), - [anon_sym_is] = ACTIONS(6479), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -578638,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(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), + [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), @@ -578670,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6477), - [anon_sym_is] = ACTIONS(6479), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -578717,27 +573165,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4193] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), [sym_preproc_region] = STATE(4193), [sym_preproc_endregion] = STATE(4193), [sym_preproc_line] = STATE(4193), @@ -578747,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6477), - [anon_sym_is] = ACTIONS(6479), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -578794,27 +573237,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4194] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), + [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), @@ -578824,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6477), - [anon_sym_is] = ACTIONS(6479), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -578871,27 +573309,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4195] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), [sym_preproc_region] = STATE(4195), [sym_preproc_endregion] = STATE(4195), [sym_preproc_line] = STATE(4195), @@ -578901,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6477), - [anon_sym_is] = ACTIONS(6479), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -578948,27 +573381,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4196] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), [sym_preproc_region] = STATE(4196), [sym_preproc_endregion] = STATE(4196), [sym_preproc_line] = STATE(4196), @@ -578978,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_by] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -579025,27 +573453,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4197] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), [sym_preproc_region] = STATE(4197), [sym_preproc_endregion] = STATE(4197), [sym_preproc_line] = STATE(4197), @@ -579055,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -579102,27 +573525,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4198] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), + [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), @@ -579132,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6475), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6477), - [anon_sym_is] = ACTIONS(6479), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -579179,27 +573597,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4199] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), [sym_preproc_region] = STATE(4199), [sym_preproc_endregion] = STATE(4199), [sym_preproc_line] = STATE(4199), @@ -579209,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_SEMI] = ACTIONS(6429), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6429), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6063), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6065), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -579256,27 +573669,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4200] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), [sym_preproc_region] = STATE(4200), [sym_preproc_endregion] = STATE(4200), [sym_preproc_line] = STATE(4200), @@ -579286,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_by] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -579333,27 +573741,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4201] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -579363,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_SEMI] = ACTIONS(6439), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6439), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6063), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6065), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -579410,27 +573813,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4202] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -579440,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6405), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4772), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6409), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6411), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -579487,27 +573885,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4203] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), [sym_preproc_region] = STATE(4203), [sym_preproc_endregion] = STATE(4203), [sym_preproc_line] = STATE(4203), @@ -579517,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6405), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4764), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6409), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6411), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -579564,27 +573957,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4204] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -579594,41 +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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6405), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4742), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6409), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6411), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -579641,27 +574029,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4205] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -579671,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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6411), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -579718,27 +574101,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4206] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -579748,41 +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), - [anon_sym_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6411), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -579795,27 +574173,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4207] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -579825,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6411), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -579872,27 +574245,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4208] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -579902,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6411), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -579949,27 +574317,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4209] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -579979,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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6411), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -580026,27 +574389,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4210] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -580056,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6411), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -580103,27 +574461,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4211] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), + [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), @@ -580133,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [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(4932), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [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(4936), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -580180,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), @@ -580189,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(4815), - [anon_sym_LBRACK] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_RBRACK] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [anon_sym_RBRACE] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_in] = ACTIONS(4815), - [anon_sym_where] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PLUS_PLUS] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_CARET] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_LT_LT] = ACTIONS(4815), - [anon_sym_GT_GT] = ACTIONS(4817), - [anon_sym_GT_GT_GT] = ACTIONS(4815), - [anon_sym_EQ_EQ] = ACTIONS(4815), - [anon_sym_BANG_EQ] = ACTIONS(4815), - [anon_sym_GT_EQ] = ACTIONS(4815), - [anon_sym_LT_EQ] = ACTIONS(4815), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_EQ_GT] = ACTIONS(4815), - [anon_sym_switch] = ACTIONS(4815), - [anon_sym_DOT_DOT] = ACTIONS(4815), - [anon_sym_and] = ACTIONS(4815), - [anon_sym_or] = ACTIONS(4817), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [sym_op_coalescing] = ACTIONS(4815), - [anon_sym_from] = ACTIONS(4815), - [anon_sym_join] = ACTIONS(4815), - [anon_sym_on] = ACTIONS(4815), - [anon_sym_equals] = ACTIONS(4815), - [anon_sym_let] = ACTIONS(4815), - [anon_sym_orderby] = ACTIONS(4815), - [anon_sym_group] = ACTIONS(4815), - [anon_sym_by] = ACTIONS(4815), - [anon_sym_select] = ACTIONS(4815), - [anon_sym_as] = ACTIONS(4815), - [anon_sym_is] = ACTIONS(4815), - [anon_sym_DASH_GT] = ACTIONS(4815), - [anon_sym_with] = ACTIONS(4815), - [aux_sym_preproc_if_token3] = ACTIONS(4815), - [aux_sym_preproc_else_token1] = ACTIONS(4815), - [aux_sym_preproc_elif_token1] = ACTIONS(4815), + [anon_sym_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), @@ -580257,27 +574605,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4213] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -580287,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6409), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6411), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -580334,27 +574677,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4214] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -580364,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6405), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4798), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6409), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6411), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -580420,62 +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_SEMI] = ACTIONS(6207), - [anon_sym_LBRACK] = ACTIONS(6207), - [anon_sym_COLON] = ACTIONS(6207), - [anon_sym_COMMA] = ACTIONS(6207), - [anon_sym_RBRACK] = ACTIONS(6207), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_RPAREN] = ACTIONS(6207), - [anon_sym_RBRACE] = ACTIONS(6207), - [anon_sym_LT] = ACTIONS(6209), - [anon_sym_GT] = ACTIONS(6209), - [anon_sym_in] = ACTIONS(6207), - [anon_sym_where] = ACTIONS(6207), - [anon_sym_QMARK] = ACTIONS(6209), - [anon_sym_BANG] = ACTIONS(6209), - [anon_sym_PLUS_PLUS] = ACTIONS(6207), - [anon_sym_DASH_DASH] = ACTIONS(6207), - [anon_sym_PLUS] = ACTIONS(6209), - [anon_sym_DASH] = ACTIONS(6209), - [anon_sym_STAR] = ACTIONS(6207), - [anon_sym_SLASH] = ACTIONS(6209), - [anon_sym_PERCENT] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6207), - [anon_sym_PIPE] = ACTIONS(6209), - [anon_sym_AMP] = ACTIONS(6209), - [anon_sym_LT_LT] = ACTIONS(6207), - [anon_sym_GT_GT] = ACTIONS(6209), - [anon_sym_GT_GT_GT] = ACTIONS(6207), - [anon_sym_EQ_EQ] = ACTIONS(6207), - [anon_sym_BANG_EQ] = ACTIONS(6207), - [anon_sym_GT_EQ] = ACTIONS(6207), - [anon_sym_LT_EQ] = ACTIONS(6207), - [anon_sym_DOT] = ACTIONS(6209), - [anon_sym_EQ_GT] = ACTIONS(6207), - [anon_sym_switch] = ACTIONS(6207), - [anon_sym_DOT_DOT] = ACTIONS(6207), - [anon_sym_and] = ACTIONS(6207), - [anon_sym_or] = ACTIONS(6209), - [anon_sym_AMP_AMP] = ACTIONS(6207), - [anon_sym_PIPE_PIPE] = ACTIONS(6207), - [sym_op_coalescing] = ACTIONS(6207), - [anon_sym_from] = ACTIONS(6207), - [anon_sym_join] = ACTIONS(6207), - [anon_sym_on] = ACTIONS(6207), - [anon_sym_equals] = ACTIONS(6207), - [anon_sym_let] = ACTIONS(6207), - [anon_sym_orderby] = ACTIONS(6207), - [anon_sym_group] = ACTIONS(6207), - [anon_sym_by] = ACTIONS(6207), - [anon_sym_select] = ACTIONS(6207), - [anon_sym_as] = ACTIONS(6207), - [anon_sym_is] = ACTIONS(6207), - [anon_sym_DASH_GT] = ACTIONS(6207), - [anon_sym_with] = ACTIONS(6207), - [aux_sym_preproc_if_token3] = ACTIONS(6207), - [aux_sym_preproc_else_token1] = ACTIONS(6207), - [aux_sym_preproc_elif_token1] = ACTIONS(6207), + [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), @@ -580488,6 +574821,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4216] = { + [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), @@ -580497,62 +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_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_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), @@ -580565,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), @@ -580574,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(6213), - [anon_sym_LBRACK] = ACTIONS(6213), - [anon_sym_COLON] = ACTIONS(6213), - [anon_sym_COMMA] = ACTIONS(6213), - [anon_sym_RBRACK] = ACTIONS(6213), - [anon_sym_LPAREN] = ACTIONS(6213), - [anon_sym_RPAREN] = ACTIONS(6213), - [anon_sym_RBRACE] = ACTIONS(6213), - [anon_sym_LT] = ACTIONS(6215), - [anon_sym_GT] = ACTIONS(6215), - [anon_sym_in] = ACTIONS(6213), - [anon_sym_where] = ACTIONS(6213), - [anon_sym_QMARK] = ACTIONS(6215), - [anon_sym_BANG] = ACTIONS(6215), - [anon_sym_PLUS_PLUS] = ACTIONS(6213), - [anon_sym_DASH_DASH] = ACTIONS(6213), - [anon_sym_PLUS] = ACTIONS(6215), - [anon_sym_DASH] = ACTIONS(6215), - [anon_sym_STAR] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6215), - [anon_sym_PERCENT] = ACTIONS(6213), - [anon_sym_CARET] = ACTIONS(6213), - [anon_sym_PIPE] = ACTIONS(6215), - [anon_sym_AMP] = ACTIONS(6215), - [anon_sym_LT_LT] = ACTIONS(6213), - [anon_sym_GT_GT] = ACTIONS(6215), - [anon_sym_GT_GT_GT] = ACTIONS(6213), - [anon_sym_EQ_EQ] = ACTIONS(6213), - [anon_sym_BANG_EQ] = ACTIONS(6213), - [anon_sym_GT_EQ] = ACTIONS(6213), - [anon_sym_LT_EQ] = ACTIONS(6213), - [anon_sym_DOT] = ACTIONS(6215), - [anon_sym_EQ_GT] = ACTIONS(6213), - [anon_sym_switch] = ACTIONS(6213), - [anon_sym_DOT_DOT] = ACTIONS(6213), - [anon_sym_and] = ACTIONS(6213), - [anon_sym_or] = ACTIONS(6215), - [anon_sym_AMP_AMP] = ACTIONS(6213), - [anon_sym_PIPE_PIPE] = ACTIONS(6213), - [sym_op_coalescing] = ACTIONS(6213), - [anon_sym_from] = ACTIONS(6213), - [anon_sym_join] = ACTIONS(6213), - [anon_sym_on] = ACTIONS(6213), - [anon_sym_equals] = ACTIONS(6213), - [anon_sym_let] = ACTIONS(6213), - [anon_sym_orderby] = ACTIONS(6213), - [anon_sym_group] = ACTIONS(6213), - [anon_sym_by] = ACTIONS(6213), - [anon_sym_select] = ACTIONS(6213), - [anon_sym_as] = ACTIONS(6213), - [anon_sym_is] = ACTIONS(6213), - [anon_sym_DASH_GT] = ACTIONS(6213), - [anon_sym_with] = ACTIONS(6213), - [aux_sym_preproc_if_token3] = ACTIONS(6213), - [aux_sym_preproc_else_token1] = ACTIONS(6213), - [aux_sym_preproc_elif_token1] = ACTIONS(6213), + [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), @@ -580642,6 +574965,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4218] = { + [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), @@ -580651,62 +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_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_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), @@ -580719,27 +575037,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4219] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(4219), [sym_preproc_endregion] = STATE(4219), [sym_preproc_line] = STATE(4219), @@ -580749,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(5422), - [anon_sym_COLON] = ACTIONS(5948), - [anon_sym_COMMA] = ACTIONS(6101), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5825), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5827), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5678), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(5833), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -580796,27 +575109,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4220] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4220), [sym_preproc_endregion] = STATE(4220), [sym_preproc_line] = STATE(4220), @@ -580826,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(5422), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(6481), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -580873,27 +575181,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4221] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), [sym_preproc_region] = STATE(4221), [sym_preproc_endregion] = STATE(4221), [sym_preproc_line] = STATE(4221), @@ -580903,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6471), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6475), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_by] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(6477), - [anon_sym_is] = ACTIONS(6479), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -580950,27 +575253,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4222] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), [sym_preproc_region] = STATE(4222), [sym_preproc_endregion] = STATE(4222), [sym_preproc_line] = STATE(4222), @@ -580980,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6471), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6475), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_by] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(6477), - [anon_sym_is] = ACTIONS(6479), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -581027,27 +575325,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4223] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), [sym_preproc_region] = STATE(4223), [sym_preproc_endregion] = STATE(4223), [sym_preproc_line] = STATE(4223), @@ -581057,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6471), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6475), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_by] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(6477), - [anon_sym_is] = ACTIONS(6479), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -581113,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(6221), - [anon_sym_LBRACK] = ACTIONS(6221), - [anon_sym_COLON] = ACTIONS(6221), - [anon_sym_COMMA] = ACTIONS(6221), - [anon_sym_RBRACK] = ACTIONS(6221), - [anon_sym_LPAREN] = ACTIONS(6221), - [anon_sym_RPAREN] = ACTIONS(6221), - [anon_sym_RBRACE] = ACTIONS(6221), - [anon_sym_LT] = ACTIONS(6223), - [anon_sym_GT] = ACTIONS(6223), - [anon_sym_in] = ACTIONS(6221), - [anon_sym_where] = ACTIONS(6221), - [anon_sym_QMARK] = ACTIONS(6223), - [anon_sym_BANG] = ACTIONS(6223), - [anon_sym_PLUS_PLUS] = ACTIONS(6221), - [anon_sym_DASH_DASH] = ACTIONS(6221), - [anon_sym_PLUS] = ACTIONS(6223), - [anon_sym_DASH] = ACTIONS(6223), - [anon_sym_STAR] = ACTIONS(6221), - [anon_sym_SLASH] = ACTIONS(6223), - [anon_sym_PERCENT] = ACTIONS(6221), - [anon_sym_CARET] = ACTIONS(6221), - [anon_sym_PIPE] = ACTIONS(6223), - [anon_sym_AMP] = ACTIONS(6223), - [anon_sym_LT_LT] = ACTIONS(6221), - [anon_sym_GT_GT] = ACTIONS(6223), - [anon_sym_GT_GT_GT] = ACTIONS(6221), - [anon_sym_EQ_EQ] = ACTIONS(6221), - [anon_sym_BANG_EQ] = ACTIONS(6221), - [anon_sym_GT_EQ] = ACTIONS(6221), - [anon_sym_LT_EQ] = ACTIONS(6221), - [anon_sym_DOT] = ACTIONS(6223), - [anon_sym_EQ_GT] = ACTIONS(6221), - [anon_sym_switch] = ACTIONS(6221), - [anon_sym_DOT_DOT] = ACTIONS(6221), - [anon_sym_and] = ACTIONS(6221), - [anon_sym_or] = ACTIONS(6223), - [anon_sym_AMP_AMP] = ACTIONS(6221), - [anon_sym_PIPE_PIPE] = ACTIONS(6221), - [sym_op_coalescing] = ACTIONS(6221), - [anon_sym_from] = ACTIONS(6221), - [anon_sym_join] = ACTIONS(6221), - [anon_sym_on] = ACTIONS(6221), - [anon_sym_equals] = ACTIONS(6221), - [anon_sym_let] = ACTIONS(6221), - [anon_sym_orderby] = ACTIONS(6221), - [anon_sym_group] = ACTIONS(6221), - [anon_sym_by] = ACTIONS(6221), - [anon_sym_select] = ACTIONS(6221), - [anon_sym_as] = ACTIONS(6221), - [anon_sym_is] = ACTIONS(6221), - [anon_sym_DASH_GT] = ACTIONS(6221), - [anon_sym_with] = ACTIONS(6221), - [aux_sym_preproc_if_token3] = ACTIONS(6221), - [aux_sym_preproc_else_token1] = ACTIONS(6221), - [aux_sym_preproc_elif_token1] = ACTIONS(6221), + [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), @@ -581181,27 +575469,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4225] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), [sym_preproc_region] = STATE(4225), [sym_preproc_endregion] = STATE(4225), [sym_preproc_line] = STATE(4225), @@ -581211,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_in] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -581258,27 +575541,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4226] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4226), [sym_preproc_endregion] = STATE(4226), [sym_preproc_line] = STATE(4226), @@ -581288,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6483), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6485), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_equals] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(6487), - [anon_sym_is] = ACTIONS(6489), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -581335,27 +575613,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4227] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), [sym_preproc_region] = STATE(4227), [sym_preproc_endregion] = STATE(4227), [sym_preproc_line] = STATE(4227), @@ -581365,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_by] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -581412,27 +575685,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4228] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), [sym_preproc_region] = STATE(4228), [sym_preproc_endregion] = STATE(4228), [sym_preproc_line] = STATE(4228), @@ -581442,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6471), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6473), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6475), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_by] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(6477), - [anon_sym_is] = ACTIONS(6479), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -581498,62 +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_SEMI] = ACTIONS(6225), - [anon_sym_LBRACK] = ACTIONS(6225), - [anon_sym_COLON] = ACTIONS(6225), - [anon_sym_COMMA] = ACTIONS(6225), - [anon_sym_RBRACK] = ACTIONS(6225), - [anon_sym_LPAREN] = ACTIONS(6225), - [anon_sym_RPAREN] = ACTIONS(6225), - [anon_sym_RBRACE] = ACTIONS(6225), - [anon_sym_LT] = ACTIONS(6227), - [anon_sym_GT] = ACTIONS(6227), - [anon_sym_in] = ACTIONS(6225), - [anon_sym_where] = ACTIONS(6225), - [anon_sym_QMARK] = ACTIONS(6227), - [anon_sym_BANG] = ACTIONS(6227), - [anon_sym_PLUS_PLUS] = ACTIONS(6225), - [anon_sym_DASH_DASH] = ACTIONS(6225), - [anon_sym_PLUS] = ACTIONS(6227), - [anon_sym_DASH] = ACTIONS(6227), - [anon_sym_STAR] = ACTIONS(6225), - [anon_sym_SLASH] = ACTIONS(6227), - [anon_sym_PERCENT] = ACTIONS(6225), - [anon_sym_CARET] = ACTIONS(6225), - [anon_sym_PIPE] = ACTIONS(6227), - [anon_sym_AMP] = ACTIONS(6227), - [anon_sym_LT_LT] = ACTIONS(6225), - [anon_sym_GT_GT] = ACTIONS(6227), - [anon_sym_GT_GT_GT] = ACTIONS(6225), - [anon_sym_EQ_EQ] = ACTIONS(6225), - [anon_sym_BANG_EQ] = ACTIONS(6225), - [anon_sym_GT_EQ] = ACTIONS(6225), - [anon_sym_LT_EQ] = ACTIONS(6225), - [anon_sym_DOT] = ACTIONS(6227), - [anon_sym_EQ_GT] = ACTIONS(6225), - [anon_sym_switch] = ACTIONS(6225), - [anon_sym_DOT_DOT] = ACTIONS(6225), - [anon_sym_and] = ACTIONS(6225), - [anon_sym_or] = ACTIONS(6227), - [anon_sym_AMP_AMP] = ACTIONS(6225), - [anon_sym_PIPE_PIPE] = ACTIONS(6225), - [sym_op_coalescing] = ACTIONS(6225), - [anon_sym_from] = ACTIONS(6225), - [anon_sym_join] = ACTIONS(6225), - [anon_sym_on] = ACTIONS(6225), - [anon_sym_equals] = ACTIONS(6225), - [anon_sym_let] = ACTIONS(6225), - [anon_sym_orderby] = ACTIONS(6225), - [anon_sym_group] = ACTIONS(6225), - [anon_sym_by] = ACTIONS(6225), - [anon_sym_select] = ACTIONS(6225), - [anon_sym_as] = ACTIONS(6225), - [anon_sym_is] = ACTIONS(6225), - [anon_sym_DASH_GT] = ACTIONS(6225), - [anon_sym_with] = ACTIONS(6225), - [aux_sym_preproc_if_token3] = ACTIONS(6225), - [aux_sym_preproc_else_token1] = ACTIONS(6225), - [aux_sym_preproc_elif_token1] = ACTIONS(6225), + [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), @@ -581566,27 +575829,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4230] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), [sym_preproc_region] = STATE(4230), [sym_preproc_endregion] = STATE(4230), [sym_preproc_line] = STATE(4230), @@ -581596,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -581643,27 +575901,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4231] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), [sym_preproc_region] = STATE(4231), [sym_preproc_endregion] = STATE(4231), [sym_preproc_line] = STATE(4231), @@ -581673,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -581720,27 +575973,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4232] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), [sym_preproc_region] = STATE(4232), [sym_preproc_endregion] = STATE(4232), [sym_preproc_line] = STATE(4232), @@ -581750,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -581797,27 +576045,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4233] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), [sym_preproc_region] = STATE(4233), [sym_preproc_endregion] = STATE(4233), [sym_preproc_line] = STATE(4233), @@ -581827,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6437), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -581874,27 +576117,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4234] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), [sym_preproc_region] = STATE(4234), [sym_preproc_endregion] = STATE(4234), [sym_preproc_line] = STATE(4234), @@ -581904,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6437), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -581951,27 +576189,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4235] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), + [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), @@ -581981,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6437), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -582028,27 +576261,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4236] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), + [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), @@ -582058,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6437), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -582103,29 +576330,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(5336), }, [4237] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), [sym_preproc_region] = STATE(4237), [sym_preproc_endregion] = STATE(4237), [sym_preproc_line] = STATE(4237), @@ -582135,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6437), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -582182,27 +576405,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4238] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), + [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), @@ -582212,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6437), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -582259,27 +576477,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4239] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), + [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), @@ -582289,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -582336,27 +576549,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4240] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), [sym_preproc_region] = STATE(4240), [sym_preproc_endregion] = STATE(4240), [sym_preproc_line] = STATE(4240), @@ -582366,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6435), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6437), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -582413,27 +576621,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4241] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -582443,41 +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), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6491), - [anon_sym_RBRACK] = ACTIONS(6491), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -582490,27 +576693,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4242] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), + [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), @@ -582520,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4774), - [anon_sym_QMARK] = ACTIONS(6431), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6435), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6437), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -582576,62 +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_SEMI] = ACTIONS(6229), - [anon_sym_LBRACK] = ACTIONS(6229), - [anon_sym_COLON] = ACTIONS(6229), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_RBRACK] = ACTIONS(6229), - [anon_sym_LPAREN] = ACTIONS(6229), - [anon_sym_RPAREN] = ACTIONS(6229), - [anon_sym_RBRACE] = ACTIONS(6229), - [anon_sym_LT] = ACTIONS(6231), - [anon_sym_GT] = ACTIONS(6231), - [anon_sym_in] = ACTIONS(6229), - [anon_sym_where] = ACTIONS(6229), - [anon_sym_QMARK] = ACTIONS(6231), - [anon_sym_BANG] = ACTIONS(6231), - [anon_sym_PLUS_PLUS] = ACTIONS(6229), - [anon_sym_DASH_DASH] = ACTIONS(6229), - [anon_sym_PLUS] = ACTIONS(6231), - [anon_sym_DASH] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(6229), - [anon_sym_SLASH] = ACTIONS(6231), - [anon_sym_PERCENT] = ACTIONS(6229), - [anon_sym_CARET] = ACTIONS(6229), - [anon_sym_PIPE] = ACTIONS(6231), - [anon_sym_AMP] = ACTIONS(6231), - [anon_sym_LT_LT] = ACTIONS(6229), - [anon_sym_GT_GT] = ACTIONS(6231), - [anon_sym_GT_GT_GT] = ACTIONS(6229), - [anon_sym_EQ_EQ] = ACTIONS(6229), - [anon_sym_BANG_EQ] = ACTIONS(6229), - [anon_sym_GT_EQ] = ACTIONS(6229), - [anon_sym_LT_EQ] = ACTIONS(6229), - [anon_sym_DOT] = ACTIONS(6231), - [anon_sym_EQ_GT] = ACTIONS(6229), - [anon_sym_switch] = ACTIONS(6229), - [anon_sym_DOT_DOT] = ACTIONS(6229), - [anon_sym_and] = ACTIONS(6229), - [anon_sym_or] = ACTIONS(6231), - [anon_sym_AMP_AMP] = ACTIONS(6229), - [anon_sym_PIPE_PIPE] = ACTIONS(6229), - [sym_op_coalescing] = ACTIONS(6229), - [anon_sym_from] = ACTIONS(6229), - [anon_sym_join] = ACTIONS(6229), - [anon_sym_on] = ACTIONS(6229), - [anon_sym_equals] = ACTIONS(6229), - [anon_sym_let] = ACTIONS(6229), - [anon_sym_orderby] = ACTIONS(6229), - [anon_sym_group] = ACTIONS(6229), - [anon_sym_by] = ACTIONS(6229), - [anon_sym_select] = ACTIONS(6229), - [anon_sym_as] = ACTIONS(6229), - [anon_sym_is] = ACTIONS(6229), - [anon_sym_DASH_GT] = ACTIONS(6229), - [anon_sym_with] = ACTIONS(6229), - [aux_sym_preproc_if_token3] = ACTIONS(6229), - [aux_sym_preproc_else_token1] = ACTIONS(6229), - [aux_sym_preproc_elif_token1] = ACTIONS(6229), + [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), @@ -582644,27 +576837,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4244] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), + [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), @@ -582674,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4766), - [anon_sym_QMARK] = ACTIONS(6431), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6435), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6437), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -582721,27 +576909,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4245] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), + [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), @@ -582751,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4748), - [anon_sym_QMARK] = ACTIONS(6431), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6435), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6437), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -582798,27 +576981,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4246] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), [sym_preproc_region] = STATE(4246), [sym_preproc_endregion] = STATE(4246), [sym_preproc_line] = STATE(4246), @@ -582828,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_in] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -582875,27 +577053,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4247] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), + [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), @@ -582905,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4800), - [anon_sym_QMARK] = ACTIONS(6431), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6435), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6437), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -582952,6 +577125,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4248] = { + [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), @@ -582961,62 +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_SEMI] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6233), - [anon_sym_COLON] = ACTIONS(6233), - [anon_sym_COMMA] = ACTIONS(6233), - [anon_sym_RBRACK] = ACTIONS(6233), - [anon_sym_LPAREN] = ACTIONS(6233), - [anon_sym_RPAREN] = ACTIONS(6233), - [anon_sym_RBRACE] = ACTIONS(6233), - [anon_sym_LT] = ACTIONS(6235), - [anon_sym_GT] = ACTIONS(6235), - [anon_sym_in] = ACTIONS(6233), - [anon_sym_where] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6235), - [anon_sym_BANG] = ACTIONS(6235), - [anon_sym_PLUS_PLUS] = ACTIONS(6233), - [anon_sym_DASH_DASH] = ACTIONS(6233), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6233), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6233), - [anon_sym_CARET] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_AMP] = ACTIONS(6235), - [anon_sym_LT_LT] = ACTIONS(6233), - [anon_sym_GT_GT] = ACTIONS(6235), - [anon_sym_GT_GT_GT] = ACTIONS(6233), - [anon_sym_EQ_EQ] = ACTIONS(6233), - [anon_sym_BANG_EQ] = ACTIONS(6233), - [anon_sym_GT_EQ] = ACTIONS(6233), - [anon_sym_LT_EQ] = ACTIONS(6233), - [anon_sym_DOT] = ACTIONS(6235), - [anon_sym_EQ_GT] = ACTIONS(6233), - [anon_sym_switch] = ACTIONS(6233), - [anon_sym_DOT_DOT] = ACTIONS(6233), - [anon_sym_and] = ACTIONS(6233), - [anon_sym_or] = ACTIONS(6235), - [anon_sym_AMP_AMP] = ACTIONS(6233), - [anon_sym_PIPE_PIPE] = ACTIONS(6233), - [sym_op_coalescing] = ACTIONS(6233), - [anon_sym_from] = ACTIONS(6233), - [anon_sym_join] = ACTIONS(6233), - [anon_sym_on] = ACTIONS(6233), - [anon_sym_equals] = ACTIONS(6233), - [anon_sym_let] = ACTIONS(6233), - [anon_sym_orderby] = ACTIONS(6233), - [anon_sym_group] = ACTIONS(6233), - [anon_sym_by] = ACTIONS(6233), - [anon_sym_select] = ACTIONS(6233), - [anon_sym_as] = ACTIONS(6233), - [anon_sym_is] = ACTIONS(6233), - [anon_sym_DASH_GT] = ACTIONS(6233), - [anon_sym_with] = ACTIONS(6233), - [aux_sym_preproc_if_token3] = ACTIONS(6233), - [aux_sym_preproc_else_token1] = ACTIONS(6233), - [aux_sym_preproc_elif_token1] = ACTIONS(6233), + [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), @@ -583029,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), @@ -583038,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(6241), - [anon_sym_LBRACK] = ACTIONS(6241), - [anon_sym_COLON] = ACTIONS(6241), - [anon_sym_COMMA] = ACTIONS(6241), - [anon_sym_RBRACK] = ACTIONS(6241), - [anon_sym_LPAREN] = ACTIONS(6241), - [anon_sym_RPAREN] = ACTIONS(6241), - [anon_sym_RBRACE] = ACTIONS(6241), - [anon_sym_LT] = ACTIONS(6243), - [anon_sym_GT] = ACTIONS(6243), - [anon_sym_in] = ACTIONS(6241), - [anon_sym_where] = ACTIONS(6241), - [anon_sym_QMARK] = ACTIONS(6243), - [anon_sym_BANG] = ACTIONS(6243), - [anon_sym_PLUS_PLUS] = ACTIONS(6241), - [anon_sym_DASH_DASH] = ACTIONS(6241), - [anon_sym_PLUS] = ACTIONS(6243), - [anon_sym_DASH] = ACTIONS(6243), - [anon_sym_STAR] = ACTIONS(6241), - [anon_sym_SLASH] = ACTIONS(6243), - [anon_sym_PERCENT] = ACTIONS(6241), - [anon_sym_CARET] = ACTIONS(6241), - [anon_sym_PIPE] = ACTIONS(6243), - [anon_sym_AMP] = ACTIONS(6243), - [anon_sym_LT_LT] = ACTIONS(6241), - [anon_sym_GT_GT] = ACTIONS(6243), - [anon_sym_GT_GT_GT] = ACTIONS(6241), - [anon_sym_EQ_EQ] = ACTIONS(6241), - [anon_sym_BANG_EQ] = ACTIONS(6241), - [anon_sym_GT_EQ] = ACTIONS(6241), - [anon_sym_LT_EQ] = ACTIONS(6241), - [anon_sym_DOT] = ACTIONS(6243), - [anon_sym_EQ_GT] = ACTIONS(6241), - [anon_sym_switch] = ACTIONS(6241), - [anon_sym_DOT_DOT] = ACTIONS(6241), - [anon_sym_and] = ACTIONS(6241), - [anon_sym_or] = ACTIONS(6243), - [anon_sym_AMP_AMP] = ACTIONS(6241), - [anon_sym_PIPE_PIPE] = ACTIONS(6241), - [sym_op_coalescing] = ACTIONS(6241), - [anon_sym_from] = ACTIONS(6241), - [anon_sym_join] = ACTIONS(6241), - [anon_sym_on] = ACTIONS(6241), - [anon_sym_equals] = ACTIONS(6241), - [anon_sym_let] = ACTIONS(6241), - [anon_sym_orderby] = ACTIONS(6241), - [anon_sym_group] = ACTIONS(6241), - [anon_sym_by] = ACTIONS(6241), - [anon_sym_select] = ACTIONS(6241), - [anon_sym_as] = ACTIONS(6241), - [anon_sym_is] = ACTIONS(6241), - [anon_sym_DASH_GT] = ACTIONS(6241), - [anon_sym_with] = ACTIONS(6241), - [aux_sym_preproc_if_token3] = ACTIONS(6241), - [aux_sym_preproc_else_token1] = ACTIONS(6241), - [aux_sym_preproc_elif_token1] = ACTIONS(6241), + [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), @@ -583106,27 +577269,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4250] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -583136,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(5422), - [anon_sym_COMMA] = ACTIONS(6493), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(6493), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -583183,27 +577341,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4251] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [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(4251), [sym_preproc_endregion] = STATE(4251), [sym_preproc_line] = STATE(4251), @@ -583213,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6483), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6485), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_equals] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(6487), - [anon_sym_is] = ACTIONS(6489), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -583258,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), @@ -583269,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(6159), - [anon_sym_LBRACK] = ACTIONS(6159), - [anon_sym_COLON] = ACTIONS(6159), - [anon_sym_COMMA] = ACTIONS(6159), - [anon_sym_RBRACK] = ACTIONS(6159), - [anon_sym_LPAREN] = ACTIONS(6159), - [anon_sym_RPAREN] = ACTIONS(6159), - [anon_sym_RBRACE] = ACTIONS(6159), - [anon_sym_LT] = ACTIONS(6161), - [anon_sym_GT] = ACTIONS(6161), - [anon_sym_in] = ACTIONS(6159), - [anon_sym_where] = ACTIONS(6159), - [anon_sym_QMARK] = ACTIONS(6161), - [anon_sym_BANG] = ACTIONS(6161), - [anon_sym_PLUS_PLUS] = ACTIONS(6159), - [anon_sym_DASH_DASH] = ACTIONS(6159), - [anon_sym_PLUS] = ACTIONS(6161), - [anon_sym_DASH] = ACTIONS(6161), - [anon_sym_STAR] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6161), - [anon_sym_PERCENT] = ACTIONS(6159), - [anon_sym_CARET] = ACTIONS(6159), - [anon_sym_PIPE] = ACTIONS(6161), - [anon_sym_AMP] = ACTIONS(6161), - [anon_sym_LT_LT] = ACTIONS(6159), - [anon_sym_GT_GT] = ACTIONS(6161), - [anon_sym_GT_GT_GT] = ACTIONS(6159), - [anon_sym_EQ_EQ] = ACTIONS(6159), - [anon_sym_BANG_EQ] = ACTIONS(6159), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(6161), - [anon_sym_EQ_GT] = ACTIONS(6159), - [anon_sym_switch] = ACTIONS(6159), - [anon_sym_DOT_DOT] = ACTIONS(6159), - [anon_sym_and] = ACTIONS(6159), - [anon_sym_or] = ACTIONS(6161), - [anon_sym_AMP_AMP] = ACTIONS(6159), - [anon_sym_PIPE_PIPE] = ACTIONS(6159), - [sym_op_coalescing] = ACTIONS(6159), - [anon_sym_from] = ACTIONS(6159), - [anon_sym_join] = ACTIONS(6159), - [anon_sym_on] = ACTIONS(6159), - [anon_sym_equals] = ACTIONS(6159), - [anon_sym_let] = ACTIONS(6159), - [anon_sym_orderby] = ACTIONS(6159), - [anon_sym_group] = ACTIONS(6159), - [anon_sym_by] = ACTIONS(6159), - [anon_sym_select] = ACTIONS(6159), - [anon_sym_as] = ACTIONS(6159), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(6159), - [anon_sym_with] = ACTIONS(6159), - [aux_sym_preproc_if_token3] = ACTIONS(6159), - [aux_sym_preproc_else_token1] = ACTIONS(6159), - [aux_sym_preproc_elif_token1] = ACTIONS(6159), + [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(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), @@ -583337,27 +577485,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4253] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [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(4253), [sym_preproc_endregion] = STATE(4253), [sym_preproc_line] = STATE(4253), @@ -583367,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6483), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6485), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_equals] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(6487), - [anon_sym_is] = ACTIONS(6489), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -583412,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(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [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(4254), [sym_preproc_endregion] = STATE(4254), [sym_preproc_line] = STATE(4254), @@ -583444,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_equals] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -583489,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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -583521,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_SEMI] = ACTIONS(6441), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6441), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6063), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6065), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -583566,8 +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(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), @@ -583577,62 +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_SEMI] = ACTIONS(6285), - [anon_sym_LBRACK] = ACTIONS(6285), - [anon_sym_COLON] = ACTIONS(6285), - [anon_sym_COMMA] = ACTIONS(6285), - [anon_sym_RBRACK] = ACTIONS(6285), - [anon_sym_LPAREN] = ACTIONS(6285), - [anon_sym_RPAREN] = ACTIONS(6285), - [anon_sym_RBRACE] = ACTIONS(6285), - [anon_sym_LT] = ACTIONS(6287), - [anon_sym_GT] = ACTIONS(6287), - [anon_sym_in] = ACTIONS(6285), - [anon_sym_where] = ACTIONS(6285), - [anon_sym_QMARK] = ACTIONS(6287), - [anon_sym_BANG] = ACTIONS(6287), - [anon_sym_PLUS_PLUS] = ACTIONS(6285), - [anon_sym_DASH_DASH] = ACTIONS(6285), - [anon_sym_PLUS] = ACTIONS(6287), - [anon_sym_DASH] = ACTIONS(6287), - [anon_sym_STAR] = ACTIONS(6285), - [anon_sym_SLASH] = ACTIONS(6287), - [anon_sym_PERCENT] = ACTIONS(6285), - [anon_sym_CARET] = ACTIONS(6285), - [anon_sym_PIPE] = ACTIONS(6287), - [anon_sym_AMP] = ACTIONS(6287), - [anon_sym_LT_LT] = ACTIONS(6285), - [anon_sym_GT_GT] = ACTIONS(6287), - [anon_sym_GT_GT_GT] = ACTIONS(6285), - [anon_sym_EQ_EQ] = ACTIONS(6285), - [anon_sym_BANG_EQ] = ACTIONS(6285), - [anon_sym_GT_EQ] = ACTIONS(6285), - [anon_sym_LT_EQ] = ACTIONS(6285), - [anon_sym_DOT] = ACTIONS(6287), - [anon_sym_EQ_GT] = ACTIONS(6285), - [anon_sym_switch] = ACTIONS(6285), - [anon_sym_DOT_DOT] = ACTIONS(6285), - [anon_sym_and] = ACTIONS(6285), - [anon_sym_or] = ACTIONS(6287), - [anon_sym_AMP_AMP] = ACTIONS(6285), - [anon_sym_PIPE_PIPE] = ACTIONS(6285), - [sym_op_coalescing] = ACTIONS(6285), - [anon_sym_from] = ACTIONS(6285), - [anon_sym_join] = ACTIONS(6285), - [anon_sym_on] = ACTIONS(6285), - [anon_sym_equals] = ACTIONS(6285), - [anon_sym_let] = ACTIONS(6285), - [anon_sym_orderby] = ACTIONS(6285), - [anon_sym_group] = ACTIONS(6285), - [anon_sym_by] = ACTIONS(6285), - [anon_sym_select] = ACTIONS(6285), - [anon_sym_as] = ACTIONS(6285), - [anon_sym_is] = ACTIONS(6285), - [anon_sym_DASH_GT] = ACTIONS(6285), - [anon_sym_with] = ACTIONS(6285), - [aux_sym_preproc_if_token3] = ACTIONS(6285), - [aux_sym_preproc_else_token1] = ACTIONS(6285), - [aux_sym_preproc_elif_token1] = ACTIONS(6285), + [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), @@ -583645,27 +577773,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4257] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [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(4257), [sym_preproc_endregion] = STATE(4257), [sym_preproc_line] = STATE(4257), @@ -583675,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_equals] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -583720,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(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [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(4258), [sym_preproc_endregion] = STATE(4258), [sym_preproc_line] = STATE(4258), @@ -583752,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [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(4932), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [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(4936), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -583797,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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4259), [sym_preproc_endregion] = STATE(4259), [sym_preproc_line] = STATE(4259), @@ -583829,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(5422), - [anon_sym_COMMA] = ACTIONS(6087), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RBRACE] = ACTIONS(6087), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -583876,27 +577989,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4260] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4260), [sym_preproc_endregion] = STATE(4260), [sym_preproc_line] = STATE(4260), @@ -583906,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(5422), - [anon_sym_COMMA] = ACTIONS(6495), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6495), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -583953,27 +578061,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4261] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), [sym_preproc_region] = STATE(4261), [sym_preproc_endregion] = STATE(4261), [sym_preproc_line] = STATE(4261), @@ -583983,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6413), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6417), - [anon_sym_into] = ACTIONS(4776), - [anon_sym_on] = ACTIONS(4776), - [anon_sym_as] = ACTIONS(6419), - [anon_sym_is] = ACTIONS(6421), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -584030,27 +578133,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4262] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -584060,41 +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_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6497), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6497), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -584105,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(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), + [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), @@ -584137,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6413), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6417), - [anon_sym_into] = ACTIONS(4756), - [anon_sym_on] = ACTIONS(4756), - [anon_sym_as] = ACTIONS(6419), - [anon_sym_is] = ACTIONS(6421), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -584184,27 +578277,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4264] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [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), @@ -584214,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -584261,27 +578349,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4265] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1329), - [sym_op_lte] = STATE(1329), - [sym_op_eq] = STATE(1328), - [sym_op_neq] = STATE(1328), - [sym_op_gt] = STATE(1329), - [sym_op_gte] = STATE(1329), - [sym_op_and] = STATE(1326), - [sym_op_or] = STATE(1325), - [sym_op_bitwise_and] = STATE(1324), - [sym_op_bitwise_or] = STATE(1323), - [sym_op_bitwise_xor] = STATE(1322), - [sym_op_left_shift] = STATE(1321), - [sym_op_right_shift] = STATE(1321), - [sym_op_unsigned_right_shift] = STATE(1321), - [sym_op_plus] = STATE(1310), - [sym_op_minus] = STATE(1310), - [sym_op_multiply] = STATE(1309), - [sym_op_divide] = STATE(1309), - [sym_op_modulo] = STATE(1309), + [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), @@ -584291,40 +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(5646), - [anon_sym_COLON] = ACTIONS(6499), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5740), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5654), - [anon_sym_DOT_DOT] = ACTIONS(5742), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5744), - [anon_sym_as] = ACTIONS(5694), - [anon_sym_is] = ACTIONS(5746), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5658), + [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), @@ -584335,30 +578419,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(6499), }, [4266] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [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(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), @@ -584368,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -584415,27 +578493,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4267] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), + [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), @@ -584445,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6413), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6417), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_on] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(6419), - [anon_sym_is] = ACTIONS(6421), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -584492,27 +578565,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4268] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4268), [sym_preproc_endregion] = STATE(4268), [sym_preproc_line] = STATE(4268), @@ -584522,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -584569,27 +578637,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4269] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), + [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), @@ -584599,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_on] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -584646,27 +578709,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4270] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), + [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), @@ -584676,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_on] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -584723,27 +578781,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4271] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1763), - [sym_op_lte] = STATE(1763), - [sym_op_eq] = STATE(1760), - [sym_op_neq] = STATE(1760), - [sym_op_gt] = STATE(1763), - [sym_op_gte] = STATE(1763), - [sym_op_and] = STATE(1759), - [sym_op_or] = STATE(1754), - [sym_op_bitwise_and] = STATE(1749), - [sym_op_bitwise_or] = STATE(1747), - [sym_op_bitwise_xor] = STATE(1744), - [sym_op_left_shift] = STATE(1743), - [sym_op_right_shift] = STATE(1743), - [sym_op_unsigned_right_shift] = STATE(1743), - [sym_op_plus] = STATE(1740), - [sym_op_minus] = STATE(1740), - [sym_op_multiply] = STATE(1739), - [sym_op_divide] = STATE(1739), - [sym_op_modulo] = STATE(1739), + [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), @@ -584753,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [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(4932), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6415), - [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(4936), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -584800,27 +578853,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4272] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4272), [sym_preproc_endregion] = STATE(4272), [sym_preproc_line] = STATE(4272), @@ -584830,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6487), - [anon_sym_is] = ACTIONS(6489), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -584877,27 +578925,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4273] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4273), [sym_preproc_endregion] = STATE(4273), [sym_preproc_line] = STATE(4273), @@ -584907,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6487), - [anon_sym_is] = ACTIONS(6489), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -584954,27 +578997,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4274] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4274), [sym_preproc_endregion] = STATE(4274), [sym_preproc_line] = STATE(4274), @@ -584984,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6487), - [anon_sym_is] = ACTIONS(6489), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -585031,27 +579069,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4275] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [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(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), @@ -585061,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6487), - [anon_sym_is] = ACTIONS(6489), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -585108,27 +579141,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4276] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), + [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), @@ -585138,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6487), - [anon_sym_is] = ACTIONS(6489), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -585185,27 +579213,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4277] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4277), [sym_preproc_endregion] = STATE(4277), [sym_preproc_line] = STATE(4277), @@ -585215,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6487), - [anon_sym_is] = ACTIONS(6489), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -585262,27 +579285,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4278] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1113), - [sym_op_lte] = STATE(1113), - [sym_op_eq] = STATE(1112), - [sym_op_neq] = STATE(1112), - [sym_op_gt] = STATE(1113), - [sym_op_gte] = STATE(1113), - [sym_op_and] = STATE(1111), - [sym_op_or] = STATE(1110), - [sym_op_bitwise_and] = STATE(1109), - [sym_op_bitwise_or] = STATE(1108), - [sym_op_bitwise_xor] = STATE(1107), - [sym_op_left_shift] = STATE(1106), - [sym_op_right_shift] = STATE(1106), - [sym_op_unsigned_right_shift] = STATE(1106), - [sym_op_plus] = STATE(1105), - [sym_op_minus] = STATE(1105), - [sym_op_multiply] = STATE(1104), - [sym_op_divide] = STATE(1104), - [sym_op_modulo] = STATE(1104), [sym_preproc_region] = STATE(4278), [sym_preproc_endregion] = STATE(4278), [sym_preproc_line] = STATE(4278), @@ -585292,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_in] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [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(4932), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6433), - [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(4936), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -585339,27 +579357,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4279] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4279), [sym_preproc_endregion] = STATE(4279), [sym_preproc_line] = STATE(4279), @@ -585369,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6485), - [anon_sym_into] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6487), - [anon_sym_is] = ACTIONS(6489), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -585416,27 +579429,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4280] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -585446,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4790), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_into] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -585493,27 +579501,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4281] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), [sym_preproc_region] = STATE(4281), [sym_preproc_endregion] = STATE(4281), [sym_preproc_line] = STATE(4281), @@ -585523,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4786), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_into] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -585570,27 +579573,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4282] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -585600,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [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(4932), - [anon_sym_EQ_GT] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [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(4936), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -585647,6 +579645,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4283] = { + [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), @@ -585656,62 +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), - [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(5942), - [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(6501), - [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(5942), + [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), @@ -585724,6 +579717,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4284] = { + [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), @@ -585733,62 +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_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), + [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), @@ -585801,27 +579789,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4285] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1016), - [sym_op_lte] = STATE(1016), - [sym_op_eq] = STATE(1014), - [sym_op_neq] = STATE(1014), - [sym_op_gt] = STATE(1016), - [sym_op_gte] = STATE(1016), - [sym_op_and] = STATE(1010), - [sym_op_or] = STATE(1007), - [sym_op_bitwise_and] = STATE(962), - [sym_op_bitwise_or] = STATE(957), - [sym_op_bitwise_xor] = STATE(953), - [sym_op_left_shift] = STATE(951), - [sym_op_right_shift] = STATE(951), - [sym_op_unsigned_right_shift] = STATE(951), - [sym_op_plus] = STATE(950), - [sym_op_minus] = STATE(950), - [sym_op_multiply] = STATE(949), - [sym_op_divide] = STATE(949), - [sym_op_modulo] = STATE(949), + [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), @@ -585831,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6405), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_EQ_GT] = ACTIONS(4780), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6407), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6409), - [anon_sym_into] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(5440), - [anon_sym_is] = ACTIONS(6411), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -585878,27 +579861,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4286] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [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(4286), [sym_preproc_endregion] = STATE(4286), [sym_preproc_line] = STATE(4286), @@ -585908,41 +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_LBRACK] = ACTIONS(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6483), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6485), - [anon_sym_into] = ACTIONS(4772), - [anon_sym_equals] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(6487), - [anon_sym_is] = ACTIONS(6489), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -585953,8 +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(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), @@ -585964,62 +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_SEMI] = ACTIONS(6259), - [anon_sym_LBRACK] = ACTIONS(6259), - [anon_sym_COLON] = ACTIONS(6259), - [anon_sym_COMMA] = ACTIONS(6259), - [anon_sym_RBRACK] = ACTIONS(6259), - [anon_sym_LPAREN] = ACTIONS(6259), - [anon_sym_RPAREN] = ACTIONS(6259), - [anon_sym_RBRACE] = ACTIONS(6259), - [anon_sym_LT] = ACTIONS(6261), - [anon_sym_GT] = ACTIONS(6261), - [anon_sym_in] = ACTIONS(6259), - [anon_sym_where] = ACTIONS(6259), - [anon_sym_QMARK] = ACTIONS(6261), - [anon_sym_BANG] = ACTIONS(6261), - [anon_sym_PLUS_PLUS] = ACTIONS(6259), - [anon_sym_DASH_DASH] = ACTIONS(6259), - [anon_sym_PLUS] = ACTIONS(6261), - [anon_sym_DASH] = ACTIONS(6261), - [anon_sym_STAR] = ACTIONS(6259), - [anon_sym_SLASH] = ACTIONS(6261), - [anon_sym_PERCENT] = ACTIONS(6259), - [anon_sym_CARET] = ACTIONS(6259), - [anon_sym_PIPE] = ACTIONS(6261), - [anon_sym_AMP] = ACTIONS(6261), - [anon_sym_LT_LT] = ACTIONS(6259), - [anon_sym_GT_GT] = ACTIONS(6261), - [anon_sym_GT_GT_GT] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6259), - [anon_sym_BANG_EQ] = ACTIONS(6259), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_DOT] = ACTIONS(6261), - [anon_sym_EQ_GT] = ACTIONS(6259), - [anon_sym_switch] = ACTIONS(6259), - [anon_sym_DOT_DOT] = ACTIONS(6259), - [anon_sym_and] = ACTIONS(6259), - [anon_sym_or] = ACTIONS(6261), - [anon_sym_AMP_AMP] = ACTIONS(6259), - [anon_sym_PIPE_PIPE] = ACTIONS(6259), - [sym_op_coalescing] = ACTIONS(6259), - [anon_sym_from] = ACTIONS(6259), - [anon_sym_join] = ACTIONS(6259), - [anon_sym_on] = ACTIONS(6259), - [anon_sym_equals] = ACTIONS(6259), - [anon_sym_let] = ACTIONS(6259), - [anon_sym_orderby] = ACTIONS(6259), - [anon_sym_group] = ACTIONS(6259), - [anon_sym_by] = ACTIONS(6259), - [anon_sym_select] = ACTIONS(6259), - [anon_sym_as] = ACTIONS(6259), - [anon_sym_is] = ACTIONS(6259), - [anon_sym_DASH_GT] = ACTIONS(6259), - [anon_sym_with] = ACTIONS(6259), - [aux_sym_preproc_if_token3] = ACTIONS(6259), - [aux_sym_preproc_else_token1] = ACTIONS(6259), - [aux_sym_preproc_elif_token1] = ACTIONS(6259), + [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), @@ -586032,27 +580005,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4288] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [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(4288), [sym_preproc_endregion] = STATE(4288), [sym_preproc_line] = STATE(4288), @@ -586062,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6483), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6485), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_equals] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(6487), - [anon_sym_is] = ACTIONS(6489), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -586109,6 +580077,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4289] = { + [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), @@ -586118,62 +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_SEMI] = ACTIONS(6265), - [anon_sym_LBRACK] = ACTIONS(6265), - [anon_sym_COLON] = ACTIONS(6265), - [anon_sym_COMMA] = ACTIONS(6265), - [anon_sym_RBRACK] = ACTIONS(6265), - [anon_sym_LPAREN] = ACTIONS(6265), - [anon_sym_RPAREN] = ACTIONS(6265), - [anon_sym_RBRACE] = ACTIONS(6265), - [anon_sym_LT] = ACTIONS(6267), - [anon_sym_GT] = ACTIONS(6267), - [anon_sym_in] = ACTIONS(6265), - [anon_sym_where] = ACTIONS(6265), - [anon_sym_QMARK] = ACTIONS(6267), - [anon_sym_BANG] = ACTIONS(6267), - [anon_sym_PLUS_PLUS] = ACTIONS(6265), - [anon_sym_DASH_DASH] = ACTIONS(6265), - [anon_sym_PLUS] = ACTIONS(6267), - [anon_sym_DASH] = ACTIONS(6267), - [anon_sym_STAR] = ACTIONS(6265), - [anon_sym_SLASH] = ACTIONS(6267), - [anon_sym_PERCENT] = ACTIONS(6265), - [anon_sym_CARET] = ACTIONS(6265), - [anon_sym_PIPE] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6265), - [anon_sym_GT_GT] = ACTIONS(6267), - [anon_sym_GT_GT_GT] = ACTIONS(6265), - [anon_sym_EQ_EQ] = ACTIONS(6265), - [anon_sym_BANG_EQ] = ACTIONS(6265), - [anon_sym_GT_EQ] = ACTIONS(6265), - [anon_sym_LT_EQ] = ACTIONS(6265), - [anon_sym_DOT] = ACTIONS(6267), - [anon_sym_EQ_GT] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6265), - [anon_sym_DOT_DOT] = ACTIONS(6265), - [anon_sym_and] = ACTIONS(6265), - [anon_sym_or] = ACTIONS(6267), - [anon_sym_AMP_AMP] = ACTIONS(6265), - [anon_sym_PIPE_PIPE] = ACTIONS(6265), - [sym_op_coalescing] = ACTIONS(6265), - [anon_sym_from] = ACTIONS(6265), - [anon_sym_join] = ACTIONS(6265), - [anon_sym_on] = ACTIONS(6265), - [anon_sym_equals] = ACTIONS(6265), - [anon_sym_let] = ACTIONS(6265), - [anon_sym_orderby] = ACTIONS(6265), - [anon_sym_group] = ACTIONS(6265), - [anon_sym_by] = ACTIONS(6265), - [anon_sym_select] = ACTIONS(6265), - [anon_sym_as] = ACTIONS(6265), - [anon_sym_is] = ACTIONS(6265), - [anon_sym_DASH_GT] = ACTIONS(6265), - [anon_sym_with] = ACTIONS(6265), - [aux_sym_preproc_if_token3] = ACTIONS(6265), - [aux_sym_preproc_else_token1] = ACTIONS(6265), - [aux_sym_preproc_elif_token1] = ACTIONS(6265), + [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), @@ -586186,27 +580149,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4290] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [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(4290), [sym_preproc_endregion] = STATE(4290), [sym_preproc_line] = STATE(4290), @@ -586216,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6483), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6485), - [anon_sym_into] = ACTIONS(4742), - [anon_sym_equals] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(6487), - [anon_sym_is] = ACTIONS(6489), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -586263,27 +580221,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4291] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [sym_op_multiply] = STATE(1334), - [sym_op_divide] = STATE(1334), - [sym_op_modulo] = STATE(1334), [sym_preproc_region] = STATE(4291), [sym_preproc_endregion] = STATE(4291), [sym_preproc_line] = STATE(4291), @@ -586293,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_into] = ACTIONS(4760), - [anon_sym_equals] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -586340,27 +580293,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4292] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1312), - [sym_op_lte] = STATE(1312), - [sym_op_eq] = STATE(1314), - [sym_op_neq] = STATE(1314), - [sym_op_gt] = STATE(1312), - [sym_op_gte] = STATE(1312), - [sym_op_and] = STATE(1317), - [sym_op_or] = STATE(1318), - [sym_op_bitwise_and] = STATE(1320), - [sym_op_bitwise_or] = STATE(1327), - [sym_op_bitwise_xor] = STATE(1331), - [sym_op_left_shift] = STATE(1332), - [sym_op_right_shift] = STATE(1332), - [sym_op_unsigned_right_shift] = STATE(1332), - [sym_op_plus] = STATE(1333), - [sym_op_minus] = STATE(1333), - [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(4292), [sym_preproc_endregion] = STATE(4292), [sym_preproc_line] = STATE(4292), @@ -586370,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6483), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4954), - [anon_sym_DOT_DOT] = ACTIONS(6403), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6485), - [anon_sym_into] = ACTIONS(4798), - [anon_sym_equals] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(6487), - [anon_sym_is] = ACTIONS(6489), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4962), + [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), @@ -586417,6 +580365,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4293] = { + [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), @@ -586426,62 +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_SEMI] = ACTIONS(4764), - [anon_sym_LBRACK] = ACTIONS(4764), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_RBRACK] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4764), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_in] = ACTIONS(4764), - [anon_sym_where] = ACTIONS(4764), - [anon_sym_QMARK] = ACTIONS(4766), - [anon_sym_BANG] = ACTIONS(4766), - [anon_sym_PLUS_PLUS] = ACTIONS(4764), - [anon_sym_DASH_DASH] = ACTIONS(4764), - [anon_sym_PLUS] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4766), - [anon_sym_PERCENT] = ACTIONS(4764), - [anon_sym_CARET] = ACTIONS(4764), - [anon_sym_PIPE] = ACTIONS(4766), - [anon_sym_AMP] = ACTIONS(4766), - [anon_sym_LT_LT] = ACTIONS(4764), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_GT_GT_GT] = ACTIONS(4764), - [anon_sym_EQ_EQ] = ACTIONS(4764), - [anon_sym_BANG_EQ] = ACTIONS(4764), - [anon_sym_GT_EQ] = ACTIONS(4764), - [anon_sym_LT_EQ] = ACTIONS(4764), - [anon_sym_DOT] = ACTIONS(4766), - [anon_sym_EQ_GT] = ACTIONS(4764), - [anon_sym_switch] = ACTIONS(4764), - [anon_sym_DOT_DOT] = ACTIONS(4764), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4764), - [anon_sym_PIPE_PIPE] = ACTIONS(4764), - [sym_op_coalescing] = ACTIONS(4764), - [anon_sym_from] = ACTIONS(4764), - [anon_sym_join] = ACTIONS(4764), - [anon_sym_on] = ACTIONS(4764), - [anon_sym_equals] = ACTIONS(4764), - [anon_sym_let] = ACTIONS(4764), - [anon_sym_orderby] = ACTIONS(4764), - [anon_sym_group] = ACTIONS(4764), - [anon_sym_by] = ACTIONS(4764), - [anon_sym_select] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4764), - [anon_sym_is] = ACTIONS(4764), - [anon_sym_DASH_GT] = ACTIONS(4764), - [anon_sym_with] = ACTIONS(4764), - [aux_sym_preproc_if_token3] = ACTIONS(4764), - [aux_sym_preproc_else_token1] = ACTIONS(4764), - [aux_sym_preproc_elif_token1] = ACTIONS(4764), + [aux_sym__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), @@ -586494,27 +580437,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4294] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(993), - [sym_op_lte] = STATE(993), - [sym_op_eq] = STATE(985), - [sym_op_neq] = STATE(985), - [sym_op_gt] = STATE(993), - [sym_op_gte] = STATE(993), - [sym_op_and] = STATE(984), - [sym_op_or] = STATE(981), - [sym_op_bitwise_and] = STATE(978), - [sym_op_bitwise_or] = STATE(975), - [sym_op_bitwise_xor] = STATE(974), - [sym_op_left_shift] = STATE(972), - [sym_op_right_shift] = STATE(972), - [sym_op_unsigned_right_shift] = STATE(972), - [sym_op_plus] = STATE(971), - [sym_op_minus] = STATE(971), - [sym_op_multiply] = STATE(969), - [sym_op_divide] = STATE(969), - [sym_op_modulo] = STATE(969), + [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), @@ -586524,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(4924), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_into] = ACTIONS(4768), - [anon_sym_by] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -586571,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), @@ -586580,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(6277), - [anon_sym_LBRACK] = ACTIONS(6277), - [anon_sym_COLON] = ACTIONS(6277), - [anon_sym_COMMA] = ACTIONS(6277), - [anon_sym_RBRACK] = ACTIONS(6277), - [anon_sym_LPAREN] = ACTIONS(6277), - [anon_sym_RPAREN] = ACTIONS(6277), - [anon_sym_RBRACE] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6279), - [anon_sym_GT] = ACTIONS(6279), - [anon_sym_in] = ACTIONS(6277), - [anon_sym_where] = ACTIONS(6277), - [anon_sym_QMARK] = ACTIONS(6279), - [anon_sym_BANG] = ACTIONS(6279), - [anon_sym_PLUS_PLUS] = ACTIONS(6277), - [anon_sym_DASH_DASH] = ACTIONS(6277), - [anon_sym_PLUS] = ACTIONS(6279), - [anon_sym_DASH] = ACTIONS(6279), - [anon_sym_STAR] = ACTIONS(6277), - [anon_sym_SLASH] = ACTIONS(6279), - [anon_sym_PERCENT] = ACTIONS(6277), - [anon_sym_CARET] = ACTIONS(6277), - [anon_sym_PIPE] = ACTIONS(6279), - [anon_sym_AMP] = ACTIONS(6279), - [anon_sym_LT_LT] = ACTIONS(6277), - [anon_sym_GT_GT] = ACTIONS(6279), - [anon_sym_GT_GT_GT] = ACTIONS(6277), - [anon_sym_EQ_EQ] = ACTIONS(6277), - [anon_sym_BANG_EQ] = ACTIONS(6277), - [anon_sym_GT_EQ] = ACTIONS(6277), - [anon_sym_LT_EQ] = ACTIONS(6277), - [anon_sym_DOT] = ACTIONS(6279), - [anon_sym_EQ_GT] = ACTIONS(6277), - [anon_sym_switch] = ACTIONS(6277), - [anon_sym_DOT_DOT] = ACTIONS(6277), - [anon_sym_and] = ACTIONS(6277), - [anon_sym_or] = ACTIONS(6279), - [anon_sym_AMP_AMP] = ACTIONS(6277), - [anon_sym_PIPE_PIPE] = ACTIONS(6277), - [sym_op_coalescing] = ACTIONS(6277), - [anon_sym_from] = ACTIONS(6277), - [anon_sym_join] = ACTIONS(6277), - [anon_sym_on] = ACTIONS(6277), - [anon_sym_equals] = ACTIONS(6277), - [anon_sym_let] = ACTIONS(6277), - [anon_sym_orderby] = ACTIONS(6277), - [anon_sym_group] = ACTIONS(6277), - [anon_sym_by] = ACTIONS(6277), - [anon_sym_select] = ACTIONS(6277), - [anon_sym_as] = ACTIONS(6277), - [anon_sym_is] = ACTIONS(6277), - [anon_sym_DASH_GT] = ACTIONS(6277), - [anon_sym_with] = ACTIONS(6277), - [aux_sym_preproc_if_token3] = ACTIONS(6277), - [aux_sym_preproc_else_token1] = ACTIONS(6277), - [aux_sym_preproc_elif_token1] = ACTIONS(6277), + [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), @@ -586648,27 +580581,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4296] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -586678,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_SEMI] = ACTIONS(6445), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6445), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6063), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6065), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -586723,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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1364), - [sym_op_lte] = STATE(1364), - [sym_op_eq] = STATE(1363), - [sym_op_neq] = STATE(1363), - [sym_op_gt] = STATE(1364), - [sym_op_gte] = STATE(1364), - [sym_op_and] = STATE(1359), - [sym_op_or] = STATE(1356), - [sym_op_bitwise_and] = STATE(1353), - [sym_op_bitwise_or] = STATE(1348), - [sym_op_bitwise_xor] = STATE(1347), - [sym_op_left_shift] = STATE(1346), - [sym_op_right_shift] = STATE(1346), - [sym_op_unsigned_right_shift] = STATE(1346), - [sym_op_plus] = STATE(1344), - [sym_op_minus] = STATE(1344), - [sym_op_multiply] = STATE(1342), - [sym_op_divide] = STATE(1342), - [sym_op_modulo] = STATE(1342), + [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), @@ -586755,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_SEMI] = ACTIONS(6443), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COMMA] = ACTIONS(6443), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6063), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6017), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6065), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -586800,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), @@ -586811,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(6045), - [anon_sym_LBRACK] = ACTIONS(6045), - [anon_sym_COLON] = ACTIONS(6045), - [anon_sym_COMMA] = ACTIONS(6045), - [anon_sym_RBRACK] = ACTIONS(6045), - [anon_sym_LPAREN] = ACTIONS(6045), - [anon_sym_RPAREN] = ACTIONS(6045), - [anon_sym_RBRACE] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6047), - [anon_sym_GT] = ACTIONS(6047), - [anon_sym_in] = ACTIONS(6045), - [anon_sym_where] = ACTIONS(6045), - [anon_sym_QMARK] = ACTIONS(6047), - [anon_sym_BANG] = ACTIONS(6047), - [anon_sym_PLUS_PLUS] = ACTIONS(6045), - [anon_sym_DASH_DASH] = ACTIONS(6045), - [anon_sym_PLUS] = ACTIONS(6047), - [anon_sym_DASH] = ACTIONS(6047), - [anon_sym_STAR] = ACTIONS(6045), - [anon_sym_SLASH] = ACTIONS(6047), - [anon_sym_PERCENT] = ACTIONS(6045), - [anon_sym_CARET] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - [anon_sym_LT_LT] = ACTIONS(6045), - [anon_sym_GT_GT] = ACTIONS(6047), - [anon_sym_GT_GT_GT] = ACTIONS(6045), - [anon_sym_EQ_EQ] = ACTIONS(6045), - [anon_sym_BANG_EQ] = ACTIONS(6045), - [anon_sym_GT_EQ] = ACTIONS(6045), - [anon_sym_LT_EQ] = ACTIONS(6045), - [anon_sym_DOT] = ACTIONS(6047), - [anon_sym_EQ_GT] = ACTIONS(6045), - [anon_sym_switch] = ACTIONS(6045), - [anon_sym_DOT_DOT] = ACTIONS(6045), - [anon_sym_and] = ACTIONS(6045), - [anon_sym_or] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [sym_op_coalescing] = ACTIONS(6045), - [anon_sym_from] = ACTIONS(6045), - [anon_sym_join] = ACTIONS(6045), - [anon_sym_on] = ACTIONS(6045), - [anon_sym_equals] = ACTIONS(6045), - [anon_sym_let] = ACTIONS(6045), - [anon_sym_orderby] = ACTIONS(6045), - [anon_sym_group] = ACTIONS(6045), - [anon_sym_by] = ACTIONS(6045), - [anon_sym_select] = ACTIONS(6045), - [anon_sym_as] = ACTIONS(6045), - [anon_sym_is] = ACTIONS(6045), - [anon_sym_DASH_GT] = ACTIONS(6045), - [anon_sym_with] = ACTIONS(6045), - [aux_sym_preproc_if_token3] = ACTIONS(6045), - [aux_sym_preproc_else_token1] = ACTIONS(6045), - [aux_sym_preproc_elif_token1] = ACTIONS(6045), + [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), @@ -586879,6 +580797,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4299] = { + [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), @@ -586888,62 +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_SEMI] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_RBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(5752), - [anon_sym_RBRACE] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_in] = ACTIONS(5752), - [anon_sym_where] = ACTIONS(5752), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5752), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5752), - [anon_sym_CARET] = ACTIONS(5752), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5752), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5752), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_EQ_GT] = ACTIONS(5752), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5752), - [anon_sym_from] = ACTIONS(5752), - [anon_sym_join] = ACTIONS(5752), - [anon_sym_on] = ACTIONS(5752), - [anon_sym_equals] = ACTIONS(5752), - [anon_sym_let] = ACTIONS(5752), - [anon_sym_orderby] = ACTIONS(5752), - [anon_sym_group] = ACTIONS(5752), - [anon_sym_by] = ACTIONS(5752), - [anon_sym_select] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), - [aux_sym_preproc_if_token3] = ACTIONS(5752), - [aux_sym_preproc_else_token1] = ACTIONS(5752), - [aux_sym_preproc_elif_token1] = ACTIONS(5752), + [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), @@ -586956,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), @@ -586965,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(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_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_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_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), @@ -587031,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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -587063,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_SEMI] = ACTIONS(6503), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -587107,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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -587139,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(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -587185,27 +581085,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4303] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), + [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), @@ -587215,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_equals] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(6513), - [anon_sym_is] = ACTIONS(6515), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -587261,27 +581157,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4304] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -587291,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(5422), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -587337,27 +581229,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4305] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -587367,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(5422), - [anon_sym_COLON] = ACTIONS(4768), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -587413,27 +581301,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4306] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), [sym_preproc_region] = STATE(4306), [sym_preproc_endregion] = STATE(4306), [sym_preproc_line] = STATE(4306), @@ -587443,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4780), - [anon_sym_QMARK] = ACTIONS(6523), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6525), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6527), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -587489,27 +581373,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4307] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -587519,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(5422), - [anon_sym_COLON] = ACTIONS(4772), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -587565,27 +581445,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4308] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -587595,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(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -587650,61 +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), - [sym__identifier_token] = ACTIONS(6531), - [anon_sym_extern] = ACTIONS(6531), - [anon_sym_alias] = ACTIONS(6531), - [anon_sym_global] = ACTIONS(6531), - [anon_sym_unsafe] = ACTIONS(6531), - [anon_sym_static] = ACTIONS(6531), - [anon_sym_LPAREN] = ACTIONS(6533), - [anon_sym_event] = ACTIONS(6531), - [anon_sym_class] = ACTIONS(6531), - [anon_sym_ref] = ACTIONS(6531), - [anon_sym_struct] = ACTIONS(6531), - [anon_sym_enum] = ACTIONS(6531), - [anon_sym_interface] = ACTIONS(6531), - [anon_sym_delegate] = ACTIONS(6531), - [anon_sym_record] = ACTIONS(6531), - [anon_sym_public] = ACTIONS(6531), - [anon_sym_private] = ACTIONS(6531), - [anon_sym_readonly] = ACTIONS(6531), - [anon_sym_abstract] = ACTIONS(6531), - [anon_sym_async] = ACTIONS(6531), - [anon_sym_const] = ACTIONS(6531), - [anon_sym_file] = ACTIONS(6531), - [anon_sym_fixed] = ACTIONS(6531), - [anon_sym_internal] = ACTIONS(6531), - [anon_sym_new] = ACTIONS(6531), - [anon_sym_override] = ACTIONS(6531), - [anon_sym_partial] = ACTIONS(6531), - [anon_sym_protected] = ACTIONS(6531), - [anon_sym_required] = ACTIONS(6531), - [anon_sym_sealed] = ACTIONS(6531), - [anon_sym_virtual] = ACTIONS(6531), - [anon_sym_volatile] = ACTIONS(6531), - [anon_sym_where] = ACTIONS(6531), - [anon_sym_notnull] = ACTIONS(6531), - [anon_sym_unmanaged] = ACTIONS(6531), - [anon_sym_implicit] = ACTIONS(6531), - [anon_sym_explicit] = ACTIONS(6531), - [anon_sym_scoped] = ACTIONS(6531), - [anon_sym_var] = ACTIONS(6531), - [sym_predefined_type] = ACTIONS(6531), - [anon_sym_yield] = ACTIONS(6531), - [anon_sym_when] = ACTIONS(6531), - [anon_sym_from] = ACTIONS(6531), - [anon_sym_into] = ACTIONS(6531), - [anon_sym_join] = ACTIONS(6531), - [anon_sym_on] = ACTIONS(6531), - [anon_sym_equals] = ACTIONS(6531), - [anon_sym_let] = ACTIONS(6531), - [anon_sym_orderby] = ACTIONS(6531), - [anon_sym_ascending] = ACTIONS(6531), - [anon_sym_descending] = ACTIONS(6531), - [anon_sym_group] = ACTIONS(6531), - [anon_sym_by] = ACTIONS(6531), - [anon_sym_select] = ACTIONS(6531), - [sym_grit_metavariable] = ACTIONS(6533), + [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), @@ -587717,27 +581589,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4310] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -587747,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6535), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -587793,27 +581661,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4311] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), [sym_preproc_region] = STATE(4311), [sym_preproc_endregion] = STATE(4311), [sym_preproc_line] = STATE(4311), @@ -587823,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6543), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -587869,27 +581733,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4312] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -587899,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6549), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -587945,27 +581805,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4313] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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(4313), [sym_preproc_endregion] = STATE(4313), [sym_preproc_line] = STATE(4313), @@ -587975,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6551), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -588021,27 +581877,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4314] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -588051,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6553), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -588097,27 +581949,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4315] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -588127,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6555), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -588173,27 +582021,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4316] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -588203,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6557), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -588249,27 +582093,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4317] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -588279,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6559), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -588325,27 +582165,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4318] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), [sym_preproc_region] = STATE(4318), [sym_preproc_endregion] = STATE(4318), [sym_preproc_line] = STATE(4318), @@ -588355,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6561), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -588401,27 +582237,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4319] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4319), [sym_preproc_endregion] = STATE(4319), [sym_preproc_line] = STATE(4319), @@ -588431,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(5422), - [anon_sym_COLON] = ACTIONS(6563), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -588477,27 +582309,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4320] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), + [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), @@ -588507,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_EQ_GT] = ACTIONS(1435), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [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(4468), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -588551,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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), + [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), @@ -588583,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4786), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -588629,27 +582453,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4322] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), + [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), @@ -588659,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4790), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -588705,27 +582525,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4323] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), + [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), @@ -588735,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6567), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4780), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6569), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6571), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -588781,27 +582597,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4324] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), [sym_preproc_region] = STATE(4324), [sym_preproc_endregion] = STATE(4324), [sym_preproc_line] = STATE(4324), @@ -588811,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -588857,27 +582669,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4325] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), [sym_preproc_region] = STATE(4325), [sym_preproc_endregion] = STATE(4325), [sym_preproc_line] = STATE(4325), @@ -588887,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6573), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -588933,27 +582741,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4326] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4326), [sym_preproc_endregion] = STATE(4326), [sym_preproc_line] = STATE(4326), @@ -588963,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(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -589009,27 +582813,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4327] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4327), [sym_preproc_endregion] = STATE(4327), [sym_preproc_line] = STATE(4327), @@ -589039,40 +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), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -589085,27 +582885,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4328] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4328), [sym_preproc_endregion] = STATE(4328), [sym_preproc_line] = STATE(4328), @@ -589115,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(5422), - [anon_sym_COLON] = ACTIONS(6575), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -589161,27 +582957,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4329] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -589191,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(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -589237,27 +583029,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4330] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), + [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), @@ -589267,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [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(4468), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -589313,27 +583101,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4331] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), [sym_preproc_region] = STATE(4331), [sym_preproc_endregion] = STATE(4331), [sym_preproc_line] = STATE(4331), @@ -589343,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_on] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -589389,27 +583173,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4332] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), + [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), @@ -589419,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6579), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6581), - [anon_sym_on] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(6583), - [anon_sym_is] = ACTIONS(6585), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -589465,27 +583245,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4333] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), + [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), @@ -589495,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_on] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -589541,27 +583317,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4334] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), + [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), @@ -589571,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6579), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6581), - [anon_sym_on] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(6583), - [anon_sym_is] = ACTIONS(6585), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -589617,27 +583389,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4335] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4335), [sym_preproc_endregion] = STATE(4335), [sym_preproc_line] = STATE(4335), @@ -589647,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(5422), - [anon_sym_COLON] = ACTIONS(6587), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -589693,27 +583461,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4336] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -589723,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6589), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -589767,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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -589799,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_LBRACK] = ACTIONS(5422), - [anon_sym_COLON] = ACTIONS(6591), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -589843,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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4338), [sym_preproc_endregion] = STATE(4338), [sym_preproc_line] = STATE(4338), @@ -589875,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6593), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -589921,27 +583677,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4339] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -589951,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6595), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -589997,27 +583749,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4340] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -590027,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(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -590073,27 +583821,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4341] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(4341), [sym_preproc_endregion] = STATE(4341), [sym_preproc_line] = STATE(4341), @@ -590103,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(5422), - [anon_sym_COLON] = ACTIONS(5948), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5678), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -590149,27 +583893,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4342] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -590179,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6597), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -590225,27 +583965,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4343] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -590255,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_SEMI] = ACTIONS(6599), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -590301,27 +584037,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4344] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), + [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), @@ -590331,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [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_equals] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -590377,27 +584109,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4345] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -590407,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(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -590453,27 +584181,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4346] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -590483,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(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -590529,27 +584253,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4347] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -590559,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(5422), - [anon_sym_COLON] = ACTIONS(6601), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -590605,27 +584325,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4348] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), [sym_preproc_region] = STATE(4348), [sym_preproc_endregion] = STATE(4348), [sym_preproc_line] = STATE(4348), @@ -590635,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_SEMI] = ACTIONS(6603), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -590681,27 +584397,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4349] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -590711,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6605), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -590757,27 +584469,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4350] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -590787,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6607), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -590833,27 +584541,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4351] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -590863,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6609), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -590909,27 +584613,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4352] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -590939,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(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -590985,27 +584685,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4353] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -591015,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(5422), - [anon_sym_COMMA] = ACTIONS(6611), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -591061,27 +584757,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4354] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4354), [sym_preproc_endregion] = STATE(4354), [sym_preproc_line] = STATE(4354), @@ -591091,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6613), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -591137,27 +584829,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4355] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), + [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), @@ -591167,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6579), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6581), - [anon_sym_on] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(6583), - [anon_sym_is] = ACTIONS(6585), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -591213,27 +584901,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4356] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), [sym_preproc_region] = STATE(4356), [sym_preproc_endregion] = STATE(4356), [sym_preproc_line] = STATE(4356), @@ -591243,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_equals] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -591289,27 +584973,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4357] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), + [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), @@ -591319,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_equals] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -591365,27 +585045,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4358] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), + [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), @@ -591395,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -591441,27 +585117,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4359] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), + [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), @@ -591471,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -591517,27 +585189,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4360] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), [sym_preproc_region] = STATE(4360), [sym_preproc_endregion] = STATE(4360), [sym_preproc_line] = STATE(4360), @@ -591547,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_equals] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(6513), - [anon_sym_is] = ACTIONS(6515), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -591593,27 +585261,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4361] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4361), [sym_preproc_endregion] = STATE(4361), [sym_preproc_line] = STATE(4361), @@ -591623,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(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -591669,27 +585333,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4362] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), + [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), @@ -591699,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_equals] = ACTIONS(6615), - [anon_sym_as] = ACTIONS(6513), - [anon_sym_is] = ACTIONS(6515), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -591745,27 +585405,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4363] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), + [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), @@ -591775,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6579), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6581), - [anon_sym_on] = ACTIONS(6617), - [anon_sym_as] = ACTIONS(6583), - [anon_sym_is] = ACTIONS(6585), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -591821,27 +585477,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4364] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -591851,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(5422), - [anon_sym_COLON] = ACTIONS(4760), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -591897,27 +585549,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4365] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -591927,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -591973,27 +585621,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4366] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -592003,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(5422), - [anon_sym_COLON] = ACTIONS(6619), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -592049,27 +585693,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4367] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), [sym_preproc_region] = STATE(4367), [sym_preproc_endregion] = STATE(4367), [sym_preproc_line] = STATE(4367), @@ -592079,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_in] = ACTIONS(4760), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(6525), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -592125,27 +585765,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4368] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4368), [sym_preproc_endregion] = STATE(4368), [sym_preproc_line] = STATE(4368), @@ -592155,40 +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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6621), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -592201,27 +585837,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4369] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4369), [sym_preproc_endregion] = STATE(4369), [sym_preproc_line] = STATE(4369), @@ -592231,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6623), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -592277,27 +585909,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4370] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), [sym_preproc_region] = STATE(4370), [sym_preproc_endregion] = STATE(4370), [sym_preproc_line] = STATE(4370), @@ -592307,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -592353,27 +585981,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4371] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), + [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), @@ -592383,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6583), - [anon_sym_is] = ACTIONS(6585), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -592429,27 +586053,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4372] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), [sym_preproc_region] = STATE(4372), [sym_preproc_endregion] = STATE(4372), [sym_preproc_line] = STATE(4372), @@ -592459,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6583), - [anon_sym_is] = ACTIONS(6585), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -592505,27 +586125,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4373] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -592535,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6625), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -592581,27 +586197,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4374] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -592611,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6627), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -592657,27 +586269,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4375] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), + [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), @@ -592687,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6583), - [anon_sym_is] = ACTIONS(6585), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -592733,27 +586341,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4376] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), + [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), @@ -592763,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6525), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -592809,27 +586413,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4377] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), [sym_preproc_region] = STATE(4377), [sym_preproc_endregion] = STATE(4377), [sym_preproc_line] = STATE(4377), @@ -592839,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6629), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -592885,27 +586485,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4378] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -592915,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(5422), - [anon_sym_COLON] = ACTIONS(6631), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -592961,27 +586557,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4379] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), [sym_preproc_region] = STATE(4379), [sym_preproc_endregion] = STATE(4379), [sym_preproc_line] = STATE(4379), @@ -592991,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6583), - [anon_sym_is] = ACTIONS(6585), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -593037,27 +586629,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4380] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -593067,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_by] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -593113,27 +586701,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4381] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), + [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), @@ -593143,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6583), - [anon_sym_is] = ACTIONS(6585), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -593189,27 +586773,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4382] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), + [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), @@ -593219,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6583), - [anon_sym_is] = ACTIONS(6585), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -593265,27 +586845,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4383] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), + [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), @@ -593295,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -593341,27 +586917,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4384] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), [sym_preproc_region] = STATE(4384), [sym_preproc_endregion] = STATE(4384), [sym_preproc_line] = STATE(4384), @@ -593371,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_equals] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(6513), - [anon_sym_is] = ACTIONS(6515), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -593417,27 +586989,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4385] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), + [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), @@ -593447,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6525), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -593493,27 +587061,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4386] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), + [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), @@ -593523,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6525), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -593569,27 +587133,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4387] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), + [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), @@ -593599,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6525), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -593645,27 +587205,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4388] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -593675,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_if_token3] = ACTIONS(6633), + [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), @@ -593721,27 +587277,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4389] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -593751,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6635), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -593797,27 +587349,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4390] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), [sym_preproc_region] = STATE(4390), [sym_preproc_endregion] = STATE(4390), [sym_preproc_line] = STATE(4390), @@ -593827,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6581), - [anon_sym_on] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6583), - [anon_sym_is] = ACTIONS(6585), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -593873,27 +587421,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4391] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), [sym_preproc_region] = STATE(4391), [sym_preproc_endregion] = STATE(4391), [sym_preproc_line] = STATE(4391), @@ -593903,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6637), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -593949,27 +587493,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4392] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4392), [sym_preproc_endregion] = STATE(4392), [sym_preproc_line] = STATE(4392), @@ -593979,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(5422), - [anon_sym_COLON] = ACTIONS(6639), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -594025,27 +587565,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4393] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), [sym_preproc_region] = STATE(4393), [sym_preproc_endregion] = STATE(4393), [sym_preproc_line] = STATE(4393), @@ -594055,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_SEMI] = ACTIONS(2343), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -594101,27 +587637,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4394] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), + [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), @@ -594131,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_on] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -594177,27 +587709,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4395] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), [sym_preproc_region] = STATE(4395), [sym_preproc_endregion] = STATE(4395), [sym_preproc_line] = STATE(4395), @@ -594207,40 +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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [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_by] = ACTIONS(1435), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_is] = ACTIONS(1435), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -594253,27 +587781,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4396] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), [sym_preproc_region] = STATE(4396), [sym_preproc_endregion] = STATE(4396), [sym_preproc_line] = STATE(4396), @@ -594283,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_by] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -594329,27 +587853,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4397] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -594359,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_by] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -594405,27 +587925,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4398] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -594435,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(4780), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -594481,27 +587997,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4399] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), [sym_preproc_region] = STATE(4399), [sym_preproc_endregion] = STATE(4399), [sym_preproc_line] = STATE(4399), @@ -594511,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_in] = ACTIONS(4768), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -594557,27 +588069,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4400] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -594587,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6641), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -594633,27 +588141,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4401] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4401), [sym_preproc_endregion] = STATE(4401), [sym_preproc_line] = STATE(4401), @@ -594663,40 +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), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_COLON] = ACTIONS(6643), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -594709,27 +588213,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4402] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), [sym_preproc_region] = STATE(4402), [sym_preproc_endregion] = STATE(4402), [sym_preproc_line] = STATE(4402), @@ -594739,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(5422), - [anon_sym_COLON] = ACTIONS(6645), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -594785,27 +588285,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4403] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -594815,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_SEMI] = ACTIONS(6647), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -594861,27 +588357,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4404] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), + [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_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -594891,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_SEMI] = ACTIONS(6649), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -594937,27 +588429,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4405] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), [sym_preproc_region] = STATE(4405), [sym_preproc_endregion] = STATE(4405), [sym_preproc_line] = STATE(4405), @@ -594967,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_SEMI] = ACTIONS(6651), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -595013,27 +588501,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4406] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -595043,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6653), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -595089,27 +588573,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4407] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -595119,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_SEMI] = ACTIONS(6655), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -595165,27 +588645,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4408] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -595195,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6657), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -595241,27 +588717,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4409] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -595271,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6659), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -595317,27 +588789,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4410] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -595347,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6661), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -595393,27 +588861,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4411] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -595423,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6663), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -595469,27 +588933,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4412] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -595499,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6665), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -595545,27 +589005,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4413] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -595575,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(5422), - [anon_sym_COLON] = ACTIONS(6667), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -595621,27 +589077,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4414] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -595651,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(5422), - [anon_sym_COLON] = ACTIONS(6669), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -595697,27 +589149,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4415] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -595727,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6671), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -595773,27 +589221,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4416] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -595803,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_SEMI] = ACTIONS(6673), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -595849,27 +589293,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4417] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -595879,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(5422), - [anon_sym_COLON] = ACTIONS(6675), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -595925,27 +589365,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4418] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -595955,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_LBRACK] = ACTIONS(5422), - [anon_sym_COLON] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [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(4468), - [anon_sym_with] = ACTIONS(1435), + [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), @@ -596001,27 +589437,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4419] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -596031,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(5422), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -596077,27 +589509,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4420] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -596107,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(5422), - [anon_sym_COLON] = ACTIONS(4790), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -596153,27 +589581,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4421] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -596183,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(5422), - [anon_sym_COLON] = ACTIONS(4780), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -596229,27 +589653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4422] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [sym_type_argument_list] = STATE(3144), [sym_preproc_region] = STATE(4422), [sym_preproc_endregion] = STATE(4422), [sym_preproc_line] = STATE(4422), @@ -596259,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(5422), - [anon_sym_COLON] = ACTIONS(6677), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -596305,27 +589725,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4423] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -596335,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(5422), - [anon_sym_COLON] = ACTIONS(6679), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -596381,27 +589797,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4424] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -596411,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(5422), - [anon_sym_COLON] = ACTIONS(6681), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -596457,27 +589869,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4425] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4425), [sym_preproc_endregion] = STATE(4425), [sym_preproc_line] = STATE(4425), @@ -596487,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(5422), - [anon_sym_COMMA] = ACTIONS(6683), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -596533,27 +589941,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4426] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -596563,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6685), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -596609,27 +590013,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4427] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), [sym_preproc_region] = STATE(4427), [sym_preproc_endregion] = STATE(4427), [sym_preproc_line] = STATE(4427), @@ -596639,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_in] = ACTIONS(4790), - [anon_sym_QMARK] = ACTIONS(4792), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4792), - [anon_sym_DASH] = ACTIONS(4792), - [anon_sym_STAR] = ACTIONS(4790), - [anon_sym_SLASH] = ACTIONS(4792), - [anon_sym_PERCENT] = ACTIONS(4790), - [anon_sym_CARET] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4790), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_GT_GT_GT] = ACTIONS(4790), - [anon_sym_EQ_EQ] = ACTIONS(4790), - [anon_sym_BANG_EQ] = ACTIONS(4790), - [anon_sym_GT_EQ] = ACTIONS(4790), - [anon_sym_LT_EQ] = ACTIONS(4790), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4790), - [anon_sym_DOT_DOT] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_op_coalescing] = ACTIONS(4790), - [anon_sym_as] = ACTIONS(4790), - [anon_sym_is] = ACTIONS(4790), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4790), + [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), @@ -596685,27 +590085,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4428] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), [sym_preproc_region] = STATE(4428), [sym_preproc_endregion] = STATE(4428), [sym_preproc_line] = STATE(4428), @@ -596715,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4742), - [anon_sym_QMARK] = ACTIONS(6523), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6525), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6527), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -596761,27 +590157,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4429] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4429), [sym_preproc_endregion] = STATE(4429), [sym_preproc_line] = STATE(4429), @@ -596791,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6687), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -596837,27 +590229,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4430] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -596867,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6689), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -596913,27 +590301,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4431] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -596943,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6691), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -596989,27 +590373,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4432] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -597019,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6693), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -597065,27 +590445,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4433] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4433), [sym_preproc_endregion] = STATE(4433), [sym_preproc_line] = STATE(4433), @@ -597095,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6695), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -597141,27 +590517,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4434] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -597171,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(5422), - [anon_sym_COLON] = ACTIONS(6697), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -597217,27 +590589,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4435] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -597247,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6699), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -597291,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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), [sym_preproc_region] = STATE(4436), [sym_preproc_endregion] = STATE(4436), [sym_preproc_line] = STATE(4436), @@ -597323,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6567), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(6701), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6569), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6571), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -597369,27 +590733,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4437] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -597399,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6703), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -597445,27 +590805,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4438] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4438), [sym_preproc_endregion] = STATE(4438), [sym_preproc_line] = STATE(4438), @@ -597475,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(5422), - [anon_sym_COMMA] = ACTIONS(6705), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -597521,27 +590877,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4439] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4439), [sym_preproc_endregion] = STATE(4439), [sym_preproc_line] = STATE(4439), @@ -597551,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(5422), - [anon_sym_COMMA] = ACTIONS(6707), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -597597,6 +590949,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4440] = { + [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), @@ -597606,61 +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), - [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(5942), - [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(5942), + [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), @@ -597673,27 +591021,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4441] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), + [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), @@ -597703,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6579), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6581), - [anon_sym_on] = ACTIONS(6709), - [anon_sym_as] = ACTIONS(6583), - [anon_sym_is] = ACTIONS(6585), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -597749,27 +591093,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4442] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -597779,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(5422), - [anon_sym_COMMA] = ACTIONS(6711), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -597825,27 +591165,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4443] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -597855,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(5422), - [anon_sym_COLON] = ACTIONS(6713), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -597901,27 +591237,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4444] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -597931,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6715), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -597977,27 +591309,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4445] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -598007,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6717), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -598053,27 +591381,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4446] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -598083,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6719), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -598129,27 +591453,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4447] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -598159,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(5422), - [anon_sym_COMMA] = ACTIONS(6721), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -598205,27 +591525,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4448] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -598235,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(5422), - [anon_sym_COLON] = ACTIONS(6723), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -598281,27 +591596,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4449] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4449), [sym_preproc_endregion] = STATE(4449), [sym_preproc_line] = STATE(4449), @@ -598311,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6725), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -598357,27 +591667,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4450] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), [sym_preproc_region] = STATE(4450), [sym_preproc_endregion] = STATE(4450), [sym_preproc_line] = STATE(4450), @@ -598387,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_SEMI] = ACTIONS(6727), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -598433,27 +591738,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4451] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -598463,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(5422), - [anon_sym_COLON] = ACTIONS(6729), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -598509,27 +591809,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4452] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -598539,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(5422), - [anon_sym_COLON] = ACTIONS(6731), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -598585,27 +591880,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4453] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -598615,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(5422), - [anon_sym_COLON] = ACTIONS(6733), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -598661,27 +591951,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4454] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), [sym_preproc_region] = STATE(4454), [sym_preproc_endregion] = STATE(4454), [sym_preproc_line] = STATE(4454), @@ -598691,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6579), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6581), - [anon_sym_on] = ACTIONS(4742), - [anon_sym_as] = ACTIONS(6583), - [anon_sym_is] = ACTIONS(6585), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -598737,27 +592022,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4455] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4455), [sym_preproc_endregion] = STATE(4455), [sym_preproc_line] = STATE(4455), @@ -598767,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6735), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -598813,27 +592093,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4456] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), [sym_preproc_region] = STATE(4456), [sym_preproc_endregion] = STATE(4456), [sym_preproc_line] = STATE(4456), @@ -598843,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(6737), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -598889,27 +592164,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4457] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -598919,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(5422), - [anon_sym_COLON] = ACTIONS(6739), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -598965,27 +592235,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4458] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), [sym_preproc_region] = STATE(4458), [sym_preproc_endregion] = STATE(4458), [sym_preproc_line] = STATE(4458), @@ -598995,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6579), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6577), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6581), - [anon_sym_on] = ACTIONS(4798), - [anon_sym_as] = ACTIONS(6583), - [anon_sym_is] = ACTIONS(6585), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -599041,27 +592306,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4459] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4459), [sym_preproc_endregion] = STATE(4459), [sym_preproc_line] = STATE(4459), @@ -599071,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(5422), - [anon_sym_COLON] = ACTIONS(6701), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -599117,27 +592377,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4460] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), + [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), @@ -599147,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(6741), - [anon_sym_QMARK] = ACTIONS(6523), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), + [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_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6527), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = 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), @@ -599193,27 +592448,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4461] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4461), [sym_preproc_endregion] = STATE(4461), [sym_preproc_line] = STATE(4461), @@ -599223,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6743), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -599269,27 +592519,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4462] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -599299,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(5422), - [anon_sym_COLON] = ACTIONS(6745), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -599345,27 +592590,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4463] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), [sym_preproc_region] = STATE(4463), [sym_preproc_endregion] = STATE(4463), [sym_preproc_line] = STATE(4463), @@ -599375,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(6747), - [anon_sym_QMARK] = ACTIONS(6523), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6525), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6527), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -599421,27 +592661,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4464] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -599451,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_SEMI] = ACTIONS(6749), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -599497,27 +592732,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4465] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), [sym_preproc_region] = STATE(4465), [sym_preproc_endregion] = STATE(4465), [sym_preproc_line] = STATE(4465), @@ -599527,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_SEMI] = ACTIONS(6751), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -599573,27 +592803,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4466] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), [sym_preproc_region] = STATE(4466), [sym_preproc_endregion] = STATE(4466), [sym_preproc_line] = STATE(4466), @@ -599603,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_SEMI] = ACTIONS(6753), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -599649,27 +592874,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4467] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4467), [sym_preproc_endregion] = STATE(4467), [sym_preproc_line] = STATE(4467), @@ -599679,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_LBRACK] = ACTIONS(5422), - [anon_sym_COLON] = ACTIONS(6755), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -599725,27 +592945,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4468] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -599755,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_SEMI] = ACTIONS(6757), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -599801,27 +593016,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4469] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), [sym_preproc_region] = STATE(4469), [sym_preproc_endregion] = STATE(4469), [sym_preproc_line] = STATE(4469), @@ -599831,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4788), - [anon_sym_GT] = ACTIONS(4788), - [anon_sym_in] = ACTIONS(4786), - [anon_sym_QMARK] = ACTIONS(4788), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4788), - [anon_sym_DASH] = ACTIONS(4788), - [anon_sym_STAR] = ACTIONS(4786), - [anon_sym_SLASH] = ACTIONS(4788), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_CARET] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4788), - [anon_sym_AMP] = ACTIONS(4788), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4788), - [anon_sym_GT_GT_GT] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), - [anon_sym_GT_EQ] = ACTIONS(4786), - [anon_sym_LT_EQ] = ACTIONS(4786), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4786), - [anon_sym_DOT_DOT] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym_op_coalescing] = ACTIONS(4786), - [anon_sym_as] = ACTIONS(4786), - [anon_sym_is] = ACTIONS(4786), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4786), + [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), @@ -599877,27 +593087,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4470] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4470), [sym_preproc_endregion] = STATE(4470), [sym_preproc_line] = STATE(4470), @@ -599907,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6759), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -599953,27 +593158,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4471] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -599983,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(5422), - [anon_sym_COLON] = ACTIONS(4686), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -600029,27 +593229,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4472] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -600059,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_SEMI] = ACTIONS(6761), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -600105,27 +593300,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4473] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -600135,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_SEMI] = ACTIONS(6763), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -600181,27 +593371,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4474] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4474), [sym_preproc_endregion] = STATE(4474), [sym_preproc_line] = STATE(4474), @@ -600211,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(5422), - [anon_sym_COLON] = ACTIONS(6765), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), + [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), @@ -600287,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4798), - [anon_sym_QMARK] = ACTIONS(6523), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6525), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6527), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -600333,27 +593513,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4476] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -600363,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_SEMI] = ACTIONS(6257), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -600409,6 +593584,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4477] = { + [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), @@ -600418,61 +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_EQ] = ACTIONS(6767), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_where] = ACTIONS(5752), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_PLUS_EQ] = ACTIONS(6769), - [anon_sym_DASH_EQ] = ACTIONS(6769), - [anon_sym_STAR_EQ] = ACTIONS(6769), - [anon_sym_SLASH_EQ] = ACTIONS(6769), - [anon_sym_PERCENT_EQ] = ACTIONS(6769), - [anon_sym_AMP_EQ] = ACTIONS(6769), - [anon_sym_CARET_EQ] = ACTIONS(6769), - [anon_sym_PIPE_EQ] = ACTIONS(6769), - [anon_sym_LT_LT_EQ] = ACTIONS(6769), - [anon_sym_GT_GT_EQ] = ACTIONS(6769), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6769), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6769), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5752), - [anon_sym_join] = ACTIONS(5752), - [anon_sym_let] = ACTIONS(5752), - [anon_sym_orderby] = ACTIONS(5752), - [anon_sym_group] = ACTIONS(5752), - [anon_sym_select] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -600485,27 +593655,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4478] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -600515,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_LBRACK] = ACTIONS(5422), - [anon_sym_COLON] = ACTIONS(6771), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -600561,27 +593726,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4479] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), + [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), @@ -600591,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6567), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4798), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6569), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6571), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -600637,27 +593797,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4480] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), + [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), @@ -600667,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1437), - [anon_sym_in] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [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(4466), - [anon_sym_switch] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(6525), - [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(4468), - [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_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), @@ -600713,27 +593868,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4481] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), + [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), @@ -600743,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6567), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4764), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6569), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6571), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -600789,27 +593939,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4482] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -600819,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_SEMI] = ACTIONS(6773), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -600865,27 +594010,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4483] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -600895,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(5422), - [anon_sym_COLON] = ACTIONS(4742), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -600941,27 +594081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4484] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [sym_modifier] = STATE(5123), [sym_preproc_region] = STATE(4484), [sym_preproc_endregion] = STATE(4484), [sym_preproc_line] = STATE(4484), @@ -600971,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(5422), - [anon_sym_COLON] = ACTIONS(6775), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -601017,27 +594152,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4485] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), [sym_preproc_region] = STATE(4485), [sym_preproc_endregion] = STATE(4485), [sym_preproc_line] = STATE(4485), @@ -601047,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -601093,27 +594223,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4486] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4486), [sym_preproc_endregion] = STATE(4486), [sym_preproc_line] = STATE(4486), @@ -601123,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6779), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -601169,27 +594294,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4487] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4487), [sym_preproc_endregion] = STATE(4487), [sym_preproc_line] = STATE(4487), @@ -601199,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6781), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -601245,27 +594365,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4488] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4488), [sym_preproc_endregion] = STATE(4488), [sym_preproc_line] = STATE(4488), @@ -601275,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6783), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -601321,27 +594436,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4489] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -601351,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(5422), - [anon_sym_COLON] = ACTIONS(6785), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -601397,27 +594507,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4490] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -601427,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6787), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -601473,27 +594578,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4491] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4491), [sym_preproc_endregion] = STATE(4491), [sym_preproc_line] = STATE(4491), @@ -601503,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(5422), - [anon_sym_COLON] = ACTIONS(6789), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -601549,27 +594649,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4492] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -601579,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(5422), - [anon_sym_COLON] = ACTIONS(6791), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -601625,27 +594720,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4493] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -601655,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(5422), - [anon_sym_COLON] = ACTIONS(6793), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -601701,27 +594791,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4494] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -601731,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_by] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -601777,6 +594862,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4495] = { + [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), @@ -601786,61 +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_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_COLON] = ACTIONS(4006), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_RBRACK] = ACTIONS(5005), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_RPAREN] = ACTIONS(5005), - [anon_sym_RBRACE] = ACTIONS(5005), - [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(5003), - [anon_sym_switch] = ACTIONS(4006), - [anon_sym_when] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(5003), - [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(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), @@ -601853,27 +594933,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4496] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(4496), [sym_preproc_endregion] = STATE(4496), [sym_preproc_line] = STATE(4496), @@ -601883,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(5422), - [anon_sym_COLON] = ACTIONS(6795), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5678), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -601929,27 +595004,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4497] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), [sym_preproc_region] = STATE(4497), [sym_preproc_endregion] = STATE(4497), [sym_preproc_line] = STATE(4497), @@ -601959,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), + [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(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4772), - [anon_sym_QMARK] = ACTIONS(6523), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6525), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6527), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -602005,27 +595075,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4498] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -602035,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6797), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -602081,27 +595146,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4499] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), [sym_preproc_region] = STATE(4499), [sym_preproc_endregion] = STATE(4499), [sym_preproc_line] = STATE(4499), @@ -602111,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_SEMI] = ACTIONS(6799), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -602157,27 +595217,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4500] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -602187,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(2185), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -602233,27 +595288,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4501] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -602263,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(5422), - [anon_sym_COLON] = ACTIONS(6801), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -602309,27 +595359,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4502] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -602339,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6803), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -602385,27 +595430,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4503] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -602415,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(5422), - [anon_sym_COLON] = ACTIONS(6805), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -602461,27 +595501,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4504] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), + [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), @@ -602491,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_equals] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(6513), - [anon_sym_is] = ACTIONS(6515), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -602537,27 +595572,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4505] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -602567,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(6807), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -602613,27 +595643,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4506] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -602643,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(6809), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -602689,27 +595714,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4507] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4507), [sym_preproc_endregion] = STATE(4507), [sym_preproc_line] = STATE(4507), @@ -602719,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(5422), - [anon_sym_COLON] = ACTIONS(6811), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -602765,27 +595785,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4508] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), + [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), @@ -602795,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4760), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -602841,27 +595856,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4509] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), + [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), @@ -602871,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6569), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6571), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -602917,27 +595927,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4510] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), + [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), @@ -602947,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -602993,27 +595998,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4511] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), + [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), @@ -603023,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6571), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -603069,27 +596069,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4512] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), [sym_preproc_region] = STATE(4512), [sym_preproc_endregion] = STATE(4512), [sym_preproc_line] = STATE(4512), @@ -603099,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6571), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -603145,27 +596140,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4513] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), + [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), @@ -603175,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6571), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -603221,27 +596211,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4514] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), [sym_preproc_region] = STATE(4514), [sym_preproc_endregion] = STATE(4514), [sym_preproc_line] = STATE(4514), @@ -603251,40 +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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6571), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -603297,27 +596282,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4515] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), [sym_preproc_region] = STATE(4515), [sym_preproc_endregion] = STATE(4515), [sym_preproc_line] = STATE(4515), @@ -603327,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6571), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -603373,27 +596353,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4516] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), + [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), @@ -603403,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), + [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_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [anon_sym_LT_EQ] = ACTIONS(5250), + [anon_sym_GT_EQ] = ACTIONS(5252), + [anon_sym_EQ_EQ] = ACTIONS(5256), + [anon_sym_BANG_EQ] = 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), @@ -603449,27 +596424,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4517] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), + [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), @@ -603479,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6571), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -603525,27 +596495,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4518] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), + [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), @@ -603555,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -603601,27 +596566,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4519] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), + [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), @@ -603631,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -603677,27 +596637,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4520] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), [sym_preproc_region] = STATE(4520), [sym_preproc_endregion] = STATE(4520), [sym_preproc_line] = STATE(4520), @@ -603707,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(6813), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -603753,27 +596708,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4521] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), + [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), @@ -603783,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4686), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -603829,27 +596779,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4522] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), + [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), @@ -603859,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6525), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -603905,27 +596850,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4523] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -603935,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -603981,27 +596921,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4524] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), + [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), @@ -604011,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6525), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -604057,27 +596992,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4525] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), [sym_preproc_region] = STATE(4525), [sym_preproc_endregion] = STATE(4525), [sym_preproc_line] = STATE(4525), @@ -604087,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6567), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4772), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6569), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6571), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -604133,27 +597063,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4526] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), [sym_preproc_region] = STATE(4526), [sym_preproc_endregion] = STATE(4526), [sym_preproc_line] = STATE(4526), @@ -604163,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_SEMI] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -604209,27 +597134,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4527] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), [sym_preproc_region] = STATE(4527), [sym_preproc_endregion] = STATE(4527), [sym_preproc_line] = STATE(4527), @@ -604239,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6525), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -604285,27 +597205,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4528] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), [sym_preproc_region] = STATE(4528), [sym_preproc_endregion] = STATE(4528), [sym_preproc_line] = STATE(4528), @@ -604315,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6525), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -604361,27 +597276,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4529] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), [sym_preproc_region] = STATE(4529), [sym_preproc_endregion] = STATE(4529), [sym_preproc_line] = STATE(4529), @@ -604391,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6525), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -604437,27 +597347,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4530] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), [sym_preproc_region] = STATE(4530), [sym_preproc_endregion] = STATE(4530), [sym_preproc_line] = STATE(4530), @@ -604467,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -604513,27 +597418,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4531] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), + [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), @@ -604543,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6507), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_equals] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(6513), - [anon_sym_is] = ACTIONS(6515), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -604589,27 +597489,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4532] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), [sym_preproc_region] = STATE(4532), [sym_preproc_endregion] = STATE(4532), [sym_preproc_line] = STATE(4532), @@ -604619,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -604665,27 +597560,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4533] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), + [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), @@ -604695,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -604741,27 +597631,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4534] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), + [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), @@ -604771,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4686), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6525), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6527), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -604817,6 +597702,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4535] = { + [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), @@ -604826,61 +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_SEMI] = ACTIONS(5752), - [anon_sym_EQ] = ACTIONS(6815), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_RBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(5752), - [anon_sym_RBRACE] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(6817), - [anon_sym_DASH_EQ] = ACTIONS(6817), - [anon_sym_STAR_EQ] = ACTIONS(6817), - [anon_sym_SLASH_EQ] = ACTIONS(6817), - [anon_sym_PERCENT_EQ] = ACTIONS(6817), - [anon_sym_AMP_EQ] = ACTIONS(6817), - [anon_sym_CARET_EQ] = ACTIONS(6817), - [anon_sym_PIPE_EQ] = ACTIONS(6817), - [anon_sym_LT_LT_EQ] = ACTIONS(6817), - [anon_sym_GT_GT_EQ] = ACTIONS(6817), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6817), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6817), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), - [aux_sym_preproc_if_token3] = ACTIONS(5752), - [aux_sym_preproc_else_token1] = ACTIONS(5752), - [aux_sym_preproc_elif_token1] = ACTIONS(5752), + [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), @@ -604893,27 +597773,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4536] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4536), [sym_preproc_endregion] = STATE(4536), [sym_preproc_line] = STATE(4536), @@ -604923,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6819), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -604969,27 +597844,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4537] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -604999,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(5422), - [anon_sym_COLON] = ACTIONS(6821), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -605045,27 +597915,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4538] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4538), [sym_preproc_endregion] = STATE(4538), [sym_preproc_line] = STATE(4538), @@ -605075,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(5422), - [anon_sym_COLON] = ACTIONS(6823), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -605121,27 +597986,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4539] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), [sym_preproc_region] = STATE(4539), [sym_preproc_endregion] = STATE(4539), [sym_preproc_line] = STATE(4539), @@ -605151,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_SEMI] = ACTIONS(6825), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -605197,27 +598057,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4540] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), [sym_preproc_region] = STATE(4540), [sym_preproc_endregion] = STATE(4540), [sym_preproc_line] = STATE(4540), @@ -605227,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -605273,27 +598128,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4541] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), [sym_preproc_region] = STATE(4541), [sym_preproc_endregion] = STATE(4541), [sym_preproc_line] = STATE(4541), @@ -605303,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(6827), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -605349,27 +598199,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4542] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -605379,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(5422), - [anon_sym_COLON] = ACTIONS(6829), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -605425,27 +598270,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4543] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -605455,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -605501,27 +598341,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4544] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), [sym_preproc_region] = STATE(4544), [sym_preproc_endregion] = STATE(4544), [sym_preproc_line] = STATE(4544), @@ -605531,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_SEMI] = ACTIONS(6831), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -605577,27 +598412,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4545] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), [sym_preproc_region] = STATE(4545), [sym_preproc_endregion] = STATE(4545), [sym_preproc_line] = STATE(4545), @@ -605607,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -605653,27 +598483,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4546] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -605683,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -605729,27 +598554,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4547] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), [sym_preproc_region] = STATE(4547), [sym_preproc_endregion] = STATE(4547), [sym_preproc_line] = STATE(4547), @@ -605759,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -605805,27 +598625,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4548] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4548), [sym_preproc_endregion] = STATE(4548), [sym_preproc_line] = STATE(4548), @@ -605835,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(5422), - [anon_sym_COLON] = ACTIONS(6833), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -605881,27 +598696,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4549] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -605911,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -605957,27 +598767,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4550] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), [sym_preproc_region] = STATE(4550), [sym_preproc_endregion] = STATE(4550), [sym_preproc_line] = STATE(4550), @@ -605987,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4768), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -606033,27 +598838,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4551] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -606063,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -606109,27 +598909,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4552] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -606139,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6835), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -606185,27 +598980,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4553] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), [sym_preproc_region] = STATE(4553), [sym_preproc_endregion] = STATE(4553), [sym_preproc_line] = STATE(4553), @@ -606215,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -606261,27 +599051,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4554] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), [sym_preproc_region] = STATE(4554), [sym_preproc_endregion] = STATE(4554), [sym_preproc_line] = STATE(4554), @@ -606291,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -606337,27 +599122,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4555] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -606367,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(5422), - [anon_sym_COLON] = ACTIONS(6837), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -606413,27 +599193,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4556] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4556), [sym_preproc_endregion] = STATE(4556), [sym_preproc_line] = STATE(4556), @@ -606443,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6839), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -606489,27 +599264,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4557] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -606519,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4694), - [anon_sym_DASH] = ACTIONS(4694), - [anon_sym_STAR] = ACTIONS(4686), - [anon_sym_SLASH] = ACTIONS(4694), - [anon_sym_PERCENT] = ACTIONS(4686), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_by] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -606565,27 +599335,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4558] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1487), - [sym_op_lte] = STATE(1487), - [sym_op_eq] = STATE(1489), - [sym_op_neq] = STATE(1489), - [sym_op_gt] = STATE(1487), - [sym_op_gte] = STATE(1487), - [sym_op_and] = STATE(1490), - [sym_op_or] = STATE(1491), - [sym_op_bitwise_and] = STATE(1493), - [sym_op_bitwise_or] = STATE(1494), - [sym_op_bitwise_xor] = STATE(1496), - [sym_op_left_shift] = STATE(1497), - [sym_op_right_shift] = STATE(1497), - [sym_op_unsigned_right_shift] = STATE(1497), - [sym_op_plus] = STATE(1498), - [sym_op_minus] = STATE(1498), - [sym_op_multiply] = STATE(1500), - [sym_op_divide] = STATE(1500), - [sym_op_modulo] = STATE(1500), + [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), @@ -606595,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6567), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_EQ_GT] = ACTIONS(4742), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6565), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6569), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6571), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -606641,27 +599406,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4559] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), [sym_preproc_region] = STATE(4559), [sym_preproc_endregion] = STATE(4559), [sym_preproc_line] = STATE(4559), @@ -606671,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -606717,27 +599477,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4560] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -606747,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(5422), - [anon_sym_COLON] = ACTIONS(6841), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -606793,27 +599548,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4561] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), [sym_preproc_region] = STATE(4561), [sym_preproc_endregion] = STATE(4561), [sym_preproc_line] = STATE(4561), @@ -606823,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4686), - [anon_sym_GT_GT] = ACTIONS(4694), - [anon_sym_GT_GT_GT] = ACTIONS(4686), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -606869,27 +599619,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4562] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), + [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), @@ -606899,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6513), - [anon_sym_is] = ACTIONS(6515), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -606945,27 +599690,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4563] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1463), - [sym_op_lte] = STATE(1463), - [sym_op_eq] = STATE(1478), - [sym_op_neq] = STATE(1478), - [sym_op_gt] = STATE(1463), - [sym_op_gte] = STATE(1463), - [sym_op_and] = STATE(1499), - [sym_op_or] = STATE(1501), - [sym_op_bitwise_and] = STATE(1504), - [sym_op_bitwise_or] = STATE(1510), - [sym_op_bitwise_xor] = STATE(1511), - [sym_op_left_shift] = STATE(1539), - [sym_op_right_shift] = STATE(1539), - [sym_op_unsigned_right_shift] = STATE(1539), - [sym_op_plus] = STATE(1639), - [sym_op_minus] = STATE(1639), - [sym_op_multiply] = STATE(1654), - [sym_op_divide] = STATE(1654), - [sym_op_modulo] = STATE(1654), + [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), @@ -606975,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6537), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6539), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6541), - [anon_sym_by] = ACTIONS(4772), - [anon_sym_as] = ACTIONS(6545), - [anon_sym_is] = ACTIONS(6547), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -607021,27 +599761,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4564] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -607051,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(5422), - [anon_sym_COLON] = ACTIONS(6843), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -607097,27 +599832,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4565] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), [sym_preproc_region] = STATE(4565), [sym_preproc_endregion] = STATE(4565), [sym_preproc_line] = STATE(4565), @@ -607127,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_equals] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -607173,27 +599903,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4566] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), + [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), @@ -607203,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6513), - [anon_sym_is] = ACTIONS(6515), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -607249,27 +599974,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4567] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -607279,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6845), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -607325,27 +600045,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4568] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4568), [sym_preproc_endregion] = STATE(4568), [sym_preproc_line] = STATE(4568), @@ -607355,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(5422), - [anon_sym_COLON] = ACTIONS(6847), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -607401,27 +600116,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4569] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1218), - [sym_op_lte] = STATE(1218), - [sym_op_eq] = STATE(1217), - [sym_op_neq] = STATE(1217), - [sym_op_gt] = STATE(1218), - [sym_op_gte] = STATE(1218), - [sym_op_and] = STATE(1216), - [sym_op_or] = STATE(1215), - [sym_op_bitwise_and] = STATE(1214), - [sym_op_bitwise_or] = STATE(1213), - [sym_op_bitwise_xor] = STATE(1211), - [sym_op_left_shift] = STATE(1210), - [sym_op_right_shift] = STATE(1210), - [sym_op_unsigned_right_shift] = STATE(1210), - [sym_op_plus] = STATE(1209), - [sym_op_minus] = STATE(1209), - [sym_op_multiply] = STATE(1208), - [sym_op_divide] = STATE(1208), - [sym_op_modulo] = STATE(1208), [sym_preproc_region] = STATE(4569), [sym_preproc_endregion] = STATE(4569), [sym_preproc_line] = STATE(4569), @@ -607431,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_in] = ACTIONS(4764), - [anon_sym_QMARK] = ACTIONS(6523), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6525), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6527), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(6529), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -607477,27 +600187,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4570] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4570), [sym_preproc_endregion] = STATE(4570), [sym_preproc_line] = STATE(4570), @@ -607507,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(5422), - [anon_sym_COLON] = ACTIONS(4798), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -607553,27 +600258,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4571] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -607583,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6849), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -607629,27 +600329,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4572] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), [sym_preproc_region] = STATE(4572), [sym_preproc_endregion] = STATE(4572), [sym_preproc_line] = STATE(4572), @@ -607659,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6513), - [anon_sym_is] = ACTIONS(6515), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -607705,27 +600400,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4573] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4573), [sym_preproc_endregion] = STATE(4573), [sym_preproc_line] = STATE(4573), @@ -607735,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6851), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -607781,27 +600471,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4574] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4574), [sym_preproc_endregion] = STATE(4574), [sym_preproc_line] = STATE(4574), @@ -607811,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_LBRACK] = ACTIONS(5422), - [anon_sym_COLON] = ACTIONS(6853), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -607857,27 +600542,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4575] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4575), [sym_preproc_endregion] = STATE(4575), [sym_preproc_line] = STATE(4575), @@ -607887,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(5422), - [anon_sym_COLON] = ACTIONS(6855), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -607933,27 +600613,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4576] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1140), - [sym_op_lte] = STATE(1140), - [sym_op_eq] = STATE(1141), - [sym_op_neq] = STATE(1141), - [sym_op_gt] = STATE(1140), - [sym_op_gte] = STATE(1140), - [sym_op_and] = STATE(1142), - [sym_op_or] = STATE(1143), - [sym_op_bitwise_and] = STATE(1146), - [sym_op_bitwise_or] = STATE(1160), - [sym_op_bitwise_xor] = STATE(1164), - [sym_op_left_shift] = STATE(1167), - [sym_op_right_shift] = STATE(1167), - [sym_op_unsigned_right_shift] = STATE(1167), - [sym_op_plus] = STATE(1169), - [sym_op_minus] = STATE(1169), - [sym_op_multiply] = STATE(1188), - [sym_op_divide] = STATE(1188), - [sym_op_modulo] = STATE(1188), + [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), @@ -607963,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_QMARK] = ACTIONS(4770), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_STAR] = ACTIONS(4768), - [anon_sym_SLASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4768), - [anon_sym_CARET] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4768), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_GT_GT_GT] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), - [anon_sym_GT_EQ] = ACTIONS(4768), - [anon_sym_LT_EQ] = ACTIONS(4768), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4768), - [anon_sym_DOT_DOT] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [sym_op_coalescing] = ACTIONS(4768), - [anon_sym_on] = ACTIONS(4768), - [anon_sym_as] = ACTIONS(4768), - [anon_sym_is] = ACTIONS(4768), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4768), + [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), @@ -608009,27 +600684,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4577] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -608039,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(5422), - [anon_sym_COLON] = ACTIONS(6857), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -608085,27 +600755,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4578] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4578), [sym_preproc_endregion] = STATE(4578), [sym_preproc_line] = STATE(4578), @@ -608115,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6859), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -608161,27 +600826,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4579] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [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), @@ -608191,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(5422), - [anon_sym_COLON] = ACTIONS(6861), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -608237,27 +600897,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4580] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4580), [sym_preproc_endregion] = STATE(4580), [sym_preproc_line] = STATE(4580), @@ -608267,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(5422), - [anon_sym_COLON] = ACTIONS(6863), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -608313,27 +600968,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4581] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4581), [sym_preproc_endregion] = STATE(4581), [sym_preproc_line] = STATE(4581), @@ -608343,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(5422), - [anon_sym_COLON] = ACTIONS(6865), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -608389,27 +601039,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4582] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), + [sym_initializer_expression] = STATE(3312), [sym_preproc_region] = STATE(4582), [sym_preproc_endregion] = STATE(4582), [sym_preproc_line] = STATE(4582), @@ -608419,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(5422), - [anon_sym_COLON] = ACTIONS(6867), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -608465,27 +601110,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4583] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), [sym_preproc_region] = STATE(4583), [sym_preproc_endregion] = STATE(4583), [sym_preproc_line] = STATE(4583), @@ -608495,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6513), - [anon_sym_is] = ACTIONS(6515), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -608541,27 +601181,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4584] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), [sym_preproc_region] = STATE(4584), [sym_preproc_endregion] = STATE(4584), [sym_preproc_line] = STATE(4584), @@ -608571,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6513), - [anon_sym_is] = ACTIONS(6515), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -608617,27 +601252,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4585] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), [sym_preproc_region] = STATE(4585), [sym_preproc_endregion] = STATE(4585), [sym_preproc_line] = STATE(4585), @@ -608647,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6513), - [anon_sym_is] = ACTIONS(6515), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -608693,27 +601323,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4586] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), + [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), @@ -608723,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4694), - [anon_sym_GT] = ACTIONS(4694), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4686), - [anon_sym_PIPE] = ACTIONS(4694), - [anon_sym_AMP] = ACTIONS(4694), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4686), - [anon_sym_BANG_EQ] = ACTIONS(4686), - [anon_sym_GT_EQ] = ACTIONS(4686), - [anon_sym_LT_EQ] = ACTIONS(4686), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4686), - [anon_sym_PIPE_PIPE] = ACTIONS(4686), - [sym_op_coalescing] = ACTIONS(4686), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(4686), - [anon_sym_is] = ACTIONS(4686), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -608769,27 +601394,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4587] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), [sym_preproc_region] = STATE(4587), [sym_preproc_endregion] = STATE(4587), [sym_preproc_line] = STATE(4587), @@ -608799,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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(4694), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6511), - [anon_sym_equals] = ACTIONS(4686), - [anon_sym_as] = ACTIONS(6513), - [anon_sym_is] = ACTIONS(6515), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -608845,27 +601465,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4588] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(914), - [sym_op_lte] = STATE(914), - [sym_op_eq] = STATE(919), - [sym_op_neq] = STATE(919), - [sym_op_gt] = STATE(914), - [sym_op_gte] = STATE(914), - [sym_op_and] = STATE(920), - [sym_op_or] = STATE(921), - [sym_op_bitwise_and] = STATE(922), - [sym_op_bitwise_or] = STATE(923), - [sym_op_bitwise_xor] = STATE(925), - [sym_op_left_shift] = STATE(927), - [sym_op_right_shift] = STATE(927), - [sym_op_unsigned_right_shift] = STATE(927), - [sym_op_plus] = STATE(928), - [sym_op_minus] = STATE(928), - [sym_op_multiply] = STATE(930), - [sym_op_divide] = STATE(930), - [sym_op_modulo] = STATE(930), [sym_preproc_region] = STATE(4588), [sym_preproc_endregion] = STATE(4588), [sym_preproc_line] = STATE(4588), @@ -608875,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4762), - [anon_sym_GT] = ACTIONS(4762), - [anon_sym_QMARK] = ACTIONS(4762), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4762), - [anon_sym_DASH] = ACTIONS(4762), - [anon_sym_STAR] = ACTIONS(4760), - [anon_sym_SLASH] = ACTIONS(4762), - [anon_sym_PERCENT] = ACTIONS(4760), - [anon_sym_CARET] = ACTIONS(4760), - [anon_sym_PIPE] = ACTIONS(4762), - [anon_sym_AMP] = ACTIONS(4762), - [anon_sym_LT_LT] = ACTIONS(4760), - [anon_sym_GT_GT] = ACTIONS(4762), - [anon_sym_GT_GT_GT] = ACTIONS(4760), - [anon_sym_EQ_EQ] = ACTIONS(4760), - [anon_sym_BANG_EQ] = ACTIONS(4760), - [anon_sym_GT_EQ] = ACTIONS(4760), - [anon_sym_LT_EQ] = ACTIONS(4760), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4760), - [anon_sym_DOT_DOT] = ACTIONS(6509), - [anon_sym_AMP_AMP] = ACTIONS(4760), - [anon_sym_PIPE_PIPE] = ACTIONS(4760), - [sym_op_coalescing] = ACTIONS(4760), - [anon_sym_equals] = ACTIONS(4760), - [anon_sym_as] = ACTIONS(4760), - [anon_sym_is] = ACTIONS(4760), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(4760), + [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), @@ -608921,27 +601536,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4589] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4589), [sym_preproc_endregion] = STATE(4589), [sym_preproc_line] = STATE(4589), @@ -608951,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6869), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -608997,27 +601607,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4590] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -609027,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6871), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -609073,27 +601678,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4591] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -609103,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6873), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -609149,27 +601749,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4592] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), [sym_preproc_region] = STATE(4592), [sym_preproc_endregion] = STATE(4592), [sym_preproc_line] = STATE(4592), @@ -609179,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(6875), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -609225,27 +601820,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4593] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1082), - [sym_op_lte] = STATE(1082), - [sym_op_eq] = STATE(1083), - [sym_op_neq] = STATE(1083), - [sym_op_gt] = STATE(1082), - [sym_op_gte] = STATE(1082), - [sym_op_and] = STATE(1090), - [sym_op_or] = STATE(1099), - [sym_op_bitwise_and] = STATE(1163), - [sym_op_bitwise_or] = STATE(1166), - [sym_op_bitwise_xor] = STATE(1172), - [sym_op_left_shift] = STATE(1173), - [sym_op_right_shift] = STATE(1173), - [sym_op_unsigned_right_shift] = STATE(1173), - [sym_op_plus] = STATE(1180), - [sym_op_minus] = STATE(1180), - [sym_op_multiply] = STATE(1186), - [sym_op_divide] = STATE(1186), - [sym_op_modulo] = STATE(1186), [sym_preproc_region] = STATE(4593), [sym_preproc_endregion] = STATE(4593), [sym_preproc_line] = STATE(4593), @@ -609255,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(5422), - [anon_sym_COLON] = ACTIONS(6877), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(6517), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(6505), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6519), - [anon_sym_as] = ACTIONS(5831), - [anon_sym_is] = ACTIONS(6521), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -609301,27 +601891,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4594] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4594), [sym_preproc_endregion] = STATE(4594), [sym_preproc_line] = STATE(4594), @@ -609331,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6879), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -609377,27 +601962,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4595] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4595), [sym_preproc_endregion] = STATE(4595), [sym_preproc_line] = STATE(4595), @@ -609407,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6881), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -609453,27 +602033,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4596] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), [sym_preproc_region] = STATE(4596), [sym_preproc_endregion] = STATE(4596), [sym_preproc_line] = STATE(4596), @@ -609483,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6883), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -609529,27 +602104,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4597] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), + [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), @@ -609559,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_SEMI] = ACTIONS(6885), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -609605,27 +602175,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4598] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1662), - [sym_op_lte] = STATE(1662), - [sym_op_eq] = STATE(1663), - [sym_op_neq] = STATE(1663), - [sym_op_gt] = STATE(1662), - [sym_op_gte] = STATE(1662), - [sym_op_and] = STATE(1668), - [sym_op_or] = STATE(1669), - [sym_op_bitwise_and] = STATE(1671), - [sym_op_bitwise_or] = STATE(1674), - [sym_op_bitwise_xor] = STATE(1676), - [sym_op_left_shift] = STATE(1678), - [sym_op_right_shift] = STATE(1678), - [sym_op_unsigned_right_shift] = STATE(1678), - [sym_op_plus] = STATE(1682), - [sym_op_minus] = STATE(1682), - [sym_op_multiply] = STATE(1683), - [sym_op_divide] = STATE(1683), - [sym_op_modulo] = STATE(1683), [sym_preproc_region] = STATE(4598), [sym_preproc_endregion] = STATE(4598), [sym_preproc_line] = STATE(4598), @@ -609635,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(6887), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5847), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5849), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5851), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -609681,27 +602246,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4599] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1002), - [sym_op_lte] = STATE(1002), - [sym_op_eq] = STATE(999), - [sym_op_neq] = STATE(999), - [sym_op_gt] = STATE(1002), - [sym_op_gte] = STATE(1002), - [sym_op_and] = STATE(998), - [sym_op_or] = STATE(995), - [sym_op_bitwise_and] = STATE(990), - [sym_op_bitwise_or] = STATE(989), - [sym_op_bitwise_xor] = STATE(988), - [sym_op_left_shift] = STATE(987), - [sym_op_right_shift] = STATE(987), - [sym_op_unsigned_right_shift] = STATE(987), - [sym_op_plus] = STATE(986), - [sym_op_minus] = STATE(986), - [sym_op_multiply] = STATE(983), - [sym_op_divide] = STATE(983), - [sym_op_modulo] = STATE(983), + [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), @@ -609711,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5906), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5908), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5910), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5912), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -609757,27 +602317,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4600] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1881), - [sym_op_lte] = STATE(1881), - [sym_op_eq] = STATE(1872), - [sym_op_neq] = STATE(1872), - [sym_op_gt] = STATE(1881), - [sym_op_gte] = STATE(1881), - [sym_op_and] = STATE(1869), - [sym_op_or] = STATE(1861), - [sym_op_bitwise_and] = STATE(1860), - [sym_op_bitwise_or] = STATE(1855), - [sym_op_bitwise_xor] = STATE(1854), - [sym_op_left_shift] = STATE(1853), - [sym_op_right_shift] = STATE(1853), - [sym_op_unsigned_right_shift] = STATE(1853), - [sym_op_plus] = STATE(1852), - [sym_op_minus] = STATE(1852), - [sym_op_multiply] = STATE(1851), - [sym_op_divide] = STATE(1851), - [sym_op_modulo] = STATE(1851), + [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), @@ -609787,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(5422), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4754), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -609832,27 +602388,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4601] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(4674), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -609862,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(5646), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -609907,27 +602459,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4602] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1053), - [sym_op_lte] = STATE(1053), - [sym_op_eq] = STATE(1054), - [sym_op_neq] = STATE(1054), - [sym_op_gt] = STATE(1053), - [sym_op_gte] = STATE(1053), - [sym_op_and] = STATE(1056), - [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(1080), - [sym_op_minus] = STATE(1080), - [sym_op_multiply] = STATE(1081), - [sym_op_divide] = STATE(1081), - [sym_op_modulo] = STATE(1081), + [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), @@ -609937,39 +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), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5875), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -609982,27 +602530,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4603] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1161), - [sym_op_lte] = STATE(1161), - [sym_op_eq] = STATE(1157), - [sym_op_neq] = STATE(1157), - [sym_op_gt] = STATE(1161), - [sym_op_gte] = STATE(1161), - [sym_op_and] = STATE(1156), - [sym_op_or] = STATE(1155), - [sym_op_bitwise_and] = STATE(1154), - [sym_op_bitwise_or] = STATE(1153), - [sym_op_bitwise_xor] = STATE(1152), - [sym_op_left_shift] = STATE(1151), - [sym_op_right_shift] = STATE(1151), - [sym_op_unsigned_right_shift] = STATE(1151), - [sym_op_plus] = STATE(1149), - [sym_op_minus] = STATE(1149), - [sym_op_multiply] = STATE(1147), - [sym_op_divide] = STATE(1147), - [sym_op_modulo] = STATE(1147), [sym_preproc_region] = STATE(4603), [sym_preproc_endregion] = STATE(4603), [sym_preproc_line] = STATE(4603), @@ -610012,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5678), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -610057,27 +602601,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4604] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), [sym_preproc_region] = STATE(4604), [sym_preproc_endregion] = STATE(4604), [sym_preproc_line] = STATE(4604), @@ -610087,39 +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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -610132,27 +602672,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4605] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(901), - [sym_op_lte] = STATE(901), - [sym_op_eq] = STATE(900), - [sym_op_neq] = STATE(900), - [sym_op_gt] = STATE(901), - [sym_op_gte] = STATE(901), - [sym_op_and] = STATE(895), - [sym_op_or] = STATE(891), - [sym_op_bitwise_and] = STATE(881), - [sym_op_bitwise_or] = STATE(879), - [sym_op_bitwise_xor] = STATE(878), - [sym_op_left_shift] = STATE(872), - [sym_op_right_shift] = STATE(872), - [sym_op_unsigned_right_shift] = STATE(872), - [sym_op_plus] = STATE(870), - [sym_op_minus] = STATE(870), - [sym_op_multiply] = STATE(869), - [sym_op_divide] = STATE(869), - [sym_op_modulo] = STATE(869), [sym_preproc_region] = STATE(4605), [sym_preproc_endregion] = STATE(4605), [sym_preproc_line] = STATE(4605), @@ -610162,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(5422), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5800), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -610207,27 +602743,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4606] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2901), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -610237,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(4825), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -610282,27 +602814,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4607] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(845), - [sym_op_lte] = STATE(845), - [sym_op_eq] = STATE(846), - [sym_op_neq] = STATE(846), - [sym_op_gt] = STATE(845), - [sym_op_gte] = STATE(845), - [sym_op_and] = STATE(848), - [sym_op_or] = STATE(850), - [sym_op_bitwise_and] = STATE(851), - [sym_op_bitwise_or] = STATE(852), - [sym_op_bitwise_xor] = STATE(853), - [sym_op_left_shift] = STATE(854), - [sym_op_right_shift] = STATE(854), - [sym_op_unsigned_right_shift] = STATE(854), - [sym_op_plus] = STATE(857), - [sym_op_minus] = STATE(857), - [sym_op_multiply] = STATE(861), - [sym_op_divide] = STATE(861), - [sym_op_modulo] = STATE(861), + [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), @@ -610312,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(5422), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5839), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -610357,27 +602885,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4608] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1239), - [sym_op_lte] = STATE(1239), - [sym_op_eq] = STATE(1240), - [sym_op_neq] = STATE(1240), - [sym_op_gt] = STATE(1239), - [sym_op_gte] = STATE(1239), - [sym_op_and] = STATE(1244), - [sym_op_or] = STATE(1246), - [sym_op_bitwise_and] = STATE(1247), - [sym_op_bitwise_or] = STATE(1249), - [sym_op_bitwise_xor] = STATE(1250), - [sym_op_left_shift] = STATE(1251), - [sym_op_right_shift] = STATE(1251), - [sym_op_unsigned_right_shift] = STATE(1251), - [sym_op_plus] = STATE(1252), - [sym_op_minus] = STATE(1252), - [sym_op_multiply] = STATE(1257), - [sym_op_divide] = STATE(1257), - [sym_op_modulo] = STATE(1257), + [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), @@ -610387,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5813), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -610432,27 +602956,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4609] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1518), - [sym_op_lte] = STATE(1518), - [sym_op_eq] = STATE(1517), - [sym_op_neq] = STATE(1517), - [sym_op_gt] = STATE(1518), - [sym_op_gte] = STATE(1518), - [sym_op_and] = STATE(1178), - [sym_op_or] = STATE(1097), - [sym_op_bitwise_and] = STATE(1078), - [sym_op_bitwise_or] = STATE(958), - [sym_op_bitwise_xor] = STATE(1419), - [sym_op_left_shift] = STATE(860), - [sym_op_right_shift] = STATE(860), - [sym_op_unsigned_right_shift] = STATE(860), - [sym_op_plus] = STATE(884), - [sym_op_minus] = STATE(884), - [sym_op_multiply] = STATE(889), - [sym_op_divide] = STATE(889), - [sym_op_modulo] = STATE(889), + [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), @@ -610462,39 +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), - [anon_sym_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5692), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -610507,27 +603027,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4610] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1260), - [sym_op_lte] = STATE(1260), - [sym_op_eq] = STATE(1259), - [sym_op_neq] = STATE(1259), - [sym_op_gt] = STATE(1260), - [sym_op_gte] = STATE(1260), - [sym_op_and] = STATE(1256), - [sym_op_or] = STATE(1255), - [sym_op_bitwise_and] = STATE(1254), - [sym_op_bitwise_or] = STATE(1253), - [sym_op_bitwise_xor] = STATE(1248), - [sym_op_left_shift] = STATE(1245), - [sym_op_right_shift] = STATE(1245), - [sym_op_unsigned_right_shift] = STATE(1245), - [sym_op_plus] = STATE(1243), - [sym_op_minus] = STATE(1243), - [sym_op_multiply] = STATE(1242), - [sym_op_divide] = STATE(1242), - [sym_op_modulo] = STATE(1242), [sym_preproc_region] = STATE(4610), [sym_preproc_endregion] = STATE(4610), [sym_preproc_line] = STATE(4610), @@ -610537,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(5422), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4839), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -610582,27 +603098,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4611] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1017), - [sym_op_lte] = STATE(1017), - [sym_op_eq] = STATE(1012), - [sym_op_neq] = STATE(1012), - [sym_op_gt] = STATE(1017), - [sym_op_gte] = STATE(1017), - [sym_op_and] = STATE(1011), - [sym_op_or] = STATE(1006), - [sym_op_bitwise_and] = STATE(1004), - [sym_op_bitwise_or] = STATE(1000), - [sym_op_bitwise_xor] = STATE(997), - [sym_op_left_shift] = STATE(996), - [sym_op_right_shift] = STATE(996), - [sym_op_unsigned_right_shift] = STATE(996), - [sym_op_plus] = STATE(994), - [sym_op_minus] = STATE(994), - [sym_op_multiply] = STATE(992), - [sym_op_divide] = STATE(992), - [sym_op_modulo] = STATE(992), + [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), @@ -610612,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4956), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -610657,27 +603169,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4612] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1269), - [sym_op_lte] = STATE(1269), - [sym_op_eq] = STATE(1205), - [sym_op_neq] = STATE(1205), - [sym_op_gt] = STATE(1269), - [sym_op_gte] = STATE(1269), - [sym_op_and] = STATE(1198), - [sym_op_or] = STATE(1176), - [sym_op_bitwise_and] = STATE(1175), - [sym_op_bitwise_or] = STATE(1171), - [sym_op_bitwise_xor] = STATE(1170), - [sym_op_left_shift] = STATE(1168), - [sym_op_right_shift] = STATE(1168), - [sym_op_unsigned_right_shift] = STATE(1168), - [sym_op_plus] = STATE(1159), - [sym_op_minus] = STATE(1159), - [sym_op_multiply] = STATE(1144), - [sym_op_divide] = STATE(1144), - [sym_op_modulo] = STATE(1144), [sym_preproc_region] = STATE(4612), [sym_preproc_endregion] = STATE(4612), [sym_preproc_line] = STATE(4612), @@ -610687,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6263), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -610732,27 +603240,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4613] = { - [sym_argument_list] = STATE(5264), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1589), - [sym_op_lte] = STATE(1589), - [sym_op_eq] = STATE(1588), - [sym_op_neq] = STATE(1588), - [sym_op_gt] = STATE(1589), - [sym_op_gte] = STATE(1589), - [sym_op_and] = STATE(1586), - [sym_op_or] = STATE(1585), - [sym_op_bitwise_and] = STATE(1582), - [sym_op_bitwise_or] = STATE(1581), - [sym_op_bitwise_xor] = STATE(1580), - [sym_op_left_shift] = STATE(1579), - [sym_op_right_shift] = STATE(1579), - [sym_op_unsigned_right_shift] = STATE(1579), - [sym_op_plus] = STATE(1571), - [sym_op_minus] = STATE(1571), - [sym_op_multiply] = STATE(1562), - [sym_op_divide] = STATE(1562), - [sym_op_modulo] = STATE(1562), + [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), @@ -610762,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(5422), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4698), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(4813), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -610807,27 +603311,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4614] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1386), - [sym_op_lte] = STATE(1386), - [sym_op_eq] = STATE(1388), - [sym_op_neq] = STATE(1388), - [sym_op_gt] = STATE(1386), - [sym_op_gte] = STATE(1386), - [sym_op_and] = STATE(1389), - [sym_op_or] = STATE(1392), - [sym_op_bitwise_and] = STATE(1395), - [sym_op_bitwise_or] = STATE(1397), - [sym_op_bitwise_xor] = STATE(1398), - [sym_op_left_shift] = STATE(1399), - [sym_op_right_shift] = STATE(1399), - [sym_op_unsigned_right_shift] = STATE(1399), - [sym_op_plus] = STATE(1401), - [sym_op_minus] = STATE(1401), - [sym_op_multiply] = STATE(1403), - [sym_op_divide] = STATE(1403), - [sym_op_modulo] = STATE(1403), + [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), @@ -610837,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(5422), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5544), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -610882,27 +603382,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4615] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(961), - [sym_op_lte] = STATE(961), - [sym_op_eq] = STATE(963), - [sym_op_neq] = STATE(963), - [sym_op_gt] = STATE(961), - [sym_op_gte] = STATE(961), - [sym_op_and] = STATE(1003), - [sym_op_or] = STATE(1008), - [sym_op_bitwise_and] = STATE(1013), - [sym_op_bitwise_or] = STATE(1015), - [sym_op_bitwise_xor] = STATE(1021), - [sym_op_left_shift] = STATE(1024), - [sym_op_right_shift] = STATE(1024), - [sym_op_unsigned_right_shift] = STATE(1024), - [sym_op_plus] = STATE(1031), - [sym_op_minus] = STATE(1031), - [sym_op_multiply] = STATE(1032), - [sym_op_divide] = STATE(1032), - [sym_op_modulo] = STATE(1032), [sym_preproc_region] = STATE(4615), [sym_preproc_endregion] = STATE(4615), [sym_preproc_line] = STATE(4615), @@ -610912,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6107), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -610957,27 +603453,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4616] = { - [sym_argument_list] = STATE(3842), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1779), - [sym_op_lte] = STATE(1779), - [sym_op_eq] = STATE(1652), - [sym_op_neq] = STATE(1652), - [sym_op_gt] = STATE(1779), - [sym_op_gte] = STATE(1779), - [sym_op_and] = STATE(1646), - [sym_op_or] = STATE(1643), - [sym_op_bitwise_and] = STATE(1641), - [sym_op_bitwise_or] = STATE(1637), - [sym_op_bitwise_xor] = STATE(1634), - [sym_op_left_shift] = STATE(1628), - [sym_op_right_shift] = STATE(1628), - [sym_op_unsigned_right_shift] = STATE(1628), - [sym_op_plus] = STATE(1626), - [sym_op_minus] = STATE(1626), - [sym_op_multiply] = STATE(1621), - [sym_op_divide] = STATE(1621), - [sym_op_modulo] = STATE(1621), [sym_preproc_region] = STATE(4616), [sym_preproc_endregion] = STATE(4616), [sym_preproc_line] = STATE(4616), @@ -610987,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(5422), - [anon_sym_LPAREN] = ACTIONS(4926), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(4928), - [anon_sym_PLUS_PLUS] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4930), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5428), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -611032,6 +603524,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4617] = { + [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), @@ -611041,60 +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_EQ] = ACTIONS(4528), - [anon_sym_LBRACK] = ACTIONS(4526), - [anon_sym_COLON] = ACTIONS(4526), - [anon_sym_COMMA] = ACTIONS(4526), - [anon_sym_LPAREN] = ACTIONS(4526), - [anon_sym_RPAREN] = ACTIONS(4526), - [anon_sym_RBRACE] = ACTIONS(4526), - [anon_sym_LT] = ACTIONS(4532), - [anon_sym_GT] = ACTIONS(4532), - [anon_sym_QMARK] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4526), - [anon_sym_DASH_DASH] = ACTIONS(4526), - [anon_sym_PLUS] = ACTIONS(4532), - [anon_sym_DASH] = ACTIONS(4532), - [anon_sym_STAR] = ACTIONS(4532), - [anon_sym_SLASH] = ACTIONS(4532), - [anon_sym_PERCENT] = ACTIONS(4532), - [anon_sym_CARET] = ACTIONS(4532), - [anon_sym_PIPE] = ACTIONS(4532), - [anon_sym_AMP] = ACTIONS(4532), - [anon_sym_LT_LT] = ACTIONS(4532), - [anon_sym_GT_GT] = ACTIONS(4532), - [anon_sym_GT_GT_GT] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4526), - [anon_sym_BANG_EQ] = ACTIONS(4526), - [anon_sym_GT_EQ] = ACTIONS(4526), - [anon_sym_LT_EQ] = ACTIONS(4526), - [anon_sym_DOT] = ACTIONS(4532), - [anon_sym_switch] = ACTIONS(4526), - [anon_sym_when] = ACTIONS(4526), - [anon_sym_DOT_DOT] = ACTIONS(4526), - [anon_sym_and] = ACTIONS(4526), - [anon_sym_or] = ACTIONS(4526), - [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_AMP_AMP] = ACTIONS(4526), - [anon_sym_PIPE_PIPE] = ACTIONS(4526), - [sym_op_coalescing] = ACTIONS(4532), - [anon_sym_into] = ACTIONS(4526), - [anon_sym_as] = ACTIONS(4526), - [anon_sym_is] = ACTIONS(4526), - [anon_sym_DASH_GT] = ACTIONS(4526), - [anon_sym_with] = ACTIONS(4526), + [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), @@ -611107,27 +603595,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4618] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1391), - [sym_op_lte] = STATE(1391), - [sym_op_eq] = STATE(1394), - [sym_op_neq] = STATE(1394), - [sym_op_gt] = STATE(1391), - [sym_op_gte] = STATE(1391), - [sym_op_and] = STATE(1396), - [sym_op_or] = STATE(1400), - [sym_op_bitwise_and] = STATE(1406), - [sym_op_bitwise_or] = STATE(1410), - [sym_op_bitwise_xor] = STATE(1411), - [sym_op_left_shift] = STATE(1412), - [sym_op_right_shift] = STATE(1412), - [sym_op_unsigned_right_shift] = STATE(1412), - [sym_op_plus] = STATE(1413), - [sym_op_minus] = STATE(1413), - [sym_op_multiply] = STATE(1414), - [sym_op_divide] = STATE(1414), - [sym_op_modulo] = STATE(1414), + [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), @@ -611137,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(5422), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5730), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -611182,27 +603666,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4619] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1303), - [sym_op_lte] = STATE(1303), - [sym_op_eq] = STATE(1335), - [sym_op_neq] = STATE(1335), - [sym_op_gt] = STATE(1303), - [sym_op_gte] = STATE(1303), - [sym_op_and] = STATE(1343), - [sym_op_or] = STATE(1352), - [sym_op_bitwise_and] = STATE(1355), - [sym_op_bitwise_or] = STATE(1362), - [sym_op_bitwise_xor] = STATE(1365), - [sym_op_left_shift] = STATE(1371), - [sym_op_right_shift] = STATE(1371), - [sym_op_unsigned_right_shift] = STATE(1371), - [sym_op_plus] = STATE(1374), - [sym_op_minus] = STATE(1374), - [sym_op_multiply] = STATE(1375), - [sym_op_divide] = STATE(1375), - [sym_op_modulo] = STATE(1375), + [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), @@ -611212,39 +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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6301), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -611257,27 +603737,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4620] = { - [sym_argument_list] = STATE(5655), - [sym_bracketed_argument_list] = STATE(2549), - [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(4620), [sym_preproc_endregion] = STATE(4620), [sym_preproc_line] = STATE(4620), @@ -611287,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(5422), - [anon_sym_LPAREN] = ACTIONS(5648), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5650), - [anon_sym_PLUS_PLUS] = ACTIONS(5652), - [anon_sym_DASH_DASH] = ACTIONS(5652), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(5302), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5666), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(5274), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -611332,27 +603808,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4621] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1234), - [sym_op_lte] = STATE(1234), - [sym_op_eq] = STATE(1460), - [sym_op_neq] = STATE(1460), - [sym_op_gt] = STATE(1234), - [sym_op_gte] = STATE(1234), - [sym_op_and] = STATE(1465), - [sym_op_or] = STATE(1479), - [sym_op_bitwise_and] = STATE(1480), - [sym_op_bitwise_or] = STATE(1486), - [sym_op_bitwise_xor] = STATE(1488), - [sym_op_left_shift] = STATE(1495), - [sym_op_right_shift] = STATE(1495), - [sym_op_unsigned_right_shift] = STATE(1495), - [sym_op_plus] = STATE(1506), - [sym_op_minus] = STATE(1506), - [sym_op_multiply] = STATE(1508), - [sym_op_divide] = STATE(1508), - [sym_op_modulo] = STATE(1508), [sym_preproc_region] = STATE(4621), [sym_preproc_endregion] = STATE(4621), [sym_preproc_line] = STATE(4621), @@ -611362,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5672), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -611407,27 +603879,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4622] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1121), - [sym_op_lte] = STATE(1121), - [sym_op_eq] = STATE(1123), - [sym_op_neq] = STATE(1123), - [sym_op_gt] = STATE(1121), - [sym_op_gte] = STATE(1121), - [sym_op_and] = STATE(1124), - [sym_op_or] = STATE(1126), - [sym_op_bitwise_and] = STATE(1127), - [sym_op_bitwise_or] = STATE(1128), - [sym_op_bitwise_xor] = STATE(1130), - [sym_op_left_shift] = STATE(1131), - [sym_op_right_shift] = STATE(1131), - [sym_op_unsigned_right_shift] = STATE(1131), - [sym_op_plus] = STATE(1134), - [sym_op_minus] = STATE(1134), - [sym_op_multiply] = STATE(1135), - [sym_op_divide] = STATE(1135), - [sym_op_modulo] = STATE(1135), + [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), @@ -611437,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5534), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -611482,27 +603950,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4623] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1895), - [sym_op_lte] = STATE(1895), - [sym_op_eq] = STATE(1896), - [sym_op_neq] = STATE(1896), - [sym_op_gt] = STATE(1895), - [sym_op_gte] = STATE(1895), - [sym_op_and] = STATE(1897), - [sym_op_or] = STATE(1899), - [sym_op_bitwise_and] = STATE(1900), - [sym_op_bitwise_or] = STATE(1901), - [sym_op_bitwise_xor] = STATE(1905), - [sym_op_left_shift] = STATE(1906), - [sym_op_right_shift] = STATE(1906), - [sym_op_unsigned_right_shift] = STATE(1906), - [sym_op_plus] = STATE(1907), - [sym_op_minus] = STATE(1907), - [sym_op_multiply] = STATE(1908), - [sym_op_divide] = STATE(1908), - [sym_op_modulo] = STATE(1908), + [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), @@ -611512,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6331), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -611557,9 +604021,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4624] = { - [sym_attribute_list] = STATE(5039), - [sym__attribute_list] = STATE(4995), - [sym_preproc_if_in_attribute_list] = STATE(5039), + [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), @@ -611569,57 +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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4624), - [sym__identifier_token] = ACTIONS(5490), - [anon_sym_extern] = ACTIONS(5490), - [anon_sym_alias] = ACTIONS(5490), - [anon_sym_global] = ACTIONS(5490), - [anon_sym_unsafe] = ACTIONS(5490), - [anon_sym_static] = ACTIONS(5490), - [anon_sym_LBRACK] = ACTIONS(6891), - [anon_sym_public] = ACTIONS(5490), - [anon_sym_private] = ACTIONS(5490), - [anon_sym_readonly] = ACTIONS(5490), - [anon_sym_abstract] = ACTIONS(5490), - [anon_sym_async] = ACTIONS(5490), - [anon_sym_const] = ACTIONS(5490), - [anon_sym_file] = ACTIONS(5490), - [anon_sym_fixed] = ACTIONS(5490), - [anon_sym_internal] = ACTIONS(5490), - [anon_sym_new] = ACTIONS(5490), - [anon_sym_override] = ACTIONS(5490), - [anon_sym_partial] = ACTIONS(5490), - [anon_sym_protected] = ACTIONS(5490), - [anon_sym_required] = ACTIONS(5490), - [anon_sym_sealed] = ACTIONS(5490), - [anon_sym_virtual] = ACTIONS(5490), - [anon_sym_volatile] = ACTIONS(5490), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_notnull] = ACTIONS(5490), - [anon_sym_unmanaged] = ACTIONS(5490), - [sym_accessor_get] = ACTIONS(5490), - [sym_accessor_set] = ACTIONS(5490), - [sym_accessor_add] = ACTIONS(5490), - [sym_accessor_remove] = ACTIONS(5490), - [sym_accessor_init] = ACTIONS(5490), - [anon_sym_scoped] = ACTIONS(5490), - [anon_sym_var] = ACTIONS(5490), - [anon_sym_yield] = ACTIONS(5490), - [anon_sym_when] = ACTIONS(5490), - [anon_sym_from] = ACTIONS(5490), - [anon_sym_into] = ACTIONS(5490), - [anon_sym_join] = ACTIONS(5490), - [anon_sym_on] = ACTIONS(5490), - [anon_sym_equals] = ACTIONS(5490), - [anon_sym_let] = ACTIONS(5490), - [anon_sym_orderby] = ACTIONS(5490), - [anon_sym_ascending] = ACTIONS(5490), - [anon_sym_descending] = ACTIONS(5490), - [anon_sym_group] = ACTIONS(5490), - [anon_sym_by] = ACTIONS(5490), - [anon_sym_select] = ACTIONS(5490), - [sym_grit_metavariable] = ACTIONS(5495), - [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_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), @@ -611632,7 +604092,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4625] = { - [sym_block] = STATE(1997), + [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), @@ -611642,59 +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), - [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(5942), - [anon_sym_class] = ACTIONS(3738), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_enum] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(6897), - [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(5942), + [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), @@ -611707,7 +604163,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4626] = { - [sym_block] = STATE(2056), + [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), @@ -611717,59 +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), - [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(5942), - [anon_sym_class] = ACTIONS(3738), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_enum] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(6899), - [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(5942), + [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), @@ -611782,6 +604234,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4627] = { + [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), @@ -611791,60 +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_EQ] = ACTIONS(6901), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_where] = ACTIONS(5752), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(6903), - [anon_sym_DASH_EQ] = ACTIONS(6903), - [anon_sym_STAR_EQ] = ACTIONS(6903), - [anon_sym_SLASH_EQ] = ACTIONS(6903), - [anon_sym_PERCENT_EQ] = ACTIONS(6903), - [anon_sym_AMP_EQ] = ACTIONS(6903), - [anon_sym_CARET_EQ] = ACTIONS(6903), - [anon_sym_PIPE_EQ] = ACTIONS(6903), - [anon_sym_LT_LT_EQ] = ACTIONS(6903), - [anon_sym_GT_GT_EQ] = ACTIONS(6903), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6903), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6903), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5752), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_join] = ACTIONS(5752), - [anon_sym_let] = ACTIONS(5752), - [anon_sym_orderby] = ACTIONS(5752), - [anon_sym_group] = ACTIONS(5752), - [anon_sym_select] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -611857,27 +604305,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4628] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3099), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -611887,39 +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), - [anon_sym_LBRACK] = ACTIONS(5518), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -611932,27 +604376,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4629] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1554), - [sym_op_lte] = STATE(1554), - [sym_op_eq] = STATE(1555), - [sym_op_neq] = STATE(1555), - [sym_op_gt] = STATE(1554), - [sym_op_gte] = STATE(1554), - [sym_op_and] = STATE(1556), - [sym_op_or] = STATE(1564), - [sym_op_bitwise_and] = STATE(1565), - [sym_op_bitwise_or] = STATE(1570), - [sym_op_bitwise_xor] = STATE(1572), - [sym_op_left_shift] = STATE(1573), - [sym_op_right_shift] = STATE(1573), - [sym_op_unsigned_right_shift] = STATE(1573), - [sym_op_plus] = STATE(1574), - [sym_op_minus] = STATE(1574), - [sym_op_multiply] = STATE(1575), - [sym_op_divide] = STATE(1575), - [sym_op_modulo] = STATE(1575), [sym_preproc_region] = STATE(4629), [sym_preproc_endregion] = STATE(4629), [sym_preproc_line] = STATE(4629), @@ -611962,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(6037), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -612007,27 +604447,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4630] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1069), - [sym_op_lte] = STATE(1069), - [sym_op_eq] = STATE(1068), - [sym_op_neq] = STATE(1068), - [sym_op_gt] = STATE(1069), - [sym_op_gte] = STATE(1069), - [sym_op_and] = STATE(1066), - [sym_op_or] = STATE(1065), - [sym_op_bitwise_and] = STATE(1064), - [sym_op_bitwise_or] = STATE(1063), - [sym_op_bitwise_xor] = STATE(1062), - [sym_op_left_shift] = STATE(1061), - [sym_op_right_shift] = STATE(1061), - [sym_op_unsigned_right_shift] = STATE(1061), - [sym_op_plus] = STATE(1060), - [sym_op_minus] = STATE(1060), - [sym_op_multiply] = STATE(1058), - [sym_op_divide] = STATE(1058), - [sym_op_modulo] = STATE(1058), [sym_preproc_region] = STATE(4630), [sym_preproc_endregion] = STATE(4630), [sym_preproc_line] = STATE(4630), @@ -612037,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(5422), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5855), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -612082,27 +604518,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4631] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(3350), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -612112,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(4684), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4728), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4738), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -612157,27 +604589,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4632] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1877), - [sym_op_lte] = STATE(1877), - [sym_op_eq] = STATE(1878), - [sym_op_neq] = STATE(1878), - [sym_op_gt] = STATE(1877), - [sym_op_gte] = STATE(1877), - [sym_op_and] = STATE(1879), - [sym_op_or] = STATE(1880), - [sym_op_bitwise_and] = STATE(1882), - [sym_op_bitwise_or] = STATE(1884), - [sym_op_bitwise_xor] = STATE(1885), - [sym_op_left_shift] = STATE(1886), - [sym_op_right_shift] = STATE(1886), - [sym_op_unsigned_right_shift] = STATE(1886), - [sym_op_plus] = STATE(1888), - [sym_op_minus] = STATE(1888), - [sym_op_multiply] = STATE(1890), - [sym_op_divide] = STATE(1890), - [sym_op_modulo] = STATE(1890), + [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), @@ -612187,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5954), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -612232,27 +604660,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4633] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1849), - [sym_op_lte] = STATE(1849), - [sym_op_eq] = STATE(1846), - [sym_op_neq] = STATE(1846), - [sym_op_gt] = STATE(1849), - [sym_op_gte] = STATE(1849), - [sym_op_and] = STATE(1844), - [sym_op_or] = STATE(1842), - [sym_op_bitwise_and] = STATE(1841), - [sym_op_bitwise_or] = STATE(1840), - [sym_op_bitwise_xor] = STATE(1839), - [sym_op_left_shift] = STATE(1838), - [sym_op_right_shift] = STATE(1838), - [sym_op_unsigned_right_shift] = STATE(1838), - [sym_op_plus] = STATE(1837), - [sym_op_minus] = STATE(1837), - [sym_op_multiply] = STATE(1836), - [sym_op_divide] = STATE(1836), - [sym_op_modulo] = STATE(1836), [sym_preproc_region] = STATE(4633), [sym_preproc_endregion] = STATE(4633), [sym_preproc_line] = STATE(4633), @@ -612262,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5999), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -612307,27 +604731,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4634] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2489), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -612337,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(4924), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4932), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4936), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -612382,7 +604802,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4635] = { - [sym_type_argument_list] = STATE(4656), [sym_preproc_region] = STATE(4635), [sym_preproc_endregion] = STATE(4635), [sym_preproc_line] = STATE(4635), @@ -612392,59 +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_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(6905), - [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(6908), - [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_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), @@ -612457,8 +604873,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4636] = { - [sym_argument_list] = STATE(4650), - [sym_initializer_expression] = STATE(4820), [sym_preproc_region] = STATE(4636), [sym_preproc_endregion] = STATE(4636), [sym_preproc_line] = STATE(4636), @@ -612468,58 +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_SEMI] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COLON] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5682), - [anon_sym_RBRACK] = ACTIONS(5682), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_RPAREN] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_RBRACE] = ACTIONS(5682), - [anon_sym_LT] = ACTIONS(5684), - [anon_sym_GT] = ACTIONS(5684), - [anon_sym_in] = ACTIONS(5684), - [anon_sym_QMARK] = ACTIONS(5684), - [anon_sym_BANG] = ACTIONS(5684), - [anon_sym_PLUS_PLUS] = ACTIONS(5682), - [anon_sym_DASH_DASH] = ACTIONS(5682), - [anon_sym_PLUS] = ACTIONS(5684), - [anon_sym_DASH] = ACTIONS(5684), - [anon_sym_STAR] = ACTIONS(5682), - [anon_sym_SLASH] = ACTIONS(5684), - [anon_sym_PERCENT] = ACTIONS(5682), - [anon_sym_CARET] = ACTIONS(5682), - [anon_sym_PIPE] = ACTIONS(5684), - [anon_sym_AMP] = ACTIONS(5684), - [anon_sym_LT_LT] = ACTIONS(5682), - [anon_sym_GT_GT] = ACTIONS(5684), - [anon_sym_GT_GT_GT] = ACTIONS(5682), - [anon_sym_EQ_EQ] = ACTIONS(5682), - [anon_sym_BANG_EQ] = ACTIONS(5682), - [anon_sym_GT_EQ] = ACTIONS(5682), - [anon_sym_LT_EQ] = ACTIONS(5682), - [anon_sym_DOT] = ACTIONS(5684), - [anon_sym_EQ_GT] = ACTIONS(5682), - [anon_sym_switch] = ACTIONS(5682), - [anon_sym_when] = ACTIONS(5682), - [anon_sym_DOT_DOT] = ACTIONS(5682), - [anon_sym_and] = ACTIONS(5682), - [anon_sym_or] = ACTIONS(5682), - [anon_sym_AMP_AMP] = ACTIONS(5682), - [anon_sym_PIPE_PIPE] = ACTIONS(5682), - [sym_op_coalescing] = ACTIONS(5682), - [anon_sym_into] = ACTIONS(5682), - [anon_sym_on] = ACTIONS(5682), - [anon_sym_equals] = ACTIONS(5682), - [anon_sym_by] = ACTIONS(5682), - [anon_sym_as] = ACTIONS(5682), - [anon_sym_is] = ACTIONS(5682), - [anon_sym_DASH_GT] = ACTIONS(5682), - [anon_sym_with] = ACTIONS(5682), - [aux_sym_preproc_if_token3] = ACTIONS(5682), - [aux_sym_preproc_else_token1] = ACTIONS(5682), - [aux_sym_preproc_elif_token1] = ACTIONS(5682), + [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), @@ -612532,27 +604944,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4637] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1623), - [sym_op_lte] = STATE(1623), - [sym_op_eq] = STATE(1604), - [sym_op_neq] = STATE(1604), - [sym_op_gt] = STATE(1623), - [sym_op_gte] = STATE(1623), - [sym_op_and] = STATE(1602), - [sym_op_or] = STATE(1594), - [sym_op_bitwise_and] = STATE(1587), - [sym_op_bitwise_or] = STATE(1568), - [sym_op_bitwise_xor] = STATE(1563), - [sym_op_left_shift] = STATE(1561), - [sym_op_right_shift] = STATE(1561), - [sym_op_unsigned_right_shift] = STATE(1561), - [sym_op_plus] = STATE(1559), - [sym_op_minus] = STATE(1559), - [sym_op_multiply] = STATE(1558), - [sym_op_divide] = STATE(1558), - [sym_op_modulo] = STATE(1558), [sym_preproc_region] = STATE(4637), [sym_preproc_endregion] = STATE(4637), [sym_preproc_line] = STATE(4637), @@ -612562,39 +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_LBRACK] = ACTIONS(5422), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5782), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -612607,27 +605015,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4638] = { - [sym_argument_list] = STATE(4965), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1527), - [sym_op_lte] = STATE(1527), - [sym_op_eq] = STATE(1528), - [sym_op_neq] = STATE(1528), - [sym_op_gt] = STATE(1527), - [sym_op_gte] = STATE(1527), - [sym_op_and] = STATE(1531), - [sym_op_or] = STATE(1532), - [sym_op_bitwise_and] = STATE(1577), - [sym_op_bitwise_or] = STATE(1598), - [sym_op_bitwise_xor] = STATE(1699), - [sym_op_left_shift] = STATE(1704), - [sym_op_right_shift] = STATE(1704), - [sym_op_unsigned_right_shift] = STATE(1704), - [sym_op_plus] = STATE(1711), - [sym_op_minus] = STATE(1711), - [sym_op_multiply] = STATE(1717), - [sym_op_divide] = STATE(1717), - [sym_op_modulo] = STATE(1717), + [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), @@ -612637,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(5422), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(5522), - [anon_sym_PLUS_PLUS] = ACTIONS(5524), - [anon_sym_DASH_DASH] = ACTIONS(5524), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5704), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4468), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -612682,27 +605086,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4639] = { - [sym_argument_list] = STATE(4793), - [sym_bracketed_argument_list] = STATE(2549), - [sym_op_lt] = STATE(1696), - [sym_op_lte] = STATE(1696), - [sym_op_eq] = STATE(1693), - [sym_op_neq] = STATE(1693), - [sym_op_gt] = STATE(1696), - [sym_op_gte] = STATE(1696), - [sym_op_and] = STATE(1692), - [sym_op_or] = STATE(1658), - [sym_op_bitwise_and] = STATE(1656), - [sym_op_bitwise_or] = STATE(1649), - [sym_op_bitwise_xor] = STATE(1645), - [sym_op_left_shift] = STATE(1638), - [sym_op_right_shift] = STATE(1638), - [sym_op_unsigned_right_shift] = STATE(1638), - [sym_op_plus] = STATE(1632), - [sym_op_minus] = STATE(1632), - [sym_op_multiply] = STATE(1615), - [sym_op_divide] = STATE(1615), - [sym_op_modulo] = STATE(1615), [sym_preproc_region] = STATE(4639), [sym_preproc_endregion] = STATE(4639), [sym_preproc_line] = STATE(4639), @@ -612712,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(5422), - [anon_sym_LPAREN] = ACTIONS(4827), - [anon_sym_LT] = ACTIONS(4690), - [anon_sym_GT] = ACTIONS(4692), - [anon_sym_QMARK] = ACTIONS(5700), - [anon_sym_BANG] = ACTIONS(4831), - [anon_sym_PLUS_PLUS] = ACTIONS(4833), - [anon_sym_DASH_DASH] = ACTIONS(4833), - [anon_sym_PLUS] = ACTIONS(4700), - [anon_sym_DASH] = ACTIONS(4702), - [anon_sym_STAR] = ACTIONS(4704), - [anon_sym_SLASH] = ACTIONS(4706), - [anon_sym_PERCENT] = ACTIONS(4708), - [anon_sym_CARET] = ACTIONS(4710), - [anon_sym_PIPE] = ACTIONS(4746), - [anon_sym_AMP] = ACTIONS(4712), - [anon_sym_LT_LT] = ACTIONS(4714), - [anon_sym_GT_GT] = ACTIONS(4716), - [anon_sym_GT_GT_GT] = ACTIONS(4718), - [anon_sym_EQ_EQ] = ACTIONS(4720), - [anon_sym_BANG_EQ] = ACTIONS(4722), - [anon_sym_GT_EQ] = ACTIONS(4724), - [anon_sym_LT_EQ] = ACTIONS(4726), - [anon_sym_DOT] = ACTIONS(4400), - [anon_sym_switch] = ACTIONS(5424), - [anon_sym_DOT_DOT] = ACTIONS(5702), - [anon_sym_AMP_AMP] = ACTIONS(4750), - [anon_sym_PIPE_PIPE] = ACTIONS(4752), - [sym_op_coalescing] = ACTIONS(5865), - [anon_sym_as] = ACTIONS(5706), - [anon_sym_is] = ACTIONS(5708), - [anon_sym_DASH_GT] = ACTIONS(4402), - [anon_sym_with] = ACTIONS(5434), + [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), @@ -612757,9 +605157,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4640] = { - [sym_attribute_list] = STATE(5078), - [sym__attribute_list] = STATE(5127), - [sym_preproc_if_in_attribute_list] = STATE(5078), + [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), @@ -612769,56 +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), - [aux_sym__class_declaration_initializer_repeat1] = STATE(4640), - [sym__identifier_token] = ACTIONS(5490), - [anon_sym_extern] = ACTIONS(5490), - [anon_sym_alias] = ACTIONS(5490), - [anon_sym_global] = ACTIONS(5490), - [anon_sym_unsafe] = ACTIONS(5490), - [anon_sym_static] = ACTIONS(5490), - [anon_sym_LBRACK] = ACTIONS(6910), - [anon_sym_LPAREN] = ACTIONS(5495), - [anon_sym_ref] = ACTIONS(5490), - [anon_sym_delegate] = ACTIONS(5490), - [anon_sym_public] = ACTIONS(5490), - [anon_sym_private] = ACTIONS(5490), - [anon_sym_readonly] = ACTIONS(5490), - [anon_sym_abstract] = ACTIONS(5490), - [anon_sym_async] = ACTIONS(5490), - [anon_sym_const] = ACTIONS(5490), - [anon_sym_file] = ACTIONS(5490), - [anon_sym_fixed] = ACTIONS(5490), - [anon_sym_internal] = ACTIONS(5490), - [anon_sym_new] = ACTIONS(5490), - [anon_sym_override] = ACTIONS(5490), - [anon_sym_partial] = ACTIONS(5490), - [anon_sym_protected] = ACTIONS(5490), - [anon_sym_required] = ACTIONS(5490), - [anon_sym_sealed] = ACTIONS(5490), - [anon_sym_virtual] = ACTIONS(5490), - [anon_sym_volatile] = ACTIONS(5490), - [anon_sym_where] = ACTIONS(5490), - [anon_sym_notnull] = ACTIONS(5490), - [anon_sym_unmanaged] = ACTIONS(5490), - [anon_sym_scoped] = ACTIONS(5490), - [anon_sym_var] = ACTIONS(5490), - [sym_predefined_type] = ACTIONS(5490), - [anon_sym_yield] = ACTIONS(5490), - [anon_sym_when] = ACTIONS(5490), - [anon_sym_from] = ACTIONS(5490), - [anon_sym_into] = ACTIONS(5490), - [anon_sym_join] = ACTIONS(5490), - [anon_sym_on] = ACTIONS(5490), - [anon_sym_equals] = ACTIONS(5490), - [anon_sym_let] = ACTIONS(5490), - [anon_sym_orderby] = ACTIONS(5490), - [anon_sym_ascending] = ACTIONS(5490), - [anon_sym_descending] = ACTIONS(5490), - [anon_sym_group] = ACTIONS(5490), - [anon_sym_by] = ACTIONS(5490), - [anon_sym_select] = ACTIONS(5490), - [sym_grit_metavariable] = ACTIONS(5495), - [aux_sym_preproc_if_token1] = ACTIONS(6913), + [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), @@ -612840,59 +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), - [anon_sym_SEMI] = ACTIONS(5752), - [anon_sym_EQ] = ACTIONS(6916), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_RBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(5752), - [anon_sym_RBRACE] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(6918), - [anon_sym_DASH_EQ] = ACTIONS(6918), - [anon_sym_STAR_EQ] = ACTIONS(6918), - [anon_sym_SLASH_EQ] = ACTIONS(6918), - [anon_sym_PERCENT_EQ] = ACTIONS(6918), - [anon_sym_AMP_EQ] = ACTIONS(6918), - [anon_sym_CARET_EQ] = ACTIONS(6918), - [anon_sym_PIPE_EQ] = ACTIONS(6918), - [anon_sym_LT_LT_EQ] = ACTIONS(6918), - [anon_sym_GT_GT_EQ] = ACTIONS(6918), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6918), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6918), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -612905,8 +605299,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4642] = { - [sym_argument_list] = STATE(4729), - [sym_initializer_expression] = STATE(5002), + [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), @@ -612916,57 +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(5682), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COLON] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5682), - [anon_sym_RBRACK] = ACTIONS(5682), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(5682), - [anon_sym_LT] = ACTIONS(5684), - [anon_sym_GT] = ACTIONS(5684), - [anon_sym_in] = ACTIONS(5682), - [anon_sym_QMARK] = ACTIONS(5684), - [anon_sym_BANG] = ACTIONS(5684), - [anon_sym_PLUS_PLUS] = ACTIONS(5682), - [anon_sym_DASH_DASH] = ACTIONS(5682), - [anon_sym_PLUS] = ACTIONS(5684), - [anon_sym_DASH] = ACTIONS(5684), - [anon_sym_STAR] = ACTIONS(5682), - [anon_sym_SLASH] = ACTIONS(5684), - [anon_sym_PERCENT] = ACTIONS(5682), - [anon_sym_CARET] = ACTIONS(5682), - [anon_sym_PIPE] = ACTIONS(5684), - [anon_sym_AMP] = ACTIONS(5684), - [anon_sym_LT_LT] = ACTIONS(5682), - [anon_sym_GT_GT] = ACTIONS(5684), - [anon_sym_GT_GT_GT] = ACTIONS(5682), - [anon_sym_EQ_EQ] = ACTIONS(5682), - [anon_sym_BANG_EQ] = ACTIONS(5682), - [anon_sym_GT_EQ] = ACTIONS(5682), - [anon_sym_LT_EQ] = ACTIONS(5682), - [anon_sym_DOT] = ACTIONS(5684), - [anon_sym_EQ_GT] = ACTIONS(5682), - [anon_sym_switch] = ACTIONS(5682), - [anon_sym_when] = ACTIONS(5682), - [anon_sym_DOT_DOT] = ACTIONS(5682), - [anon_sym_and] = ACTIONS(5682), - [anon_sym_or] = ACTIONS(5682), - [anon_sym_AMP_AMP] = ACTIONS(5682), - [anon_sym_PIPE_PIPE] = ACTIONS(5682), - [sym_op_coalescing] = ACTIONS(5682), - [anon_sym_on] = ACTIONS(5682), - [anon_sym_equals] = ACTIONS(5682), - [anon_sym_by] = ACTIONS(5682), - [anon_sym_as] = ACTIONS(5682), - [anon_sym_is] = ACTIONS(5682), - [anon_sym_DASH_GT] = ACTIONS(5682), - [anon_sym_with] = ACTIONS(5682), - [aux_sym_preproc_if_token3] = ACTIONS(5682), - [aux_sym_preproc_else_token1] = ACTIONS(5682), - [aux_sym_preproc_elif_token1] = ACTIONS(5682), + [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), @@ -612979,6 +605370,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4643] = { + [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), @@ -612988,59 +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_EQ] = ACTIONS(6920), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(5752), - [anon_sym_RBRACE] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(6922), - [anon_sym_DASH_EQ] = ACTIONS(6922), - [anon_sym_STAR_EQ] = ACTIONS(6922), - [anon_sym_SLASH_EQ] = ACTIONS(6922), - [anon_sym_PERCENT_EQ] = ACTIONS(6922), - [anon_sym_AMP_EQ] = ACTIONS(6922), - [anon_sym_CARET_EQ] = ACTIONS(6922), - [anon_sym_PIPE_EQ] = ACTIONS(6922), - [anon_sym_LT_LT_EQ] = ACTIONS(6922), - [anon_sym_GT_GT_EQ] = ACTIONS(6922), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6922), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6922), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -613062,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(3700), - [anon_sym_LPAREN] = ACTIONS(5942), - [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(3700), - [anon_sym_where] = ACTIONS(3735), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_notnull] = ACTIONS(3735), - [anon_sym_unmanaged] = ACTIONS(3735), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_scoped] = ACTIONS(3735), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [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), @@ -613127,7 +605512,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4645] = { - [sym_initializer_expression] = STATE(4821), + [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), @@ -613137,58 +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_SEMI] = ACTIONS(5760), - [anon_sym_LBRACK] = ACTIONS(5760), - [anon_sym_COLON] = ACTIONS(5760), - [anon_sym_COMMA] = ACTIONS(5760), - [anon_sym_RBRACK] = ACTIONS(5760), - [anon_sym_LPAREN] = ACTIONS(5760), - [anon_sym_RPAREN] = ACTIONS(5760), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_RBRACE] = ACTIONS(5760), - [anon_sym_LT] = ACTIONS(5762), - [anon_sym_GT] = ACTIONS(5762), - [anon_sym_in] = ACTIONS(5762), - [anon_sym_QMARK] = ACTIONS(5762), - [anon_sym_BANG] = ACTIONS(5762), - [anon_sym_PLUS_PLUS] = ACTIONS(5760), - [anon_sym_DASH_DASH] = ACTIONS(5760), - [anon_sym_PLUS] = ACTIONS(5762), - [anon_sym_DASH] = ACTIONS(5762), - [anon_sym_STAR] = ACTIONS(5760), - [anon_sym_SLASH] = ACTIONS(5762), - [anon_sym_PERCENT] = ACTIONS(5760), - [anon_sym_CARET] = ACTIONS(5760), - [anon_sym_PIPE] = ACTIONS(5762), - [anon_sym_AMP] = ACTIONS(5762), - [anon_sym_LT_LT] = ACTIONS(5760), - [anon_sym_GT_GT] = ACTIONS(5762), - [anon_sym_GT_GT_GT] = ACTIONS(5760), - [anon_sym_EQ_EQ] = ACTIONS(5760), - [anon_sym_BANG_EQ] = ACTIONS(5760), - [anon_sym_GT_EQ] = ACTIONS(5760), - [anon_sym_LT_EQ] = ACTIONS(5760), - [anon_sym_DOT] = ACTIONS(5762), - [anon_sym_EQ_GT] = ACTIONS(5760), - [anon_sym_switch] = ACTIONS(5760), - [anon_sym_when] = ACTIONS(5760), - [anon_sym_DOT_DOT] = ACTIONS(5760), - [anon_sym_and] = ACTIONS(5760), - [anon_sym_or] = ACTIONS(5760), - [anon_sym_AMP_AMP] = ACTIONS(5760), - [anon_sym_PIPE_PIPE] = ACTIONS(5760), - [sym_op_coalescing] = ACTIONS(5760), - [anon_sym_into] = ACTIONS(5760), - [anon_sym_on] = ACTIONS(5760), - [anon_sym_equals] = ACTIONS(5760), - [anon_sym_by] = ACTIONS(5760), - [anon_sym_as] = ACTIONS(5760), - [anon_sym_is] = ACTIONS(5760), - [anon_sym_DASH_GT] = ACTIONS(5760), - [anon_sym_with] = ACTIONS(5760), - [aux_sym_preproc_if_token3] = ACTIONS(5760), - [aux_sym_preproc_else_token1] = ACTIONS(5760), - [aux_sym_preproc_elif_token1] = ACTIONS(5760), + [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), @@ -613199,8 +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_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), @@ -613210,59 +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_EQ] = ACTIONS(6924), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_where] = ACTIONS(5752), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(6926), - [anon_sym_DASH_EQ] = ACTIONS(6926), - [anon_sym_STAR_EQ] = ACTIONS(6926), - [anon_sym_SLASH_EQ] = ACTIONS(6926), - [anon_sym_PERCENT_EQ] = ACTIONS(6926), - [anon_sym_AMP_EQ] = ACTIONS(6926), - [anon_sym_CARET_EQ] = ACTIONS(6926), - [anon_sym_PIPE_EQ] = ACTIONS(6926), - [anon_sym_LT_LT_EQ] = ACTIONS(6926), - [anon_sym_GT_GT_EQ] = ACTIONS(6926), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6926), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6926), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_from] = ACTIONS(5752), - [anon_sym_join] = ACTIONS(5752), - [anon_sym_let] = ACTIONS(5752), - [anon_sym_orderby] = ACTIONS(5752), - [anon_sym_group] = ACTIONS(5752), - [anon_sym_select] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -613284,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_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(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), @@ -613349,7 +605725,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4648] = { - [sym_initializer_expression] = STATE(4817), [sym_preproc_region] = STATE(4648), [sym_preproc_endregion] = STATE(4648), [sym_preproc_line] = STATE(4648), @@ -613359,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(5764), - [anon_sym_LBRACK] = ACTIONS(5766), - [anon_sym_COLON] = ACTIONS(5764), - [anon_sym_COMMA] = ACTIONS(5764), - [anon_sym_RBRACK] = ACTIONS(5764), - [anon_sym_LPAREN] = ACTIONS(5764), - [anon_sym_RPAREN] = ACTIONS(5764), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_RBRACE] = ACTIONS(5764), - [anon_sym_LT] = ACTIONS(5769), - [anon_sym_GT] = ACTIONS(5769), - [anon_sym_in] = ACTIONS(5769), - [anon_sym_QMARK] = ACTIONS(5769), - [anon_sym_BANG] = ACTIONS(5769), - [anon_sym_PLUS_PLUS] = ACTIONS(5764), - [anon_sym_DASH_DASH] = ACTIONS(5764), - [anon_sym_PLUS] = ACTIONS(5769), - [anon_sym_DASH] = ACTIONS(5769), - [anon_sym_STAR] = ACTIONS(5764), - [anon_sym_SLASH] = ACTIONS(5769), - [anon_sym_PERCENT] = ACTIONS(5764), - [anon_sym_CARET] = ACTIONS(5764), - [anon_sym_PIPE] = ACTIONS(5769), - [anon_sym_AMP] = ACTIONS(5769), - [anon_sym_LT_LT] = ACTIONS(5764), - [anon_sym_GT_GT] = ACTIONS(5769), - [anon_sym_GT_GT_GT] = ACTIONS(5764), - [anon_sym_EQ_EQ] = ACTIONS(5764), - [anon_sym_BANG_EQ] = ACTIONS(5764), - [anon_sym_GT_EQ] = ACTIONS(5764), - [anon_sym_LT_EQ] = ACTIONS(5764), - [anon_sym_DOT] = ACTIONS(5769), - [anon_sym_EQ_GT] = ACTIONS(5764), - [anon_sym_switch] = ACTIONS(5764), - [anon_sym_when] = ACTIONS(5764), - [anon_sym_DOT_DOT] = ACTIONS(5764), - [anon_sym_and] = ACTIONS(5764), - [anon_sym_or] = ACTIONS(5764), - [anon_sym_AMP_AMP] = ACTIONS(5764), - [anon_sym_PIPE_PIPE] = ACTIONS(5764), - [sym_op_coalescing] = ACTIONS(5764), - [anon_sym_into] = ACTIONS(5764), - [anon_sym_on] = ACTIONS(5764), - [anon_sym_equals] = ACTIONS(5764), - [anon_sym_by] = ACTIONS(5764), - [anon_sym_as] = ACTIONS(5764), - [anon_sym_is] = ACTIONS(5764), - [anon_sym_DASH_GT] = ACTIONS(5764), - [anon_sym_with] = ACTIONS(5764), - [aux_sym_preproc_if_token3] = ACTIONS(5764), - [aux_sym_preproc_else_token1] = ACTIONS(5764), - [aux_sym_preproc_elif_token1] = ACTIONS(5764), + [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), @@ -613423,6 +605796,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4649] = { + [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), @@ -613432,59 +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(3700), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3700), - [anon_sym_when] = ACTIONS(3700), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_into] = ACTIONS(3700), - [anon_sym_on] = ACTIONS(3700), - [anon_sym_equals] = ACTIONS(3700), - [anon_sym_by] = ACTIONS(3700), - [anon_sym_as] = ACTIONS(3700), - [anon_sym_is] = ACTIONS(3700), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3700), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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), @@ -613497,7 +605867,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4650] = { - [sym_initializer_expression] = STATE(4780), + [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), @@ -613507,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(5773), - [anon_sym_LBRACK] = ACTIONS(5773), - [anon_sym_COLON] = ACTIONS(5773), - [anon_sym_COMMA] = ACTIONS(5773), - [anon_sym_RBRACK] = ACTIONS(5773), - [anon_sym_LPAREN] = ACTIONS(5773), - [anon_sym_RPAREN] = ACTIONS(5773), - [anon_sym_LBRACE] = ACTIONS(1373), - [anon_sym_RBRACE] = ACTIONS(5773), - [anon_sym_LT] = ACTIONS(5775), - [anon_sym_GT] = ACTIONS(5775), - [anon_sym_in] = ACTIONS(5775), - [anon_sym_QMARK] = ACTIONS(5775), - [anon_sym_BANG] = ACTIONS(5775), - [anon_sym_PLUS_PLUS] = ACTIONS(5773), - [anon_sym_DASH_DASH] = ACTIONS(5773), - [anon_sym_PLUS] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(5775), - [anon_sym_STAR] = ACTIONS(5773), - [anon_sym_SLASH] = ACTIONS(5775), - [anon_sym_PERCENT] = ACTIONS(5773), - [anon_sym_CARET] = ACTIONS(5773), - [anon_sym_PIPE] = ACTIONS(5775), - [anon_sym_AMP] = ACTIONS(5775), - [anon_sym_LT_LT] = ACTIONS(5773), - [anon_sym_GT_GT] = ACTIONS(5775), - [anon_sym_GT_GT_GT] = ACTIONS(5773), - [anon_sym_EQ_EQ] = ACTIONS(5773), - [anon_sym_BANG_EQ] = ACTIONS(5773), - [anon_sym_GT_EQ] = ACTIONS(5773), - [anon_sym_LT_EQ] = ACTIONS(5773), - [anon_sym_DOT] = ACTIONS(5775), - [anon_sym_EQ_GT] = ACTIONS(5773), - [anon_sym_switch] = ACTIONS(5773), - [anon_sym_when] = ACTIONS(5773), - [anon_sym_DOT_DOT] = ACTIONS(5773), - [anon_sym_and] = ACTIONS(5773), - [anon_sym_or] = ACTIONS(5773), - [anon_sym_AMP_AMP] = ACTIONS(5773), - [anon_sym_PIPE_PIPE] = ACTIONS(5773), - [sym_op_coalescing] = ACTIONS(5773), - [anon_sym_into] = ACTIONS(5773), - [anon_sym_on] = ACTIONS(5773), - [anon_sym_equals] = ACTIONS(5773), - [anon_sym_by] = ACTIONS(5773), - [anon_sym_as] = ACTIONS(5773), - [anon_sym_is] = ACTIONS(5773), - [anon_sym_DASH_GT] = ACTIONS(5773), - [anon_sym_with] = ACTIONS(5773), - [aux_sym_preproc_if_token3] = ACTIONS(5773), - [aux_sym_preproc_else_token1] = ACTIONS(5773), - [aux_sym_preproc_elif_token1] = ACTIONS(5773), + [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), @@ -613571,6 +605938,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4651] = { + [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), @@ -613580,59 +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_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_BANG] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3910), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3910), - [anon_sym_CARET] = ACTIONS(3910), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3910), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3910), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_GT_EQ] = ACTIONS(3910), - [anon_sym_LT_EQ] = ACTIONS(3910), - [anon_sym_DOT] = ACTIONS(3913), - [anon_sym_EQ_GT] = ACTIONS(3910), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3910), - [anon_sym_when] = ACTIONS(3910), - [anon_sym_DOT_DOT] = ACTIONS(3910), - [anon_sym_and] = ACTIONS(3910), - [anon_sym_or] = ACTIONS(3910), - [anon_sym_AMP_AMP] = ACTIONS(3910), - [anon_sym_PIPE_PIPE] = ACTIONS(3910), - [sym_op_coalescing] = 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), + [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), @@ -613645,7 +606009,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4652] = { - [sym_type_argument_list] = STATE(4688), [sym_preproc_region] = STATE(4652), [sym_preproc_endregion] = STATE(4652), [sym_preproc_line] = STATE(4652), @@ -613655,57 +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_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(6928), - [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_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), @@ -613716,9 +606078,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), }, [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), @@ -613728,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(5003), - [anon_sym_RBRACK] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(4006), - [anon_sym_RPAREN] = ACTIONS(5003), - [anon_sym_RBRACE] = ACTIONS(5003), - [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(5003), - [anon_sym_or] = ACTIONS(5003), - [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), @@ -613793,7 +606151,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4654] = { - [sym_initializer_expression] = STATE(4819), [sym_preproc_region] = STATE(4654), [sym_preproc_endregion] = STATE(4654), [sym_preproc_line] = STATE(4654), @@ -613803,58 +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(5974), - [anon_sym_LBRACK] = ACTIONS(5970), - [anon_sym_COLON] = ACTIONS(5974), - [anon_sym_COMMA] = ACTIONS(5974), - [anon_sym_RBRACK] = ACTIONS(5974), - [anon_sym_LPAREN] = ACTIONS(5974), - [anon_sym_RPAREN] = ACTIONS(5974), - [anon_sym_LBRACE] = ACTIONS(6931), - [anon_sym_RBRACE] = ACTIONS(5974), - [anon_sym_LT] = ACTIONS(5980), - [anon_sym_GT] = ACTIONS(5980), - [anon_sym_in] = ACTIONS(5980), - [anon_sym_QMARK] = ACTIONS(6934), - [anon_sym_BANG] = ACTIONS(5980), - [anon_sym_PLUS_PLUS] = ACTIONS(5974), - [anon_sym_DASH_DASH] = ACTIONS(5974), - [anon_sym_PLUS] = ACTIONS(5980), - [anon_sym_DASH] = ACTIONS(5980), - [anon_sym_STAR] = ACTIONS(5974), - [anon_sym_SLASH] = ACTIONS(5980), - [anon_sym_PERCENT] = ACTIONS(5974), - [anon_sym_CARET] = ACTIONS(5974), - [anon_sym_PIPE] = ACTIONS(5980), - [anon_sym_AMP] = ACTIONS(5980), - [anon_sym_LT_LT] = ACTIONS(5974), - [anon_sym_GT_GT] = ACTIONS(5980), - [anon_sym_GT_GT_GT] = ACTIONS(5974), - [anon_sym_EQ_EQ] = ACTIONS(5974), - [anon_sym_BANG_EQ] = ACTIONS(5974), - [anon_sym_GT_EQ] = ACTIONS(5974), - [anon_sym_LT_EQ] = ACTIONS(5974), - [anon_sym_DOT] = ACTIONS(5980), - [anon_sym_EQ_GT] = ACTIONS(5974), - [anon_sym_switch] = ACTIONS(5974), - [anon_sym_when] = ACTIONS(5974), - [anon_sym_DOT_DOT] = ACTIONS(5974), - [anon_sym_and] = ACTIONS(5974), - [anon_sym_or] = ACTIONS(5974), - [anon_sym_AMP_AMP] = ACTIONS(5974), - [anon_sym_PIPE_PIPE] = ACTIONS(5974), - [sym_op_coalescing] = ACTIONS(5974), - [anon_sym_into] = ACTIONS(5974), - [anon_sym_on] = ACTIONS(5974), - [anon_sym_equals] = ACTIONS(5974), - [anon_sym_by] = ACTIONS(5974), - [anon_sym_as] = ACTIONS(5974), - [anon_sym_is] = ACTIONS(5974), - [anon_sym_DASH_GT] = ACTIONS(5974), - [anon_sym_with] = ACTIONS(5974), - [aux_sym_preproc_if_token3] = ACTIONS(5974), - [aux_sym_preproc_else_token1] = ACTIONS(5974), - [aux_sym_preproc_elif_token1] = ACTIONS(5974), + [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), @@ -613867,7 +606222,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4655] = { - [sym_type_argument_list] = STATE(4656), + [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), @@ -613877,58 +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(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(6905), - [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(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), @@ -613941,6 +606293,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4656] = { + [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), @@ -613950,58 +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), - [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_BANG] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3982), - [anon_sym_DASH_DASH] = ACTIONS(3982), - [anon_sym_PLUS] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3982), - [anon_sym_SLASH] = ACTIONS(3980), - [anon_sym_PERCENT] = ACTIONS(3982), - [anon_sym_CARET] = ACTIONS(3982), - [anon_sym_PIPE] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3980), - [anon_sym_LT_LT] = ACTIONS(3982), - [anon_sym_GT_GT] = ACTIONS(3980), - [anon_sym_GT_GT_GT] = ACTIONS(3982), - [anon_sym_EQ_EQ] = ACTIONS(3982), - [anon_sym_BANG_EQ] = ACTIONS(3982), - [anon_sym_GT_EQ] = ACTIONS(3982), - [anon_sym_LT_EQ] = ACTIONS(3982), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_EQ_GT] = ACTIONS(3982), - [anon_sym_switch] = ACTIONS(3982), - [anon_sym_when] = ACTIONS(3982), - [anon_sym_DOT_DOT] = ACTIONS(3982), - [anon_sym_and] = ACTIONS(3982), - [anon_sym_or] = ACTIONS(3982), - [anon_sym_AMP_AMP] = ACTIONS(3982), - [anon_sym_PIPE_PIPE] = ACTIONS(3982), - [sym_op_coalescing] = 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), + [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), @@ -614014,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), @@ -614023,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(4318), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(6938), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4318), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_into] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [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), @@ -614096,58 +606444,56 @@ 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), - [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(5942), - [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(5942), + [anon_sym_EQ] = ACTIONS(3991), + [anon_sym_LBRACK] = 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_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), @@ -614160,6 +606506,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -614169,58 +606530,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4659), [sym_preproc_define] = STATE(4659), [sym_preproc_undef] = STATE(4659), - [anon_sym_SEMI] = ACTIONS(3974), - [anon_sym_LBRACK] = ACTIONS(3974), - [anon_sym_COLON] = ACTIONS(3974), - [anon_sym_COMMA] = ACTIONS(3974), - [anon_sym_RBRACK] = ACTIONS(3974), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_RPAREN] = ACTIONS(3974), - [anon_sym_LBRACE] = ACTIONS(3974), - [anon_sym_RBRACE] = ACTIONS(3974), - [anon_sym_LT] = ACTIONS(3972), - [anon_sym_GT] = ACTIONS(3972), - [anon_sym_in] = ACTIONS(3972), - [anon_sym_QMARK] = ACTIONS(3972), - [anon_sym_BANG] = ACTIONS(3972), - [anon_sym_PLUS_PLUS] = ACTIONS(3974), - [anon_sym_DASH_DASH] = ACTIONS(3974), - [anon_sym_PLUS] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3972), - [anon_sym_STAR] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3972), - [anon_sym_PERCENT] = ACTIONS(3974), - [anon_sym_CARET] = ACTIONS(3974), - [anon_sym_PIPE] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3972), - [anon_sym_LT_LT] = ACTIONS(3974), - [anon_sym_GT_GT] = ACTIONS(3972), - [anon_sym_GT_GT_GT] = ACTIONS(3974), - [anon_sym_EQ_EQ] = ACTIONS(3974), - [anon_sym_BANG_EQ] = ACTIONS(3974), - [anon_sym_GT_EQ] = ACTIONS(3974), - [anon_sym_LT_EQ] = ACTIONS(3974), - [anon_sym_DOT] = ACTIONS(3972), - [anon_sym_EQ_GT] = ACTIONS(3974), - [anon_sym_switch] = ACTIONS(3974), - [anon_sym_when] = ACTIONS(3974), - [anon_sym_DOT_DOT] = ACTIONS(3974), - [anon_sym_and] = ACTIONS(3974), - [anon_sym_or] = ACTIONS(3974), - [anon_sym_AMP_AMP] = ACTIONS(3974), - [anon_sym_PIPE_PIPE] = ACTIONS(3974), - [sym_op_coalescing] = ACTIONS(3974), - [anon_sym_into] = ACTIONS(3974), - [anon_sym_on] = ACTIONS(3974), - [anon_sym_equals] = ACTIONS(3974), - [anon_sym_by] = ACTIONS(3974), - [anon_sym_as] = ACTIONS(3974), - [anon_sym_is] = ACTIONS(3974), - [anon_sym_DASH_GT] = ACTIONS(3974), - [anon_sym_with] = ACTIONS(3974), - [aux_sym_preproc_if_token3] = ACTIONS(3974), - [aux_sym_preproc_else_token1] = ACTIONS(3974), - [aux_sym_preproc_elif_token1] = ACTIONS(3974), + [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), @@ -614233,6 +606577,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4660] = { + [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), @@ -614242,58 +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(3978), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_COLON] = ACTIONS(3978), - [anon_sym_COMMA] = ACTIONS(3978), - [anon_sym_RBRACK] = ACTIONS(3978), - [anon_sym_LPAREN] = ACTIONS(3978), - [anon_sym_RPAREN] = ACTIONS(3978), - [anon_sym_LBRACE] = ACTIONS(3978), - [anon_sym_RBRACE] = ACTIONS(3978), - [anon_sym_LT] = ACTIONS(3976), - [anon_sym_GT] = ACTIONS(3976), - [anon_sym_in] = ACTIONS(3976), - [anon_sym_QMARK] = ACTIONS(3976), - [anon_sym_BANG] = ACTIONS(3976), - [anon_sym_PLUS_PLUS] = ACTIONS(3978), - [anon_sym_DASH_DASH] = ACTIONS(3978), - [anon_sym_PLUS] = ACTIONS(3976), - [anon_sym_DASH] = ACTIONS(3976), - [anon_sym_STAR] = ACTIONS(3978), - [anon_sym_SLASH] = ACTIONS(3976), - [anon_sym_PERCENT] = ACTIONS(3978), - [anon_sym_CARET] = ACTIONS(3978), - [anon_sym_PIPE] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), - [anon_sym_LT_LT] = ACTIONS(3978), - [anon_sym_GT_GT] = ACTIONS(3976), - [anon_sym_GT_GT_GT] = ACTIONS(3978), - [anon_sym_EQ_EQ] = ACTIONS(3978), - [anon_sym_BANG_EQ] = ACTIONS(3978), - [anon_sym_GT_EQ] = ACTIONS(3978), - [anon_sym_LT_EQ] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3976), - [anon_sym_EQ_GT] = ACTIONS(3978), - [anon_sym_switch] = ACTIONS(3978), - [anon_sym_when] = ACTIONS(3978), - [anon_sym_DOT_DOT] = ACTIONS(3978), - [anon_sym_and] = ACTIONS(3978), - [anon_sym_or] = ACTIONS(3978), - [anon_sym_AMP_AMP] = ACTIONS(3978), - [anon_sym_PIPE_PIPE] = ACTIONS(3978), - [sym_op_coalescing] = ACTIONS(3978), - [anon_sym_into] = ACTIONS(3978), - [anon_sym_on] = ACTIONS(3978), - [anon_sym_equals] = ACTIONS(3978), - [anon_sym_by] = ACTIONS(3978), - [anon_sym_as] = ACTIONS(3978), - [anon_sym_is] = ACTIONS(3978), - [anon_sym_DASH_GT] = ACTIONS(3978), - [anon_sym_with] = ACTIONS(3978), - [aux_sym_preproc_if_token3] = ACTIONS(3978), - [aux_sym_preproc_else_token1] = ACTIONS(3978), - [aux_sym_preproc_elif_token1] = ACTIONS(3978), + [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), @@ -614306,140 +606648,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4661] = { - [sym_preproc_region] = STATE(4661), - [sym_preproc_endregion] = STATE(4661), - [sym_preproc_line] = STATE(4661), - [sym_preproc_pragma] = STATE(4661), - [sym_preproc_nullable] = STATE(4661), - [sym_preproc_error] = STATE(4661), - [sym_preproc_warning] = STATE(4661), - [sym_preproc_define] = STATE(4661), - [sym_preproc_undef] = STATE(4661), - [anon_sym_SEMI] = ACTIONS(3970), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_COLON] = ACTIONS(3970), - [anon_sym_COMMA] = ACTIONS(3970), - [anon_sym_RBRACK] = ACTIONS(3970), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_RPAREN] = ACTIONS(3970), - [anon_sym_LBRACE] = ACTIONS(3970), - [anon_sym_RBRACE] = ACTIONS(3970), - [anon_sym_LT] = ACTIONS(3968), - [anon_sym_GT] = ACTIONS(3968), - [anon_sym_in] = ACTIONS(3968), - [anon_sym_QMARK] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(3968), - [anon_sym_PLUS_PLUS] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(3970), - [anon_sym_PLUS] = ACTIONS(3968), - [anon_sym_DASH] = ACTIONS(3968), - [anon_sym_STAR] = ACTIONS(3970), - [anon_sym_SLASH] = ACTIONS(3968), - [anon_sym_PERCENT] = ACTIONS(3970), - [anon_sym_CARET] = ACTIONS(3970), - [anon_sym_PIPE] = ACTIONS(3968), - [anon_sym_AMP] = ACTIONS(3968), - [anon_sym_LT_LT] = ACTIONS(3970), - [anon_sym_GT_GT] = ACTIONS(3968), - [anon_sym_GT_GT_GT] = ACTIONS(3970), - [anon_sym_EQ_EQ] = ACTIONS(3970), - [anon_sym_BANG_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_DOT] = ACTIONS(3968), - [anon_sym_EQ_GT] = ACTIONS(3970), - [anon_sym_switch] = ACTIONS(3970), - [anon_sym_when] = ACTIONS(3970), - [anon_sym_DOT_DOT] = ACTIONS(3970), - [anon_sym_and] = ACTIONS(3970), - [anon_sym_or] = ACTIONS(3970), - [anon_sym_AMP_AMP] = ACTIONS(3970), - [anon_sym_PIPE_PIPE] = ACTIONS(3970), - [sym_op_coalescing] = ACTIONS(3970), - [anon_sym_into] = ACTIONS(3970), - [anon_sym_on] = ACTIONS(3970), - [anon_sym_equals] = ACTIONS(3970), - [anon_sym_by] = ACTIONS(3970), - [anon_sym_as] = ACTIONS(3970), - [anon_sym_is] = ACTIONS(3970), - [anon_sym_DASH_GT] = ACTIONS(3970), - [anon_sym_with] = ACTIONS(3970), - [aux_sym_preproc_if_token3] = ACTIONS(3970), - [aux_sym_preproc_else_token1] = ACTIONS(3970), - [aux_sym_preproc_elif_token1] = ACTIONS(3970), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [4662] = { - [sym_preproc_region] = STATE(4662), - [sym_preproc_endregion] = STATE(4662), - [sym_preproc_line] = STATE(4662), - [sym_preproc_pragma] = STATE(4662), - [sym_preproc_nullable] = STATE(4662), - [sym_preproc_error] = STATE(4662), - [sym_preproc_warning] = STATE(4662), - [sym_preproc_define] = STATE(4662), - [sym_preproc_undef] = STATE(4662), - [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(6941), - [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(5942), + [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), + [sym_preproc_pragma] = STATE(4661), + [sym_preproc_nullable] = STATE(4661), + [sym_preproc_error] = STATE(4661), + [sym_preproc_warning] = STATE(4661), + [sym_preproc_define] = STATE(4661), + [sym_preproc_undef] = STATE(4661), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(4662), + [sym_preproc_nullable] = STATE(4662), + [sym_preproc_error] = STATE(4662), + [sym_preproc_warning] = STATE(4662), + [sym_preproc_define] = STATE(4662), + [sym_preproc_undef] = STATE(4662), + [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), @@ -614452,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), @@ -614461,57 +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_EQ] = ACTIONS(4019), - [anon_sym_LBRACK] = ACTIONS(4026), - [anon_sym_COLON] = ACTIONS(4026), - [anon_sym_COMMA] = ACTIONS(4026), - [anon_sym_LPAREN] = ACTIONS(4026), - [anon_sym_LT] = ACTIONS(4019), - [anon_sym_GT] = ACTIONS(4019), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [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(4026), - [anon_sym_BANG_EQ] = ACTIONS(4026), - [anon_sym_GT_EQ] = ACTIONS(4026), - [anon_sym_LT_EQ] = ACTIONS(4026), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_switch] = ACTIONS(4026), - [anon_sym_DOT_DOT] = ACTIONS(4026), - [anon_sym_and] = ACTIONS(4026), - [anon_sym_or] = ACTIONS(4026), - [anon_sym_PLUS_EQ] = ACTIONS(4026), - [anon_sym_DASH_EQ] = ACTIONS(4026), - [anon_sym_STAR_EQ] = ACTIONS(4026), - [anon_sym_SLASH_EQ] = ACTIONS(4026), - [anon_sym_PERCENT_EQ] = ACTIONS(4026), - [anon_sym_AMP_EQ] = ACTIONS(4026), - [anon_sym_CARET_EQ] = ACTIONS(4026), - [anon_sym_PIPE_EQ] = ACTIONS(4026), - [anon_sym_LT_LT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4026), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_PIPE_PIPE] = ACTIONS(4026), - [sym_op_coalescing] = ACTIONS(4019), - [anon_sym_into] = ACTIONS(4026), - [anon_sym_as] = ACTIONS(4026), - [anon_sym_is] = ACTIONS(4026), - [anon_sym_DASH_GT] = ACTIONS(4026), - [anon_sym_with] = ACTIONS(4026), + [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), @@ -614522,9 +606859,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(4026), }, [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), @@ -614534,58 +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_SEMI] = ACTIONS(3964), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_COLON] = ACTIONS(3964), - [anon_sym_COMMA] = ACTIONS(3964), - [anon_sym_RBRACK] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_RBRACE] = ACTIONS(3964), - [anon_sym_LT] = ACTIONS(3962), - [anon_sym_GT] = ACTIONS(3962), - [anon_sym_in] = ACTIONS(3962), - [anon_sym_QMARK] = ACTIONS(3962), - [anon_sym_BANG] = ACTIONS(3962), - [anon_sym_PLUS_PLUS] = ACTIONS(3964), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_PLUS] = ACTIONS(3962), - [anon_sym_DASH] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3964), - [anon_sym_SLASH] = ACTIONS(3962), - [anon_sym_PERCENT] = ACTIONS(3964), - [anon_sym_CARET] = ACTIONS(3964), - [anon_sym_PIPE] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_LT_LT] = ACTIONS(3964), - [anon_sym_GT_GT] = ACTIONS(3962), - [anon_sym_GT_GT_GT] = ACTIONS(3964), - [anon_sym_EQ_EQ] = ACTIONS(3964), - [anon_sym_BANG_EQ] = ACTIONS(3964), - [anon_sym_GT_EQ] = ACTIONS(3964), - [anon_sym_LT_EQ] = ACTIONS(3964), - [anon_sym_DOT] = ACTIONS(3962), - [anon_sym_EQ_GT] = ACTIONS(3964), - [anon_sym_switch] = ACTIONS(3964), - [anon_sym_when] = ACTIONS(3964), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_and] = ACTIONS(3964), - [anon_sym_or] = ACTIONS(3964), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [sym_op_coalescing] = ACTIONS(3964), - [anon_sym_into] = ACTIONS(3964), - [anon_sym_on] = ACTIONS(3964), - [anon_sym_equals] = ACTIONS(3964), - [anon_sym_by] = ACTIONS(3964), - [anon_sym_as] = ACTIONS(3964), - [anon_sym_is] = ACTIONS(3964), - [anon_sym_DASH_GT] = ACTIONS(3964), - [anon_sym_with] = ACTIONS(3964), - [aux_sym_preproc_if_token3] = ACTIONS(3964), - [aux_sym_preproc_else_token1] = ACTIONS(3964), - [aux_sym_preproc_elif_token1] = ACTIONS(3964), + [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), @@ -614598,7 +606932,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4665] = { - [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(4665), [sym_preproc_endregion] = STATE(4665), [sym_preproc_line] = STATE(4665), @@ -614608,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_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(6943), - [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(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), @@ -614680,58 +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_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_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), @@ -614744,6 +607074,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -614753,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(4550), - [anon_sym_LBRACK] = ACTIONS(4548), - [anon_sym_COLON] = ACTIONS(4548), - [anon_sym_COMMA] = ACTIONS(4548), - [anon_sym_LPAREN] = ACTIONS(4548), - [anon_sym_LT] = ACTIONS(4550), - [anon_sym_GT] = ACTIONS(4550), - [anon_sym_QMARK] = ACTIONS(4550), - [anon_sym_BANG] = ACTIONS(4550), - [anon_sym_PLUS_PLUS] = ACTIONS(4548), - [anon_sym_DASH_DASH] = ACTIONS(4548), - [anon_sym_PLUS] = ACTIONS(4550), - [anon_sym_DASH] = ACTIONS(4550), - [anon_sym_STAR] = ACTIONS(4550), - [anon_sym_SLASH] = ACTIONS(4550), - [anon_sym_PERCENT] = ACTIONS(4550), - [anon_sym_CARET] = ACTIONS(4550), - [anon_sym_PIPE] = ACTIONS(4550), - [anon_sym_AMP] = ACTIONS(4550), - [anon_sym_LT_LT] = ACTIONS(4550), - [anon_sym_GT_GT] = ACTIONS(4550), - [anon_sym_GT_GT_GT] = ACTIONS(4550), - [anon_sym_EQ_EQ] = ACTIONS(4548), - [anon_sym_BANG_EQ] = ACTIONS(4548), - [anon_sym_GT_EQ] = ACTIONS(4548), - [anon_sym_LT_EQ] = ACTIONS(4548), - [anon_sym_DOT] = ACTIONS(4550), - [anon_sym_switch] = ACTIONS(4548), - [anon_sym_DOT_DOT] = ACTIONS(4548), - [anon_sym_and] = ACTIONS(4548), - [anon_sym_or] = ACTIONS(4548), - [anon_sym_PLUS_EQ] = ACTIONS(4548), - [anon_sym_DASH_EQ] = ACTIONS(4548), - [anon_sym_STAR_EQ] = ACTIONS(4548), - [anon_sym_SLASH_EQ] = ACTIONS(4548), - [anon_sym_PERCENT_EQ] = ACTIONS(4548), - [anon_sym_AMP_EQ] = ACTIONS(4548), - [anon_sym_CARET_EQ] = ACTIONS(4548), - [anon_sym_PIPE_EQ] = ACTIONS(4548), - [anon_sym_LT_LT_EQ] = ACTIONS(4548), - [anon_sym_GT_GT_EQ] = ACTIONS(4548), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4548), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4548), - [anon_sym_AMP_AMP] = ACTIONS(4548), - [anon_sym_PIPE_PIPE] = ACTIONS(4548), - [sym_op_coalescing] = ACTIONS(4550), - [anon_sym_into] = ACTIONS(4548), - [anon_sym_as] = ACTIONS(4548), - [anon_sym_is] = ACTIONS(4548), - [anon_sym_DASH_GT] = ACTIONS(4548), - [anon_sym_with] = ACTIONS(4548), + [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), @@ -614814,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(4548), }, [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), @@ -614826,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(4355), - [anon_sym_LBRACK] = ACTIONS(4355), - [anon_sym_COLON] = ACTIONS(4355), - [anon_sym_COMMA] = ACTIONS(4355), - [anon_sym_RBRACK] = ACTIONS(4355), - [anon_sym_LPAREN] = ACTIONS(4355), - [anon_sym_RPAREN] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4355), - [anon_sym_RBRACE] = ACTIONS(4355), - [anon_sym_LT] = ACTIONS(4353), - [anon_sym_GT] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4353), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_BANG] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4355), - [anon_sym_DASH_DASH] = ACTIONS(4355), - [anon_sym_PLUS] = ACTIONS(4353), - [anon_sym_DASH] = ACTIONS(4353), - [anon_sym_STAR] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4353), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_CARET] = ACTIONS(4355), - [anon_sym_PIPE] = ACTIONS(4353), - [anon_sym_AMP] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4355), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_GT_GT_GT] = ACTIONS(4355), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_GT_EQ] = ACTIONS(4355), - [anon_sym_LT_EQ] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4353), - [anon_sym_EQ_GT] = ACTIONS(4355), - [anon_sym_switch] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4355), - [anon_sym_and] = ACTIONS(4355), - [anon_sym_or] = ACTIONS(4355), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4355), - [sym_op_coalescing] = ACTIONS(4355), - [anon_sym_into] = ACTIONS(4355), - [anon_sym_on] = ACTIONS(4355), - [anon_sym_equals] = ACTIONS(4355), - [anon_sym_by] = ACTIONS(4355), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_DASH_GT] = ACTIONS(4355), - [anon_sym_with] = ACTIONS(4355), - [aux_sym_preproc_if_token3] = ACTIONS(4355), - [aux_sym_preproc_else_token1] = ACTIONS(4355), - [aux_sym_preproc_elif_token1] = ACTIONS(4355), + [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), @@ -614890,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), @@ -614899,57 +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_EQ] = ACTIONS(4546), - [anon_sym_LBRACK] = ACTIONS(4544), - [anon_sym_COLON] = ACTIONS(4544), - [anon_sym_COMMA] = ACTIONS(4544), - [anon_sym_LPAREN] = ACTIONS(4544), - [anon_sym_LT] = ACTIONS(4546), - [anon_sym_GT] = ACTIONS(4546), - [anon_sym_QMARK] = ACTIONS(4546), - [anon_sym_BANG] = ACTIONS(4546), - [anon_sym_PLUS_PLUS] = ACTIONS(4544), - [anon_sym_DASH_DASH] = ACTIONS(4544), - [anon_sym_PLUS] = ACTIONS(4546), - [anon_sym_DASH] = ACTIONS(4546), - [anon_sym_STAR] = ACTIONS(4546), - [anon_sym_SLASH] = ACTIONS(4546), - [anon_sym_PERCENT] = ACTIONS(4546), - [anon_sym_CARET] = ACTIONS(4546), - [anon_sym_PIPE] = ACTIONS(4546), - [anon_sym_AMP] = ACTIONS(4546), - [anon_sym_LT_LT] = ACTIONS(4546), - [anon_sym_GT_GT] = ACTIONS(4546), - [anon_sym_GT_GT_GT] = ACTIONS(4546), - [anon_sym_EQ_EQ] = ACTIONS(4544), - [anon_sym_BANG_EQ] = ACTIONS(4544), - [anon_sym_GT_EQ] = ACTIONS(4544), - [anon_sym_LT_EQ] = ACTIONS(4544), - [anon_sym_DOT] = ACTIONS(4546), - [anon_sym_switch] = ACTIONS(4544), - [anon_sym_DOT_DOT] = ACTIONS(4544), - [anon_sym_and] = ACTIONS(4544), - [anon_sym_or] = ACTIONS(4544), - [anon_sym_PLUS_EQ] = ACTIONS(4544), - [anon_sym_DASH_EQ] = ACTIONS(4544), - [anon_sym_STAR_EQ] = ACTIONS(4544), - [anon_sym_SLASH_EQ] = ACTIONS(4544), - [anon_sym_PERCENT_EQ] = ACTIONS(4544), - [anon_sym_AMP_EQ] = ACTIONS(4544), - [anon_sym_CARET_EQ] = ACTIONS(4544), - [anon_sym_PIPE_EQ] = ACTIONS(4544), - [anon_sym_LT_LT_EQ] = ACTIONS(4544), - [anon_sym_GT_GT_EQ] = ACTIONS(4544), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4544), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4544), - [anon_sym_AMP_AMP] = ACTIONS(4544), - [anon_sym_PIPE_PIPE] = ACTIONS(4544), - [sym_op_coalescing] = ACTIONS(4546), - [anon_sym_into] = ACTIONS(4544), - [anon_sym_as] = ACTIONS(4544), - [anon_sym_is] = ACTIONS(4544), - [anon_sym_DASH_GT] = ACTIONS(4544), - [anon_sym_with] = ACTIONS(4544), + [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), @@ -614960,7 +607285,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(4544), }, [4670] = { [sym_preproc_region] = STATE(4670), @@ -614972,57 +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_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), + [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), @@ -615033,7 +607356,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), }, [4671] = { [sym_preproc_region] = STATE(4671), @@ -615045,68 +607367,66 @@ 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_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3702), - [anon_sym_CARET] = ACTIONS(3702), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3702), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3700), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3700), - [anon_sym_PLUS_EQ] = ACTIONS(3700), - [anon_sym_DASH_EQ] = ACTIONS(3700), - [anon_sym_STAR_EQ] = ACTIONS(3700), - [anon_sym_SLASH_EQ] = ACTIONS(3700), - [anon_sym_PERCENT_EQ] = ACTIONS(3700), - [anon_sym_AMP_EQ] = ACTIONS(3700), - [anon_sym_CARET_EQ] = ACTIONS(3700), - [anon_sym_PIPE_EQ] = ACTIONS(3700), - [anon_sym_LT_LT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3700), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3700), - [anon_sym_as] = ACTIONS(3700), - [anon_sym_is] = ACTIONS(3700), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3700), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3700), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [4672] = { [sym_preproc_region] = STATE(4672), @@ -615118,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(4322), - [anon_sym_LBRACK] = ACTIONS(4322), - [anon_sym_COLON] = ACTIONS(4322), - [anon_sym_COMMA] = ACTIONS(4322), - [anon_sym_RBRACK] = ACTIONS(4322), - [anon_sym_LPAREN] = ACTIONS(4322), - [anon_sym_RPAREN] = ACTIONS(4322), - [anon_sym_LBRACE] = ACTIONS(4322), - [anon_sym_RBRACE] = ACTIONS(4322), - [anon_sym_LT] = ACTIONS(4320), - [anon_sym_GT] = ACTIONS(4320), - [anon_sym_in] = ACTIONS(4320), - [anon_sym_QMARK] = ACTIONS(4320), - [anon_sym_BANG] = ACTIONS(4320), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS] = ACTIONS(4320), - [anon_sym_DASH] = ACTIONS(4320), - [anon_sym_STAR] = ACTIONS(4322), - [anon_sym_SLASH] = ACTIONS(4320), - [anon_sym_PERCENT] = ACTIONS(4322), - [anon_sym_CARET] = ACTIONS(4322), - [anon_sym_PIPE] = ACTIONS(4320), - [anon_sym_AMP] = ACTIONS(4320), - [anon_sym_LT_LT] = ACTIONS(4322), - [anon_sym_GT_GT] = ACTIONS(4320), - [anon_sym_GT_GT_GT] = ACTIONS(4322), - [anon_sym_EQ_EQ] = ACTIONS(4322), - [anon_sym_BANG_EQ] = ACTIONS(4322), - [anon_sym_GT_EQ] = ACTIONS(4322), - [anon_sym_LT_EQ] = ACTIONS(4322), - [anon_sym_DOT] = ACTIONS(4320), - [anon_sym_EQ_GT] = ACTIONS(4322), - [anon_sym_switch] = ACTIONS(4322), - [anon_sym_when] = ACTIONS(4322), - [anon_sym_DOT_DOT] = ACTIONS(4322), - [anon_sym_and] = ACTIONS(4322), - [anon_sym_or] = ACTIONS(4322), - [anon_sym_AMP_AMP] = ACTIONS(4322), - [anon_sym_PIPE_PIPE] = ACTIONS(4322), - [sym_op_coalescing] = ACTIONS(4322), - [anon_sym_into] = ACTIONS(4322), - [anon_sym_on] = ACTIONS(4322), - [anon_sym_equals] = ACTIONS(4322), - [anon_sym_by] = ACTIONS(4322), - [anon_sym_as] = ACTIONS(4322), - [anon_sym_is] = ACTIONS(4322), - [anon_sym_DASH_GT] = ACTIONS(4322), - [anon_sym_with] = ACTIONS(4322), - [aux_sym_preproc_if_token3] = ACTIONS(4322), - [aux_sym_preproc_else_token1] = ACTIONS(4322), - [aux_sym_preproc_elif_token1] = ACTIONS(4322), + [sym__identifier_token] = ACTIONS(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), @@ -615182,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), @@ -615191,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(3972), - [anon_sym_LBRACK] = ACTIONS(3974), - [anon_sym_COLON] = ACTIONS(3974), - [anon_sym_COMMA] = ACTIONS(3974), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_LT] = ACTIONS(3972), - [anon_sym_GT] = ACTIONS(3972), - [anon_sym_QMARK] = ACTIONS(3972), - [anon_sym_BANG] = ACTIONS(3972), - [anon_sym_PLUS_PLUS] = ACTIONS(3974), - [anon_sym_DASH_DASH] = ACTIONS(3974), - [anon_sym_PLUS] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3972), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_SLASH] = ACTIONS(3972), - [anon_sym_PERCENT] = ACTIONS(3972), - [anon_sym_CARET] = ACTIONS(3972), - [anon_sym_PIPE] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3972), - [anon_sym_LT_LT] = ACTIONS(3972), - [anon_sym_GT_GT] = ACTIONS(3972), - [anon_sym_GT_GT_GT] = ACTIONS(3972), - [anon_sym_EQ_EQ] = ACTIONS(3974), - [anon_sym_BANG_EQ] = ACTIONS(3974), - [anon_sym_GT_EQ] = ACTIONS(3974), - [anon_sym_LT_EQ] = ACTIONS(3974), - [anon_sym_DOT] = ACTIONS(3972), - [anon_sym_switch] = ACTIONS(3974), - [anon_sym_DOT_DOT] = ACTIONS(3974), - [anon_sym_and] = ACTIONS(3974), - [anon_sym_or] = ACTIONS(3974), - [anon_sym_PLUS_EQ] = ACTIONS(3974), - [anon_sym_DASH_EQ] = ACTIONS(3974), - [anon_sym_STAR_EQ] = ACTIONS(3974), - [anon_sym_SLASH_EQ] = ACTIONS(3974), - [anon_sym_PERCENT_EQ] = ACTIONS(3974), - [anon_sym_AMP_EQ] = ACTIONS(3974), - [anon_sym_CARET_EQ] = ACTIONS(3974), - [anon_sym_PIPE_EQ] = ACTIONS(3974), - [anon_sym_LT_LT_EQ] = ACTIONS(3974), - [anon_sym_GT_GT_EQ] = ACTIONS(3974), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3974), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3974), - [anon_sym_AMP_AMP] = ACTIONS(3974), - [anon_sym_PIPE_PIPE] = ACTIONS(3974), - [sym_op_coalescing] = ACTIONS(3972), - [anon_sym_into] = ACTIONS(3974), - [anon_sym_as] = ACTIONS(3974), - [anon_sym_is] = ACTIONS(3974), - [anon_sym_DASH_GT] = ACTIONS(3974), - [anon_sym_with] = ACTIONS(3974), + [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), @@ -615252,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(3974), }, [4674] = { [sym_preproc_region] = STATE(4674), @@ -615264,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(4542), - [anon_sym_LBRACK] = ACTIONS(4540), - [anon_sym_COLON] = ACTIONS(4540), - [anon_sym_COMMA] = ACTIONS(4540), - [anon_sym_LPAREN] = ACTIONS(4540), - [anon_sym_LT] = ACTIONS(4542), - [anon_sym_GT] = ACTIONS(4542), - [anon_sym_QMARK] = ACTIONS(4542), - [anon_sym_BANG] = ACTIONS(4542), - [anon_sym_PLUS_PLUS] = ACTIONS(4540), - [anon_sym_DASH_DASH] = ACTIONS(4540), - [anon_sym_PLUS] = ACTIONS(4542), - [anon_sym_DASH] = ACTIONS(4542), - [anon_sym_STAR] = ACTIONS(4542), - [anon_sym_SLASH] = ACTIONS(4542), - [anon_sym_PERCENT] = ACTIONS(4542), - [anon_sym_CARET] = ACTIONS(4542), - [anon_sym_PIPE] = ACTIONS(4542), - [anon_sym_AMP] = ACTIONS(4542), - [anon_sym_LT_LT] = ACTIONS(4542), - [anon_sym_GT_GT] = ACTIONS(4542), - [anon_sym_GT_GT_GT] = ACTIONS(4542), - [anon_sym_EQ_EQ] = ACTIONS(4540), - [anon_sym_BANG_EQ] = ACTIONS(4540), - [anon_sym_GT_EQ] = ACTIONS(4540), - [anon_sym_LT_EQ] = ACTIONS(4540), - [anon_sym_DOT] = ACTIONS(4542), - [anon_sym_switch] = ACTIONS(4540), - [anon_sym_DOT_DOT] = ACTIONS(4540), - [anon_sym_and] = ACTIONS(4540), - [anon_sym_or] = ACTIONS(4540), - [anon_sym_PLUS_EQ] = ACTIONS(4540), - [anon_sym_DASH_EQ] = ACTIONS(4540), - [anon_sym_STAR_EQ] = ACTIONS(4540), - [anon_sym_SLASH_EQ] = ACTIONS(4540), - [anon_sym_PERCENT_EQ] = ACTIONS(4540), - [anon_sym_AMP_EQ] = ACTIONS(4540), - [anon_sym_CARET_EQ] = ACTIONS(4540), - [anon_sym_PIPE_EQ] = ACTIONS(4540), - [anon_sym_LT_LT_EQ] = ACTIONS(4540), - [anon_sym_GT_GT_EQ] = ACTIONS(4540), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4540), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4540), - [anon_sym_AMP_AMP] = ACTIONS(4540), - [anon_sym_PIPE_PIPE] = ACTIONS(4540), - [sym_op_coalescing] = ACTIONS(4542), - [anon_sym_into] = ACTIONS(4540), - [anon_sym_as] = ACTIONS(4540), - [anon_sym_is] = ACTIONS(4540), - [anon_sym_DASH_GT] = ACTIONS(4540), - [anon_sym_with] = ACTIONS(4540), + [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), @@ -615325,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(4540), }, [4675] = { [sym_preproc_region] = STATE(4675), @@ -615337,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(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_COLON] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_RBRACK] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_RPAREN] = ACTIONS(4416), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_in] = ACTIONS(4414), - [anon_sym_QMARK] = ACTIONS(4414), - [anon_sym_BANG] = ACTIONS(4414), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4416), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4416), - [anon_sym_CARET] = ACTIONS(4416), - [anon_sym_PIPE] = ACTIONS(4414), - [anon_sym_AMP] = ACTIONS(4414), - [anon_sym_LT_LT] = ACTIONS(4416), - [anon_sym_GT_GT] = ACTIONS(4414), - [anon_sym_GT_GT_GT] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4416), - [anon_sym_switch] = ACTIONS(4416), - [anon_sym_when] = ACTIONS(4416), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_and] = ACTIONS(4416), - [anon_sym_or] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [sym_op_coalescing] = ACTIONS(4416), - [anon_sym_into] = ACTIONS(4416), - [anon_sym_on] = ACTIONS(4416), - [anon_sym_equals] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4416), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4416), - [aux_sym_preproc_if_token3] = ACTIONS(4416), - [aux_sym_preproc_else_token1] = ACTIONS(4416), - [aux_sym_preproc_elif_token1] = ACTIONS(4416), + [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), @@ -615401,6 +607713,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4676] = { + [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), @@ -615410,58 +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), - [anon_sym_SEMI] = ACTIONS(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_COLON] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4342), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_in] = ACTIONS(4340), - [anon_sym_QMARK] = ACTIONS(4340), - [anon_sym_BANG] = ACTIONS(4340), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4342), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4342), - [anon_sym_CARET] = ACTIONS(4342), - [anon_sym_PIPE] = ACTIONS(4340), - [anon_sym_AMP] = ACTIONS(4340), - [anon_sym_LT_LT] = ACTIONS(4342), - [anon_sym_GT_GT] = ACTIONS(4340), - [anon_sym_GT_GT_GT] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_EQ_GT] = ACTIONS(4342), - [anon_sym_switch] = ACTIONS(4342), - [anon_sym_when] = ACTIONS(4342), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_and] = ACTIONS(4342), - [anon_sym_or] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [sym_op_coalescing] = ACTIONS(4342), - [anon_sym_into] = ACTIONS(4342), - [anon_sym_on] = ACTIONS(4342), - [anon_sym_equals] = ACTIONS(4342), - [anon_sym_by] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4342), - [anon_sym_DASH_GT] = ACTIONS(4342), - [anon_sym_with] = ACTIONS(4342), - [aux_sym_preproc_if_token3] = ACTIONS(4342), - [aux_sym_preproc_else_token1] = ACTIONS(4342), - [aux_sym_preproc_elif_token1] = ACTIONS(4342), + [anon_sym_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), @@ -615483,57 +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_EQ] = ACTIONS(3976), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_COLON] = ACTIONS(3978), - [anon_sym_COMMA] = ACTIONS(3978), - [anon_sym_LPAREN] = ACTIONS(3978), - [anon_sym_LT] = ACTIONS(3976), - [anon_sym_GT] = ACTIONS(3976), - [anon_sym_QMARK] = ACTIONS(3976), - [anon_sym_BANG] = ACTIONS(3976), - [anon_sym_PLUS_PLUS] = ACTIONS(3978), - [anon_sym_DASH_DASH] = ACTIONS(3978), - [anon_sym_PLUS] = ACTIONS(3976), - [anon_sym_DASH] = ACTIONS(3976), - [anon_sym_STAR] = ACTIONS(3976), - [anon_sym_SLASH] = ACTIONS(3976), - [anon_sym_PERCENT] = ACTIONS(3976), - [anon_sym_CARET] = ACTIONS(3976), - [anon_sym_PIPE] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), - [anon_sym_LT_LT] = ACTIONS(3976), - [anon_sym_GT_GT] = ACTIONS(3976), - [anon_sym_GT_GT_GT] = ACTIONS(3976), - [anon_sym_EQ_EQ] = ACTIONS(3978), - [anon_sym_BANG_EQ] = ACTIONS(3978), - [anon_sym_GT_EQ] = ACTIONS(3978), - [anon_sym_LT_EQ] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3976), - [anon_sym_switch] = ACTIONS(3978), - [anon_sym_DOT_DOT] = ACTIONS(3978), - [anon_sym_and] = ACTIONS(3978), - [anon_sym_or] = ACTIONS(3978), - [anon_sym_PLUS_EQ] = ACTIONS(3978), - [anon_sym_DASH_EQ] = ACTIONS(3978), - [anon_sym_STAR_EQ] = ACTIONS(3978), - [anon_sym_SLASH_EQ] = ACTIONS(3978), - [anon_sym_PERCENT_EQ] = ACTIONS(3978), - [anon_sym_AMP_EQ] = ACTIONS(3978), - [anon_sym_CARET_EQ] = ACTIONS(3978), - [anon_sym_PIPE_EQ] = ACTIONS(3978), - [anon_sym_LT_LT_EQ] = ACTIONS(3978), - [anon_sym_GT_GT_EQ] = ACTIONS(3978), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3978), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3978), - [anon_sym_AMP_AMP] = ACTIONS(3978), - [anon_sym_PIPE_PIPE] = ACTIONS(3978), - [sym_op_coalescing] = ACTIONS(3976), - [anon_sym_into] = ACTIONS(3978), - [anon_sym_as] = ACTIONS(3978), - [anon_sym_is] = ACTIONS(3978), - [anon_sym_DASH_GT] = ACTIONS(3978), - [anon_sym_with] = ACTIONS(3978), + [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), @@ -615544,9 +607853,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(3978), }, [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), @@ -615556,57 +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_EQ] = ACTIONS(3968), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_COLON] = ACTIONS(3970), - [anon_sym_COMMA] = ACTIONS(3970), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_LT] = ACTIONS(3968), - [anon_sym_GT] = ACTIONS(3968), - [anon_sym_QMARK] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(3968), - [anon_sym_PLUS_PLUS] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(3970), - [anon_sym_PLUS] = ACTIONS(3968), - [anon_sym_DASH] = ACTIONS(3968), - [anon_sym_STAR] = ACTIONS(3968), - [anon_sym_SLASH] = ACTIONS(3968), - [anon_sym_PERCENT] = ACTIONS(3968), - [anon_sym_CARET] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(3968), - [anon_sym_AMP] = ACTIONS(3968), - [anon_sym_LT_LT] = ACTIONS(3968), - [anon_sym_GT_GT] = ACTIONS(3968), - [anon_sym_GT_GT_GT] = ACTIONS(3968), - [anon_sym_EQ_EQ] = ACTIONS(3970), - [anon_sym_BANG_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_DOT] = ACTIONS(3968), - [anon_sym_switch] = ACTIONS(3970), - [anon_sym_DOT_DOT] = ACTIONS(3970), - [anon_sym_and] = ACTIONS(3970), - [anon_sym_or] = ACTIONS(3970), - [anon_sym_PLUS_EQ] = ACTIONS(3970), - [anon_sym_DASH_EQ] = ACTIONS(3970), - [anon_sym_STAR_EQ] = ACTIONS(3970), - [anon_sym_SLASH_EQ] = ACTIONS(3970), - [anon_sym_PERCENT_EQ] = ACTIONS(3970), - [anon_sym_AMP_EQ] = ACTIONS(3970), - [anon_sym_CARET_EQ] = ACTIONS(3970), - [anon_sym_PIPE_EQ] = ACTIONS(3970), - [anon_sym_LT_LT_EQ] = ACTIONS(3970), - [anon_sym_GT_GT_EQ] = ACTIONS(3970), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3970), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3970), - [anon_sym_AMP_AMP] = ACTIONS(3970), - [anon_sym_PIPE_PIPE] = ACTIONS(3970), - [sym_op_coalescing] = ACTIONS(3968), - [anon_sym_into] = ACTIONS(3970), - [anon_sym_as] = ACTIONS(3970), - [anon_sym_is] = ACTIONS(3970), - [anon_sym_DASH_GT] = ACTIONS(3970), - [anon_sym_with] = ACTIONS(3970), + [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), @@ -615617,7 +607924,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(3970), }, [4679] = { [sym_preproc_region] = STATE(4679), @@ -615629,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(4450), - [anon_sym_LBRACK] = ACTIONS(4450), - [anon_sym_COLON] = ACTIONS(4450), - [anon_sym_COMMA] = ACTIONS(4450), - [anon_sym_RBRACK] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_RPAREN] = ACTIONS(4450), - [anon_sym_LBRACE] = ACTIONS(4450), - [anon_sym_RBRACE] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4448), - [anon_sym_GT] = ACTIONS(4448), - [anon_sym_in] = ACTIONS(4448), - [anon_sym_QMARK] = ACTIONS(4448), - [anon_sym_BANG] = ACTIONS(4448), - [anon_sym_PLUS_PLUS] = ACTIONS(4450), - [anon_sym_DASH_DASH] = ACTIONS(4450), - [anon_sym_PLUS] = ACTIONS(4448), - [anon_sym_DASH] = ACTIONS(4448), - [anon_sym_STAR] = ACTIONS(4450), - [anon_sym_SLASH] = ACTIONS(4448), - [anon_sym_PERCENT] = ACTIONS(4450), - [anon_sym_CARET] = ACTIONS(4450), - [anon_sym_PIPE] = ACTIONS(4448), - [anon_sym_AMP] = ACTIONS(4448), - [anon_sym_LT_LT] = ACTIONS(4450), - [anon_sym_GT_GT] = ACTIONS(4448), - [anon_sym_GT_GT_GT] = ACTIONS(4450), - [anon_sym_EQ_EQ] = ACTIONS(4450), - [anon_sym_BANG_EQ] = ACTIONS(4450), - [anon_sym_GT_EQ] = ACTIONS(4450), - [anon_sym_LT_EQ] = ACTIONS(4450), - [anon_sym_DOT] = ACTIONS(4448), - [anon_sym_EQ_GT] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4450), - [anon_sym_when] = ACTIONS(4450), - [anon_sym_DOT_DOT] = ACTIONS(4450), - [anon_sym_and] = ACTIONS(4450), - [anon_sym_or] = ACTIONS(4450), - [anon_sym_AMP_AMP] = ACTIONS(4450), - [anon_sym_PIPE_PIPE] = ACTIONS(4450), - [sym_op_coalescing] = ACTIONS(4450), - [anon_sym_into] = ACTIONS(4450), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_as] = ACTIONS(4450), - [anon_sym_is] = ACTIONS(4450), - [anon_sym_DASH_GT] = ACTIONS(4450), - [anon_sym_with] = ACTIONS(4450), - [aux_sym_preproc_if_token3] = ACTIONS(4450), - [aux_sym_preproc_else_token1] = ACTIONS(4450), - [aux_sym_preproc_elif_token1] = ACTIONS(4450), + [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), @@ -615693,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), @@ -615702,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(4464), - [anon_sym_LBRACK] = ACTIONS(4464), - [anon_sym_COLON] = ACTIONS(4464), - [anon_sym_COMMA] = ACTIONS(4464), - [anon_sym_RBRACK] = ACTIONS(4464), - [anon_sym_LPAREN] = ACTIONS(4464), - [anon_sym_RPAREN] = ACTIONS(4464), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_RBRACE] = ACTIONS(4464), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_in] = ACTIONS(4462), - [anon_sym_QMARK] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PLUS_PLUS] = ACTIONS(4464), - [anon_sym_DASH_DASH] = ACTIONS(4464), - [anon_sym_PLUS] = ACTIONS(4462), - [anon_sym_DASH] = ACTIONS(4462), - [anon_sym_STAR] = ACTIONS(4464), - [anon_sym_SLASH] = ACTIONS(4462), - [anon_sym_PERCENT] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4464), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_AMP] = ACTIONS(4462), - [anon_sym_LT_LT] = ACTIONS(4464), - [anon_sym_GT_GT] = ACTIONS(4462), - [anon_sym_GT_GT_GT] = ACTIONS(4464), - [anon_sym_EQ_EQ] = ACTIONS(4464), - [anon_sym_BANG_EQ] = ACTIONS(4464), - [anon_sym_GT_EQ] = ACTIONS(4464), - [anon_sym_LT_EQ] = ACTIONS(4464), - [anon_sym_DOT] = ACTIONS(4462), - [anon_sym_EQ_GT] = ACTIONS(4464), - [anon_sym_switch] = ACTIONS(4464), - [anon_sym_when] = ACTIONS(4464), - [anon_sym_DOT_DOT] = ACTIONS(4464), - [anon_sym_and] = ACTIONS(4464), - [anon_sym_or] = ACTIONS(4464), - [anon_sym_AMP_AMP] = ACTIONS(4464), - [anon_sym_PIPE_PIPE] = ACTIONS(4464), - [sym_op_coalescing] = ACTIONS(4464), - [anon_sym_into] = ACTIONS(4464), - [anon_sym_on] = ACTIONS(4464), - [anon_sym_equals] = ACTIONS(4464), - [anon_sym_by] = ACTIONS(4464), - [anon_sym_as] = ACTIONS(4464), - [anon_sym_is] = ACTIONS(4464), - [anon_sym_DASH_GT] = ACTIONS(4464), - [anon_sym_with] = ACTIONS(4464), - [aux_sym_preproc_if_token3] = ACTIONS(4464), - [aux_sym_preproc_else_token1] = ACTIONS(4464), - [aux_sym_preproc_elif_token1] = ACTIONS(4464), + [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), @@ -615775,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(4021), - [anon_sym_LBRACK] = ACTIONS(4021), - [anon_sym_COLON] = ACTIONS(4021), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_RBRACK] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4021), - [anon_sym_RPAREN] = ACTIONS(4021), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_LT] = ACTIONS(4014), - [anon_sym_GT] = ACTIONS(4014), - [anon_sym_in] = ACTIONS(4014), - [anon_sym_QMARK] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4014), - [anon_sym_PLUS_PLUS] = ACTIONS(4021), - [anon_sym_DASH_DASH] = ACTIONS(4021), - [anon_sym_PLUS] = ACTIONS(4014), - [anon_sym_DASH] = ACTIONS(4014), - [anon_sym_STAR] = ACTIONS(4021), - [anon_sym_SLASH] = ACTIONS(4014), - [anon_sym_PERCENT] = ACTIONS(4021), - [anon_sym_CARET] = ACTIONS(4021), - [anon_sym_PIPE] = ACTIONS(4014), - [anon_sym_AMP] = ACTIONS(4014), - [anon_sym_LT_LT] = ACTIONS(4021), - [anon_sym_GT_GT] = ACTIONS(4014), - [anon_sym_GT_GT_GT] = ACTIONS(4021), - [anon_sym_EQ_EQ] = ACTIONS(4021), - [anon_sym_BANG_EQ] = ACTIONS(4021), - [anon_sym_GT_EQ] = ACTIONS(4021), - [anon_sym_LT_EQ] = ACTIONS(4021), - [anon_sym_DOT] = ACTIONS(4014), - [anon_sym_EQ_GT] = ACTIONS(4021), - [anon_sym_switch] = ACTIONS(4021), - [anon_sym_when] = ACTIONS(4021), - [anon_sym_DOT_DOT] = ACTIONS(4021), - [anon_sym_and] = ACTIONS(4021), - [anon_sym_or] = ACTIONS(4021), - [anon_sym_AMP_AMP] = ACTIONS(4021), - [anon_sym_PIPE_PIPE] = ACTIONS(4021), - [sym_op_coalescing] = ACTIONS(4021), - [anon_sym_into] = ACTIONS(4021), - [anon_sym_on] = ACTIONS(4021), - [anon_sym_equals] = ACTIONS(4021), - [anon_sym_by] = ACTIONS(4021), - [anon_sym_as] = ACTIONS(4021), - [anon_sym_is] = ACTIONS(4021), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(4021), - [aux_sym_preproc_if_token3] = ACTIONS(4021), - [aux_sym_preproc_else_token1] = ACTIONS(4021), - [aux_sym_preproc_elif_token1] = ACTIONS(4021), + [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), @@ -615839,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), @@ -615848,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(4460), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_COLON] = ACTIONS(4460), - [anon_sym_COMMA] = ACTIONS(4460), - [anon_sym_RBRACK] = ACTIONS(4460), - [anon_sym_LPAREN] = ACTIONS(4460), - [anon_sym_RPAREN] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4460), - [anon_sym_RBRACE] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4458), - [anon_sym_GT] = ACTIONS(4458), - [anon_sym_in] = ACTIONS(4458), - [anon_sym_QMARK] = ACTIONS(4458), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_PLUS_PLUS] = ACTIONS(4460), - [anon_sym_DASH_DASH] = ACTIONS(4460), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4458), - [anon_sym_PERCENT] = ACTIONS(4460), - [anon_sym_CARET] = ACTIONS(4460), - [anon_sym_PIPE] = ACTIONS(4458), - [anon_sym_AMP] = ACTIONS(4458), - [anon_sym_LT_LT] = ACTIONS(4460), - [anon_sym_GT_GT] = ACTIONS(4458), - [anon_sym_GT_GT_GT] = ACTIONS(4460), - [anon_sym_EQ_EQ] = ACTIONS(4460), - [anon_sym_BANG_EQ] = ACTIONS(4460), - [anon_sym_GT_EQ] = ACTIONS(4460), - [anon_sym_LT_EQ] = ACTIONS(4460), - [anon_sym_DOT] = ACTIONS(4458), - [anon_sym_EQ_GT] = ACTIONS(4460), - [anon_sym_switch] = ACTIONS(4460), - [anon_sym_when] = ACTIONS(4460), - [anon_sym_DOT_DOT] = ACTIONS(4460), - [anon_sym_and] = ACTIONS(4460), - [anon_sym_or] = ACTIONS(4460), - [anon_sym_AMP_AMP] = ACTIONS(4460), - [anon_sym_PIPE_PIPE] = ACTIONS(4460), - [sym_op_coalescing] = ACTIONS(4460), - [anon_sym_into] = ACTIONS(4460), - [anon_sym_on] = ACTIONS(4460), - [anon_sym_equals] = ACTIONS(4460), - [anon_sym_by] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4460), - [anon_sym_is] = ACTIONS(4460), - [anon_sym_DASH_GT] = ACTIONS(4460), - [anon_sym_with] = ACTIONS(4460), - [aux_sym_preproc_if_token3] = ACTIONS(4460), - [aux_sym_preproc_else_token1] = ACTIONS(4460), - [aux_sym_preproc_elif_token1] = ACTIONS(4460), + [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), @@ -615921,57 +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_EQ] = ACTIONS(4554), - [anon_sym_LBRACK] = ACTIONS(4552), - [anon_sym_COLON] = ACTIONS(4552), - [anon_sym_COMMA] = ACTIONS(4552), - [anon_sym_LPAREN] = ACTIONS(4552), - [anon_sym_LT] = ACTIONS(4554), - [anon_sym_GT] = ACTIONS(4554), - [anon_sym_QMARK] = ACTIONS(4554), - [anon_sym_BANG] = ACTIONS(4554), - [anon_sym_PLUS_PLUS] = ACTIONS(4552), - [anon_sym_DASH_DASH] = ACTIONS(4552), - [anon_sym_PLUS] = ACTIONS(4554), - [anon_sym_DASH] = ACTIONS(4554), - [anon_sym_STAR] = ACTIONS(4554), - [anon_sym_SLASH] = ACTIONS(4554), - [anon_sym_PERCENT] = ACTIONS(4554), - [anon_sym_CARET] = ACTIONS(4554), - [anon_sym_PIPE] = ACTIONS(4554), - [anon_sym_AMP] = ACTIONS(4554), - [anon_sym_LT_LT] = ACTIONS(4554), - [anon_sym_GT_GT] = ACTIONS(4554), - [anon_sym_GT_GT_GT] = ACTIONS(4554), - [anon_sym_EQ_EQ] = ACTIONS(4552), - [anon_sym_BANG_EQ] = ACTIONS(4552), - [anon_sym_GT_EQ] = ACTIONS(4552), - [anon_sym_LT_EQ] = ACTIONS(4552), - [anon_sym_DOT] = ACTIONS(4554), - [anon_sym_switch] = ACTIONS(4552), - [anon_sym_DOT_DOT] = ACTIONS(4552), - [anon_sym_and] = ACTIONS(4552), - [anon_sym_or] = ACTIONS(4552), - [anon_sym_PLUS_EQ] = ACTIONS(4552), - [anon_sym_DASH_EQ] = ACTIONS(4552), - [anon_sym_STAR_EQ] = ACTIONS(4552), - [anon_sym_SLASH_EQ] = ACTIONS(4552), - [anon_sym_PERCENT_EQ] = ACTIONS(4552), - [anon_sym_AMP_EQ] = ACTIONS(4552), - [anon_sym_CARET_EQ] = ACTIONS(4552), - [anon_sym_PIPE_EQ] = ACTIONS(4552), - [anon_sym_LT_LT_EQ] = ACTIONS(4552), - [anon_sym_GT_GT_EQ] = ACTIONS(4552), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4552), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4552), - [anon_sym_AMP_AMP] = ACTIONS(4552), - [anon_sym_PIPE_PIPE] = ACTIONS(4552), - [sym_op_coalescing] = ACTIONS(4554), - [anon_sym_into] = ACTIONS(4552), - [anon_sym_as] = ACTIONS(4552), - [anon_sym_is] = ACTIONS(4552), - [anon_sym_DASH_GT] = ACTIONS(4552), - [anon_sym_with] = ACTIONS(4552), + [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), @@ -615982,9 +608279,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(4552), }, [4684] = { + [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), @@ -615994,58 +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(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_COLON] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_RBRACK] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_RPAREN] = ACTIONS(4444), - [anon_sym_LBRACE] = ACTIONS(4444), - [anon_sym_RBRACE] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4442), - [anon_sym_GT] = ACTIONS(4442), - [anon_sym_in] = ACTIONS(4442), - [anon_sym_QMARK] = ACTIONS(4442), - [anon_sym_BANG] = ACTIONS(4442), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4444), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4444), - [anon_sym_CARET] = ACTIONS(4444), - [anon_sym_PIPE] = ACTIONS(4442), - [anon_sym_AMP] = ACTIONS(4442), - [anon_sym_LT_LT] = ACTIONS(4444), - [anon_sym_GT_GT] = ACTIONS(4442), - [anon_sym_GT_GT_GT] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_EQ_GT] = ACTIONS(4444), - [anon_sym_switch] = ACTIONS(4444), - [anon_sym_when] = ACTIONS(4444), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_and] = ACTIONS(4444), - [anon_sym_or] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [sym_op_coalescing] = ACTIONS(4444), - [anon_sym_into] = ACTIONS(4444), - [anon_sym_on] = ACTIONS(4444), - [anon_sym_equals] = ACTIONS(4444), - [anon_sym_by] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4444), - [anon_sym_DASH_GT] = ACTIONS(4444), - [anon_sym_with] = ACTIONS(4444), - [aux_sym_preproc_if_token3] = ACTIONS(4444), - [aux_sym_preproc_else_token1] = ACTIONS(4444), - [aux_sym_preproc_elif_token1] = ACTIONS(4444), + [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), @@ -616058,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), @@ -616067,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(4538), - [anon_sym_LBRACK] = ACTIONS(4536), - [anon_sym_COLON] = ACTIONS(4536), - [anon_sym_COMMA] = ACTIONS(4536), - [anon_sym_LPAREN] = ACTIONS(4536), - [anon_sym_LT] = ACTIONS(4538), - [anon_sym_GT] = ACTIONS(4538), - [anon_sym_QMARK] = ACTIONS(4538), - [anon_sym_BANG] = ACTIONS(4538), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_PLUS] = ACTIONS(4538), - [anon_sym_DASH] = ACTIONS(4538), - [anon_sym_STAR] = ACTIONS(4538), - [anon_sym_SLASH] = ACTIONS(4538), - [anon_sym_PERCENT] = ACTIONS(4538), - [anon_sym_CARET] = ACTIONS(4538), - [anon_sym_PIPE] = ACTIONS(4538), - [anon_sym_AMP] = ACTIONS(4538), - [anon_sym_LT_LT] = ACTIONS(4538), - [anon_sym_GT_GT] = ACTIONS(4538), - [anon_sym_GT_GT_GT] = ACTIONS(4538), - [anon_sym_EQ_EQ] = ACTIONS(4536), - [anon_sym_BANG_EQ] = ACTIONS(4536), - [anon_sym_GT_EQ] = ACTIONS(4536), - [anon_sym_LT_EQ] = ACTIONS(4536), - [anon_sym_DOT] = ACTIONS(4538), - [anon_sym_switch] = ACTIONS(4536), - [anon_sym_DOT_DOT] = ACTIONS(4536), - [anon_sym_and] = ACTIONS(4536), - [anon_sym_or] = ACTIONS(4536), - [anon_sym_PLUS_EQ] = ACTIONS(4536), - [anon_sym_DASH_EQ] = ACTIONS(4536), - [anon_sym_STAR_EQ] = ACTIONS(4536), - [anon_sym_SLASH_EQ] = ACTIONS(4536), - [anon_sym_PERCENT_EQ] = ACTIONS(4536), - [anon_sym_AMP_EQ] = ACTIONS(4536), - [anon_sym_CARET_EQ] = ACTIONS(4536), - [anon_sym_PIPE_EQ] = ACTIONS(4536), - [anon_sym_LT_LT_EQ] = ACTIONS(4536), - [anon_sym_GT_GT_EQ] = ACTIONS(4536), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4536), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_PIPE_PIPE] = ACTIONS(4536), - [sym_op_coalescing] = ACTIONS(4538), - [anon_sym_into] = ACTIONS(4536), - [anon_sym_as] = ACTIONS(4536), - [anon_sym_is] = ACTIONS(4536), - [anon_sym_DASH_GT] = ACTIONS(4536), - [anon_sym_with] = ACTIONS(4536), + [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), @@ -616128,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(4536), }, [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), @@ -616140,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(4359), - [anon_sym_LBRACK] = ACTIONS(4359), - [anon_sym_COLON] = ACTIONS(4359), - [anon_sym_COMMA] = ACTIONS(4359), - [anon_sym_RBRACK] = ACTIONS(4359), - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_RPAREN] = ACTIONS(4359), - [anon_sym_LBRACE] = ACTIONS(4359), - [anon_sym_RBRACE] = ACTIONS(4359), - [anon_sym_LT] = ACTIONS(4357), - [anon_sym_GT] = ACTIONS(4357), - [anon_sym_in] = ACTIONS(4357), - [anon_sym_QMARK] = ACTIONS(4357), - [anon_sym_BANG] = ACTIONS(4357), - [anon_sym_PLUS_PLUS] = ACTIONS(4359), - [anon_sym_DASH_DASH] = ACTIONS(4359), - [anon_sym_PLUS] = ACTIONS(4357), - [anon_sym_DASH] = ACTIONS(4357), - [anon_sym_STAR] = ACTIONS(4359), - [anon_sym_SLASH] = ACTIONS(4357), - [anon_sym_PERCENT] = ACTIONS(4359), - [anon_sym_CARET] = ACTIONS(4359), - [anon_sym_PIPE] = ACTIONS(4357), - [anon_sym_AMP] = ACTIONS(4357), - [anon_sym_LT_LT] = ACTIONS(4359), - [anon_sym_GT_GT] = ACTIONS(4357), - [anon_sym_GT_GT_GT] = ACTIONS(4359), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_GT_EQ] = ACTIONS(4359), - [anon_sym_LT_EQ] = ACTIONS(4359), - [anon_sym_DOT] = ACTIONS(4357), - [anon_sym_EQ_GT] = ACTIONS(4359), - [anon_sym_switch] = ACTIONS(4359), - [anon_sym_when] = ACTIONS(4359), - [anon_sym_DOT_DOT] = ACTIONS(4359), - [anon_sym_and] = ACTIONS(4359), - [anon_sym_or] = ACTIONS(4359), - [anon_sym_AMP_AMP] = ACTIONS(4359), - [anon_sym_PIPE_PIPE] = ACTIONS(4359), - [sym_op_coalescing] = ACTIONS(4359), - [anon_sym_into] = ACTIONS(4359), - [anon_sym_on] = ACTIONS(4359), - [anon_sym_equals] = ACTIONS(4359), - [anon_sym_by] = ACTIONS(4359), - [anon_sym_as] = ACTIONS(4359), - [anon_sym_is] = ACTIONS(4359), - [anon_sym_DASH_GT] = ACTIONS(4359), - [anon_sym_with] = ACTIONS(4359), - [aux_sym_preproc_if_token3] = ACTIONS(4359), - [aux_sym_preproc_else_token1] = ACTIONS(4359), - [aux_sym_preproc_elif_token1] = ACTIONS(4359), + [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), @@ -616204,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), @@ -616213,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(4290), - [anon_sym_LBRACK] = ACTIONS(4290), - [anon_sym_COLON] = ACTIONS(4290), - [anon_sym_COMMA] = ACTIONS(4290), - [anon_sym_RBRACK] = ACTIONS(4290), - [anon_sym_LPAREN] = ACTIONS(4290), - [anon_sym_RPAREN] = ACTIONS(4290), - [anon_sym_LBRACE] = ACTIONS(4290), - [anon_sym_RBRACE] = ACTIONS(4290), - [anon_sym_LT] = ACTIONS(4288), - [anon_sym_GT] = ACTIONS(4288), - [anon_sym_in] = ACTIONS(4288), - [anon_sym_QMARK] = ACTIONS(4288), - [anon_sym_BANG] = ACTIONS(4288), - [anon_sym_PLUS_PLUS] = ACTIONS(4290), - [anon_sym_DASH_DASH] = ACTIONS(4290), - [anon_sym_PLUS] = ACTIONS(4288), - [anon_sym_DASH] = ACTIONS(4288), - [anon_sym_STAR] = ACTIONS(4290), - [anon_sym_SLASH] = ACTIONS(4288), - [anon_sym_PERCENT] = ACTIONS(4290), - [anon_sym_CARET] = ACTIONS(4290), - [anon_sym_PIPE] = ACTIONS(4288), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_LT_LT] = ACTIONS(4290), - [anon_sym_GT_GT] = ACTIONS(4288), - [anon_sym_GT_GT_GT] = ACTIONS(4290), - [anon_sym_EQ_EQ] = ACTIONS(4290), - [anon_sym_BANG_EQ] = ACTIONS(4290), - [anon_sym_GT_EQ] = ACTIONS(4290), - [anon_sym_LT_EQ] = ACTIONS(4290), - [anon_sym_DOT] = ACTIONS(4288), - [anon_sym_EQ_GT] = ACTIONS(4290), - [anon_sym_switch] = ACTIONS(4290), - [anon_sym_when] = ACTIONS(4290), - [anon_sym_DOT_DOT] = ACTIONS(4290), - [anon_sym_and] = ACTIONS(4290), - [anon_sym_or] = ACTIONS(4290), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_PIPE_PIPE] = ACTIONS(4290), - [sym_op_coalescing] = ACTIONS(4290), - [anon_sym_into] = ACTIONS(4290), - [anon_sym_on] = ACTIONS(4290), - [anon_sym_equals] = ACTIONS(4290), - [anon_sym_by] = ACTIONS(4290), - [anon_sym_as] = ACTIONS(4290), - [anon_sym_is] = ACTIONS(4290), - [anon_sym_DASH_GT] = ACTIONS(4290), - [anon_sym_with] = ACTIONS(4290), - [aux_sym_preproc_if_token3] = ACTIONS(4290), - [aux_sym_preproc_else_token1] = ACTIONS(4290), - [aux_sym_preproc_elif_token1] = ACTIONS(4290), + [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), @@ -616286,57 +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_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_BANG] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3982), - [anon_sym_DASH_DASH] = ACTIONS(3982), - [anon_sym_PLUS] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3980), - [anon_sym_SLASH] = ACTIONS(3980), - [anon_sym_PERCENT] = ACTIONS(3980), - [anon_sym_CARET] = ACTIONS(3980), - [anon_sym_PIPE] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3980), - [anon_sym_LT_LT] = ACTIONS(3980), - [anon_sym_GT_GT] = ACTIONS(3980), - [anon_sym_GT_GT_GT] = ACTIONS(3980), - [anon_sym_EQ_EQ] = ACTIONS(3982), - [anon_sym_BANG_EQ] = ACTIONS(3982), - [anon_sym_GT_EQ] = ACTIONS(3982), - [anon_sym_LT_EQ] = ACTIONS(3982), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_switch] = ACTIONS(3982), - [anon_sym_DOT_DOT] = 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_AMP_AMP] = ACTIONS(3982), - [anon_sym_PIPE_PIPE] = ACTIONS(3982), - [sym_op_coalescing] = ACTIONS(3980), - [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), + [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), @@ -616347,7 +608634,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(3982), }, [4689] = { [sym_preproc_region] = STATE(4689), @@ -616359,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(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_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), @@ -616423,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), @@ -616432,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(4420), - [anon_sym_LBRACK] = ACTIONS(4420), - [anon_sym_COLON] = ACTIONS(4420), - [anon_sym_COMMA] = ACTIONS(4420), - [anon_sym_RBRACK] = ACTIONS(4420), - [anon_sym_LPAREN] = ACTIONS(4420), - [anon_sym_RPAREN] = ACTIONS(4420), - [anon_sym_LBRACE] = ACTIONS(4420), - [anon_sym_RBRACE] = ACTIONS(4420), - [anon_sym_LT] = ACTIONS(4418), - [anon_sym_GT] = ACTIONS(4418), - [anon_sym_in] = ACTIONS(4418), - [anon_sym_QMARK] = ACTIONS(4418), - [anon_sym_BANG] = ACTIONS(4418), - [anon_sym_PLUS_PLUS] = ACTIONS(4420), - [anon_sym_DASH_DASH] = ACTIONS(4420), - [anon_sym_PLUS] = ACTIONS(4418), - [anon_sym_DASH] = ACTIONS(4418), - [anon_sym_STAR] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4418), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_CARET] = ACTIONS(4420), - [anon_sym_PIPE] = ACTIONS(4418), - [anon_sym_AMP] = ACTIONS(4418), - [anon_sym_LT_LT] = ACTIONS(4420), - [anon_sym_GT_GT] = ACTIONS(4418), - [anon_sym_GT_GT_GT] = ACTIONS(4420), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_GT_EQ] = ACTIONS(4420), - [anon_sym_LT_EQ] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4418), - [anon_sym_EQ_GT] = ACTIONS(4420), - [anon_sym_switch] = ACTIONS(4420), - [anon_sym_when] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4420), - [anon_sym_and] = ACTIONS(4420), - [anon_sym_or] = ACTIONS(4420), - [anon_sym_AMP_AMP] = ACTIONS(4420), - [anon_sym_PIPE_PIPE] = ACTIONS(4420), - [sym_op_coalescing] = ACTIONS(4420), - [anon_sym_into] = ACTIONS(4420), - [anon_sym_on] = ACTIONS(4420), - [anon_sym_equals] = ACTIONS(4420), - [anon_sym_by] = ACTIONS(4420), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_DASH_GT] = ACTIONS(4420), - [anon_sym_with] = ACTIONS(4420), - [aux_sym_preproc_if_token3] = ACTIONS(4420), - [aux_sym_preproc_else_token1] = ACTIONS(4420), - [aux_sym_preproc_elif_token1] = ACTIONS(4420), + [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), @@ -616496,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), @@ -616505,58 +608802,41 @@ 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_SEMI] = ACTIONS(4338), - [anon_sym_LBRACK] = ACTIONS(4338), - [anon_sym_COLON] = ACTIONS(4338), - [anon_sym_COMMA] = ACTIONS(4338), - [anon_sym_RBRACK] = ACTIONS(4338), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_RPAREN] = ACTIONS(4338), - [anon_sym_LBRACE] = ACTIONS(4338), - [anon_sym_RBRACE] = ACTIONS(4338), - [anon_sym_LT] = ACTIONS(4336), - [anon_sym_GT] = ACTIONS(4336), - [anon_sym_in] = ACTIONS(4336), - [anon_sym_QMARK] = ACTIONS(4336), - [anon_sym_BANG] = ACTIONS(4336), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS] = ACTIONS(4336), - [anon_sym_DASH] = ACTIONS(4336), - [anon_sym_STAR] = ACTIONS(4338), - [anon_sym_SLASH] = ACTIONS(4336), - [anon_sym_PERCENT] = ACTIONS(4338), - [anon_sym_CARET] = ACTIONS(4338), - [anon_sym_PIPE] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym_LT_LT] = ACTIONS(4338), - [anon_sym_GT_GT] = ACTIONS(4336), - [anon_sym_GT_GT_GT] = ACTIONS(4338), - [anon_sym_EQ_EQ] = ACTIONS(4338), - [anon_sym_BANG_EQ] = ACTIONS(4338), - [anon_sym_GT_EQ] = ACTIONS(4338), - [anon_sym_LT_EQ] = ACTIONS(4338), - [anon_sym_DOT] = ACTIONS(4336), - [anon_sym_EQ_GT] = ACTIONS(4338), - [anon_sym_switch] = ACTIONS(4338), - [anon_sym_when] = ACTIONS(4338), - [anon_sym_DOT_DOT] = ACTIONS(4338), - [anon_sym_and] = ACTIONS(4338), - [anon_sym_or] = ACTIONS(4338), - [anon_sym_AMP_AMP] = ACTIONS(4338), - [anon_sym_PIPE_PIPE] = ACTIONS(4338), - [sym_op_coalescing] = ACTIONS(4338), - [anon_sym_into] = ACTIONS(4338), - [anon_sym_on] = ACTIONS(4338), - [anon_sym_equals] = ACTIONS(4338), - [anon_sym_by] = ACTIONS(4338), - [anon_sym_as] = ACTIONS(4338), - [anon_sym_is] = ACTIONS(4338), - [anon_sym_DASH_GT] = ACTIONS(4338), - [anon_sym_with] = ACTIONS(4338), - [aux_sym_preproc_if_token3] = ACTIONS(4338), - [aux_sym_preproc_else_token1] = ACTIONS(4338), - [aux_sym_preproc_elif_token1] = ACTIONS(4338), + [anon_sym_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), @@ -616569,6 +608849,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -616578,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(4326), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4326), - [anon_sym_RBRACK] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_RPAREN] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4326), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4324), - [anon_sym_QMARK] = ACTIONS(4324), - [anon_sym_BANG] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_CARET] = ACTIONS(4326), - [anon_sym_PIPE] = ACTIONS(4324), - [anon_sym_AMP] = ACTIONS(4324), - [anon_sym_LT_LT] = ACTIONS(4326), - [anon_sym_GT_GT] = ACTIONS(4324), - [anon_sym_GT_GT_GT] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_EQ_GT] = ACTIONS(4326), - [anon_sym_switch] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_and] = ACTIONS(4326), - [anon_sym_or] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [sym_op_coalescing] = ACTIONS(4326), - [anon_sym_into] = ACTIONS(4326), - [anon_sym_on] = ACTIONS(4326), - [anon_sym_equals] = ACTIONS(4326), - [anon_sym_by] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_DASH_GT] = ACTIONS(4326), - [anon_sym_with] = ACTIONS(4326), - [aux_sym_preproc_if_token3] = ACTIONS(4326), - [aux_sym_preproc_else_token1] = ACTIONS(4326), - [aux_sym_preproc_elif_token1] = ACTIONS(4326), + [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), @@ -616642,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), @@ -616651,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(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_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), @@ -616715,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), @@ -616724,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(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(6946), - [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_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), @@ -616797,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(4318), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(6938), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(6946), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4318), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_into] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [sym__identifier_token] = ACTIONS(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), @@ -616861,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), @@ -616870,57 +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_EQ] = ACTIONS(4528), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_COLON] = ACTIONS(4530), - [anon_sym_COMMA] = ACTIONS(4530), - [anon_sym_LPAREN] = ACTIONS(4530), - [anon_sym_LT] = ACTIONS(4528), - [anon_sym_GT] = ACTIONS(4528), - [anon_sym_QMARK] = ACTIONS(4528), - [anon_sym_BANG] = ACTIONS(4528), - [anon_sym_PLUS_PLUS] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4528), - [anon_sym_STAR] = ACTIONS(4528), - [anon_sym_SLASH] = ACTIONS(4528), - [anon_sym_PERCENT] = ACTIONS(4528), - [anon_sym_CARET] = ACTIONS(4528), - [anon_sym_PIPE] = ACTIONS(4528), - [anon_sym_AMP] = ACTIONS(4528), - [anon_sym_LT_LT] = ACTIONS(4528), - [anon_sym_GT_GT] = ACTIONS(4528), - [anon_sym_GT_GT_GT] = ACTIONS(4528), - [anon_sym_EQ_EQ] = ACTIONS(4530), - [anon_sym_BANG_EQ] = ACTIONS(4530), - [anon_sym_GT_EQ] = ACTIONS(4530), - [anon_sym_LT_EQ] = ACTIONS(4530), - [anon_sym_DOT] = ACTIONS(4528), - [anon_sym_switch] = ACTIONS(4530), - [anon_sym_DOT_DOT] = 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_AMP_AMP] = ACTIONS(4530), - [anon_sym_PIPE_PIPE] = ACTIONS(4530), - [sym_op_coalescing] = ACTIONS(4528), - [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), + [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), @@ -616931,9 +609202,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(4530), }, [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), @@ -616943,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(3700), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3700), - [anon_sym_when] = ACTIONS(3700), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_into] = ACTIONS(3700), - [anon_sym_on] = ACTIONS(3700), - [anon_sym_equals] = ACTIONS(3700), - [anon_sym_by] = ACTIONS(3700), - [anon_sym_as] = ACTIONS(3700), - [anon_sym_is] = ACTIONS(3700), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3700), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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), @@ -617016,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(4318), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4318), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_into] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [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), @@ -617080,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), @@ -617089,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(4318), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(6938), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4318), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_into] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [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), @@ -617153,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), @@ -617162,58 +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_SEMI] = ACTIONS(4318), - [anon_sym_LBRACK] = ACTIONS(4318), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4318), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_into] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [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), @@ -617226,6 +609488,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -617235,58 +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_SEMI] = ACTIONS(5956), - [anon_sym_LBRACK] = ACTIONS(5956), - [anon_sym_COLON] = ACTIONS(5956), - [anon_sym_COMMA] = ACTIONS(5956), - [anon_sym_RBRACK] = ACTIONS(5956), - [anon_sym_LPAREN] = ACTIONS(5956), - [anon_sym_RPAREN] = ACTIONS(5956), - [anon_sym_LBRACE] = ACTIONS(5956), - [anon_sym_RBRACE] = ACTIONS(5956), - [anon_sym_LT] = ACTIONS(5958), - [anon_sym_GT] = ACTIONS(5958), - [anon_sym_in] = ACTIONS(5956), - [anon_sym_where] = ACTIONS(5956), - [anon_sym_QMARK] = ACTIONS(5958), - [anon_sym_BANG] = ACTIONS(5958), - [anon_sym_PLUS_PLUS] = ACTIONS(5956), - [anon_sym_DASH_DASH] = ACTIONS(5956), - [anon_sym_PLUS] = ACTIONS(5958), - [anon_sym_DASH] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(5956), - [anon_sym_SLASH] = ACTIONS(5958), - [anon_sym_PERCENT] = ACTIONS(5956), - [anon_sym_CARET] = ACTIONS(5956), - [anon_sym_PIPE] = ACTIONS(5958), - [anon_sym_AMP] = ACTIONS(5958), - [anon_sym_LT_LT] = ACTIONS(5956), - [anon_sym_GT_GT] = ACTIONS(5958), - [anon_sym_GT_GT_GT] = ACTIONS(5956), - [anon_sym_EQ_EQ] = ACTIONS(5956), - [anon_sym_BANG_EQ] = ACTIONS(5956), - [anon_sym_GT_EQ] = ACTIONS(5956), - [anon_sym_LT_EQ] = ACTIONS(5956), - [anon_sym_DOT] = ACTIONS(5958), - [anon_sym_EQ_GT] = ACTIONS(5956), - [anon_sym_switch] = ACTIONS(5956), - [anon_sym_when] = ACTIONS(5956), - [anon_sym_DOT_DOT] = ACTIONS(5956), - [anon_sym_and] = ACTIONS(5956), - [anon_sym_or] = ACTIONS(5956), - [anon_sym_AMP_AMP] = ACTIONS(5956), - [anon_sym_PIPE_PIPE] = ACTIONS(5956), - [sym_op_coalescing] = ACTIONS(5956), - [anon_sym_on] = ACTIONS(5956), - [anon_sym_equals] = ACTIONS(5956), - [anon_sym_by] = ACTIONS(5956), - [anon_sym_as] = ACTIONS(5956), - [anon_sym_is] = ACTIONS(5956), - [anon_sym_DASH_GT] = ACTIONS(5956), - [anon_sym_with] = ACTIONS(5956), - [aux_sym_preproc_if_token3] = ACTIONS(5956), - [aux_sym_preproc_else_token1] = ACTIONS(5956), - [aux_sym_preproc_elif_token1] = ACTIONS(5956), + [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), @@ -617299,6 +609559,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -617308,58 +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_SEMI] = ACTIONS(5752), - [anon_sym_EQ] = ACTIONS(6948), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(6950), - [anon_sym_DASH_EQ] = ACTIONS(6950), - [anon_sym_STAR_EQ] = ACTIONS(6950), - [anon_sym_SLASH_EQ] = ACTIONS(6950), - [anon_sym_PERCENT_EQ] = ACTIONS(6950), - [anon_sym_AMP_EQ] = ACTIONS(6950), - [anon_sym_CARET_EQ] = ACTIONS(6950), - [anon_sym_PIPE_EQ] = ACTIONS(6950), - [anon_sym_LT_LT_EQ] = ACTIONS(6950), - [anon_sym_GT_GT_EQ] = ACTIONS(6950), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6950), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6950), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), - [aux_sym_preproc_if_token3] = ACTIONS(5752), - [aux_sym_preproc_else_token1] = ACTIONS(5752), - [aux_sym_preproc_elif_token1] = ACTIONS(5752), + [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), @@ -617372,6 +609630,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -617381,70 +609654,68 @@ 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(3962), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_COLON] = ACTIONS(3964), - [anon_sym_COMMA] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_LT] = ACTIONS(3962), - [anon_sym_GT] = ACTIONS(3962), - [anon_sym_QMARK] = ACTIONS(3962), - [anon_sym_BANG] = ACTIONS(3962), - [anon_sym_PLUS_PLUS] = ACTIONS(3964), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_PLUS] = ACTIONS(3962), - [anon_sym_DASH] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3962), - [anon_sym_SLASH] = ACTIONS(3962), - [anon_sym_PERCENT] = ACTIONS(3962), - [anon_sym_CARET] = ACTIONS(3962), - [anon_sym_PIPE] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_LT_LT] = ACTIONS(3962), - [anon_sym_GT_GT] = ACTIONS(3962), - [anon_sym_GT_GT_GT] = ACTIONS(3962), - [anon_sym_EQ_EQ] = ACTIONS(3964), - [anon_sym_BANG_EQ] = ACTIONS(3964), - [anon_sym_GT_EQ] = ACTIONS(3964), - [anon_sym_LT_EQ] = ACTIONS(3964), - [anon_sym_DOT] = ACTIONS(3962), - [anon_sym_switch] = ACTIONS(3964), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_and] = ACTIONS(3964), - [anon_sym_or] = ACTIONS(3964), - [anon_sym_PLUS_EQ] = ACTIONS(3964), - [anon_sym_DASH_EQ] = ACTIONS(3964), - [anon_sym_STAR_EQ] = ACTIONS(3964), - [anon_sym_SLASH_EQ] = ACTIONS(3964), - [anon_sym_PERCENT_EQ] = ACTIONS(3964), - [anon_sym_AMP_EQ] = ACTIONS(3964), - [anon_sym_CARET_EQ] = ACTIONS(3964), - [anon_sym_PIPE_EQ] = ACTIONS(3964), - [anon_sym_LT_LT_EQ] = ACTIONS(3964), - [anon_sym_GT_GT_EQ] = ACTIONS(3964), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3964), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(3964), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [sym_op_coalescing] = ACTIONS(3962), - [anon_sym_into] = ACTIONS(3964), - [anon_sym_as] = ACTIONS(3964), - [anon_sym_is] = ACTIONS(3964), - [anon_sym_DASH_GT] = ACTIONS(3964), - [anon_sym_with] = ACTIONS(3964), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(3964), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [4704] = { + [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), @@ -617454,58 +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(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(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), @@ -617518,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), @@ -617527,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(5934), - [anon_sym_LBRACK] = ACTIONS(5934), - [anon_sym_COLON] = ACTIONS(5934), - [anon_sym_COMMA] = ACTIONS(5934), - [anon_sym_RBRACK] = ACTIONS(5934), - [anon_sym_LPAREN] = ACTIONS(5934), - [anon_sym_RPAREN] = ACTIONS(5934), - [anon_sym_RBRACE] = ACTIONS(5934), - [anon_sym_LT] = ACTIONS(5936), - [anon_sym_GT] = ACTIONS(5936), - [anon_sym_in] = ACTIONS(5934), - [anon_sym_QMARK] = ACTIONS(5936), - [anon_sym_BANG] = ACTIONS(5936), - [anon_sym_PLUS_PLUS] = ACTIONS(5934), - [anon_sym_DASH_DASH] = ACTIONS(5934), - [anon_sym_PLUS] = ACTIONS(5936), - [anon_sym_DASH] = ACTIONS(5936), - [anon_sym_STAR] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5936), - [anon_sym_PERCENT] = ACTIONS(5934), - [anon_sym_CARET] = ACTIONS(5934), - [anon_sym_PIPE] = ACTIONS(5936), - [anon_sym_AMP] = ACTIONS(5936), - [anon_sym_LT_LT] = ACTIONS(5934), - [anon_sym_GT_GT] = ACTIONS(5936), - [anon_sym_GT_GT_GT] = ACTIONS(5934), - [anon_sym_EQ_EQ] = ACTIONS(5934), - [anon_sym_BANG_EQ] = ACTIONS(5934), - [anon_sym_GT_EQ] = ACTIONS(5934), - [anon_sym_LT_EQ] = ACTIONS(5934), - [anon_sym_DOT] = ACTIONS(5936), - [anon_sym_EQ_GT] = ACTIONS(5934), - [anon_sym_switch] = ACTIONS(5934), - [anon_sym_when] = ACTIONS(5934), - [anon_sym_DOT_DOT] = ACTIONS(5934), - [anon_sym_and] = ACTIONS(5934), - [anon_sym_or] = ACTIONS(5934), - [anon_sym_AMP_AMP] = ACTIONS(5934), - [anon_sym_PIPE_PIPE] = ACTIONS(5934), - [sym_op_coalescing] = ACTIONS(5934), - [anon_sym_on] = ACTIONS(5934), - [anon_sym_equals] = ACTIONS(5934), - [anon_sym_by] = ACTIONS(5934), - [anon_sym_as] = ACTIONS(5934), - [anon_sym_is] = ACTIONS(5934), - [anon_sym_DASH_GT] = ACTIONS(5934), - [anon_sym_with] = ACTIONS(5934), - [anon_sym_DQUOTE] = ACTIONS(5934), - [sym_string_literal_encoding] = ACTIONS(6952), - [aux_sym_preproc_if_token3] = ACTIONS(5934), - [aux_sym_preproc_else_token1] = ACTIONS(5934), - [aux_sym_preproc_elif_token1] = ACTIONS(5934), + [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), @@ -617591,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), @@ -617600,57 +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_EQ] = ACTIONS(4558), - [anon_sym_LBRACK] = ACTIONS(4556), - [anon_sym_COLON] = ACTIONS(4556), - [anon_sym_COMMA] = ACTIONS(4556), - [anon_sym_LPAREN] = ACTIONS(4556), - [anon_sym_LT] = ACTIONS(4558), - [anon_sym_GT] = ACTIONS(4558), - [anon_sym_QMARK] = ACTIONS(4558), - [anon_sym_BANG] = ACTIONS(4558), - [anon_sym_PLUS_PLUS] = ACTIONS(4556), - [anon_sym_DASH_DASH] = ACTIONS(4556), - [anon_sym_PLUS] = ACTIONS(4558), - [anon_sym_DASH] = ACTIONS(4558), - [anon_sym_STAR] = ACTIONS(4558), - [anon_sym_SLASH] = ACTIONS(4558), - [anon_sym_PERCENT] = ACTIONS(4558), - [anon_sym_CARET] = ACTIONS(4558), - [anon_sym_PIPE] = ACTIONS(4558), - [anon_sym_AMP] = ACTIONS(4558), - [anon_sym_LT_LT] = ACTIONS(4558), - [anon_sym_GT_GT] = ACTIONS(4558), - [anon_sym_GT_GT_GT] = ACTIONS(4558), - [anon_sym_EQ_EQ] = ACTIONS(4556), - [anon_sym_BANG_EQ] = ACTIONS(4556), - [anon_sym_GT_EQ] = ACTIONS(4556), - [anon_sym_LT_EQ] = ACTIONS(4556), - [anon_sym_DOT] = ACTIONS(4558), - [anon_sym_switch] = ACTIONS(4556), - [anon_sym_DOT_DOT] = ACTIONS(4556), - [anon_sym_and] = ACTIONS(4556), - [anon_sym_or] = ACTIONS(4556), - [anon_sym_PLUS_EQ] = ACTIONS(4556), - [anon_sym_DASH_EQ] = ACTIONS(4556), - [anon_sym_STAR_EQ] = ACTIONS(4556), - [anon_sym_SLASH_EQ] = ACTIONS(4556), - [anon_sym_PERCENT_EQ] = ACTIONS(4556), - [anon_sym_AMP_EQ] = ACTIONS(4556), - [anon_sym_CARET_EQ] = ACTIONS(4556), - [anon_sym_PIPE_EQ] = ACTIONS(4556), - [anon_sym_LT_LT_EQ] = ACTIONS(4556), - [anon_sym_GT_GT_EQ] = ACTIONS(4556), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4556), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4556), - [anon_sym_AMP_AMP] = ACTIONS(4556), - [anon_sym_PIPE_PIPE] = ACTIONS(4556), - [sym_op_coalescing] = ACTIONS(4558), - [anon_sym_into] = ACTIONS(4556), - [anon_sym_as] = ACTIONS(4556), - [anon_sym_is] = ACTIONS(4556), - [anon_sym_DASH_GT] = ACTIONS(4556), - [anon_sym_with] = ACTIONS(4556), + [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), @@ -617661,7 +609912,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(4556), }, [4707] = { [sym_preproc_region] = STATE(4707), @@ -617673,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), - [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), + [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), @@ -617737,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), @@ -617746,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), - [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(6954), - [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(5942), + [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), @@ -617810,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), @@ -617819,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(5989), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_COLON] = ACTIONS(5989), - [anon_sym_COMMA] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5989), - [anon_sym_LPAREN] = ACTIONS(5989), - [anon_sym_RPAREN] = ACTIONS(5989), - [anon_sym_LBRACE] = ACTIONS(5989), - [anon_sym_RBRACE] = ACTIONS(5989), - [anon_sym_LT] = ACTIONS(5991), - [anon_sym_GT] = ACTIONS(5991), - [anon_sym_in] = ACTIONS(5989), - [anon_sym_where] = ACTIONS(5989), - [anon_sym_QMARK] = ACTIONS(5991), - [anon_sym_BANG] = ACTIONS(5991), - [anon_sym_PLUS_PLUS] = ACTIONS(5989), - [anon_sym_DASH_DASH] = ACTIONS(5989), - [anon_sym_PLUS] = ACTIONS(5991), - [anon_sym_DASH] = ACTIONS(5991), - [anon_sym_STAR] = ACTIONS(5989), - [anon_sym_SLASH] = ACTIONS(5991), - [anon_sym_PERCENT] = ACTIONS(5989), - [anon_sym_CARET] = ACTIONS(5989), - [anon_sym_PIPE] = ACTIONS(5991), - [anon_sym_AMP] = ACTIONS(5991), - [anon_sym_LT_LT] = ACTIONS(5989), - [anon_sym_GT_GT] = ACTIONS(5991), - [anon_sym_GT_GT_GT] = ACTIONS(5989), - [anon_sym_EQ_EQ] = ACTIONS(5989), - [anon_sym_BANG_EQ] = ACTIONS(5989), - [anon_sym_GT_EQ] = ACTIONS(5989), - [anon_sym_LT_EQ] = ACTIONS(5989), - [anon_sym_DOT] = ACTIONS(5991), - [anon_sym_EQ_GT] = ACTIONS(5989), - [anon_sym_switch] = ACTIONS(5989), - [anon_sym_when] = ACTIONS(5989), - [anon_sym_DOT_DOT] = ACTIONS(5989), - [anon_sym_and] = ACTIONS(5989), - [anon_sym_or] = ACTIONS(5989), - [anon_sym_AMP_AMP] = ACTIONS(5989), - [anon_sym_PIPE_PIPE] = ACTIONS(5989), - [sym_op_coalescing] = ACTIONS(5989), - [anon_sym_on] = ACTIONS(5989), - [anon_sym_equals] = ACTIONS(5989), - [anon_sym_by] = ACTIONS(5989), - [anon_sym_as] = ACTIONS(5989), - [anon_sym_is] = ACTIONS(5989), - [anon_sym_DASH_GT] = ACTIONS(5989), - [anon_sym_with] = ACTIONS(5989), - [aux_sym_preproc_if_token3] = ACTIONS(5989), - [aux_sym_preproc_else_token1] = ACTIONS(5989), - [aux_sym_preproc_elif_token1] = ACTIONS(5989), + [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), @@ -617892,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), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(6956), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(5942), - [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(5942), + [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), @@ -617956,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), @@ -617965,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(5920), - [anon_sym_LBRACK] = ACTIONS(5920), - [anon_sym_COLON] = ACTIONS(5920), - [anon_sym_COMMA] = ACTIONS(5920), - [anon_sym_RBRACK] = ACTIONS(5920), - [anon_sym_LPAREN] = ACTIONS(5920), - [anon_sym_RPAREN] = ACTIONS(5920), - [anon_sym_RBRACE] = ACTIONS(5920), - [anon_sym_LT] = ACTIONS(5922), - [anon_sym_GT] = ACTIONS(5922), - [anon_sym_in] = ACTIONS(5922), - [anon_sym_QMARK] = ACTIONS(5922), - [anon_sym_BANG] = ACTIONS(5922), - [anon_sym_PLUS_PLUS] = ACTIONS(5920), - [anon_sym_DASH_DASH] = ACTIONS(5920), - [anon_sym_PLUS] = ACTIONS(5922), - [anon_sym_DASH] = ACTIONS(5922), - [anon_sym_STAR] = ACTIONS(5920), - [anon_sym_SLASH] = ACTIONS(5922), - [anon_sym_PERCENT] = ACTIONS(5920), - [anon_sym_CARET] = ACTIONS(5920), - [anon_sym_PIPE] = ACTIONS(5922), - [anon_sym_AMP] = ACTIONS(5922), - [anon_sym_LT_LT] = ACTIONS(5920), - [anon_sym_GT_GT] = ACTIONS(5922), - [anon_sym_GT_GT_GT] = ACTIONS(5920), - [anon_sym_EQ_EQ] = ACTIONS(5920), - [anon_sym_BANG_EQ] = ACTIONS(5920), - [anon_sym_GT_EQ] = ACTIONS(5920), - [anon_sym_LT_EQ] = ACTIONS(5920), - [anon_sym_DOT] = ACTIONS(5922), - [anon_sym_EQ_GT] = ACTIONS(5920), - [anon_sym_switch] = ACTIONS(5920), - [anon_sym_when] = ACTIONS(5920), - [anon_sym_DOT_DOT] = ACTIONS(5920), - [anon_sym_and] = ACTIONS(5920), - [anon_sym_or] = ACTIONS(5920), - [anon_sym_AMP_AMP] = ACTIONS(5920), - [anon_sym_PIPE_PIPE] = ACTIONS(5920), - [sym_op_coalescing] = ACTIONS(5920), - [anon_sym_into] = ACTIONS(5920), - [anon_sym_on] = ACTIONS(5920), - [anon_sym_equals] = ACTIONS(5920), - [anon_sym_by] = ACTIONS(5920), - [anon_sym_as] = ACTIONS(5920), - [anon_sym_is] = ACTIONS(5920), - [anon_sym_DASH_GT] = ACTIONS(5920), - [anon_sym_with] = ACTIONS(5920), - [sym_string_literal_encoding] = ACTIONS(6958), - [aux_sym_preproc_if_token3] = ACTIONS(5920), - [aux_sym_preproc_else_token1] = ACTIONS(5920), - [aux_sym_preproc_elif_token1] = ACTIONS(5920), + [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), @@ -618038,58 +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_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_BANG] = ACTIONS(3913), - [anon_sym_PLUS_PLUS] = ACTIONS(3910), - [anon_sym_DASH_DASH] = ACTIONS(3910), - [anon_sym_PLUS] = ACTIONS(3913), - [anon_sym_DASH] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3910), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3910), - [anon_sym_CARET] = ACTIONS(3910), - [anon_sym_PIPE] = ACTIONS(3913), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_LT] = ACTIONS(3910), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3910), - [anon_sym_EQ_EQ] = ACTIONS(3910), - [anon_sym_BANG_EQ] = ACTIONS(3910), - [anon_sym_GT_EQ] = ACTIONS(3910), - [anon_sym_LT_EQ] = ACTIONS(3910), - [anon_sym_DOT] = ACTIONS(3913), - [anon_sym_EQ_GT] = ACTIONS(3910), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3910), - [anon_sym_when] = ACTIONS(3910), - [anon_sym_DOT_DOT] = ACTIONS(3910), - [anon_sym_and] = ACTIONS(3910), - [anon_sym_or] = ACTIONS(3910), - [anon_sym_AMP_AMP] = ACTIONS(3910), - [anon_sym_PIPE_PIPE] = ACTIONS(3910), - [sym_op_coalescing] = 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), + [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), @@ -618111,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), - [sym__identifier_token] = ACTIONS(3738), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(6960), - [anon_sym_global] = ACTIONS(3738), - [anon_sym_unsafe] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(5942), - [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(5942), + [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), @@ -618184,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), - [anon_sym_SEMI] = ACTIONS(5934), - [anon_sym_LBRACK] = ACTIONS(5934), - [anon_sym_COLON] = ACTIONS(5934), - [anon_sym_COMMA] = ACTIONS(5934), - [anon_sym_RBRACK] = ACTIONS(5934), - [anon_sym_LPAREN] = ACTIONS(5934), - [anon_sym_RPAREN] = ACTIONS(5934), - [anon_sym_RBRACE] = ACTIONS(5934), - [anon_sym_LT] = ACTIONS(5936), - [anon_sym_GT] = ACTIONS(5936), - [anon_sym_in] = ACTIONS(5936), - [anon_sym_QMARK] = ACTIONS(5936), - [anon_sym_BANG] = ACTIONS(5936), - [anon_sym_PLUS_PLUS] = ACTIONS(5934), - [anon_sym_DASH_DASH] = ACTIONS(5934), - [anon_sym_PLUS] = ACTIONS(5936), - [anon_sym_DASH] = ACTIONS(5936), - [anon_sym_STAR] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5936), - [anon_sym_PERCENT] = ACTIONS(5934), - [anon_sym_CARET] = ACTIONS(5934), - [anon_sym_PIPE] = ACTIONS(5936), - [anon_sym_AMP] = ACTIONS(5936), - [anon_sym_LT_LT] = ACTIONS(5934), - [anon_sym_GT_GT] = ACTIONS(5936), - [anon_sym_GT_GT_GT] = ACTIONS(5934), - [anon_sym_EQ_EQ] = ACTIONS(5934), - [anon_sym_BANG_EQ] = ACTIONS(5934), - [anon_sym_GT_EQ] = ACTIONS(5934), - [anon_sym_LT_EQ] = ACTIONS(5934), - [anon_sym_DOT] = ACTIONS(5936), - [anon_sym_EQ_GT] = ACTIONS(5934), - [anon_sym_switch] = ACTIONS(5934), - [anon_sym_when] = ACTIONS(5934), - [anon_sym_DOT_DOT] = ACTIONS(5934), - [anon_sym_and] = ACTIONS(5934), - [anon_sym_or] = ACTIONS(5934), - [anon_sym_AMP_AMP] = ACTIONS(5934), - [anon_sym_PIPE_PIPE] = ACTIONS(5934), - [sym_op_coalescing] = ACTIONS(5934), - [anon_sym_into] = ACTIONS(5934), - [anon_sym_on] = ACTIONS(5934), - [anon_sym_equals] = ACTIONS(5934), - [anon_sym_by] = ACTIONS(5934), - [anon_sym_as] = ACTIONS(5934), - [anon_sym_is] = ACTIONS(5934), - [anon_sym_DASH_GT] = ACTIONS(5934), - [anon_sym_with] = ACTIONS(5934), - [sym_string_literal_encoding] = ACTIONS(6962), - [aux_sym_preproc_if_token3] = ACTIONS(5934), - [aux_sym_preproc_else_token1] = ACTIONS(5934), - [aux_sym_preproc_elif_token1] = ACTIONS(5934), + [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), @@ -618248,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), @@ -618257,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(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_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), @@ -618330,57 +610562,56 @@ 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(4566), - [anon_sym_LBRACK] = ACTIONS(4564), - [anon_sym_COLON] = ACTIONS(4564), - [anon_sym_COMMA] = ACTIONS(4564), - [anon_sym_LPAREN] = ACTIONS(4564), - [anon_sym_LT] = ACTIONS(4566), - [anon_sym_GT] = ACTIONS(4566), - [anon_sym_QMARK] = ACTIONS(4566), - [anon_sym_BANG] = ACTIONS(4566), - [anon_sym_PLUS_PLUS] = ACTIONS(4564), - [anon_sym_DASH_DASH] = ACTIONS(4564), - [anon_sym_PLUS] = ACTIONS(4566), - [anon_sym_DASH] = ACTIONS(4566), - [anon_sym_STAR] = ACTIONS(4566), - [anon_sym_SLASH] = ACTIONS(4566), - [anon_sym_PERCENT] = ACTIONS(4566), - [anon_sym_CARET] = ACTIONS(4566), - [anon_sym_PIPE] = ACTIONS(4566), - [anon_sym_AMP] = ACTIONS(4566), - [anon_sym_LT_LT] = ACTIONS(4566), - [anon_sym_GT_GT] = ACTIONS(4566), - [anon_sym_GT_GT_GT] = ACTIONS(4566), - [anon_sym_EQ_EQ] = ACTIONS(4564), - [anon_sym_BANG_EQ] = ACTIONS(4564), - [anon_sym_GT_EQ] = ACTIONS(4564), - [anon_sym_LT_EQ] = ACTIONS(4564), - [anon_sym_DOT] = ACTIONS(4566), - [anon_sym_switch] = ACTIONS(4564), - [anon_sym_DOT_DOT] = ACTIONS(4564), - [anon_sym_and] = ACTIONS(4564), - [anon_sym_or] = ACTIONS(4564), - [anon_sym_PLUS_EQ] = ACTIONS(4564), - [anon_sym_DASH_EQ] = ACTIONS(4564), - [anon_sym_STAR_EQ] = ACTIONS(4564), - [anon_sym_SLASH_EQ] = ACTIONS(4564), - [anon_sym_PERCENT_EQ] = ACTIONS(4564), - [anon_sym_AMP_EQ] = ACTIONS(4564), - [anon_sym_CARET_EQ] = ACTIONS(4564), - [anon_sym_PIPE_EQ] = ACTIONS(4564), - [anon_sym_LT_LT_EQ] = ACTIONS(4564), - [anon_sym_GT_GT_EQ] = ACTIONS(4564), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4564), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4564), - [anon_sym_AMP_AMP] = ACTIONS(4564), - [anon_sym_PIPE_PIPE] = ACTIONS(4564), - [sym_op_coalescing] = ACTIONS(4566), - [anon_sym_into] = ACTIONS(4564), - [anon_sym_as] = ACTIONS(4564), - [anon_sym_is] = ACTIONS(4564), - [anon_sym_DASH_GT] = ACTIONS(4564), - [anon_sym_with] = ACTIONS(4564), + [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), @@ -618391,7 +610622,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(4564), }, [4717] = { [sym_preproc_region] = STATE(4717), @@ -618403,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(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), + [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), @@ -618464,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(3953), }, [4718] = { [sym_preproc_region] = STATE(4718), @@ -618476,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(5960), - [anon_sym_LBRACK] = ACTIONS(5960), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_COMMA] = ACTIONS(5960), - [anon_sym_RBRACK] = ACTIONS(5960), - [anon_sym_LPAREN] = ACTIONS(5960), - [anon_sym_RPAREN] = ACTIONS(5960), - [anon_sym_LBRACE] = ACTIONS(5960), - [anon_sym_RBRACE] = ACTIONS(5960), - [anon_sym_LT] = ACTIONS(5962), - [anon_sym_GT] = ACTIONS(5962), - [anon_sym_in] = ACTIONS(5960), - [anon_sym_where] = ACTIONS(5960), - [anon_sym_QMARK] = ACTIONS(5962), - [anon_sym_BANG] = ACTIONS(5962), - [anon_sym_PLUS_PLUS] = ACTIONS(5960), - [anon_sym_DASH_DASH] = ACTIONS(5960), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5960), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_PERCENT] = ACTIONS(5960), - [anon_sym_CARET] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5962), - [anon_sym_AMP] = ACTIONS(5962), - [anon_sym_LT_LT] = ACTIONS(5960), - [anon_sym_GT_GT] = ACTIONS(5962), - [anon_sym_GT_GT_GT] = ACTIONS(5960), - [anon_sym_EQ_EQ] = ACTIONS(5960), - [anon_sym_BANG_EQ] = ACTIONS(5960), - [anon_sym_GT_EQ] = ACTIONS(5960), - [anon_sym_LT_EQ] = ACTIONS(5960), - [anon_sym_DOT] = ACTIONS(5962), - [anon_sym_EQ_GT] = ACTIONS(5960), - [anon_sym_switch] = ACTIONS(5960), - [anon_sym_when] = ACTIONS(5960), - [anon_sym_DOT_DOT] = ACTIONS(5960), - [anon_sym_and] = ACTIONS(5960), - [anon_sym_or] = ACTIONS(5960), - [anon_sym_AMP_AMP] = ACTIONS(5960), - [anon_sym_PIPE_PIPE] = ACTIONS(5960), - [sym_op_coalescing] = ACTIONS(5960), - [anon_sym_on] = ACTIONS(5960), - [anon_sym_equals] = ACTIONS(5960), - [anon_sym_by] = ACTIONS(5960), - [anon_sym_as] = ACTIONS(5960), - [anon_sym_is] = ACTIONS(5960), - [anon_sym_DASH_GT] = ACTIONS(5960), - [anon_sym_with] = ACTIONS(5960), - [aux_sym_preproc_if_token3] = ACTIONS(5960), - [aux_sym_preproc_else_token1] = ACTIONS(5960), - [aux_sym_preproc_elif_token1] = ACTIONS(5960), + [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), @@ -618549,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(5956), - [anon_sym_LBRACK] = ACTIONS(5956), - [anon_sym_COLON] = ACTIONS(5956), - [anon_sym_COMMA] = ACTIONS(5956), - [anon_sym_RBRACK] = ACTIONS(5956), - [anon_sym_LPAREN] = ACTIONS(5956), - [anon_sym_RPAREN] = ACTIONS(5956), - [anon_sym_LBRACE] = ACTIONS(5956), - [anon_sym_RBRACE] = ACTIONS(5956), - [anon_sym_LT] = ACTIONS(5958), - [anon_sym_GT] = ACTIONS(5958), - [anon_sym_in] = ACTIONS(5958), - [anon_sym_QMARK] = ACTIONS(5958), - [anon_sym_BANG] = ACTIONS(5958), - [anon_sym_PLUS_PLUS] = ACTIONS(5956), - [anon_sym_DASH_DASH] = ACTIONS(5956), - [anon_sym_PLUS] = ACTIONS(5958), - [anon_sym_DASH] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(5956), - [anon_sym_SLASH] = ACTIONS(5958), - [anon_sym_PERCENT] = ACTIONS(5956), - [anon_sym_CARET] = ACTIONS(5956), - [anon_sym_PIPE] = ACTIONS(5958), - [anon_sym_AMP] = ACTIONS(5958), - [anon_sym_LT_LT] = ACTIONS(5956), - [anon_sym_GT_GT] = ACTIONS(5958), - [anon_sym_GT_GT_GT] = ACTIONS(5956), - [anon_sym_EQ_EQ] = ACTIONS(5956), - [anon_sym_BANG_EQ] = ACTIONS(5956), - [anon_sym_GT_EQ] = ACTIONS(5956), - [anon_sym_LT_EQ] = ACTIONS(5956), - [anon_sym_DOT] = ACTIONS(5958), - [anon_sym_EQ_GT] = ACTIONS(5956), - [anon_sym_switch] = ACTIONS(5956), - [anon_sym_when] = ACTIONS(5956), - [anon_sym_DOT_DOT] = ACTIONS(5956), - [anon_sym_and] = ACTIONS(5956), - [anon_sym_or] = ACTIONS(5956), - [anon_sym_AMP_AMP] = ACTIONS(5956), - [anon_sym_PIPE_PIPE] = ACTIONS(5956), - [sym_op_coalescing] = ACTIONS(5956), - [anon_sym_into] = ACTIONS(5956), - [anon_sym_on] = ACTIONS(5956), - [anon_sym_equals] = ACTIONS(5956), - [anon_sym_by] = ACTIONS(5956), - [anon_sym_as] = ACTIONS(5956), - [anon_sym_is] = ACTIONS(5956), - [anon_sym_DASH_GT] = ACTIONS(5956), - [anon_sym_with] = ACTIONS(5956), - [aux_sym_preproc_if_token3] = ACTIONS(5956), - [aux_sym_preproc_else_token1] = ACTIONS(5956), - [aux_sym_preproc_elif_token1] = ACTIONS(5956), + [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), @@ -618613,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), @@ -618622,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(5920), - [anon_sym_LBRACK] = ACTIONS(5920), - [anon_sym_COLON] = ACTIONS(5920), - [anon_sym_COMMA] = ACTIONS(5920), - [anon_sym_RBRACK] = ACTIONS(5920), - [anon_sym_LPAREN] = ACTIONS(5920), - [anon_sym_RPAREN] = ACTIONS(5920), - [anon_sym_RBRACE] = ACTIONS(5920), - [anon_sym_LT] = ACTIONS(5922), - [anon_sym_GT] = ACTIONS(5922), - [anon_sym_in] = ACTIONS(5920), - [anon_sym_QMARK] = ACTIONS(5922), - [anon_sym_BANG] = ACTIONS(5922), - [anon_sym_PLUS_PLUS] = ACTIONS(5920), - [anon_sym_DASH_DASH] = ACTIONS(5920), - [anon_sym_PLUS] = ACTIONS(5922), - [anon_sym_DASH] = ACTIONS(5922), - [anon_sym_STAR] = ACTIONS(5920), - [anon_sym_SLASH] = ACTIONS(5922), - [anon_sym_PERCENT] = ACTIONS(5920), - [anon_sym_CARET] = ACTIONS(5920), - [anon_sym_PIPE] = ACTIONS(5922), - [anon_sym_AMP] = ACTIONS(5922), - [anon_sym_LT_LT] = ACTIONS(5920), - [anon_sym_GT_GT] = ACTIONS(5922), - [anon_sym_GT_GT_GT] = ACTIONS(5920), - [anon_sym_EQ_EQ] = ACTIONS(5920), - [anon_sym_BANG_EQ] = ACTIONS(5920), - [anon_sym_GT_EQ] = ACTIONS(5920), - [anon_sym_LT_EQ] = ACTIONS(5920), - [anon_sym_DOT] = ACTIONS(5922), - [anon_sym_EQ_GT] = ACTIONS(5920), - [anon_sym_switch] = ACTIONS(5920), - [anon_sym_when] = ACTIONS(5920), - [anon_sym_DOT_DOT] = ACTIONS(5920), - [anon_sym_and] = ACTIONS(5920), - [anon_sym_or] = ACTIONS(5920), - [anon_sym_AMP_AMP] = ACTIONS(5920), - [anon_sym_PIPE_PIPE] = ACTIONS(5920), - [sym_op_coalescing] = ACTIONS(5920), - [anon_sym_on] = ACTIONS(5920), - [anon_sym_equals] = ACTIONS(5920), - [anon_sym_by] = ACTIONS(5920), - [anon_sym_as] = ACTIONS(5920), - [anon_sym_is] = ACTIONS(5920), - [anon_sym_DASH_GT] = ACTIONS(5920), - [anon_sym_with] = ACTIONS(5920), - [anon_sym_DQUOTE] = ACTIONS(5920), - [sym_string_literal_encoding] = ACTIONS(6964), - [aux_sym_preproc_if_token3] = ACTIONS(5920), - [aux_sym_preproc_else_token1] = ACTIONS(5920), - [aux_sym_preproc_elif_token1] = ACTIONS(5920), + [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), @@ -618686,9 +610908,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4721] = { - [sym_modifier] = STATE(5141), - [sym_identifier] = STATE(6708), - [sym__reserved_identifier] = STATE(2206), [sym_preproc_region] = STATE(4721), [sym_preproc_endregion] = STATE(4721), [sym_preproc_line] = STATE(4721), @@ -618698,55 +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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5020), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(5568), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(5568), - [anon_sym_static] = ACTIONS(5568), - [anon_sym_public] = ACTIONS(5568), - [anon_sym_private] = ACTIONS(5568), - [anon_sym_readonly] = ACTIONS(5568), - [anon_sym_abstract] = ACTIONS(5568), - [anon_sym_async] = ACTIONS(5568), - [anon_sym_const] = ACTIONS(5568), - [anon_sym_file] = ACTIONS(5574), - [anon_sym_fixed] = ACTIONS(5568), - [anon_sym_internal] = ACTIONS(5568), - [anon_sym_new] = ACTIONS(5568), - [anon_sym_override] = ACTIONS(5568), - [anon_sym_partial] = ACTIONS(5568), - [anon_sym_protected] = ACTIONS(5568), - [anon_sym_required] = ACTIONS(5568), - [anon_sym_sealed] = ACTIONS(5568), - [anon_sym_virtual] = ACTIONS(5568), - [anon_sym_volatile] = ACTIONS(5568), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [sym_accessor_get] = ACTIONS(6966), - [sym_accessor_set] = ACTIONS(6966), - [sym_accessor_add] = ACTIONS(6966), - [sym_accessor_remove] = ACTIONS(6966), - [sym_accessor_init] = ACTIONS(6966), - [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_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), @@ -618768,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(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_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(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_as] = ACTIONS(4006), - [anon_sym_is] = ACTIONS(4006), - [anon_sym_DASH_GT] = ACTIONS(4006), - [anon_sym_with] = ACTIONS(4006), + [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), @@ -618829,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(4006), }, [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), @@ -618841,58 +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(6968), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(5752), - [anon_sym_RBRACE] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(6970), - [anon_sym_DASH_EQ] = ACTIONS(6970), - [anon_sym_STAR_EQ] = ACTIONS(6970), - [anon_sym_SLASH_EQ] = ACTIONS(6970), - [anon_sym_PERCENT_EQ] = ACTIONS(6970), - [anon_sym_AMP_EQ] = ACTIONS(6970), - [anon_sym_CARET_EQ] = ACTIONS(6970), - [anon_sym_PIPE_EQ] = ACTIONS(6970), - [anon_sym_LT_LT_EQ] = ACTIONS(6970), - [anon_sym_GT_GT_EQ] = ACTIONS(6970), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6970), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6970), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -618905,6 +611120,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [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), @@ -618914,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), - [anon_sym_SEMI] = ACTIONS(5960), - [anon_sym_LBRACK] = ACTIONS(5960), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_COMMA] = ACTIONS(5960), - [anon_sym_RBRACK] = ACTIONS(5960), - [anon_sym_LPAREN] = ACTIONS(5960), - [anon_sym_RPAREN] = ACTIONS(5960), - [anon_sym_LBRACE] = ACTIONS(5960), - [anon_sym_RBRACE] = ACTIONS(5960), - [anon_sym_LT] = ACTIONS(5962), - [anon_sym_GT] = ACTIONS(5962), - [anon_sym_in] = ACTIONS(5962), - [anon_sym_QMARK] = ACTIONS(5962), - [anon_sym_BANG] = ACTIONS(5962), - [anon_sym_PLUS_PLUS] = ACTIONS(5960), - [anon_sym_DASH_DASH] = ACTIONS(5960), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5960), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_PERCENT] = ACTIONS(5960), - [anon_sym_CARET] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5962), - [anon_sym_AMP] = ACTIONS(5962), - [anon_sym_LT_LT] = ACTIONS(5960), - [anon_sym_GT_GT] = ACTIONS(5962), - [anon_sym_GT_GT_GT] = ACTIONS(5960), - [anon_sym_EQ_EQ] = ACTIONS(5960), - [anon_sym_BANG_EQ] = ACTIONS(5960), - [anon_sym_GT_EQ] = ACTIONS(5960), - [anon_sym_LT_EQ] = ACTIONS(5960), - [anon_sym_DOT] = ACTIONS(5962), - [anon_sym_EQ_GT] = ACTIONS(5960), - [anon_sym_switch] = ACTIONS(5960), - [anon_sym_when] = ACTIONS(5960), - [anon_sym_DOT_DOT] = ACTIONS(5960), - [anon_sym_and] = ACTIONS(5960), - [anon_sym_or] = ACTIONS(5960), - [anon_sym_AMP_AMP] = ACTIONS(5960), - [anon_sym_PIPE_PIPE] = ACTIONS(5960), - [sym_op_coalescing] = ACTIONS(5960), - [anon_sym_into] = ACTIONS(5960), - [anon_sym_on] = ACTIONS(5960), - [anon_sym_equals] = ACTIONS(5960), - [anon_sym_by] = ACTIONS(5960), - [anon_sym_as] = ACTIONS(5960), - [anon_sym_is] = ACTIONS(5960), - [anon_sym_DASH_GT] = ACTIONS(5960), - [anon_sym_with] = ACTIONS(5960), - [aux_sym_preproc_if_token3] = ACTIONS(5960), - [aux_sym_preproc_else_token1] = ACTIONS(5960), - [aux_sym_preproc_elif_token1] = ACTIONS(5960), + [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), @@ -618978,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), @@ -618987,57 +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_EQ] = ACTIONS(4562), - [anon_sym_LBRACK] = ACTIONS(4560), - [anon_sym_COLON] = ACTIONS(4560), - [anon_sym_COMMA] = ACTIONS(4560), - [anon_sym_LPAREN] = ACTIONS(4560), - [anon_sym_LT] = ACTIONS(4562), - [anon_sym_GT] = ACTIONS(4562), - [anon_sym_QMARK] = ACTIONS(4562), - [anon_sym_BANG] = ACTIONS(4562), - [anon_sym_PLUS_PLUS] = ACTIONS(4560), - [anon_sym_DASH_DASH] = ACTIONS(4560), - [anon_sym_PLUS] = ACTIONS(4562), - [anon_sym_DASH] = ACTIONS(4562), - [anon_sym_STAR] = ACTIONS(4562), - [anon_sym_SLASH] = ACTIONS(4562), - [anon_sym_PERCENT] = ACTIONS(4562), - [anon_sym_CARET] = ACTIONS(4562), - [anon_sym_PIPE] = ACTIONS(4562), - [anon_sym_AMP] = ACTIONS(4562), - [anon_sym_LT_LT] = ACTIONS(4562), - [anon_sym_GT_GT] = ACTIONS(4562), - [anon_sym_GT_GT_GT] = ACTIONS(4562), - [anon_sym_EQ_EQ] = ACTIONS(4560), - [anon_sym_BANG_EQ] = ACTIONS(4560), - [anon_sym_GT_EQ] = ACTIONS(4560), - [anon_sym_LT_EQ] = ACTIONS(4560), - [anon_sym_DOT] = ACTIONS(4562), - [anon_sym_switch] = ACTIONS(4560), - [anon_sym_DOT_DOT] = ACTIONS(4560), - [anon_sym_and] = ACTIONS(4560), - [anon_sym_or] = ACTIONS(4560), - [anon_sym_PLUS_EQ] = ACTIONS(4560), - [anon_sym_DASH_EQ] = ACTIONS(4560), - [anon_sym_STAR_EQ] = ACTIONS(4560), - [anon_sym_SLASH_EQ] = ACTIONS(4560), - [anon_sym_PERCENT_EQ] = ACTIONS(4560), - [anon_sym_AMP_EQ] = ACTIONS(4560), - [anon_sym_CARET_EQ] = ACTIONS(4560), - [anon_sym_PIPE_EQ] = ACTIONS(4560), - [anon_sym_LT_LT_EQ] = ACTIONS(4560), - [anon_sym_GT_GT_EQ] = ACTIONS(4560), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(4560), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(4560), - [anon_sym_AMP_AMP] = ACTIONS(4560), - [anon_sym_PIPE_PIPE] = ACTIONS(4560), - [sym_op_coalescing] = ACTIONS(4562), - [anon_sym_into] = ACTIONS(4560), - [anon_sym_as] = ACTIONS(4560), - [anon_sym_is] = ACTIONS(4560), - [anon_sym_DASH_GT] = ACTIONS(4560), - [anon_sym_with] = ACTIONS(4560), + [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), @@ -619048,9 +611258,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(4560), }, [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), @@ -619060,57 +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_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_LT] = ACTIONS(5008), - [anon_sym_GT] = ACTIONS(5008), - [anon_sym_QMARK] = ACTIONS(5008), - [anon_sym_BANG] = ACTIONS(5008), - [anon_sym_PLUS_PLUS] = ACTIONS(5005), - [anon_sym_DASH_DASH] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5008), - [anon_sym_DASH] = ACTIONS(5008), - [anon_sym_STAR] = ACTIONS(5008), - [anon_sym_SLASH] = ACTIONS(5008), - [anon_sym_PERCENT] = ACTIONS(5008), - [anon_sym_CARET] = ACTIONS(5008), - [anon_sym_PIPE] = ACTIONS(5008), - [anon_sym_AMP] = ACTIONS(5008), - [anon_sym_LT_LT] = ACTIONS(5008), - [anon_sym_GT_GT] = ACTIONS(5008), - [anon_sym_GT_GT_GT] = ACTIONS(5008), - [anon_sym_EQ_EQ] = ACTIONS(5005), - [anon_sym_BANG_EQ] = ACTIONS(5005), - [anon_sym_GT_EQ] = ACTIONS(5005), - [anon_sym_LT_EQ] = ACTIONS(5005), - [anon_sym_DOT] = ACTIONS(5008), - [anon_sym_switch] = ACTIONS(5005), - [anon_sym_DOT_DOT] = ACTIONS(5005), - [anon_sym_and] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(5003), - [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(5005), - [anon_sym_PIPE_PIPE] = ACTIONS(5005), - [sym_op_coalescing] = ACTIONS(5008), - [anon_sym_into] = ACTIONS(5003), - [anon_sym_as] = ACTIONS(5005), - [anon_sym_is] = ACTIONS(5005), - [anon_sym_DASH_GT] = ACTIONS(5005), - [anon_sym_with] = ACTIONS(5005), + [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), @@ -619121,9 +611328,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(5003), }, [4727] = { + [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), @@ -619133,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_EQ] = ACTIONS(4528), - [anon_sym_LBRACK] = ACTIONS(4526), - [anon_sym_COLON] = ACTIONS(4526), - [anon_sym_COMMA] = ACTIONS(4526), - [anon_sym_LPAREN] = ACTIONS(4526), - [anon_sym_LT] = ACTIONS(4532), - [anon_sym_GT] = ACTIONS(4532), - [anon_sym_QMARK] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4526), - [anon_sym_DASH_DASH] = ACTIONS(4526), - [anon_sym_PLUS] = ACTIONS(4532), - [anon_sym_DASH] = ACTIONS(4532), - [anon_sym_STAR] = ACTIONS(4532), - [anon_sym_SLASH] = ACTIONS(4532), - [anon_sym_PERCENT] = ACTIONS(4532), - [anon_sym_CARET] = ACTIONS(4532), - [anon_sym_PIPE] = ACTIONS(4532), - [anon_sym_AMP] = ACTIONS(4532), - [anon_sym_LT_LT] = ACTIONS(4532), - [anon_sym_GT_GT] = ACTIONS(4532), - [anon_sym_GT_GT_GT] = ACTIONS(4532), - [anon_sym_EQ_EQ] = ACTIONS(4526), - [anon_sym_BANG_EQ] = ACTIONS(4526), - [anon_sym_GT_EQ] = ACTIONS(4526), - [anon_sym_LT_EQ] = ACTIONS(4526), - [anon_sym_DOT] = ACTIONS(4532), - [anon_sym_switch] = ACTIONS(4526), - [anon_sym_DOT_DOT] = ACTIONS(4526), - [anon_sym_and] = ACTIONS(4526), - [anon_sym_or] = ACTIONS(4526), - [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_AMP_AMP] = ACTIONS(4526), - [anon_sym_PIPE_PIPE] = ACTIONS(4526), - [sym_op_coalescing] = ACTIONS(4532), - [anon_sym_into] = ACTIONS(4526), - [anon_sym_as] = ACTIONS(4526), - [anon_sym_is] = ACTIONS(4526), - [anon_sym_DASH_GT] = ACTIONS(4526), - [anon_sym_with] = ACTIONS(4526), + [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), @@ -619194,12 +611398,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(4526), }, [4728] = { - [sym_modifier] = STATE(5141), - [sym_identifier] = STATE(6733), - [sym__reserved_identifier] = STATE(2206), + [sym_block] = STATE(2068), [sym_preproc_region] = STATE(4728), [sym_preproc_endregion] = STATE(4728), [sym_preproc_line] = STATE(4728), @@ -619209,55 +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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5020), - [sym__identifier_token] = ACTIONS(25), - [anon_sym_extern] = ACTIONS(5568), - [anon_sym_alias] = ACTIONS(29), - [anon_sym_global] = ACTIONS(29), - [anon_sym_unsafe] = ACTIONS(5568), - [anon_sym_static] = ACTIONS(5568), - [anon_sym_public] = ACTIONS(5568), - [anon_sym_private] = ACTIONS(5568), - [anon_sym_readonly] = ACTIONS(5568), - [anon_sym_abstract] = ACTIONS(5568), - [anon_sym_async] = ACTIONS(5568), - [anon_sym_const] = ACTIONS(5568), - [anon_sym_file] = ACTIONS(5574), - [anon_sym_fixed] = ACTIONS(5568), - [anon_sym_internal] = ACTIONS(5568), - [anon_sym_new] = ACTIONS(5568), - [anon_sym_override] = ACTIONS(5568), - [anon_sym_partial] = ACTIONS(5568), - [anon_sym_protected] = ACTIONS(5568), - [anon_sym_required] = ACTIONS(5568), - [anon_sym_sealed] = ACTIONS(5568), - [anon_sym_virtual] = ACTIONS(5568), - [anon_sym_volatile] = ACTIONS(5568), - [anon_sym_where] = ACTIONS(29), - [anon_sym_notnull] = ACTIONS(29), - [anon_sym_unmanaged] = ACTIONS(29), - [sym_accessor_get] = ACTIONS(6972), - [sym_accessor_set] = ACTIONS(6972), - [sym_accessor_add] = ACTIONS(6972), - [sym_accessor_remove] = ACTIONS(6972), - [sym_accessor_init] = ACTIONS(6972), - [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), + [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), @@ -619270,7 +611470,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4729] = { - [sym_initializer_expression] = STATE(4958), + [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), @@ -619280,57 +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_SEMI] = ACTIONS(5773), - [anon_sym_LBRACK] = ACTIONS(5773), - [anon_sym_COLON] = ACTIONS(5773), - [anon_sym_COMMA] = ACTIONS(5773), - [anon_sym_RBRACK] = ACTIONS(5773), - [anon_sym_LPAREN] = ACTIONS(5773), - [anon_sym_RPAREN] = ACTIONS(5773), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(5773), - [anon_sym_LT] = ACTIONS(5775), - [anon_sym_GT] = ACTIONS(5775), - [anon_sym_in] = ACTIONS(5773), - [anon_sym_QMARK] = ACTIONS(5775), - [anon_sym_BANG] = ACTIONS(5775), - [anon_sym_PLUS_PLUS] = ACTIONS(5773), - [anon_sym_DASH_DASH] = ACTIONS(5773), - [anon_sym_PLUS] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(5775), - [anon_sym_STAR] = ACTIONS(5773), - [anon_sym_SLASH] = ACTIONS(5775), - [anon_sym_PERCENT] = ACTIONS(5773), - [anon_sym_CARET] = ACTIONS(5773), - [anon_sym_PIPE] = ACTIONS(5775), - [anon_sym_AMP] = ACTIONS(5775), - [anon_sym_LT_LT] = ACTIONS(5773), - [anon_sym_GT_GT] = ACTIONS(5775), - [anon_sym_GT_GT_GT] = ACTIONS(5773), - [anon_sym_EQ_EQ] = ACTIONS(5773), - [anon_sym_BANG_EQ] = ACTIONS(5773), - [anon_sym_GT_EQ] = ACTIONS(5773), - [anon_sym_LT_EQ] = ACTIONS(5773), - [anon_sym_DOT] = ACTIONS(5775), - [anon_sym_EQ_GT] = ACTIONS(5773), - [anon_sym_switch] = ACTIONS(5773), - [anon_sym_when] = ACTIONS(5773), - [anon_sym_DOT_DOT] = ACTIONS(5773), - [anon_sym_and] = ACTIONS(5773), - [anon_sym_or] = ACTIONS(5773), - [anon_sym_AMP_AMP] = ACTIONS(5773), - [anon_sym_PIPE_PIPE] = ACTIONS(5773), - [sym_op_coalescing] = ACTIONS(5773), - [anon_sym_on] = ACTIONS(5773), - [anon_sym_equals] = ACTIONS(5773), - [anon_sym_by] = ACTIONS(5773), - [anon_sym_as] = ACTIONS(5773), - [anon_sym_is] = ACTIONS(5773), - [anon_sym_DASH_GT] = ACTIONS(5773), - [anon_sym_with] = ACTIONS(5773), - [aux_sym_preproc_if_token3] = ACTIONS(5773), - [aux_sym_preproc_else_token1] = ACTIONS(5773), - [aux_sym_preproc_elif_token1] = ACTIONS(5773), + [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), @@ -619343,6 +611540,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4730] = { + [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), @@ -619352,58 +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(5989), - [anon_sym_LBRACK] = ACTIONS(5989), - [anon_sym_COLON] = ACTIONS(5989), - [anon_sym_COMMA] = ACTIONS(5989), - [anon_sym_RBRACK] = ACTIONS(5989), - [anon_sym_LPAREN] = ACTIONS(5989), - [anon_sym_RPAREN] = ACTIONS(5989), - [anon_sym_LBRACE] = ACTIONS(5989), - [anon_sym_RBRACE] = ACTIONS(5989), - [anon_sym_LT] = ACTIONS(5991), - [anon_sym_GT] = ACTIONS(5991), - [anon_sym_in] = ACTIONS(5991), - [anon_sym_QMARK] = ACTIONS(5991), - [anon_sym_BANG] = ACTIONS(5991), - [anon_sym_PLUS_PLUS] = ACTIONS(5989), - [anon_sym_DASH_DASH] = ACTIONS(5989), - [anon_sym_PLUS] = ACTIONS(5991), - [anon_sym_DASH] = ACTIONS(5991), - [anon_sym_STAR] = ACTIONS(5989), - [anon_sym_SLASH] = ACTIONS(5991), - [anon_sym_PERCENT] = ACTIONS(5989), - [anon_sym_CARET] = ACTIONS(5989), - [anon_sym_PIPE] = ACTIONS(5991), - [anon_sym_AMP] = ACTIONS(5991), - [anon_sym_LT_LT] = ACTIONS(5989), - [anon_sym_GT_GT] = ACTIONS(5991), - [anon_sym_GT_GT_GT] = ACTIONS(5989), - [anon_sym_EQ_EQ] = ACTIONS(5989), - [anon_sym_BANG_EQ] = ACTIONS(5989), - [anon_sym_GT_EQ] = ACTIONS(5989), - [anon_sym_LT_EQ] = ACTIONS(5989), - [anon_sym_DOT] = ACTIONS(5991), - [anon_sym_EQ_GT] = ACTIONS(5989), - [anon_sym_switch] = ACTIONS(5989), - [anon_sym_when] = ACTIONS(5989), - [anon_sym_DOT_DOT] = ACTIONS(5989), - [anon_sym_and] = ACTIONS(5989), - [anon_sym_or] = ACTIONS(5989), - [anon_sym_AMP_AMP] = ACTIONS(5989), - [anon_sym_PIPE_PIPE] = ACTIONS(5989), - [sym_op_coalescing] = ACTIONS(5989), - [anon_sym_into] = ACTIONS(5989), - [anon_sym_on] = ACTIONS(5989), - [anon_sym_equals] = ACTIONS(5989), - [anon_sym_by] = ACTIONS(5989), - [anon_sym_as] = ACTIONS(5989), - [anon_sym_is] = ACTIONS(5989), - [anon_sym_DASH_GT] = ACTIONS(5989), - [anon_sym_with] = ACTIONS(5989), - [aux_sym_preproc_if_token3] = ACTIONS(5989), - [aux_sym_preproc_else_token1] = ACTIONS(5989), - [aux_sym_preproc_elif_token1] = ACTIONS(5989), + [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), @@ -619416,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), @@ -619425,70 +611634,67 @@ 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(6974), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(6976), - [anon_sym_DASH_EQ] = ACTIONS(6976), - [anon_sym_STAR_EQ] = ACTIONS(6976), - [anon_sym_SLASH_EQ] = ACTIONS(6976), - [anon_sym_PERCENT_EQ] = ACTIONS(6976), - [anon_sym_AMP_EQ] = ACTIONS(6976), - [anon_sym_CARET_EQ] = ACTIONS(6976), - [anon_sym_PIPE_EQ] = ACTIONS(6976), - [anon_sym_LT_LT_EQ] = ACTIONS(6976), - [anon_sym_GT_GT_EQ] = ACTIONS(6976), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6976), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6976), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(5752), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [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), @@ -619498,58 +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_SEMI] = ACTIONS(5964), - [anon_sym_LBRACK] = ACTIONS(5964), - [anon_sym_COLON] = ACTIONS(5964), - [anon_sym_COMMA] = ACTIONS(5964), - [anon_sym_RBRACK] = ACTIONS(5964), - [anon_sym_LPAREN] = ACTIONS(5964), - [anon_sym_RPAREN] = ACTIONS(5964), - [anon_sym_RBRACE] = ACTIONS(5964), - [anon_sym_LT] = ACTIONS(5966), - [anon_sym_GT] = ACTIONS(5966), - [anon_sym_in] = ACTIONS(5966), - [anon_sym_QMARK] = ACTIONS(5966), - [anon_sym_BANG] = ACTIONS(5966), - [anon_sym_PLUS_PLUS] = ACTIONS(5964), - [anon_sym_DASH_DASH] = ACTIONS(5964), - [anon_sym_PLUS] = ACTIONS(5966), - [anon_sym_DASH] = ACTIONS(5966), - [anon_sym_STAR] = ACTIONS(5964), - [anon_sym_SLASH] = ACTIONS(5966), - [anon_sym_PERCENT] = ACTIONS(5964), - [anon_sym_CARET] = ACTIONS(5964), - [anon_sym_PIPE] = ACTIONS(5966), - [anon_sym_AMP] = ACTIONS(5966), - [anon_sym_LT_LT] = ACTIONS(5964), - [anon_sym_GT_GT] = ACTIONS(5966), - [anon_sym_GT_GT_GT] = ACTIONS(5964), - [anon_sym_EQ_EQ] = ACTIONS(5964), - [anon_sym_BANG_EQ] = ACTIONS(5964), - [anon_sym_GT_EQ] = ACTIONS(5964), - [anon_sym_LT_EQ] = ACTIONS(5964), - [anon_sym_DOT] = ACTIONS(5966), - [anon_sym_EQ_GT] = ACTIONS(5964), - [anon_sym_switch] = ACTIONS(5964), - [anon_sym_when] = ACTIONS(5964), - [anon_sym_DOT_DOT] = ACTIONS(5964), - [anon_sym_and] = ACTIONS(5964), - [anon_sym_or] = ACTIONS(5964), - [anon_sym_AMP_AMP] = ACTIONS(5964), - [anon_sym_PIPE_PIPE] = ACTIONS(5964), - [sym_op_coalescing] = ACTIONS(5964), - [anon_sym_into] = ACTIONS(5964), - [anon_sym_on] = ACTIONS(5964), - [anon_sym_equals] = ACTIONS(5964), - [anon_sym_by] = ACTIONS(5964), - [anon_sym_as] = ACTIONS(5964), - [anon_sym_is] = ACTIONS(5964), - [anon_sym_DASH_GT] = ACTIONS(5964), - [anon_sym_with] = ACTIONS(5964), - [aux_sym_raw_string_literal_token1] = ACTIONS(6978), - [aux_sym_preproc_if_token3] = ACTIONS(5964), - [aux_sym_preproc_else_token1] = ACTIONS(5964), - [aux_sym_preproc_elif_token1] = ACTIONS(5964), + [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), @@ -619562,7 +611750,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4733] = { - [sym_initializer_expression] = STATE(4998), + [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), @@ -619572,57 +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), - [anon_sym_SEMI] = ACTIONS(5764), - [anon_sym_LBRACK] = ACTIONS(5766), - [anon_sym_COLON] = ACTIONS(5764), - [anon_sym_COMMA] = ACTIONS(5764), - [anon_sym_RBRACK] = ACTIONS(5764), - [anon_sym_LPAREN] = ACTIONS(5764), - [anon_sym_RPAREN] = ACTIONS(5764), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(5764), - [anon_sym_LT] = ACTIONS(5769), - [anon_sym_GT] = ACTIONS(5769), - [anon_sym_in] = ACTIONS(5764), - [anon_sym_QMARK] = ACTIONS(5769), - [anon_sym_BANG] = ACTIONS(5769), - [anon_sym_PLUS_PLUS] = ACTIONS(5764), - [anon_sym_DASH_DASH] = ACTIONS(5764), - [anon_sym_PLUS] = ACTIONS(5769), - [anon_sym_DASH] = ACTIONS(5769), - [anon_sym_STAR] = ACTIONS(5764), - [anon_sym_SLASH] = ACTIONS(5769), - [anon_sym_PERCENT] = ACTIONS(5764), - [anon_sym_CARET] = ACTIONS(5764), - [anon_sym_PIPE] = ACTIONS(5769), - [anon_sym_AMP] = ACTIONS(5769), - [anon_sym_LT_LT] = ACTIONS(5764), - [anon_sym_GT_GT] = ACTIONS(5769), - [anon_sym_GT_GT_GT] = ACTIONS(5764), - [anon_sym_EQ_EQ] = ACTIONS(5764), - [anon_sym_BANG_EQ] = ACTIONS(5764), - [anon_sym_GT_EQ] = ACTIONS(5764), - [anon_sym_LT_EQ] = ACTIONS(5764), - [anon_sym_DOT] = ACTIONS(5769), - [anon_sym_EQ_GT] = ACTIONS(5764), - [anon_sym_switch] = ACTIONS(5764), - [anon_sym_when] = ACTIONS(5764), - [anon_sym_DOT_DOT] = ACTIONS(5764), - [anon_sym_and] = ACTIONS(5764), - [anon_sym_or] = ACTIONS(5764), - [anon_sym_AMP_AMP] = ACTIONS(5764), - [anon_sym_PIPE_PIPE] = ACTIONS(5764), - [sym_op_coalescing] = ACTIONS(5764), - [anon_sym_on] = ACTIONS(5764), - [anon_sym_equals] = ACTIONS(5764), - [anon_sym_by] = ACTIONS(5764), - [anon_sym_as] = ACTIONS(5764), - [anon_sym_is] = ACTIONS(5764), - [anon_sym_DASH_GT] = ACTIONS(5764), - [anon_sym_with] = ACTIONS(5764), - [aux_sym_preproc_if_token3] = ACTIONS(5764), - [aux_sym_preproc_else_token1] = ACTIONS(5764), - [aux_sym_preproc_elif_token1] = ACTIONS(5764), + [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), @@ -619635,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), @@ -619644,58 +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_SEMI] = ACTIONS(3700), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_in] = ACTIONS(3700), - [anon_sym_QMARK] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_PERCENT] = ACTIONS(3700), - [anon_sym_CARET] = ACTIONS(3700), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_AMP] = ACTIONS(3702), - [anon_sym_LT_LT] = ACTIONS(3700), - [anon_sym_GT_GT] = ACTIONS(3702), - [anon_sym_GT_GT_GT] = ACTIONS(3700), - [anon_sym_EQ_EQ] = ACTIONS(3700), - [anon_sym_BANG_EQ] = ACTIONS(3700), - [anon_sym_GT_EQ] = ACTIONS(3700), - [anon_sym_LT_EQ] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3700), - [anon_sym_when] = ACTIONS(3700), - [anon_sym_DOT_DOT] = ACTIONS(3700), - [anon_sym_and] = ACTIONS(3700), - [anon_sym_or] = ACTIONS(3700), - [anon_sym_AMP_AMP] = ACTIONS(3700), - [anon_sym_PIPE_PIPE] = ACTIONS(3700), - [sym_op_coalescing] = ACTIONS(3700), - [anon_sym_on] = ACTIONS(3700), - [anon_sym_equals] = ACTIONS(3700), - [anon_sym_by] = ACTIONS(3700), - [anon_sym_as] = ACTIONS(3700), - [anon_sym_is] = ACTIONS(3700), - [anon_sym_DASH_GT] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3700), - [aux_sym_preproc_if_token3] = ACTIONS(3700), - [aux_sym_preproc_else_token1] = ACTIONS(3700), - [aux_sym_preproc_elif_token1] = ACTIONS(3700), + [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), @@ -619708,7 +611890,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4735] = { - [sym_initializer_expression] = STATE(5003), + [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), @@ -619718,57 +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), - [anon_sym_SEMI] = ACTIONS(5760), - [anon_sym_LBRACK] = ACTIONS(5760), - [anon_sym_COLON] = ACTIONS(5760), - [anon_sym_COMMA] = ACTIONS(5760), - [anon_sym_RBRACK] = ACTIONS(5760), - [anon_sym_LPAREN] = ACTIONS(5760), - [anon_sym_RPAREN] = ACTIONS(5760), - [anon_sym_LBRACE] = ACTIONS(1527), - [anon_sym_RBRACE] = ACTIONS(5760), - [anon_sym_LT] = ACTIONS(5762), - [anon_sym_GT] = ACTIONS(5762), - [anon_sym_in] = ACTIONS(5760), - [anon_sym_QMARK] = ACTIONS(5762), - [anon_sym_BANG] = ACTIONS(5762), - [anon_sym_PLUS_PLUS] = ACTIONS(5760), - [anon_sym_DASH_DASH] = ACTIONS(5760), - [anon_sym_PLUS] = ACTIONS(5762), - [anon_sym_DASH] = ACTIONS(5762), - [anon_sym_STAR] = ACTIONS(5760), - [anon_sym_SLASH] = ACTIONS(5762), - [anon_sym_PERCENT] = ACTIONS(5760), - [anon_sym_CARET] = ACTIONS(5760), - [anon_sym_PIPE] = ACTIONS(5762), - [anon_sym_AMP] = ACTIONS(5762), - [anon_sym_LT_LT] = ACTIONS(5760), - [anon_sym_GT_GT] = ACTIONS(5762), - [anon_sym_GT_GT_GT] = ACTIONS(5760), - [anon_sym_EQ_EQ] = ACTIONS(5760), - [anon_sym_BANG_EQ] = ACTIONS(5760), - [anon_sym_GT_EQ] = ACTIONS(5760), - [anon_sym_LT_EQ] = ACTIONS(5760), - [anon_sym_DOT] = ACTIONS(5762), - [anon_sym_EQ_GT] = ACTIONS(5760), - [anon_sym_switch] = ACTIONS(5760), - [anon_sym_when] = ACTIONS(5760), - [anon_sym_DOT_DOT] = ACTIONS(5760), - [anon_sym_and] = ACTIONS(5760), - [anon_sym_or] = ACTIONS(5760), - [anon_sym_AMP_AMP] = ACTIONS(5760), - [anon_sym_PIPE_PIPE] = ACTIONS(5760), - [sym_op_coalescing] = ACTIONS(5760), - [anon_sym_on] = ACTIONS(5760), - [anon_sym_equals] = ACTIONS(5760), - [anon_sym_by] = ACTIONS(5760), - [anon_sym_as] = ACTIONS(5760), - [anon_sym_is] = ACTIONS(5760), - [anon_sym_DASH_GT] = ACTIONS(5760), - [anon_sym_with] = ACTIONS(5760), - [aux_sym_preproc_if_token3] = ACTIONS(5760), - [aux_sym_preproc_else_token1] = ACTIONS(5760), - [aux_sym_preproc_elif_token1] = ACTIONS(5760), + [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), @@ -619781,7 +611960,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4736] = { - [sym_type_argument_list] = STATE(4782), + [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), @@ -619791,57 +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(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(6943), - [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(6980), - [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_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), @@ -619854,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), @@ -619863,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(4359), - [anon_sym_LBRACK] = ACTIONS(4359), - [anon_sym_COLON] = ACTIONS(4359), - [anon_sym_COMMA] = ACTIONS(4359), - [anon_sym_RBRACK] = ACTIONS(4359), - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_RPAREN] = ACTIONS(4359), - [anon_sym_LBRACE] = ACTIONS(4359), - [anon_sym_RBRACE] = ACTIONS(4359), - [anon_sym_LT] = ACTIONS(4357), - [anon_sym_GT] = ACTIONS(4357), - [anon_sym_in] = ACTIONS(4359), - [anon_sym_QMARK] = ACTIONS(4357), - [anon_sym_BANG] = ACTIONS(4357), - [anon_sym_PLUS_PLUS] = ACTIONS(4359), - [anon_sym_DASH_DASH] = ACTIONS(4359), - [anon_sym_PLUS] = ACTIONS(4357), - [anon_sym_DASH] = ACTIONS(4357), - [anon_sym_STAR] = ACTIONS(4359), - [anon_sym_SLASH] = ACTIONS(4357), - [anon_sym_PERCENT] = ACTIONS(4359), - [anon_sym_CARET] = ACTIONS(4359), - [anon_sym_PIPE] = ACTIONS(4357), - [anon_sym_AMP] = ACTIONS(4357), - [anon_sym_LT_LT] = ACTIONS(4359), - [anon_sym_GT_GT] = ACTIONS(4357), - [anon_sym_GT_GT_GT] = ACTIONS(4359), - [anon_sym_EQ_EQ] = ACTIONS(4359), - [anon_sym_BANG_EQ] = ACTIONS(4359), - [anon_sym_GT_EQ] = ACTIONS(4359), - [anon_sym_LT_EQ] = ACTIONS(4359), - [anon_sym_DOT] = ACTIONS(4357), - [anon_sym_EQ_GT] = ACTIONS(4359), - [anon_sym_switch] = ACTIONS(4359), - [anon_sym_when] = ACTIONS(4359), - [anon_sym_DOT_DOT] = ACTIONS(4359), - [anon_sym_and] = ACTIONS(4359), - [anon_sym_or] = ACTIONS(4359), - [anon_sym_AMP_AMP] = ACTIONS(4359), - [anon_sym_PIPE_PIPE] = ACTIONS(4359), - [sym_op_coalescing] = ACTIONS(4359), - [anon_sym_on] = ACTIONS(4359), - [anon_sym_equals] = ACTIONS(4359), - [anon_sym_by] = ACTIONS(4359), - [anon_sym_as] = ACTIONS(4359), - [anon_sym_is] = ACTIONS(4359), - [anon_sym_DASH_GT] = ACTIONS(4359), - [anon_sym_with] = ACTIONS(4359), - [aux_sym_preproc_if_token3] = ACTIONS(4359), - [aux_sym_preproc_else_token1] = ACTIONS(4359), - [aux_sym_preproc_elif_token1] = ACTIONS(4359), + [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), @@ -619926,26 +612100,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4738] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7718), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -619955,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(5133), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -619998,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), @@ -620007,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(6269), - [anon_sym_LBRACK] = ACTIONS(6269), - [anon_sym_COLON] = ACTIONS(6269), - [anon_sym_COMMA] = ACTIONS(6269), - [anon_sym_RBRACK] = ACTIONS(6269), - [anon_sym_LPAREN] = ACTIONS(6269), - [anon_sym_RPAREN] = ACTIONS(6269), - [anon_sym_RBRACE] = ACTIONS(6269), - [anon_sym_LT] = ACTIONS(6271), - [anon_sym_GT] = ACTIONS(6271), - [anon_sym_in] = ACTIONS(6271), - [anon_sym_QMARK] = ACTIONS(6271), - [anon_sym_BANG] = ACTIONS(6271), - [anon_sym_PLUS_PLUS] = ACTIONS(6269), - [anon_sym_DASH_DASH] = ACTIONS(6269), - [anon_sym_PLUS] = ACTIONS(6271), - [anon_sym_DASH] = ACTIONS(6271), - [anon_sym_STAR] = ACTIONS(6269), - [anon_sym_SLASH] = ACTIONS(6271), - [anon_sym_PERCENT] = ACTIONS(6269), - [anon_sym_CARET] = ACTIONS(6269), - [anon_sym_PIPE] = ACTIONS(6271), - [anon_sym_AMP] = ACTIONS(6271), - [anon_sym_LT_LT] = ACTIONS(6269), - [anon_sym_GT_GT] = ACTIONS(6271), - [anon_sym_GT_GT_GT] = ACTIONS(6269), - [anon_sym_EQ_EQ] = ACTIONS(6269), - [anon_sym_BANG_EQ] = ACTIONS(6269), - [anon_sym_GT_EQ] = ACTIONS(6269), - [anon_sym_LT_EQ] = ACTIONS(6269), - [anon_sym_DOT] = ACTIONS(6271), - [anon_sym_EQ_GT] = ACTIONS(6269), - [anon_sym_switch] = ACTIONS(6269), - [anon_sym_when] = ACTIONS(6269), - [anon_sym_DOT_DOT] = ACTIONS(6269), - [anon_sym_and] = ACTIONS(6269), - [anon_sym_or] = ACTIONS(6269), - [anon_sym_AMP_AMP] = ACTIONS(6269), - [anon_sym_PIPE_PIPE] = ACTIONS(6269), - [sym_op_coalescing] = ACTIONS(6269), - [anon_sym_into] = ACTIONS(6269), - [anon_sym_on] = ACTIONS(6269), - [anon_sym_equals] = ACTIONS(6269), - [anon_sym_by] = ACTIONS(6269), - [anon_sym_as] = ACTIONS(6269), - [anon_sym_is] = ACTIONS(6269), - [anon_sym_DASH_GT] = ACTIONS(6269), - [anon_sym_with] = ACTIONS(6269), - [aux_sym_preproc_if_token3] = ACTIONS(6269), - [aux_sym_preproc_else_token1] = ACTIONS(6269), - [aux_sym_preproc_elif_token1] = ACTIONS(6269), + [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), @@ -620070,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), @@ -620079,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), - [anon_sym_SEMI] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(6125), - [anon_sym_COLON] = ACTIONS(6125), - [anon_sym_COMMA] = ACTIONS(6125), - [anon_sym_RBRACK] = ACTIONS(6125), - [anon_sym_LPAREN] = ACTIONS(6125), - [anon_sym_RPAREN] = ACTIONS(6125), - [anon_sym_RBRACE] = ACTIONS(6125), - [anon_sym_LT] = ACTIONS(6127), - [anon_sym_GT] = ACTIONS(6127), - [anon_sym_in] = ACTIONS(6127), - [anon_sym_QMARK] = ACTIONS(6127), - [anon_sym_BANG] = ACTIONS(6127), - [anon_sym_PLUS_PLUS] = ACTIONS(6125), - [anon_sym_DASH_DASH] = ACTIONS(6125), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6125), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6125), - [anon_sym_CARET] = ACTIONS(6125), - [anon_sym_PIPE] = ACTIONS(6127), - [anon_sym_AMP] = ACTIONS(6127), - [anon_sym_LT_LT] = ACTIONS(6125), - [anon_sym_GT_GT] = ACTIONS(6127), - [anon_sym_GT_GT_GT] = ACTIONS(6125), - [anon_sym_EQ_EQ] = ACTIONS(6125), - [anon_sym_BANG_EQ] = ACTIONS(6125), - [anon_sym_GT_EQ] = ACTIONS(6125), - [anon_sym_LT_EQ] = ACTIONS(6125), - [anon_sym_DOT] = ACTIONS(6127), - [anon_sym_EQ_GT] = ACTIONS(6125), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_when] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6125), - [anon_sym_and] = ACTIONS(6125), - [anon_sym_or] = ACTIONS(6125), - [anon_sym_AMP_AMP] = ACTIONS(6125), - [anon_sym_PIPE_PIPE] = ACTIONS(6125), - [sym_op_coalescing] = ACTIONS(6125), - [anon_sym_into] = ACTIONS(6125), - [anon_sym_on] = ACTIONS(6125), - [anon_sym_equals] = ACTIONS(6125), - [anon_sym_by] = ACTIONS(6125), - [anon_sym_as] = ACTIONS(6125), - [anon_sym_is] = ACTIONS(6125), - [anon_sym_DASH_GT] = ACTIONS(6125), - [anon_sym_with] = ACTIONS(6125), - [aux_sym_preproc_if_token3] = ACTIONS(6125), - [aux_sym_preproc_else_token1] = ACTIONS(6125), - [aux_sym_preproc_elif_token1] = ACTIONS(6125), + [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), @@ -620142,6 +612310,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4741] = { + [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), @@ -620151,57 +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), - [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_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), @@ -620214,26 +612380,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4742] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7749), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -620243,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(4881), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -620286,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), @@ -620295,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(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_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), @@ -620358,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), @@ -620367,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), - [anon_sym_SEMI] = ACTIONS(6285), - [anon_sym_LBRACK] = ACTIONS(6285), - [anon_sym_COLON] = ACTIONS(6285), - [anon_sym_COMMA] = ACTIONS(6285), - [anon_sym_RBRACK] = ACTIONS(6285), - [anon_sym_LPAREN] = ACTIONS(6285), - [anon_sym_RPAREN] = ACTIONS(6285), - [anon_sym_RBRACE] = ACTIONS(6285), - [anon_sym_LT] = ACTIONS(6287), - [anon_sym_GT] = ACTIONS(6287), - [anon_sym_in] = ACTIONS(6287), - [anon_sym_QMARK] = ACTIONS(6287), - [anon_sym_BANG] = ACTIONS(6287), - [anon_sym_PLUS_PLUS] = ACTIONS(6285), - [anon_sym_DASH_DASH] = ACTIONS(6285), - [anon_sym_PLUS] = ACTIONS(6287), - [anon_sym_DASH] = ACTIONS(6287), - [anon_sym_STAR] = ACTIONS(6285), - [anon_sym_SLASH] = ACTIONS(6287), - [anon_sym_PERCENT] = ACTIONS(6285), - [anon_sym_CARET] = ACTIONS(6285), - [anon_sym_PIPE] = ACTIONS(6287), - [anon_sym_AMP] = ACTIONS(6287), - [anon_sym_LT_LT] = ACTIONS(6285), - [anon_sym_GT_GT] = ACTIONS(6287), - [anon_sym_GT_GT_GT] = ACTIONS(6285), - [anon_sym_EQ_EQ] = ACTIONS(6285), - [anon_sym_BANG_EQ] = ACTIONS(6285), - [anon_sym_GT_EQ] = ACTIONS(6285), - [anon_sym_LT_EQ] = ACTIONS(6285), - [anon_sym_DOT] = ACTIONS(6287), - [anon_sym_EQ_GT] = ACTIONS(6285), - [anon_sym_switch] = ACTIONS(6285), - [anon_sym_when] = ACTIONS(6285), - [anon_sym_DOT_DOT] = ACTIONS(6285), - [anon_sym_and] = ACTIONS(6285), - [anon_sym_or] = ACTIONS(6285), - [anon_sym_AMP_AMP] = ACTIONS(6285), - [anon_sym_PIPE_PIPE] = ACTIONS(6285), - [sym_op_coalescing] = ACTIONS(6285), - [anon_sym_into] = ACTIONS(6285), - [anon_sym_on] = ACTIONS(6285), - [anon_sym_equals] = ACTIONS(6285), - [anon_sym_by] = ACTIONS(6285), - [anon_sym_as] = ACTIONS(6285), - [anon_sym_is] = ACTIONS(6285), - [anon_sym_DASH_GT] = ACTIONS(6285), - [anon_sym_with] = ACTIONS(6285), - [aux_sym_preproc_if_token3] = ACTIONS(6285), - [aux_sym_preproc_else_token1] = ACTIONS(6285), - [aux_sym_preproc_elif_token1] = ACTIONS(6285), + [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), @@ -620430,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), @@ -620439,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(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(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), @@ -620502,6 +612660,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4746] = { + [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), @@ -620511,57 +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), - [anon_sym_SEMI] = ACTIONS(6277), - [anon_sym_LBRACK] = ACTIONS(6277), - [anon_sym_COLON] = ACTIONS(6277), - [anon_sym_COMMA] = ACTIONS(6277), - [anon_sym_RBRACK] = ACTIONS(6277), - [anon_sym_LPAREN] = ACTIONS(6277), - [anon_sym_RPAREN] = ACTIONS(6277), - [anon_sym_RBRACE] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6279), - [anon_sym_GT] = ACTIONS(6279), - [anon_sym_in] = ACTIONS(6279), - [anon_sym_QMARK] = ACTIONS(6279), - [anon_sym_BANG] = ACTIONS(6279), - [anon_sym_PLUS_PLUS] = ACTIONS(6277), - [anon_sym_DASH_DASH] = ACTIONS(6277), - [anon_sym_PLUS] = ACTIONS(6279), - [anon_sym_DASH] = ACTIONS(6279), - [anon_sym_STAR] = ACTIONS(6277), - [anon_sym_SLASH] = ACTIONS(6279), - [anon_sym_PERCENT] = ACTIONS(6277), - [anon_sym_CARET] = ACTIONS(6277), - [anon_sym_PIPE] = ACTIONS(6279), - [anon_sym_AMP] = ACTIONS(6279), - [anon_sym_LT_LT] = ACTIONS(6277), - [anon_sym_GT_GT] = ACTIONS(6279), - [anon_sym_GT_GT_GT] = ACTIONS(6277), - [anon_sym_EQ_EQ] = ACTIONS(6277), - [anon_sym_BANG_EQ] = ACTIONS(6277), - [anon_sym_GT_EQ] = ACTIONS(6277), - [anon_sym_LT_EQ] = ACTIONS(6277), - [anon_sym_DOT] = ACTIONS(6279), - [anon_sym_EQ_GT] = ACTIONS(6277), - [anon_sym_switch] = ACTIONS(6277), - [anon_sym_when] = ACTIONS(6277), - [anon_sym_DOT_DOT] = ACTIONS(6277), - [anon_sym_and] = ACTIONS(6277), - [anon_sym_or] = ACTIONS(6277), - [anon_sym_AMP_AMP] = ACTIONS(6277), - [anon_sym_PIPE_PIPE] = ACTIONS(6277), - [sym_op_coalescing] = ACTIONS(6277), - [anon_sym_into] = ACTIONS(6277), - [anon_sym_on] = ACTIONS(6277), - [anon_sym_equals] = ACTIONS(6277), - [anon_sym_by] = ACTIONS(6277), - [anon_sym_as] = ACTIONS(6277), - [anon_sym_is] = ACTIONS(6277), - [anon_sym_DASH_GT] = ACTIONS(6277), - [anon_sym_with] = ACTIONS(6277), - [aux_sym_preproc_if_token3] = ACTIONS(6277), - [aux_sym_preproc_else_token1] = ACTIONS(6277), - [aux_sym_preproc_elif_token1] = ACTIONS(6277), + [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), @@ -620574,6 +612730,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4747] = { + [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), @@ -620583,57 +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), - [anon_sym_SEMI] = ACTIONS(6265), - [anon_sym_LBRACK] = ACTIONS(6265), - [anon_sym_COLON] = ACTIONS(6265), - [anon_sym_COMMA] = ACTIONS(6265), - [anon_sym_RBRACK] = ACTIONS(6265), - [anon_sym_LPAREN] = ACTIONS(6265), - [anon_sym_RPAREN] = ACTIONS(6265), - [anon_sym_RBRACE] = ACTIONS(6265), - [anon_sym_LT] = ACTIONS(6267), - [anon_sym_GT] = ACTIONS(6267), - [anon_sym_in] = ACTIONS(6267), - [anon_sym_QMARK] = ACTIONS(6267), - [anon_sym_BANG] = ACTIONS(6267), - [anon_sym_PLUS_PLUS] = ACTIONS(6265), - [anon_sym_DASH_DASH] = ACTIONS(6265), - [anon_sym_PLUS] = ACTIONS(6267), - [anon_sym_DASH] = ACTIONS(6267), - [anon_sym_STAR] = ACTIONS(6265), - [anon_sym_SLASH] = ACTIONS(6267), - [anon_sym_PERCENT] = ACTIONS(6265), - [anon_sym_CARET] = ACTIONS(6265), - [anon_sym_PIPE] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6265), - [anon_sym_GT_GT] = ACTIONS(6267), - [anon_sym_GT_GT_GT] = ACTIONS(6265), - [anon_sym_EQ_EQ] = ACTIONS(6265), - [anon_sym_BANG_EQ] = ACTIONS(6265), - [anon_sym_GT_EQ] = ACTIONS(6265), - [anon_sym_LT_EQ] = ACTIONS(6265), - [anon_sym_DOT] = ACTIONS(6267), - [anon_sym_EQ_GT] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6265), - [anon_sym_when] = ACTIONS(6265), - [anon_sym_DOT_DOT] = ACTIONS(6265), - [anon_sym_and] = ACTIONS(6265), - [anon_sym_or] = ACTIONS(6265), - [anon_sym_AMP_AMP] = ACTIONS(6265), - [anon_sym_PIPE_PIPE] = ACTIONS(6265), - [sym_op_coalescing] = ACTIONS(6265), - [anon_sym_into] = ACTIONS(6265), - [anon_sym_on] = ACTIONS(6265), - [anon_sym_equals] = ACTIONS(6265), - [anon_sym_by] = ACTIONS(6265), - [anon_sym_as] = ACTIONS(6265), - [anon_sym_is] = ACTIONS(6265), - [anon_sym_DASH_GT] = ACTIONS(6265), - [anon_sym_with] = ACTIONS(6265), - [aux_sym_preproc_if_token3] = ACTIONS(6265), - [aux_sym_preproc_else_token1] = ACTIONS(6265), - [aux_sym_preproc_elif_token1] = ACTIONS(6265), + [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), @@ -620646,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), @@ -620655,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(6259), - [anon_sym_LBRACK] = ACTIONS(6259), - [anon_sym_COLON] = ACTIONS(6259), - [anon_sym_COMMA] = ACTIONS(6259), - [anon_sym_RBRACK] = ACTIONS(6259), - [anon_sym_LPAREN] = ACTIONS(6259), - [anon_sym_RPAREN] = ACTIONS(6259), - [anon_sym_RBRACE] = ACTIONS(6259), - [anon_sym_LT] = ACTIONS(6261), - [anon_sym_GT] = ACTIONS(6261), - [anon_sym_in] = ACTIONS(6261), - [anon_sym_QMARK] = ACTIONS(6261), - [anon_sym_BANG] = ACTIONS(6261), - [anon_sym_PLUS_PLUS] = ACTIONS(6259), - [anon_sym_DASH_DASH] = ACTIONS(6259), - [anon_sym_PLUS] = ACTIONS(6261), - [anon_sym_DASH] = ACTIONS(6261), - [anon_sym_STAR] = ACTIONS(6259), - [anon_sym_SLASH] = ACTIONS(6261), - [anon_sym_PERCENT] = ACTIONS(6259), - [anon_sym_CARET] = ACTIONS(6259), - [anon_sym_PIPE] = ACTIONS(6261), - [anon_sym_AMP] = ACTIONS(6261), - [anon_sym_LT_LT] = ACTIONS(6259), - [anon_sym_GT_GT] = ACTIONS(6261), - [anon_sym_GT_GT_GT] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6259), - [anon_sym_BANG_EQ] = ACTIONS(6259), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_DOT] = ACTIONS(6261), - [anon_sym_EQ_GT] = ACTIONS(6259), - [anon_sym_switch] = ACTIONS(6259), - [anon_sym_when] = ACTIONS(6259), - [anon_sym_DOT_DOT] = ACTIONS(6259), - [anon_sym_and] = ACTIONS(6259), - [anon_sym_or] = ACTIONS(6259), - [anon_sym_AMP_AMP] = ACTIONS(6259), - [anon_sym_PIPE_PIPE] = ACTIONS(6259), - [sym_op_coalescing] = ACTIONS(6259), - [anon_sym_into] = ACTIONS(6259), - [anon_sym_on] = ACTIONS(6259), - [anon_sym_equals] = ACTIONS(6259), - [anon_sym_by] = ACTIONS(6259), - [anon_sym_as] = ACTIONS(6259), - [anon_sym_is] = ACTIONS(6259), - [anon_sym_DASH_GT] = ACTIONS(6259), - [anon_sym_with] = ACTIONS(6259), - [aux_sym_preproc_if_token3] = ACTIONS(6259), - [aux_sym_preproc_else_token1] = ACTIONS(6259), - [aux_sym_preproc_elif_token1] = ACTIONS(6259), + [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), @@ -620718,6 +612870,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4749] = { + [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), @@ -620727,57 +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), - [anon_sym_SEMI] = ACTIONS(6151), - [anon_sym_LBRACK] = ACTIONS(6151), - [anon_sym_COLON] = ACTIONS(6151), - [anon_sym_COMMA] = ACTIONS(6151), - [anon_sym_RBRACK] = ACTIONS(6151), - [anon_sym_LPAREN] = ACTIONS(6151), - [anon_sym_RPAREN] = ACTIONS(6151), - [anon_sym_RBRACE] = ACTIONS(6151), - [anon_sym_LT] = ACTIONS(6153), - [anon_sym_GT] = ACTIONS(6153), - [anon_sym_in] = ACTIONS(6153), - [anon_sym_QMARK] = ACTIONS(6153), - [anon_sym_BANG] = ACTIONS(6153), - [anon_sym_PLUS_PLUS] = ACTIONS(6151), - [anon_sym_DASH_DASH] = ACTIONS(6151), - [anon_sym_PLUS] = ACTIONS(6153), - [anon_sym_DASH] = ACTIONS(6153), - [anon_sym_STAR] = ACTIONS(6151), - [anon_sym_SLASH] = ACTIONS(6153), - [anon_sym_PERCENT] = ACTIONS(6151), - [anon_sym_CARET] = ACTIONS(6151), - [anon_sym_PIPE] = ACTIONS(6153), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_GT_GT] = ACTIONS(6153), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_EQ_EQ] = ACTIONS(6151), - [anon_sym_BANG_EQ] = ACTIONS(6151), - [anon_sym_GT_EQ] = ACTIONS(6151), - [anon_sym_LT_EQ] = ACTIONS(6151), - [anon_sym_DOT] = ACTIONS(6153), - [anon_sym_EQ_GT] = ACTIONS(6151), - [anon_sym_switch] = ACTIONS(6151), - [anon_sym_when] = ACTIONS(6151), - [anon_sym_DOT_DOT] = ACTIONS(6151), - [anon_sym_and] = ACTIONS(6151), - [anon_sym_or] = ACTIONS(6151), - [anon_sym_AMP_AMP] = ACTIONS(6151), - [anon_sym_PIPE_PIPE] = ACTIONS(6151), - [sym_op_coalescing] = ACTIONS(6151), - [anon_sym_into] = ACTIONS(6151), - [anon_sym_on] = ACTIONS(6151), - [anon_sym_equals] = ACTIONS(6151), - [anon_sym_by] = ACTIONS(6151), - [anon_sym_as] = ACTIONS(6151), - [anon_sym_is] = ACTIONS(6151), - [anon_sym_DASH_GT] = ACTIONS(6151), - [anon_sym_with] = ACTIONS(6151), - [aux_sym_preproc_if_token3] = ACTIONS(6151), - [aux_sym_preproc_else_token1] = ACTIONS(6151), - [aux_sym_preproc_elif_token1] = ACTIONS(6151), + [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), @@ -620790,6 +612940,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4750] = { + [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), @@ -620799,57 +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(6241), - [anon_sym_LBRACK] = ACTIONS(6241), - [anon_sym_COLON] = ACTIONS(6241), - [anon_sym_COMMA] = ACTIONS(6241), - [anon_sym_RBRACK] = ACTIONS(6241), - [anon_sym_LPAREN] = ACTIONS(6241), - [anon_sym_RPAREN] = ACTIONS(6241), - [anon_sym_RBRACE] = ACTIONS(6241), - [anon_sym_LT] = ACTIONS(6243), - [anon_sym_GT] = ACTIONS(6243), - [anon_sym_in] = ACTIONS(6243), - [anon_sym_QMARK] = ACTIONS(6243), - [anon_sym_BANG] = ACTIONS(6243), - [anon_sym_PLUS_PLUS] = ACTIONS(6241), - [anon_sym_DASH_DASH] = ACTIONS(6241), - [anon_sym_PLUS] = ACTIONS(6243), - [anon_sym_DASH] = ACTIONS(6243), - [anon_sym_STAR] = ACTIONS(6241), - [anon_sym_SLASH] = ACTIONS(6243), - [anon_sym_PERCENT] = ACTIONS(6241), - [anon_sym_CARET] = ACTIONS(6241), - [anon_sym_PIPE] = ACTIONS(6243), - [anon_sym_AMP] = ACTIONS(6243), - [anon_sym_LT_LT] = ACTIONS(6241), - [anon_sym_GT_GT] = ACTIONS(6243), - [anon_sym_GT_GT_GT] = ACTIONS(6241), - [anon_sym_EQ_EQ] = ACTIONS(6241), - [anon_sym_BANG_EQ] = ACTIONS(6241), - [anon_sym_GT_EQ] = ACTIONS(6241), - [anon_sym_LT_EQ] = ACTIONS(6241), - [anon_sym_DOT] = ACTIONS(6243), - [anon_sym_EQ_GT] = ACTIONS(6241), - [anon_sym_switch] = ACTIONS(6241), - [anon_sym_when] = ACTIONS(6241), - [anon_sym_DOT_DOT] = ACTIONS(6241), - [anon_sym_and] = ACTIONS(6241), - [anon_sym_or] = ACTIONS(6241), - [anon_sym_AMP_AMP] = ACTIONS(6241), - [anon_sym_PIPE_PIPE] = ACTIONS(6241), - [sym_op_coalescing] = ACTIONS(6241), - [anon_sym_into] = ACTIONS(6241), - [anon_sym_on] = ACTIONS(6241), - [anon_sym_equals] = ACTIONS(6241), - [anon_sym_by] = ACTIONS(6241), - [anon_sym_as] = ACTIONS(6241), - [anon_sym_is] = ACTIONS(6241), - [anon_sym_DASH_GT] = ACTIONS(6241), - [anon_sym_with] = ACTIONS(6241), - [aux_sym_preproc_if_token3] = ACTIONS(6241), - [aux_sym_preproc_else_token1] = ACTIONS(6241), - [aux_sym_preproc_elif_token1] = ACTIONS(6241), + [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), @@ -620862,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), @@ -620871,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(3964), - [anon_sym_LBRACK] = ACTIONS(3964), - [anon_sym_COLON] = ACTIONS(3964), - [anon_sym_COMMA] = ACTIONS(3964), - [anon_sym_RBRACK] = ACTIONS(3964), - [anon_sym_LPAREN] = ACTIONS(3964), - [anon_sym_RPAREN] = ACTIONS(3964), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_RBRACE] = ACTIONS(3964), - [anon_sym_LT] = ACTIONS(3962), - [anon_sym_GT] = ACTIONS(3962), - [anon_sym_in] = ACTIONS(3964), - [anon_sym_QMARK] = ACTIONS(3962), - [anon_sym_BANG] = ACTIONS(3962), - [anon_sym_PLUS_PLUS] = ACTIONS(3964), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_PLUS] = ACTIONS(3962), - [anon_sym_DASH] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3964), - [anon_sym_SLASH] = ACTIONS(3962), - [anon_sym_PERCENT] = ACTIONS(3964), - [anon_sym_CARET] = ACTIONS(3964), - [anon_sym_PIPE] = ACTIONS(3962), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_LT_LT] = ACTIONS(3964), - [anon_sym_GT_GT] = ACTIONS(3962), - [anon_sym_GT_GT_GT] = ACTIONS(3964), - [anon_sym_EQ_EQ] = ACTIONS(3964), - [anon_sym_BANG_EQ] = ACTIONS(3964), - [anon_sym_GT_EQ] = ACTIONS(3964), - [anon_sym_LT_EQ] = ACTIONS(3964), - [anon_sym_DOT] = ACTIONS(3962), - [anon_sym_EQ_GT] = ACTIONS(3964), - [anon_sym_switch] = ACTIONS(3964), - [anon_sym_when] = ACTIONS(3964), - [anon_sym_DOT_DOT] = ACTIONS(3964), - [anon_sym_and] = ACTIONS(3964), - [anon_sym_or] = ACTIONS(3964), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_PIPE_PIPE] = ACTIONS(3964), - [sym_op_coalescing] = ACTIONS(3964), - [anon_sym_on] = ACTIONS(3964), - [anon_sym_equals] = ACTIONS(3964), - [anon_sym_by] = ACTIONS(3964), - [anon_sym_as] = ACTIONS(3964), - [anon_sym_is] = ACTIONS(3964), - [anon_sym_DASH_GT] = ACTIONS(3964), - [anon_sym_with] = ACTIONS(3964), - [aux_sym_preproc_if_token3] = ACTIONS(3964), - [aux_sym_preproc_else_token1] = ACTIONS(3964), - [aux_sym_preproc_elif_token1] = ACTIONS(3964), + [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), @@ -620934,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), @@ -620943,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_EQ] = ACTIONS(6990), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(5752), - [anon_sym_RBRACE] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(6992), - [anon_sym_DASH_EQ] = ACTIONS(6992), - [anon_sym_STAR_EQ] = ACTIONS(6992), - [anon_sym_SLASH_EQ] = ACTIONS(6992), - [anon_sym_PERCENT_EQ] = ACTIONS(6992), - [anon_sym_AMP_EQ] = ACTIONS(6992), - [anon_sym_CARET_EQ] = ACTIONS(6992), - [anon_sym_PIPE_EQ] = ACTIONS(6992), - [anon_sym_LT_LT_EQ] = ACTIONS(6992), - [anon_sym_GT_GT_EQ] = ACTIONS(6992), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(6992), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(6992), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -621006,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), @@ -621015,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(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_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), @@ -621078,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), @@ -621087,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_SEMI] = ACTIONS(6233), - [anon_sym_LBRACK] = ACTIONS(6233), - [anon_sym_COLON] = ACTIONS(6233), - [anon_sym_COMMA] = ACTIONS(6233), - [anon_sym_RBRACK] = ACTIONS(6233), - [anon_sym_LPAREN] = ACTIONS(6233), - [anon_sym_RPAREN] = ACTIONS(6233), - [anon_sym_RBRACE] = ACTIONS(6233), - [anon_sym_LT] = ACTIONS(6235), - [anon_sym_GT] = ACTIONS(6235), - [anon_sym_in] = ACTIONS(6235), - [anon_sym_QMARK] = ACTIONS(6235), - [anon_sym_BANG] = ACTIONS(6235), - [anon_sym_PLUS_PLUS] = ACTIONS(6233), - [anon_sym_DASH_DASH] = ACTIONS(6233), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6233), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6233), - [anon_sym_CARET] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_AMP] = ACTIONS(6235), - [anon_sym_LT_LT] = ACTIONS(6233), - [anon_sym_GT_GT] = ACTIONS(6235), - [anon_sym_GT_GT_GT] = ACTIONS(6233), - [anon_sym_EQ_EQ] = ACTIONS(6233), - [anon_sym_BANG_EQ] = ACTIONS(6233), - [anon_sym_GT_EQ] = ACTIONS(6233), - [anon_sym_LT_EQ] = ACTIONS(6233), - [anon_sym_DOT] = ACTIONS(6235), - [anon_sym_EQ_GT] = ACTIONS(6233), - [anon_sym_switch] = ACTIONS(6233), - [anon_sym_when] = ACTIONS(6233), - [anon_sym_DOT_DOT] = ACTIONS(6233), - [anon_sym_and] = ACTIONS(6233), - [anon_sym_or] = ACTIONS(6233), - [anon_sym_AMP_AMP] = ACTIONS(6233), - [anon_sym_PIPE_PIPE] = ACTIONS(6233), - [sym_op_coalescing] = ACTIONS(6233), - [anon_sym_into] = ACTIONS(6233), - [anon_sym_on] = ACTIONS(6233), - [anon_sym_equals] = ACTIONS(6233), - [anon_sym_by] = ACTIONS(6233), - [anon_sym_as] = ACTIONS(6233), - [anon_sym_is] = ACTIONS(6233), - [anon_sym_DASH_GT] = ACTIONS(6233), - [anon_sym_with] = ACTIONS(6233), - [aux_sym_preproc_if_token3] = ACTIONS(6233), - [aux_sym_preproc_else_token1] = ACTIONS(6233), - [aux_sym_preproc_elif_token1] = ACTIONS(6233), + [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), @@ -621150,6 +613290,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4755] = { + [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), @@ -621159,57 +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), - [anon_sym_SEMI] = ACTIONS(6229), - [anon_sym_LBRACK] = ACTIONS(6229), - [anon_sym_COLON] = ACTIONS(6229), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_RBRACK] = ACTIONS(6229), - [anon_sym_LPAREN] = ACTIONS(6229), - [anon_sym_RPAREN] = ACTIONS(6229), - [anon_sym_RBRACE] = ACTIONS(6229), - [anon_sym_LT] = ACTIONS(6231), - [anon_sym_GT] = ACTIONS(6231), - [anon_sym_in] = ACTIONS(6231), - [anon_sym_QMARK] = ACTIONS(6231), - [anon_sym_BANG] = ACTIONS(6231), - [anon_sym_PLUS_PLUS] = ACTIONS(6229), - [anon_sym_DASH_DASH] = ACTIONS(6229), - [anon_sym_PLUS] = ACTIONS(6231), - [anon_sym_DASH] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(6229), - [anon_sym_SLASH] = ACTIONS(6231), - [anon_sym_PERCENT] = ACTIONS(6229), - [anon_sym_CARET] = ACTIONS(6229), - [anon_sym_PIPE] = ACTIONS(6231), - [anon_sym_AMP] = ACTIONS(6231), - [anon_sym_LT_LT] = ACTIONS(6229), - [anon_sym_GT_GT] = ACTIONS(6231), - [anon_sym_GT_GT_GT] = ACTIONS(6229), - [anon_sym_EQ_EQ] = ACTIONS(6229), - [anon_sym_BANG_EQ] = ACTIONS(6229), - [anon_sym_GT_EQ] = ACTIONS(6229), - [anon_sym_LT_EQ] = ACTIONS(6229), - [anon_sym_DOT] = ACTIONS(6231), - [anon_sym_EQ_GT] = ACTIONS(6229), - [anon_sym_switch] = ACTIONS(6229), - [anon_sym_when] = ACTIONS(6229), - [anon_sym_DOT_DOT] = ACTIONS(6229), - [anon_sym_and] = ACTIONS(6229), - [anon_sym_or] = ACTIONS(6229), - [anon_sym_AMP_AMP] = ACTIONS(6229), - [anon_sym_PIPE_PIPE] = ACTIONS(6229), - [sym_op_coalescing] = ACTIONS(6229), - [anon_sym_into] = ACTIONS(6229), - [anon_sym_on] = ACTIONS(6229), - [anon_sym_equals] = ACTIONS(6229), - [anon_sym_by] = ACTIONS(6229), - [anon_sym_as] = ACTIONS(6229), - [anon_sym_is] = ACTIONS(6229), - [anon_sym_DASH_GT] = ACTIONS(6229), - [anon_sym_with] = ACTIONS(6229), - [aux_sym_preproc_if_token3] = ACTIONS(6229), - [aux_sym_preproc_else_token1] = ACTIONS(6229), - [aux_sym_preproc_elif_token1] = ACTIONS(6229), + [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), @@ -621222,24 +613360,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4756] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6402), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -621249,39 +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), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(6061), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5446), - [anon_sym_delegate] = ACTIONS(3709), - [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(5472), - [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), + [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), @@ -621294,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), @@ -621303,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), - [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), - [anon_sym_DQUOTE] = 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_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), @@ -621366,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), @@ -621375,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(6225), - [anon_sym_LBRACK] = ACTIONS(6225), - [anon_sym_COLON] = ACTIONS(6225), - [anon_sym_COMMA] = ACTIONS(6225), - [anon_sym_RBRACK] = ACTIONS(6225), - [anon_sym_LPAREN] = ACTIONS(6225), - [anon_sym_RPAREN] = ACTIONS(6225), - [anon_sym_RBRACE] = ACTIONS(6225), - [anon_sym_LT] = ACTIONS(6227), - [anon_sym_GT] = ACTIONS(6227), - [anon_sym_in] = ACTIONS(6227), - [anon_sym_QMARK] = ACTIONS(6227), - [anon_sym_BANG] = ACTIONS(6227), - [anon_sym_PLUS_PLUS] = ACTIONS(6225), - [anon_sym_DASH_DASH] = ACTIONS(6225), - [anon_sym_PLUS] = ACTIONS(6227), - [anon_sym_DASH] = ACTIONS(6227), - [anon_sym_STAR] = ACTIONS(6225), - [anon_sym_SLASH] = ACTIONS(6227), - [anon_sym_PERCENT] = ACTIONS(6225), - [anon_sym_CARET] = ACTIONS(6225), - [anon_sym_PIPE] = ACTIONS(6227), - [anon_sym_AMP] = ACTIONS(6227), - [anon_sym_LT_LT] = ACTIONS(6225), - [anon_sym_GT_GT] = ACTIONS(6227), - [anon_sym_GT_GT_GT] = ACTIONS(6225), - [anon_sym_EQ_EQ] = ACTIONS(6225), - [anon_sym_BANG_EQ] = ACTIONS(6225), - [anon_sym_GT_EQ] = ACTIONS(6225), - [anon_sym_LT_EQ] = ACTIONS(6225), - [anon_sym_DOT] = ACTIONS(6227), - [anon_sym_EQ_GT] = ACTIONS(6225), - [anon_sym_switch] = ACTIONS(6225), - [anon_sym_when] = ACTIONS(6225), - [anon_sym_DOT_DOT] = ACTIONS(6225), - [anon_sym_and] = ACTIONS(6225), - [anon_sym_or] = ACTIONS(6225), - [anon_sym_AMP_AMP] = ACTIONS(6225), - [anon_sym_PIPE_PIPE] = ACTIONS(6225), - [sym_op_coalescing] = ACTIONS(6225), - [anon_sym_into] = ACTIONS(6225), - [anon_sym_on] = ACTIONS(6225), - [anon_sym_equals] = ACTIONS(6225), - [anon_sym_by] = ACTIONS(6225), - [anon_sym_as] = ACTIONS(6225), - [anon_sym_is] = ACTIONS(6225), - [anon_sym_DASH_GT] = ACTIONS(6225), - [anon_sym_with] = ACTIONS(6225), - [aux_sym_preproc_if_token3] = ACTIONS(6225), - [aux_sym_preproc_else_token1] = ACTIONS(6225), - [aux_sym_preproc_elif_token1] = ACTIONS(6225), + [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), @@ -621438,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), @@ -621447,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), - [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(6994), - [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_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), @@ -621510,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), @@ -621519,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(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_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), @@ -621582,6 +613710,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4761] = { + [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), @@ -621591,57 +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), - [anon_sym_SEMI] = ACTIONS(6221), - [anon_sym_LBRACK] = ACTIONS(6221), - [anon_sym_COLON] = ACTIONS(6221), - [anon_sym_COMMA] = ACTIONS(6221), - [anon_sym_RBRACK] = ACTIONS(6221), - [anon_sym_LPAREN] = ACTIONS(6221), - [anon_sym_RPAREN] = ACTIONS(6221), - [anon_sym_RBRACE] = ACTIONS(6221), - [anon_sym_LT] = ACTIONS(6223), - [anon_sym_GT] = ACTIONS(6223), - [anon_sym_in] = ACTIONS(6223), - [anon_sym_QMARK] = ACTIONS(6223), - [anon_sym_BANG] = ACTIONS(6223), - [anon_sym_PLUS_PLUS] = ACTIONS(6221), - [anon_sym_DASH_DASH] = ACTIONS(6221), - [anon_sym_PLUS] = ACTIONS(6223), - [anon_sym_DASH] = ACTIONS(6223), - [anon_sym_STAR] = ACTIONS(6221), - [anon_sym_SLASH] = ACTIONS(6223), - [anon_sym_PERCENT] = ACTIONS(6221), - [anon_sym_CARET] = ACTIONS(6221), - [anon_sym_PIPE] = ACTIONS(6223), - [anon_sym_AMP] = ACTIONS(6223), - [anon_sym_LT_LT] = ACTIONS(6221), - [anon_sym_GT_GT] = ACTIONS(6223), - [anon_sym_GT_GT_GT] = ACTIONS(6221), - [anon_sym_EQ_EQ] = ACTIONS(6221), - [anon_sym_BANG_EQ] = ACTIONS(6221), - [anon_sym_GT_EQ] = ACTIONS(6221), - [anon_sym_LT_EQ] = ACTIONS(6221), - [anon_sym_DOT] = ACTIONS(6223), - [anon_sym_EQ_GT] = ACTIONS(6221), - [anon_sym_switch] = ACTIONS(6221), - [anon_sym_when] = ACTIONS(6221), - [anon_sym_DOT_DOT] = ACTIONS(6221), - [anon_sym_and] = ACTIONS(6221), - [anon_sym_or] = ACTIONS(6221), - [anon_sym_AMP_AMP] = ACTIONS(6221), - [anon_sym_PIPE_PIPE] = ACTIONS(6221), - [sym_op_coalescing] = ACTIONS(6221), - [anon_sym_into] = ACTIONS(6221), - [anon_sym_on] = ACTIONS(6221), - [anon_sym_equals] = ACTIONS(6221), - [anon_sym_by] = ACTIONS(6221), - [anon_sym_as] = ACTIONS(6221), - [anon_sym_is] = ACTIONS(6221), - [anon_sym_DASH_GT] = ACTIONS(6221), - [anon_sym_with] = ACTIONS(6221), - [aux_sym_preproc_if_token3] = ACTIONS(6221), - [aux_sym_preproc_else_token1] = ACTIONS(6221), - [aux_sym_preproc_elif_token1] = ACTIONS(6221), + [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), @@ -621654,6 +613780,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4762] = { + [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), @@ -621663,57 +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), - [anon_sym_SEMI] = ACTIONS(6147), - [anon_sym_LBRACK] = ACTIONS(6147), - [anon_sym_COLON] = ACTIONS(6147), - [anon_sym_COMMA] = ACTIONS(6147), - [anon_sym_RBRACK] = ACTIONS(6147), - [anon_sym_LPAREN] = ACTIONS(6147), - [anon_sym_RPAREN] = ACTIONS(6147), - [anon_sym_RBRACE] = ACTIONS(6147), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_in] = ACTIONS(6149), - [anon_sym_QMARK] = ACTIONS(6149), - [anon_sym_BANG] = ACTIONS(6149), - [anon_sym_PLUS_PLUS] = ACTIONS(6147), - [anon_sym_DASH_DASH] = ACTIONS(6147), - [anon_sym_PLUS] = ACTIONS(6149), - [anon_sym_DASH] = ACTIONS(6149), - [anon_sym_STAR] = ACTIONS(6147), - [anon_sym_SLASH] = ACTIONS(6149), - [anon_sym_PERCENT] = ACTIONS(6147), - [anon_sym_CARET] = ACTIONS(6147), - [anon_sym_PIPE] = ACTIONS(6149), - [anon_sym_AMP] = ACTIONS(6149), - [anon_sym_LT_LT] = ACTIONS(6147), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6147), - [anon_sym_EQ_EQ] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6147), - [anon_sym_LT_EQ] = ACTIONS(6147), - [anon_sym_DOT] = ACTIONS(6149), - [anon_sym_EQ_GT] = ACTIONS(6147), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_when] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6147), - [anon_sym_and] = ACTIONS(6147), - [anon_sym_or] = ACTIONS(6147), - [anon_sym_AMP_AMP] = ACTIONS(6147), - [anon_sym_PIPE_PIPE] = ACTIONS(6147), - [sym_op_coalescing] = ACTIONS(6147), - [anon_sym_into] = ACTIONS(6147), - [anon_sym_on] = ACTIONS(6147), - [anon_sym_equals] = ACTIONS(6147), - [anon_sym_by] = ACTIONS(6147), - [anon_sym_as] = ACTIONS(6147), - [anon_sym_is] = ACTIONS(6147), - [anon_sym_DASH_GT] = ACTIONS(6147), - [anon_sym_with] = ACTIONS(6147), - [aux_sym_preproc_if_token3] = ACTIONS(6147), - [aux_sym_preproc_else_token1] = ACTIONS(6147), - [aux_sym_preproc_elif_token1] = ACTIONS(6147), + [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), @@ -621726,6 +613850,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4763] = { + [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), @@ -621735,57 +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), - [anon_sym_SEMI] = ACTIONS(4163), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_COLON] = ACTIONS(4163), - [anon_sym_COMMA] = ACTIONS(4163), - [anon_sym_RBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4163), - [anon_sym_RPAREN] = ACTIONS(4163), - [anon_sym_RBRACE] = ACTIONS(4163), - [anon_sym_LT] = ACTIONS(6996), - [anon_sym_GT] = ACTIONS(6996), - [anon_sym_in] = ACTIONS(6996), - [anon_sym_QMARK] = ACTIONS(6996), - [anon_sym_BANG] = ACTIONS(6996), - [anon_sym_PLUS_PLUS] = ACTIONS(4163), - [anon_sym_DASH_DASH] = ACTIONS(4163), - [anon_sym_PLUS] = ACTIONS(6996), - [anon_sym_DASH] = ACTIONS(6996), - [anon_sym_STAR] = ACTIONS(4163), - [anon_sym_SLASH] = ACTIONS(6996), - [anon_sym_PERCENT] = ACTIONS(4163), - [anon_sym_CARET] = ACTIONS(4163), - [anon_sym_PIPE] = ACTIONS(6996), - [anon_sym_AMP] = ACTIONS(6996), - [anon_sym_LT_LT] = ACTIONS(4163), - [anon_sym_GT_GT] = ACTIONS(6996), - [anon_sym_GT_GT_GT] = ACTIONS(4163), - [anon_sym_EQ_EQ] = ACTIONS(4163), - [anon_sym_BANG_EQ] = ACTIONS(4163), - [anon_sym_GT_EQ] = ACTIONS(4163), - [anon_sym_LT_EQ] = ACTIONS(4163), - [anon_sym_DOT] = ACTIONS(6996), - [anon_sym_EQ_GT] = ACTIONS(3958), - [anon_sym_switch] = ACTIONS(4163), - [anon_sym_when] = ACTIONS(4163), - [anon_sym_DOT_DOT] = ACTIONS(4163), - [anon_sym_and] = ACTIONS(4163), - [anon_sym_or] = ACTIONS(4163), - [anon_sym_AMP_AMP] = ACTIONS(4163), - [anon_sym_PIPE_PIPE] = ACTIONS(4163), - [sym_op_coalescing] = ACTIONS(4163), - [anon_sym_into] = ACTIONS(4163), - [anon_sym_on] = ACTIONS(4163), - [anon_sym_equals] = ACTIONS(4163), - [anon_sym_by] = ACTIONS(4163), - [anon_sym_as] = ACTIONS(4163), - [anon_sym_is] = ACTIONS(4163), - [anon_sym_DASH_GT] = ACTIONS(4163), - [anon_sym_with] = ACTIONS(4163), - [aux_sym_preproc_if_token3] = ACTIONS(4163), - [aux_sym_preproc_else_token1] = ACTIONS(4163), - [aux_sym_preproc_elif_token1] = ACTIONS(4163), + [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), @@ -621798,6 +613920,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4764] = { + [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), @@ -621807,57 +613947,37 @@ 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), - [anon_sym_SEMI] = ACTIONS(6213), - [anon_sym_LBRACK] = ACTIONS(6213), - [anon_sym_COLON] = ACTIONS(6213), - [anon_sym_COMMA] = ACTIONS(6213), - [anon_sym_RBRACK] = ACTIONS(6213), - [anon_sym_LPAREN] = ACTIONS(6213), - [anon_sym_RPAREN] = ACTIONS(6213), - [anon_sym_RBRACE] = ACTIONS(6213), - [anon_sym_LT] = ACTIONS(6215), - [anon_sym_GT] = ACTIONS(6215), - [anon_sym_in] = ACTIONS(6215), - [anon_sym_QMARK] = ACTIONS(6215), - [anon_sym_BANG] = ACTIONS(6215), - [anon_sym_PLUS_PLUS] = ACTIONS(6213), - [anon_sym_DASH_DASH] = ACTIONS(6213), - [anon_sym_PLUS] = ACTIONS(6215), - [anon_sym_DASH] = ACTIONS(6215), - [anon_sym_STAR] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6215), - [anon_sym_PERCENT] = ACTIONS(6213), - [anon_sym_CARET] = ACTIONS(6213), - [anon_sym_PIPE] = ACTIONS(6215), - [anon_sym_AMP] = ACTIONS(6215), - [anon_sym_LT_LT] = ACTIONS(6213), - [anon_sym_GT_GT] = ACTIONS(6215), - [anon_sym_GT_GT_GT] = ACTIONS(6213), - [anon_sym_EQ_EQ] = ACTIONS(6213), - [anon_sym_BANG_EQ] = ACTIONS(6213), - [anon_sym_GT_EQ] = ACTIONS(6213), - [anon_sym_LT_EQ] = ACTIONS(6213), - [anon_sym_DOT] = ACTIONS(6215), - [anon_sym_EQ_GT] = ACTIONS(6213), - [anon_sym_switch] = ACTIONS(6213), - [anon_sym_when] = ACTIONS(6213), - [anon_sym_DOT_DOT] = ACTIONS(6213), - [anon_sym_and] = ACTIONS(6213), - [anon_sym_or] = ACTIONS(6213), - [anon_sym_AMP_AMP] = ACTIONS(6213), - [anon_sym_PIPE_PIPE] = ACTIONS(6213), - [sym_op_coalescing] = ACTIONS(6213), - [anon_sym_into] = ACTIONS(6213), - [anon_sym_on] = ACTIONS(6213), - [anon_sym_equals] = ACTIONS(6213), - [anon_sym_by] = ACTIONS(6213), - [anon_sym_as] = ACTIONS(6213), - [anon_sym_is] = ACTIONS(6213), - [anon_sym_DASH_GT] = ACTIONS(6213), - [anon_sym_with] = ACTIONS(6213), - [aux_sym_preproc_if_token3] = ACTIONS(6213), - [aux_sym_preproc_else_token1] = ACTIONS(6213), - [aux_sym_preproc_elif_token1] = ACTIONS(6213), + [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(5680), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_file] = ACTIONS(3211), + [anon_sym_GT] = ACTIONS(7344), + [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), @@ -621870,6 +613990,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4765] = { + [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), @@ -621879,57 +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), - [anon_sym_EQ] = ACTIONS(6998), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_EQ_GT] = ACTIONS(5752), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_when] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7000), - [anon_sym_DASH_EQ] = ACTIONS(7000), - [anon_sym_STAR_EQ] = ACTIONS(7000), - [anon_sym_SLASH_EQ] = ACTIONS(7000), - [anon_sym_PERCENT_EQ] = ACTIONS(7000), - [anon_sym_AMP_EQ] = ACTIONS(7000), - [anon_sym_CARET_EQ] = ACTIONS(7000), - [anon_sym_PIPE_EQ] = ACTIONS(7000), - [anon_sym_LT_LT_EQ] = ACTIONS(7000), - [anon_sym_GT_GT_EQ] = ACTIONS(7000), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7000), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7000), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -621942,26 +614060,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4766] = { - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6214), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym__lambda_parameters] = STATE(7940), - [sym_identifier] = STATE(6058), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -621971,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), - [aux_sym__lambda_expression_init_repeat1] = STATE(6141), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(4099), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(7002), - [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), + [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), @@ -622014,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), @@ -622023,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(6207), - [anon_sym_LBRACK] = ACTIONS(6207), - [anon_sym_COLON] = ACTIONS(6207), - [anon_sym_COMMA] = ACTIONS(6207), - [anon_sym_RBRACK] = ACTIONS(6207), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_RPAREN] = ACTIONS(6207), - [anon_sym_RBRACE] = ACTIONS(6207), - [anon_sym_LT] = ACTIONS(6209), - [anon_sym_GT] = ACTIONS(6209), - [anon_sym_in] = ACTIONS(6209), - [anon_sym_QMARK] = ACTIONS(6209), - [anon_sym_BANG] = ACTIONS(6209), - [anon_sym_PLUS_PLUS] = ACTIONS(6207), - [anon_sym_DASH_DASH] = ACTIONS(6207), - [anon_sym_PLUS] = ACTIONS(6209), - [anon_sym_DASH] = ACTIONS(6209), - [anon_sym_STAR] = ACTIONS(6207), - [anon_sym_SLASH] = ACTIONS(6209), - [anon_sym_PERCENT] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6207), - [anon_sym_PIPE] = ACTIONS(6209), - [anon_sym_AMP] = ACTIONS(6209), - [anon_sym_LT_LT] = ACTIONS(6207), - [anon_sym_GT_GT] = ACTIONS(6209), - [anon_sym_GT_GT_GT] = ACTIONS(6207), - [anon_sym_EQ_EQ] = ACTIONS(6207), - [anon_sym_BANG_EQ] = ACTIONS(6207), - [anon_sym_GT_EQ] = ACTIONS(6207), - [anon_sym_LT_EQ] = ACTIONS(6207), - [anon_sym_DOT] = ACTIONS(6209), - [anon_sym_EQ_GT] = ACTIONS(6207), - [anon_sym_switch] = ACTIONS(6207), - [anon_sym_when] = ACTIONS(6207), - [anon_sym_DOT_DOT] = ACTIONS(6207), - [anon_sym_and] = ACTIONS(6207), - [anon_sym_or] = ACTIONS(6207), - [anon_sym_AMP_AMP] = ACTIONS(6207), - [anon_sym_PIPE_PIPE] = ACTIONS(6207), - [sym_op_coalescing] = ACTIONS(6207), - [anon_sym_into] = ACTIONS(6207), - [anon_sym_on] = ACTIONS(6207), - [anon_sym_equals] = ACTIONS(6207), - [anon_sym_by] = ACTIONS(6207), - [anon_sym_as] = ACTIONS(6207), - [anon_sym_is] = ACTIONS(6207), - [anon_sym_DASH_GT] = ACTIONS(6207), - [anon_sym_with] = ACTIONS(6207), - [aux_sym_preproc_if_token3] = ACTIONS(6207), - [aux_sym_preproc_else_token1] = ACTIONS(6207), - [aux_sym_preproc_elif_token1] = ACTIONS(6207), + [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), @@ -622086,6 +614200,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4768] = { + [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), @@ -622095,57 +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), - [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), + [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), @@ -622158,26 +614270,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4769] = { - [sym_type_parameter_constraint] = STATE(6723), - [sym_constructor_constraint] = STATE(6894), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6886), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -622187,37 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(7004), - [anon_sym_ref] = ACTIONS(7006), - [anon_sym_struct] = ACTIONS(7008), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(7010), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(7012), - [anon_sym_unmanaged] = ACTIONS(7012), - [anon_sym_scoped] = ACTIONS(7014), - [anon_sym_var] = ACTIONS(5500), - [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), + [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), @@ -622230,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), @@ -622239,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(6203), - [anon_sym_LBRACK] = ACTIONS(6203), - [anon_sym_COLON] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_RBRACK] = ACTIONS(6203), - [anon_sym_LPAREN] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6203), - [anon_sym_RBRACE] = ACTIONS(6203), - [anon_sym_LT] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6205), - [anon_sym_in] = ACTIONS(6205), - [anon_sym_QMARK] = ACTIONS(6205), - [anon_sym_BANG] = ACTIONS(6205), - [anon_sym_PLUS_PLUS] = ACTIONS(6203), - [anon_sym_DASH_DASH] = ACTIONS(6203), - [anon_sym_PLUS] = ACTIONS(6205), - [anon_sym_DASH] = ACTIONS(6205), - [anon_sym_STAR] = ACTIONS(6203), - [anon_sym_SLASH] = ACTIONS(6205), - [anon_sym_PERCENT] = ACTIONS(6203), - [anon_sym_CARET] = ACTIONS(6203), - [anon_sym_PIPE] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6203), - [anon_sym_GT_GT] = ACTIONS(6205), - [anon_sym_GT_GT_GT] = ACTIONS(6203), - [anon_sym_EQ_EQ] = ACTIONS(6203), - [anon_sym_BANG_EQ] = ACTIONS(6203), - [anon_sym_GT_EQ] = ACTIONS(6203), - [anon_sym_LT_EQ] = ACTIONS(6203), - [anon_sym_DOT] = ACTIONS(6205), - [anon_sym_EQ_GT] = ACTIONS(6203), - [anon_sym_switch] = ACTIONS(6203), - [anon_sym_when] = ACTIONS(6203), - [anon_sym_DOT_DOT] = ACTIONS(6203), - [anon_sym_and] = ACTIONS(6203), - [anon_sym_or] = ACTIONS(6203), - [anon_sym_AMP_AMP] = ACTIONS(6203), - [anon_sym_PIPE_PIPE] = ACTIONS(6203), - [sym_op_coalescing] = ACTIONS(6203), - [anon_sym_into] = ACTIONS(6203), - [anon_sym_on] = ACTIONS(6203), - [anon_sym_equals] = ACTIONS(6203), - [anon_sym_by] = ACTIONS(6203), - [anon_sym_as] = ACTIONS(6203), - [anon_sym_is] = ACTIONS(6203), - [anon_sym_DASH_GT] = ACTIONS(6203), - [anon_sym_with] = ACTIONS(6203), - [aux_sym_preproc_if_token3] = ACTIONS(6203), - [aux_sym_preproc_else_token1] = ACTIONS(6203), - [aux_sym_preproc_elif_token1] = ACTIONS(6203), + [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), @@ -622302,15 +614410,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4771] = { - [sym__name] = STATE(5810), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_ref_type] = STATE(2386), - [sym__scoped_base_type] = STATE(2366), - [sym_identifier] = STATE(5575), - [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(4771), [sym_preproc_endregion] = STATE(4771), [sym_preproc_line] = STATE(4771), @@ -622320,48 +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), - [sym__identifier_token] = ACTIONS(3865), - [anon_sym_alias] = ACTIONS(3869), - [anon_sym_global] = ACTIONS(3869), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3873), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(2919), - [anon_sym_delegate] = ACTIONS(2919), - [anon_sym_readonly] = ACTIONS(2919), - [anon_sym_file] = ACTIONS(3869), - [anon_sym_LT] = ACTIONS(3700), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_out] = ACTIONS(2919), - [anon_sym_where] = ACTIONS(3869), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_notnull] = ACTIONS(3869), - [anon_sym_unmanaged] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_this] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_scoped] = ACTIONS(3869), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [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_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), @@ -622374,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), @@ -622383,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(6199), - [anon_sym_LBRACK] = ACTIONS(6199), - [anon_sym_COLON] = ACTIONS(6199), - [anon_sym_COMMA] = ACTIONS(6199), - [anon_sym_RBRACK] = ACTIONS(6199), - [anon_sym_LPAREN] = ACTIONS(6199), - [anon_sym_RPAREN] = ACTIONS(6199), - [anon_sym_RBRACE] = ACTIONS(6199), - [anon_sym_LT] = ACTIONS(6201), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_in] = ACTIONS(6201), - [anon_sym_QMARK] = ACTIONS(6201), - [anon_sym_BANG] = ACTIONS(6201), - [anon_sym_PLUS_PLUS] = ACTIONS(6199), - [anon_sym_DASH_DASH] = ACTIONS(6199), - [anon_sym_PLUS] = ACTIONS(6201), - [anon_sym_DASH] = ACTIONS(6201), - [anon_sym_STAR] = ACTIONS(6199), - [anon_sym_SLASH] = ACTIONS(6201), - [anon_sym_PERCENT] = ACTIONS(6199), - [anon_sym_CARET] = ACTIONS(6199), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_AMP] = ACTIONS(6201), - [anon_sym_LT_LT] = ACTIONS(6199), - [anon_sym_GT_GT] = ACTIONS(6201), - [anon_sym_GT_GT_GT] = ACTIONS(6199), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_GT_EQ] = ACTIONS(6199), - [anon_sym_LT_EQ] = ACTIONS(6199), - [anon_sym_DOT] = ACTIONS(6201), - [anon_sym_EQ_GT] = ACTIONS(6199), - [anon_sym_switch] = ACTIONS(6199), - [anon_sym_when] = ACTIONS(6199), - [anon_sym_DOT_DOT] = ACTIONS(6199), - [anon_sym_and] = ACTIONS(6199), - [anon_sym_or] = ACTIONS(6199), - [anon_sym_AMP_AMP] = ACTIONS(6199), - [anon_sym_PIPE_PIPE] = ACTIONS(6199), - [sym_op_coalescing] = ACTIONS(6199), - [anon_sym_into] = ACTIONS(6199), - [anon_sym_on] = ACTIONS(6199), - [anon_sym_equals] = ACTIONS(6199), - [anon_sym_by] = ACTIONS(6199), - [anon_sym_as] = ACTIONS(6199), - [anon_sym_is] = ACTIONS(6199), - [anon_sym_DASH_GT] = ACTIONS(6199), - [anon_sym_with] = ACTIONS(6199), - [aux_sym_preproc_if_token3] = ACTIONS(6199), - [aux_sym_preproc_else_token1] = ACTIONS(6199), - [aux_sym_preproc_elif_token1] = ACTIONS(6199), + [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), @@ -622446,6 +614550,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4773] = { + [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), @@ -622455,57 +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), - [anon_sym_SEMI] = ACTIONS(3974), - [anon_sym_LBRACK] = ACTIONS(3974), - [anon_sym_COLON] = ACTIONS(3974), - [anon_sym_COMMA] = ACTIONS(3974), - [anon_sym_RBRACK] = ACTIONS(3974), - [anon_sym_LPAREN] = ACTIONS(3974), - [anon_sym_RPAREN] = ACTIONS(3974), - [anon_sym_LBRACE] = ACTIONS(3974), - [anon_sym_RBRACE] = ACTIONS(3974), - [anon_sym_LT] = ACTIONS(3972), - [anon_sym_GT] = ACTIONS(3972), - [anon_sym_in] = ACTIONS(3974), - [anon_sym_QMARK] = ACTIONS(3972), - [anon_sym_BANG] = ACTIONS(3972), - [anon_sym_PLUS_PLUS] = ACTIONS(3974), - [anon_sym_DASH_DASH] = ACTIONS(3974), - [anon_sym_PLUS] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3972), - [anon_sym_STAR] = ACTIONS(3974), - [anon_sym_SLASH] = ACTIONS(3972), - [anon_sym_PERCENT] = ACTIONS(3974), - [anon_sym_CARET] = ACTIONS(3974), - [anon_sym_PIPE] = ACTIONS(3972), - [anon_sym_AMP] = ACTIONS(3972), - [anon_sym_LT_LT] = ACTIONS(3974), - [anon_sym_GT_GT] = ACTIONS(3972), - [anon_sym_GT_GT_GT] = ACTIONS(3974), - [anon_sym_EQ_EQ] = ACTIONS(3974), - [anon_sym_BANG_EQ] = ACTIONS(3974), - [anon_sym_GT_EQ] = ACTIONS(3974), - [anon_sym_LT_EQ] = ACTIONS(3974), - [anon_sym_DOT] = ACTIONS(3972), - [anon_sym_EQ_GT] = ACTIONS(3974), - [anon_sym_switch] = ACTIONS(3974), - [anon_sym_when] = ACTIONS(3974), - [anon_sym_DOT_DOT] = ACTIONS(3974), - [anon_sym_and] = ACTIONS(3974), - [anon_sym_or] = ACTIONS(3974), - [anon_sym_AMP_AMP] = ACTIONS(3974), - [anon_sym_PIPE_PIPE] = ACTIONS(3974), - [sym_op_coalescing] = ACTIONS(3974), - [anon_sym_on] = ACTIONS(3974), - [anon_sym_equals] = ACTIONS(3974), - [anon_sym_by] = ACTIONS(3974), - [anon_sym_as] = ACTIONS(3974), - [anon_sym_is] = ACTIONS(3974), - [anon_sym_DASH_GT] = ACTIONS(3974), - [anon_sym_with] = ACTIONS(3974), - [aux_sym_preproc_if_token3] = ACTIONS(3974), - [aux_sym_preproc_else_token1] = ACTIONS(3974), - [aux_sym_preproc_elif_token1] = ACTIONS(3974), + [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), @@ -622518,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), @@ -622527,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(3978), - [anon_sym_LBRACK] = ACTIONS(3978), - [anon_sym_COLON] = ACTIONS(3978), - [anon_sym_COMMA] = ACTIONS(3978), - [anon_sym_RBRACK] = ACTIONS(3978), - [anon_sym_LPAREN] = ACTIONS(3978), - [anon_sym_RPAREN] = ACTIONS(3978), - [anon_sym_LBRACE] = ACTIONS(3978), - [anon_sym_RBRACE] = ACTIONS(3978), - [anon_sym_LT] = ACTIONS(3976), - [anon_sym_GT] = ACTIONS(3976), - [anon_sym_in] = ACTIONS(3978), - [anon_sym_QMARK] = ACTIONS(3976), - [anon_sym_BANG] = ACTIONS(3976), - [anon_sym_PLUS_PLUS] = ACTIONS(3978), - [anon_sym_DASH_DASH] = ACTIONS(3978), - [anon_sym_PLUS] = ACTIONS(3976), - [anon_sym_DASH] = ACTIONS(3976), - [anon_sym_STAR] = ACTIONS(3978), - [anon_sym_SLASH] = ACTIONS(3976), - [anon_sym_PERCENT] = ACTIONS(3978), - [anon_sym_CARET] = ACTIONS(3978), - [anon_sym_PIPE] = ACTIONS(3976), - [anon_sym_AMP] = ACTIONS(3976), - [anon_sym_LT_LT] = ACTIONS(3978), - [anon_sym_GT_GT] = ACTIONS(3976), - [anon_sym_GT_GT_GT] = ACTIONS(3978), - [anon_sym_EQ_EQ] = ACTIONS(3978), - [anon_sym_BANG_EQ] = ACTIONS(3978), - [anon_sym_GT_EQ] = ACTIONS(3978), - [anon_sym_LT_EQ] = ACTIONS(3978), - [anon_sym_DOT] = ACTIONS(3976), - [anon_sym_EQ_GT] = ACTIONS(3978), - [anon_sym_switch] = ACTIONS(3978), - [anon_sym_when] = ACTIONS(3978), - [anon_sym_DOT_DOT] = ACTIONS(3978), - [anon_sym_and] = ACTIONS(3978), - [anon_sym_or] = ACTIONS(3978), - [anon_sym_AMP_AMP] = ACTIONS(3978), - [anon_sym_PIPE_PIPE] = ACTIONS(3978), - [sym_op_coalescing] = ACTIONS(3978), - [anon_sym_on] = ACTIONS(3978), - [anon_sym_equals] = ACTIONS(3978), - [anon_sym_by] = ACTIONS(3978), - [anon_sym_as] = ACTIONS(3978), - [anon_sym_is] = ACTIONS(3978), - [anon_sym_DASH_GT] = ACTIONS(3978), - [anon_sym_with] = ACTIONS(3978), - [aux_sym_preproc_if_token3] = ACTIONS(3978), - [aux_sym_preproc_else_token1] = ACTIONS(3978), - [aux_sym_preproc_elif_token1] = ACTIONS(3978), + [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), @@ -622590,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), @@ -622599,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(3970), - [anon_sym_LBRACK] = ACTIONS(3970), - [anon_sym_COLON] = ACTIONS(3970), - [anon_sym_COMMA] = ACTIONS(3970), - [anon_sym_RBRACK] = ACTIONS(3970), - [anon_sym_LPAREN] = ACTIONS(3970), - [anon_sym_RPAREN] = ACTIONS(3970), - [anon_sym_LBRACE] = ACTIONS(3970), - [anon_sym_RBRACE] = ACTIONS(3970), - [anon_sym_LT] = ACTIONS(3968), - [anon_sym_GT] = ACTIONS(3968), - [anon_sym_in] = ACTIONS(3970), - [anon_sym_QMARK] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(3968), - [anon_sym_PLUS_PLUS] = ACTIONS(3970), - [anon_sym_DASH_DASH] = ACTIONS(3970), - [anon_sym_PLUS] = ACTIONS(3968), - [anon_sym_DASH] = ACTIONS(3968), - [anon_sym_STAR] = ACTIONS(3970), - [anon_sym_SLASH] = ACTIONS(3968), - [anon_sym_PERCENT] = ACTIONS(3970), - [anon_sym_CARET] = ACTIONS(3970), - [anon_sym_PIPE] = ACTIONS(3968), - [anon_sym_AMP] = ACTIONS(3968), - [anon_sym_LT_LT] = ACTIONS(3970), - [anon_sym_GT_GT] = ACTIONS(3968), - [anon_sym_GT_GT_GT] = ACTIONS(3970), - [anon_sym_EQ_EQ] = ACTIONS(3970), - [anon_sym_BANG_EQ] = ACTIONS(3970), - [anon_sym_GT_EQ] = ACTIONS(3970), - [anon_sym_LT_EQ] = ACTIONS(3970), - [anon_sym_DOT] = ACTIONS(3968), - [anon_sym_EQ_GT] = ACTIONS(3970), - [anon_sym_switch] = ACTIONS(3970), - [anon_sym_when] = ACTIONS(3970), - [anon_sym_DOT_DOT] = ACTIONS(3970), - [anon_sym_and] = ACTIONS(3970), - [anon_sym_or] = ACTIONS(3970), - [anon_sym_AMP_AMP] = ACTIONS(3970), - [anon_sym_PIPE_PIPE] = ACTIONS(3970), - [sym_op_coalescing] = ACTIONS(3970), - [anon_sym_on] = ACTIONS(3970), - [anon_sym_equals] = ACTIONS(3970), - [anon_sym_by] = ACTIONS(3970), - [anon_sym_as] = ACTIONS(3970), - [anon_sym_is] = ACTIONS(3970), - [anon_sym_DASH_GT] = ACTIONS(3970), - [anon_sym_with] = ACTIONS(3970), - [aux_sym_preproc_if_token3] = ACTIONS(3970), - [aux_sym_preproc_else_token1] = ACTIONS(3970), - [aux_sym_preproc_elif_token1] = ACTIONS(3970), + [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), @@ -622662,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), @@ -622671,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(7016), - [anon_sym_LBRACK] = ACTIONS(7016), - [anon_sym_COLON] = ACTIONS(7016), - [anon_sym_COMMA] = ACTIONS(7016), - [anon_sym_RBRACK] = ACTIONS(7016), - [anon_sym_LPAREN] = ACTIONS(7016), - [anon_sym_RPAREN] = ACTIONS(7016), - [anon_sym_RBRACE] = ACTIONS(7016), - [anon_sym_LT] = ACTIONS(7018), - [anon_sym_GT] = ACTIONS(7018), - [anon_sym_in] = ACTIONS(7018), - [anon_sym_QMARK] = ACTIONS(7018), - [anon_sym_BANG] = ACTIONS(7018), - [anon_sym_PLUS_PLUS] = ACTIONS(7016), - [anon_sym_DASH_DASH] = ACTIONS(7016), - [anon_sym_PLUS] = ACTIONS(7018), - [anon_sym_DASH] = ACTIONS(7018), - [anon_sym_STAR] = ACTIONS(7016), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7016), - [anon_sym_CARET] = ACTIONS(7016), - [anon_sym_PIPE] = ACTIONS(7018), - [anon_sym_AMP] = ACTIONS(7018), - [anon_sym_LT_LT] = ACTIONS(7016), - [anon_sym_GT_GT] = ACTIONS(7018), - [anon_sym_GT_GT_GT] = ACTIONS(7016), - [anon_sym_EQ_EQ] = ACTIONS(7016), - [anon_sym_BANG_EQ] = ACTIONS(7016), - [anon_sym_GT_EQ] = ACTIONS(7016), - [anon_sym_LT_EQ] = ACTIONS(7016), - [anon_sym_DOT] = ACTIONS(7018), - [anon_sym_EQ_GT] = ACTIONS(7016), - [anon_sym_switch] = ACTIONS(7016), - [anon_sym_when] = ACTIONS(7016), - [anon_sym_DOT_DOT] = ACTIONS(7016), - [anon_sym_and] = ACTIONS(7016), - [anon_sym_or] = ACTIONS(7016), - [anon_sym_AMP_AMP] = ACTIONS(7016), - [anon_sym_PIPE_PIPE] = ACTIONS(7016), - [sym_op_coalescing] = ACTIONS(7016), - [anon_sym_into] = ACTIONS(7016), - [anon_sym_on] = ACTIONS(7016), - [anon_sym_equals] = ACTIONS(7016), - [anon_sym_by] = ACTIONS(7016), - [anon_sym_as] = ACTIONS(7016), - [anon_sym_is] = ACTIONS(7016), - [anon_sym_DASH_GT] = ACTIONS(7016), - [anon_sym_with] = ACTIONS(7016), - [aux_sym_preproc_if_token3] = ACTIONS(7016), - [aux_sym_preproc_else_token1] = ACTIONS(7016), - [aux_sym_preproc_elif_token1] = ACTIONS(7016), + [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), @@ -622734,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), @@ -622743,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(6183), - [anon_sym_LBRACK] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6183), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RBRACK] = ACTIONS(6183), - [anon_sym_LPAREN] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6183), - [anon_sym_RBRACE] = ACTIONS(6183), - [anon_sym_LT] = ACTIONS(6185), - [anon_sym_GT] = ACTIONS(6185), - [anon_sym_in] = ACTIONS(6185), - [anon_sym_QMARK] = ACTIONS(6185), - [anon_sym_BANG] = ACTIONS(6185), - [anon_sym_PLUS_PLUS] = ACTIONS(6183), - [anon_sym_DASH_DASH] = ACTIONS(6183), - [anon_sym_PLUS] = ACTIONS(6185), - [anon_sym_DASH] = ACTIONS(6185), - [anon_sym_STAR] = ACTIONS(6183), - [anon_sym_SLASH] = ACTIONS(6185), - [anon_sym_PERCENT] = ACTIONS(6183), - [anon_sym_CARET] = ACTIONS(6183), - [anon_sym_PIPE] = ACTIONS(6185), - [anon_sym_AMP] = ACTIONS(6185), - [anon_sym_LT_LT] = ACTIONS(6183), - [anon_sym_GT_GT] = ACTIONS(6185), - [anon_sym_GT_GT_GT] = ACTIONS(6183), - [anon_sym_EQ_EQ] = ACTIONS(6183), - [anon_sym_BANG_EQ] = ACTIONS(6183), - [anon_sym_GT_EQ] = ACTIONS(6183), - [anon_sym_LT_EQ] = ACTIONS(6183), - [anon_sym_DOT] = ACTIONS(6185), - [anon_sym_EQ_GT] = ACTIONS(6183), - [anon_sym_switch] = ACTIONS(6183), - [anon_sym_when] = ACTIONS(6183), - [anon_sym_DOT_DOT] = ACTIONS(6183), - [anon_sym_and] = ACTIONS(6183), - [anon_sym_or] = ACTIONS(6183), - [anon_sym_AMP_AMP] = ACTIONS(6183), - [anon_sym_PIPE_PIPE] = ACTIONS(6183), - [sym_op_coalescing] = ACTIONS(6183), - [anon_sym_into] = ACTIONS(6183), - [anon_sym_on] = ACTIONS(6183), - [anon_sym_equals] = ACTIONS(6183), - [anon_sym_by] = ACTIONS(6183), - [anon_sym_as] = ACTIONS(6183), - [anon_sym_is] = ACTIONS(6183), - [anon_sym_DASH_GT] = ACTIONS(6183), - [anon_sym_with] = ACTIONS(6183), - [aux_sym_preproc_if_token3] = ACTIONS(6183), - [aux_sym_preproc_else_token1] = ACTIONS(6183), - [aux_sym_preproc_elif_token1] = ACTIONS(6183), + [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), @@ -622806,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), @@ -622815,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(6179), - [anon_sym_LBRACK] = ACTIONS(6179), - [anon_sym_COLON] = ACTIONS(6179), - [anon_sym_COMMA] = ACTIONS(6179), - [anon_sym_RBRACK] = ACTIONS(6179), - [anon_sym_LPAREN] = ACTIONS(6179), - [anon_sym_RPAREN] = ACTIONS(6179), - [anon_sym_RBRACE] = ACTIONS(6179), - [anon_sym_LT] = ACTIONS(6181), - [anon_sym_GT] = ACTIONS(6181), - [anon_sym_in] = ACTIONS(6181), - [anon_sym_QMARK] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(6181), - [anon_sym_PLUS_PLUS] = ACTIONS(6179), - [anon_sym_DASH_DASH] = ACTIONS(6179), - [anon_sym_PLUS] = ACTIONS(6181), - [anon_sym_DASH] = ACTIONS(6181), - [anon_sym_STAR] = ACTIONS(6179), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6179), - [anon_sym_CARET] = ACTIONS(6179), - [anon_sym_PIPE] = ACTIONS(6181), - [anon_sym_AMP] = ACTIONS(6181), - [anon_sym_LT_LT] = ACTIONS(6179), - [anon_sym_GT_GT] = ACTIONS(6181), - [anon_sym_GT_GT_GT] = ACTIONS(6179), - [anon_sym_EQ_EQ] = ACTIONS(6179), - [anon_sym_BANG_EQ] = ACTIONS(6179), - [anon_sym_GT_EQ] = ACTIONS(6179), - [anon_sym_LT_EQ] = ACTIONS(6179), - [anon_sym_DOT] = ACTIONS(6181), - [anon_sym_EQ_GT] = ACTIONS(6179), - [anon_sym_switch] = ACTIONS(6179), - [anon_sym_when] = ACTIONS(6179), - [anon_sym_DOT_DOT] = ACTIONS(6179), - [anon_sym_and] = ACTIONS(6179), - [anon_sym_or] = ACTIONS(6179), - [anon_sym_AMP_AMP] = ACTIONS(6179), - [anon_sym_PIPE_PIPE] = ACTIONS(6179), - [sym_op_coalescing] = ACTIONS(6179), - [anon_sym_into] = ACTIONS(6179), - [anon_sym_on] = ACTIONS(6179), - [anon_sym_equals] = ACTIONS(6179), - [anon_sym_by] = ACTIONS(6179), - [anon_sym_as] = ACTIONS(6179), - [anon_sym_is] = ACTIONS(6179), - [anon_sym_DASH_GT] = ACTIONS(6179), - [anon_sym_with] = ACTIONS(6179), - [aux_sym_preproc_if_token3] = ACTIONS(6179), - [aux_sym_preproc_else_token1] = ACTIONS(6179), - [aux_sym_preproc_elif_token1] = ACTIONS(6179), + [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), @@ -622878,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), @@ -622887,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(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3381), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_RBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_RPAREN] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_in] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3381), - [anon_sym_CARET] = ACTIONS(3381), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LT_LT] = ACTIONS(3381), - [anon_sym_GT_GT] = ACTIONS(3379), - [anon_sym_GT_GT_GT] = ACTIONS(3381), - [anon_sym_EQ_EQ] = ACTIONS(3381), - [anon_sym_BANG_EQ] = ACTIONS(3381), - [anon_sym_GT_EQ] = ACTIONS(3381), - [anon_sym_LT_EQ] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_EQ_GT] = ACTIONS(3381), - [anon_sym_switch] = ACTIONS(3381), - [anon_sym_when] = ACTIONS(3381), - [anon_sym_DOT_DOT] = ACTIONS(3381), - [anon_sym_and] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [sym_op_coalescing] = ACTIONS(3381), - [anon_sym_into] = ACTIONS(3381), - [anon_sym_on] = ACTIONS(3381), - [anon_sym_equals] = ACTIONS(3381), - [anon_sym_by] = ACTIONS(3381), - [anon_sym_as] = ACTIONS(3381), - [anon_sym_is] = ACTIONS(3381), - [anon_sym_DASH_GT] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3381), - [aux_sym_preproc_if_token3] = ACTIONS(3381), - [aux_sym_preproc_else_token1] = ACTIONS(3381), - [aux_sym_preproc_elif_token1] = ACTIONS(3381), + [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), @@ -622950,6 +615040,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4780] = { + [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), @@ -622959,57 +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(6175), - [anon_sym_LBRACK] = ACTIONS(6175), - [anon_sym_COLON] = ACTIONS(6175), - [anon_sym_COMMA] = ACTIONS(6175), - [anon_sym_RBRACK] = ACTIONS(6175), - [anon_sym_LPAREN] = ACTIONS(6175), - [anon_sym_RPAREN] = ACTIONS(6175), - [anon_sym_RBRACE] = ACTIONS(6175), - [anon_sym_LT] = ACTIONS(6177), - [anon_sym_GT] = ACTIONS(6177), - [anon_sym_in] = ACTIONS(6177), - [anon_sym_QMARK] = ACTIONS(6177), - [anon_sym_BANG] = ACTIONS(6177), - [anon_sym_PLUS_PLUS] = ACTIONS(6175), - [anon_sym_DASH_DASH] = ACTIONS(6175), - [anon_sym_PLUS] = ACTIONS(6177), - [anon_sym_DASH] = ACTIONS(6177), - [anon_sym_STAR] = ACTIONS(6175), - [anon_sym_SLASH] = ACTIONS(6177), - [anon_sym_PERCENT] = ACTIONS(6175), - [anon_sym_CARET] = ACTIONS(6175), - [anon_sym_PIPE] = ACTIONS(6177), - [anon_sym_AMP] = ACTIONS(6177), - [anon_sym_LT_LT] = ACTIONS(6175), - [anon_sym_GT_GT] = ACTIONS(6177), - [anon_sym_GT_GT_GT] = ACTIONS(6175), - [anon_sym_EQ_EQ] = ACTIONS(6175), - [anon_sym_BANG_EQ] = ACTIONS(6175), - [anon_sym_GT_EQ] = ACTIONS(6175), - [anon_sym_LT_EQ] = ACTIONS(6175), - [anon_sym_DOT] = ACTIONS(6177), - [anon_sym_EQ_GT] = ACTIONS(6175), - [anon_sym_switch] = ACTIONS(6175), - [anon_sym_when] = ACTIONS(6175), - [anon_sym_DOT_DOT] = ACTIONS(6175), - [anon_sym_and] = ACTIONS(6175), - [anon_sym_or] = ACTIONS(6175), - [anon_sym_AMP_AMP] = ACTIONS(6175), - [anon_sym_PIPE_PIPE] = ACTIONS(6175), - [sym_op_coalescing] = ACTIONS(6175), - [anon_sym_into] = ACTIONS(6175), - [anon_sym_on] = ACTIONS(6175), - [anon_sym_equals] = ACTIONS(6175), - [anon_sym_by] = ACTIONS(6175), - [anon_sym_as] = ACTIONS(6175), - [anon_sym_is] = ACTIONS(6175), - [anon_sym_DASH_GT] = ACTIONS(6175), - [anon_sym_with] = ACTIONS(6175), - [aux_sym_preproc_if_token3] = ACTIONS(6175), - [aux_sym_preproc_else_token1] = ACTIONS(6175), - [aux_sym_preproc_elif_token1] = ACTIONS(6175), + [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), @@ -623022,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), @@ -623031,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(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_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), @@ -623094,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), @@ -623103,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(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_BANG] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3982), - [anon_sym_DASH_DASH] = ACTIONS(3982), - [anon_sym_PLUS] = ACTIONS(3980), - [anon_sym_DASH] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3982), - [anon_sym_SLASH] = ACTIONS(3980), - [anon_sym_PERCENT] = ACTIONS(3982), - [anon_sym_CARET] = ACTIONS(3982), - [anon_sym_PIPE] = ACTIONS(3980), - [anon_sym_AMP] = ACTIONS(3980), - [anon_sym_LT_LT] = ACTIONS(3982), - [anon_sym_GT_GT] = ACTIONS(3980), - [anon_sym_GT_GT_GT] = ACTIONS(3982), - [anon_sym_EQ_EQ] = ACTIONS(3982), - [anon_sym_BANG_EQ] = ACTIONS(3982), - [anon_sym_GT_EQ] = ACTIONS(3982), - [anon_sym_LT_EQ] = ACTIONS(3982), - [anon_sym_DOT] = ACTIONS(3980), - [anon_sym_EQ_GT] = ACTIONS(3982), - [anon_sym_switch] = ACTIONS(3982), - [anon_sym_when] = ACTIONS(3982), - [anon_sym_DOT_DOT] = ACTIONS(3982), - [anon_sym_and] = ACTIONS(3982), - [anon_sym_or] = ACTIONS(3982), - [anon_sym_AMP_AMP] = ACTIONS(3982), - [anon_sym_PIPE_PIPE] = ACTIONS(3982), - [sym_op_coalescing] = 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), + [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), @@ -623166,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), @@ -623175,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(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_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), @@ -623238,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), @@ -623247,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(6171), - [anon_sym_LBRACK] = ACTIONS(6171), - [anon_sym_COLON] = ACTIONS(6171), - [anon_sym_COMMA] = ACTIONS(6171), - [anon_sym_RBRACK] = ACTIONS(6171), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_RPAREN] = ACTIONS(6171), - [anon_sym_RBRACE] = ACTIONS(6171), - [anon_sym_LT] = ACTIONS(6173), - [anon_sym_GT] = ACTIONS(6173), - [anon_sym_in] = ACTIONS(6173), - [anon_sym_QMARK] = ACTIONS(6173), - [anon_sym_BANG] = ACTIONS(6173), - [anon_sym_PLUS_PLUS] = ACTIONS(6171), - [anon_sym_DASH_DASH] = ACTIONS(6171), - [anon_sym_PLUS] = ACTIONS(6173), - [anon_sym_DASH] = ACTIONS(6173), - [anon_sym_STAR] = ACTIONS(6171), - [anon_sym_SLASH] = ACTIONS(6173), - [anon_sym_PERCENT] = ACTIONS(6171), - [anon_sym_CARET] = ACTIONS(6171), - [anon_sym_PIPE] = ACTIONS(6173), - [anon_sym_AMP] = ACTIONS(6173), - [anon_sym_LT_LT] = ACTIONS(6171), - [anon_sym_GT_GT] = ACTIONS(6173), - [anon_sym_GT_GT_GT] = ACTIONS(6171), - [anon_sym_EQ_EQ] = ACTIONS(6171), - [anon_sym_BANG_EQ] = ACTIONS(6171), - [anon_sym_GT_EQ] = ACTIONS(6171), - [anon_sym_LT_EQ] = ACTIONS(6171), - [anon_sym_DOT] = ACTIONS(6173), - [anon_sym_EQ_GT] = ACTIONS(6171), - [anon_sym_switch] = ACTIONS(6171), - [anon_sym_when] = ACTIONS(6171), - [anon_sym_DOT_DOT] = ACTIONS(6171), - [anon_sym_and] = ACTIONS(6171), - [anon_sym_or] = ACTIONS(6171), - [anon_sym_AMP_AMP] = ACTIONS(6171), - [anon_sym_PIPE_PIPE] = ACTIONS(6171), - [sym_op_coalescing] = ACTIONS(6171), - [anon_sym_into] = ACTIONS(6171), - [anon_sym_on] = ACTIONS(6171), - [anon_sym_equals] = ACTIONS(6171), - [anon_sym_by] = ACTIONS(6171), - [anon_sym_as] = ACTIONS(6171), - [anon_sym_is] = ACTIONS(6171), - [anon_sym_DASH_GT] = ACTIONS(6171), - [anon_sym_with] = ACTIONS(6171), - [aux_sym_preproc_if_token3] = ACTIONS(6171), - [aux_sym_preproc_else_token1] = ACTIONS(6171), - [aux_sym_preproc_elif_token1] = ACTIONS(6171), + [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), @@ -623310,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), @@ -623319,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(6167), - [anon_sym_LBRACK] = ACTIONS(6167), - [anon_sym_COLON] = ACTIONS(6167), - [anon_sym_COMMA] = ACTIONS(6167), - [anon_sym_RBRACK] = ACTIONS(6167), - [anon_sym_LPAREN] = ACTIONS(6167), - [anon_sym_RPAREN] = ACTIONS(6167), - [anon_sym_RBRACE] = ACTIONS(6167), - [anon_sym_LT] = ACTIONS(6169), - [anon_sym_GT] = ACTIONS(6169), - [anon_sym_in] = ACTIONS(6169), - [anon_sym_QMARK] = ACTIONS(6169), - [anon_sym_BANG] = ACTIONS(6169), - [anon_sym_PLUS_PLUS] = ACTIONS(6167), - [anon_sym_DASH_DASH] = ACTIONS(6167), - [anon_sym_PLUS] = ACTIONS(6169), - [anon_sym_DASH] = ACTIONS(6169), - [anon_sym_STAR] = ACTIONS(6167), - [anon_sym_SLASH] = ACTIONS(6169), - [anon_sym_PERCENT] = ACTIONS(6167), - [anon_sym_CARET] = ACTIONS(6167), - [anon_sym_PIPE] = ACTIONS(6169), - [anon_sym_AMP] = ACTIONS(6169), - [anon_sym_LT_LT] = ACTIONS(6167), - [anon_sym_GT_GT] = ACTIONS(6169), - [anon_sym_GT_GT_GT] = ACTIONS(6167), - [anon_sym_EQ_EQ] = ACTIONS(6167), - [anon_sym_BANG_EQ] = ACTIONS(6167), - [anon_sym_GT_EQ] = ACTIONS(6167), - [anon_sym_LT_EQ] = ACTIONS(6167), - [anon_sym_DOT] = ACTIONS(6169), - [anon_sym_EQ_GT] = ACTIONS(6167), - [anon_sym_switch] = ACTIONS(6167), - [anon_sym_when] = ACTIONS(6167), - [anon_sym_DOT_DOT] = ACTIONS(6167), - [anon_sym_and] = ACTIONS(6167), - [anon_sym_or] = ACTIONS(6167), - [anon_sym_AMP_AMP] = ACTIONS(6167), - [anon_sym_PIPE_PIPE] = ACTIONS(6167), - [sym_op_coalescing] = ACTIONS(6167), - [anon_sym_into] = ACTIONS(6167), - [anon_sym_on] = ACTIONS(6167), - [anon_sym_equals] = ACTIONS(6167), - [anon_sym_by] = ACTIONS(6167), - [anon_sym_as] = ACTIONS(6167), - [anon_sym_is] = ACTIONS(6167), - [anon_sym_DASH_GT] = ACTIONS(6167), - [anon_sym_with] = ACTIONS(6167), - [aux_sym_preproc_if_token3] = ACTIONS(6167), - [aux_sym_preproc_else_token1] = ACTIONS(6167), - [aux_sym_preproc_elif_token1] = ACTIONS(6167), + [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), @@ -623382,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), @@ -623391,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(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_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), @@ -623454,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), @@ -623463,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(6163), - [anon_sym_LBRACK] = ACTIONS(6163), - [anon_sym_COLON] = ACTIONS(6163), - [anon_sym_COMMA] = ACTIONS(6163), - [anon_sym_RBRACK] = ACTIONS(6163), - [anon_sym_LPAREN] = ACTIONS(6163), - [anon_sym_RPAREN] = ACTIONS(6163), - [anon_sym_RBRACE] = ACTIONS(6163), - [anon_sym_LT] = ACTIONS(6165), - [anon_sym_GT] = ACTIONS(6165), - [anon_sym_in] = ACTIONS(6165), - [anon_sym_QMARK] = ACTIONS(6165), - [anon_sym_BANG] = ACTIONS(6165), - [anon_sym_PLUS_PLUS] = ACTIONS(6163), - [anon_sym_DASH_DASH] = ACTIONS(6163), - [anon_sym_PLUS] = ACTIONS(6165), - [anon_sym_DASH] = ACTIONS(6165), - [anon_sym_STAR] = ACTIONS(6163), - [anon_sym_SLASH] = ACTIONS(6165), - [anon_sym_PERCENT] = ACTIONS(6163), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_PIPE] = ACTIONS(6165), - [anon_sym_AMP] = ACTIONS(6165), - [anon_sym_LT_LT] = ACTIONS(6163), - [anon_sym_GT_GT] = ACTIONS(6165), - [anon_sym_GT_GT_GT] = ACTIONS(6163), - [anon_sym_EQ_EQ] = ACTIONS(6163), - [anon_sym_BANG_EQ] = ACTIONS(6163), - [anon_sym_GT_EQ] = ACTIONS(6163), - [anon_sym_LT_EQ] = ACTIONS(6163), - [anon_sym_DOT] = ACTIONS(6165), - [anon_sym_EQ_GT] = ACTIONS(6163), - [anon_sym_switch] = ACTIONS(6163), - [anon_sym_when] = ACTIONS(6163), - [anon_sym_DOT_DOT] = ACTIONS(6163), - [anon_sym_and] = ACTIONS(6163), - [anon_sym_or] = ACTIONS(6163), - [anon_sym_AMP_AMP] = ACTIONS(6163), - [anon_sym_PIPE_PIPE] = ACTIONS(6163), - [sym_op_coalescing] = ACTIONS(6163), - [anon_sym_into] = ACTIONS(6163), - [anon_sym_on] = ACTIONS(6163), - [anon_sym_equals] = ACTIONS(6163), - [anon_sym_by] = ACTIONS(6163), - [anon_sym_as] = ACTIONS(6163), - [anon_sym_is] = ACTIONS(6163), - [anon_sym_DASH_GT] = ACTIONS(6163), - [anon_sym_with] = ACTIONS(6163), - [aux_sym_preproc_if_token3] = ACTIONS(6163), - [aux_sym_preproc_else_token1] = ACTIONS(6163), - [aux_sym_preproc_elif_token1] = ACTIONS(6163), + [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), @@ -623526,26 +615600,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4788] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7895), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -623555,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(4838), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -623598,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), @@ -623607,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), - [sym__identifier_token] = ACTIONS(3540), - [anon_sym_extern] = ACTIONS(3540), - [anon_sym_alias] = ACTIONS(3540), - [anon_sym_global] = ACTIONS(3540), - [anon_sym_unsafe] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3540), - [anon_sym_LBRACK] = ACTIONS(3542), - [anon_sym_RBRACE] = ACTIONS(3542), - [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), - [sym_accessor_get] = ACTIONS(3540), - [sym_accessor_set] = ACTIONS(3540), - [sym_accessor_add] = ACTIONS(3540), - [sym_accessor_remove] = ACTIONS(3540), - [sym_accessor_init] = ACTIONS(3540), - [anon_sym_scoped] = ACTIONS(3540), - [anon_sym_var] = ACTIONS(3540), - [anon_sym_yield] = ACTIONS(3540), - [anon_sym_when] = 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), - [sym_grit_metavariable] = ACTIONS(3542), - [aux_sym_preproc_if_token1] = ACTIONS(3542), + [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), @@ -623670,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), @@ -623679,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(6159), - [anon_sym_LBRACK] = ACTIONS(6159), - [anon_sym_COLON] = ACTIONS(6159), - [anon_sym_COMMA] = ACTIONS(6159), - [anon_sym_RBRACK] = ACTIONS(6159), - [anon_sym_LPAREN] = ACTIONS(6159), - [anon_sym_RPAREN] = ACTIONS(6159), - [anon_sym_RBRACE] = ACTIONS(6159), - [anon_sym_LT] = ACTIONS(6161), - [anon_sym_GT] = ACTIONS(6161), - [anon_sym_in] = ACTIONS(6161), - [anon_sym_QMARK] = ACTIONS(6161), - [anon_sym_BANG] = ACTIONS(6161), - [anon_sym_PLUS_PLUS] = ACTIONS(6159), - [anon_sym_DASH_DASH] = ACTIONS(6159), - [anon_sym_PLUS] = ACTIONS(6161), - [anon_sym_DASH] = ACTIONS(6161), - [anon_sym_STAR] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6161), - [anon_sym_PERCENT] = ACTIONS(6159), - [anon_sym_CARET] = ACTIONS(6159), - [anon_sym_PIPE] = ACTIONS(6161), - [anon_sym_AMP] = ACTIONS(6161), - [anon_sym_LT_LT] = ACTIONS(6159), - [anon_sym_GT_GT] = ACTIONS(6161), - [anon_sym_GT_GT_GT] = ACTIONS(6159), - [anon_sym_EQ_EQ] = ACTIONS(6159), - [anon_sym_BANG_EQ] = ACTIONS(6159), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(6161), - [anon_sym_EQ_GT] = ACTIONS(6159), - [anon_sym_switch] = ACTIONS(6159), - [anon_sym_when] = ACTIONS(6159), - [anon_sym_DOT_DOT] = ACTIONS(6159), - [anon_sym_and] = ACTIONS(6159), - [anon_sym_or] = ACTIONS(6159), - [anon_sym_AMP_AMP] = ACTIONS(6159), - [anon_sym_PIPE_PIPE] = ACTIONS(6159), - [sym_op_coalescing] = ACTIONS(6159), - [anon_sym_into] = ACTIONS(6159), - [anon_sym_on] = ACTIONS(6159), - [anon_sym_equals] = ACTIONS(6159), - [anon_sym_by] = ACTIONS(6159), - [anon_sym_as] = ACTIONS(6159), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(6159), - [anon_sym_with] = ACTIONS(6159), - [aux_sym_preproc_if_token3] = ACTIONS(6159), - [aux_sym_preproc_else_token1] = ACTIONS(6159), - [aux_sym_preproc_elif_token1] = ACTIONS(6159), + [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), @@ -623742,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), @@ -623751,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(6005), - [anon_sym_LBRACK] = ACTIONS(6005), - [anon_sym_COLON] = ACTIONS(6005), - [anon_sym_COMMA] = ACTIONS(6005), - [anon_sym_RBRACK] = ACTIONS(6005), - [anon_sym_LPAREN] = ACTIONS(6005), - [anon_sym_RPAREN] = ACTIONS(6005), - [anon_sym_RBRACE] = ACTIONS(6005), - [anon_sym_LT] = ACTIONS(6007), - [anon_sym_GT] = ACTIONS(6007), - [anon_sym_in] = ACTIONS(6007), - [anon_sym_QMARK] = ACTIONS(6007), - [anon_sym_BANG] = ACTIONS(6007), - [anon_sym_PLUS_PLUS] = ACTIONS(6005), - [anon_sym_DASH_DASH] = ACTIONS(6005), - [anon_sym_PLUS] = ACTIONS(6007), - [anon_sym_DASH] = ACTIONS(6007), - [anon_sym_STAR] = ACTIONS(6005), - [anon_sym_SLASH] = ACTIONS(6007), - [anon_sym_PERCENT] = ACTIONS(6005), - [anon_sym_CARET] = ACTIONS(6005), - [anon_sym_PIPE] = ACTIONS(6007), - [anon_sym_AMP] = ACTIONS(6007), - [anon_sym_LT_LT] = ACTIONS(6005), - [anon_sym_GT_GT] = ACTIONS(6007), - [anon_sym_GT_GT_GT] = ACTIONS(6005), - [anon_sym_EQ_EQ] = ACTIONS(6005), - [anon_sym_BANG_EQ] = ACTIONS(6005), - [anon_sym_GT_EQ] = ACTIONS(6005), - [anon_sym_LT_EQ] = ACTIONS(6005), - [anon_sym_DOT] = ACTIONS(6007), - [anon_sym_EQ_GT] = ACTIONS(6005), - [anon_sym_switch] = ACTIONS(6005), - [anon_sym_when] = ACTIONS(6005), - [anon_sym_DOT_DOT] = ACTIONS(6005), - [anon_sym_and] = ACTIONS(6005), - [anon_sym_or] = ACTIONS(6005), - [anon_sym_AMP_AMP] = ACTIONS(6005), - [anon_sym_PIPE_PIPE] = ACTIONS(6005), - [sym_op_coalescing] = ACTIONS(6005), - [anon_sym_into] = ACTIONS(6005), - [anon_sym_on] = ACTIONS(6005), - [anon_sym_equals] = ACTIONS(6005), - [anon_sym_by] = ACTIONS(6005), - [anon_sym_as] = ACTIONS(6005), - [anon_sym_is] = ACTIONS(6005), - [anon_sym_DASH_GT] = ACTIONS(6005), - [anon_sym_with] = ACTIONS(6005), - [aux_sym_preproc_if_token3] = ACTIONS(6005), - [aux_sym_preproc_else_token1] = ACTIONS(6005), - [aux_sym_preproc_elif_token1] = ACTIONS(6005), + [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), @@ -623814,26 +615880,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4792] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7749), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -623843,22 +615907,22 @@ 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), - [aux_sym_function_pointer_type_repeat1] = STATE(5133), + [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(6982), - [anon_sym_delegate] = ACTIONS(5889), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), + [anon_sym_GT] = ACTIONS(7440), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), + [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), @@ -623886,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), @@ -623895,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(6121), - [anon_sym_LBRACK] = ACTIONS(6121), - [anon_sym_COLON] = ACTIONS(6121), - [anon_sym_COMMA] = ACTIONS(6121), - [anon_sym_RBRACK] = ACTIONS(6121), - [anon_sym_LPAREN] = ACTIONS(6121), - [anon_sym_RPAREN] = ACTIONS(6121), - [anon_sym_RBRACE] = ACTIONS(6121), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_in] = ACTIONS(6123), - [anon_sym_QMARK] = ACTIONS(6123), - [anon_sym_BANG] = ACTIONS(6123), - [anon_sym_PLUS_PLUS] = ACTIONS(6121), - [anon_sym_DASH_DASH] = ACTIONS(6121), - [anon_sym_PLUS] = ACTIONS(6123), - [anon_sym_DASH] = ACTIONS(6123), - [anon_sym_STAR] = ACTIONS(6121), - [anon_sym_SLASH] = ACTIONS(6123), - [anon_sym_PERCENT] = ACTIONS(6121), - [anon_sym_CARET] = ACTIONS(6121), - [anon_sym_PIPE] = ACTIONS(6123), - [anon_sym_AMP] = ACTIONS(6123), - [anon_sym_LT_LT] = ACTIONS(6121), - [anon_sym_GT_GT] = ACTIONS(6123), - [anon_sym_GT_GT_GT] = ACTIONS(6121), - [anon_sym_EQ_EQ] = ACTIONS(6121), - [anon_sym_BANG_EQ] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6121), - [anon_sym_LT_EQ] = ACTIONS(6121), - [anon_sym_DOT] = ACTIONS(6123), - [anon_sym_EQ_GT] = ACTIONS(6121), - [anon_sym_switch] = ACTIONS(6121), - [anon_sym_when] = ACTIONS(6121), - [anon_sym_DOT_DOT] = ACTIONS(6121), - [anon_sym_and] = ACTIONS(6121), - [anon_sym_or] = ACTIONS(6121), - [anon_sym_AMP_AMP] = ACTIONS(6121), - [anon_sym_PIPE_PIPE] = ACTIONS(6121), - [sym_op_coalescing] = ACTIONS(6121), - [anon_sym_into] = ACTIONS(6121), - [anon_sym_on] = ACTIONS(6121), - [anon_sym_equals] = ACTIONS(6121), - [anon_sym_by] = ACTIONS(6121), - [anon_sym_as] = ACTIONS(6121), - [anon_sym_is] = ACTIONS(6121), - [anon_sym_DASH_GT] = ACTIONS(6121), - [anon_sym_with] = ACTIONS(6121), - [aux_sym_preproc_if_token3] = ACTIONS(6121), - [aux_sym_preproc_else_token1] = ACTIONS(6121), - [aux_sym_preproc_elif_token1] = ACTIONS(6121), + [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), @@ -623958,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), @@ -623967,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(6135), - [anon_sym_LBRACK] = ACTIONS(6135), - [anon_sym_COLON] = ACTIONS(6135), - [anon_sym_COMMA] = ACTIONS(6135), - [anon_sym_RBRACK] = ACTIONS(6135), - [anon_sym_LPAREN] = ACTIONS(6135), - [anon_sym_RPAREN] = ACTIONS(6135), - [anon_sym_RBRACE] = ACTIONS(6135), - [anon_sym_LT] = ACTIONS(6137), - [anon_sym_GT] = ACTIONS(6137), - [anon_sym_in] = ACTIONS(6137), - [anon_sym_QMARK] = ACTIONS(6137), - [anon_sym_BANG] = ACTIONS(6137), - [anon_sym_PLUS_PLUS] = ACTIONS(6135), - [anon_sym_DASH_DASH] = ACTIONS(6135), - [anon_sym_PLUS] = ACTIONS(6137), - [anon_sym_DASH] = ACTIONS(6137), - [anon_sym_STAR] = ACTIONS(6135), - [anon_sym_SLASH] = ACTIONS(6137), - [anon_sym_PERCENT] = ACTIONS(6135), - [anon_sym_CARET] = ACTIONS(6135), - [anon_sym_PIPE] = ACTIONS(6137), - [anon_sym_AMP] = ACTIONS(6137), - [anon_sym_LT_LT] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6137), - [anon_sym_GT_GT_GT] = ACTIONS(6135), - [anon_sym_EQ_EQ] = ACTIONS(6135), - [anon_sym_BANG_EQ] = ACTIONS(6135), - [anon_sym_GT_EQ] = ACTIONS(6135), - [anon_sym_LT_EQ] = ACTIONS(6135), - [anon_sym_DOT] = ACTIONS(6137), - [anon_sym_EQ_GT] = ACTIONS(6135), - [anon_sym_switch] = ACTIONS(6135), - [anon_sym_when] = ACTIONS(6135), - [anon_sym_DOT_DOT] = ACTIONS(6135), - [anon_sym_and] = ACTIONS(6135), - [anon_sym_or] = ACTIONS(6135), - [anon_sym_AMP_AMP] = ACTIONS(6135), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [sym_op_coalescing] = ACTIONS(6135), - [anon_sym_into] = ACTIONS(6135), - [anon_sym_on] = ACTIONS(6135), - [anon_sym_equals] = ACTIONS(6135), - [anon_sym_by] = ACTIONS(6135), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6135), - [anon_sym_DASH_GT] = ACTIONS(6135), - [anon_sym_with] = ACTIONS(6135), - [aux_sym_preproc_if_token3] = ACTIONS(6135), - [aux_sym_preproc_else_token1] = ACTIONS(6135), - [aux_sym_preproc_elif_token1] = ACTIONS(6135), + [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), @@ -624030,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), @@ -624039,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(4764), - [anon_sym_LBRACK] = ACTIONS(4764), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_RBRACK] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4764), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_in] = ACTIONS(4766), - [anon_sym_QMARK] = ACTIONS(4766), - [anon_sym_BANG] = ACTIONS(4766), - [anon_sym_PLUS_PLUS] = ACTIONS(4764), - [anon_sym_DASH_DASH] = ACTIONS(4764), - [anon_sym_PLUS] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4766), - [anon_sym_PERCENT] = ACTIONS(4764), - [anon_sym_CARET] = ACTIONS(4764), - [anon_sym_PIPE] = ACTIONS(4766), - [anon_sym_AMP] = ACTIONS(4766), - [anon_sym_LT_LT] = ACTIONS(4764), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_GT_GT_GT] = ACTIONS(4764), - [anon_sym_EQ_EQ] = ACTIONS(4764), - [anon_sym_BANG_EQ] = ACTIONS(4764), - [anon_sym_GT_EQ] = ACTIONS(4764), - [anon_sym_LT_EQ] = ACTIONS(4764), - [anon_sym_DOT] = ACTIONS(4766), - [anon_sym_EQ_GT] = ACTIONS(4764), - [anon_sym_switch] = ACTIONS(4764), - [anon_sym_when] = ACTIONS(4764), - [anon_sym_DOT_DOT] = ACTIONS(4764), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4764), - [anon_sym_PIPE_PIPE] = ACTIONS(4764), - [sym_op_coalescing] = ACTIONS(4764), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_on] = ACTIONS(4764), - [anon_sym_equals] = ACTIONS(4764), - [anon_sym_by] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4764), - [anon_sym_is] = ACTIONS(4764), - [anon_sym_DASH_GT] = ACTIONS(4764), - [anon_sym_with] = ACTIONS(4764), - [aux_sym_preproc_if_token3] = ACTIONS(4764), - [aux_sym_preproc_else_token1] = ACTIONS(4764), - [aux_sym_preproc_elif_token1] = ACTIONS(4764), + [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), @@ -624102,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), @@ -624111,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(6097), - [anon_sym_LBRACK] = ACTIONS(6097), - [anon_sym_COLON] = ACTIONS(6097), - [anon_sym_COMMA] = ACTIONS(6097), - [anon_sym_RBRACK] = ACTIONS(6097), - [anon_sym_LPAREN] = ACTIONS(6097), - [anon_sym_RPAREN] = ACTIONS(6097), - [anon_sym_RBRACE] = ACTIONS(6097), - [anon_sym_LT] = ACTIONS(6099), - [anon_sym_GT] = ACTIONS(6099), - [anon_sym_in] = ACTIONS(6099), - [anon_sym_QMARK] = ACTIONS(6099), - [anon_sym_BANG] = ACTIONS(6099), - [anon_sym_PLUS_PLUS] = ACTIONS(6097), - [anon_sym_DASH_DASH] = ACTIONS(6097), - [anon_sym_PLUS] = ACTIONS(6099), - [anon_sym_DASH] = ACTIONS(6099), - [anon_sym_STAR] = ACTIONS(6097), - [anon_sym_SLASH] = ACTIONS(6099), - [anon_sym_PERCENT] = ACTIONS(6097), - [anon_sym_CARET] = ACTIONS(6097), - [anon_sym_PIPE] = ACTIONS(6099), - [anon_sym_AMP] = ACTIONS(6099), - [anon_sym_LT_LT] = ACTIONS(6097), - [anon_sym_GT_GT] = ACTIONS(6099), - [anon_sym_GT_GT_GT] = ACTIONS(6097), - [anon_sym_EQ_EQ] = ACTIONS(6097), - [anon_sym_BANG_EQ] = ACTIONS(6097), - [anon_sym_GT_EQ] = ACTIONS(6097), - [anon_sym_LT_EQ] = ACTIONS(6097), - [anon_sym_DOT] = ACTIONS(6099), - [anon_sym_EQ_GT] = ACTIONS(6097), - [anon_sym_switch] = ACTIONS(6097), - [anon_sym_when] = ACTIONS(6097), - [anon_sym_DOT_DOT] = ACTIONS(6097), - [anon_sym_and] = ACTIONS(6097), - [anon_sym_or] = ACTIONS(6097), - [anon_sym_AMP_AMP] = ACTIONS(6097), - [anon_sym_PIPE_PIPE] = ACTIONS(6097), - [sym_op_coalescing] = ACTIONS(6097), - [anon_sym_into] = ACTIONS(6097), - [anon_sym_on] = ACTIONS(6097), - [anon_sym_equals] = ACTIONS(6097), - [anon_sym_by] = ACTIONS(6097), - [anon_sym_as] = ACTIONS(6097), - [anon_sym_is] = ACTIONS(6097), - [anon_sym_DASH_GT] = ACTIONS(6097), - [anon_sym_with] = ACTIONS(6097), - [aux_sym_preproc_if_token3] = ACTIONS(6097), - [aux_sym_preproc_else_token1] = ACTIONS(6097), - [aux_sym_preproc_elif_token1] = ACTIONS(6097), + [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), @@ -624174,6 +616230,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4797] = { + [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), @@ -624183,57 +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), - [anon_sym_SEMI] = ACTIONS(6129), - [anon_sym_LBRACK] = ACTIONS(6129), - [anon_sym_COLON] = ACTIONS(6129), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_RBRACK] = ACTIONS(6129), - [anon_sym_LPAREN] = ACTIONS(6129), - [anon_sym_RPAREN] = ACTIONS(6129), - [anon_sym_RBRACE] = ACTIONS(6129), - [anon_sym_LT] = ACTIONS(6131), - [anon_sym_GT] = ACTIONS(6131), - [anon_sym_in] = ACTIONS(6131), - [anon_sym_QMARK] = ACTIONS(6131), - [anon_sym_BANG] = ACTIONS(6131), - [anon_sym_PLUS_PLUS] = ACTIONS(6129), - [anon_sym_DASH_DASH] = ACTIONS(6129), - [anon_sym_PLUS] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6131), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6129), - [anon_sym_PIPE] = ACTIONS(6131), - [anon_sym_AMP] = ACTIONS(6131), - [anon_sym_LT_LT] = ACTIONS(6129), - [anon_sym_GT_GT] = ACTIONS(6131), - [anon_sym_GT_GT_GT] = ACTIONS(6129), - [anon_sym_EQ_EQ] = ACTIONS(6129), - [anon_sym_BANG_EQ] = ACTIONS(6129), - [anon_sym_GT_EQ] = ACTIONS(6129), - [anon_sym_LT_EQ] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6131), - [anon_sym_EQ_GT] = ACTIONS(6129), - [anon_sym_switch] = ACTIONS(6129), - [anon_sym_when] = ACTIONS(6129), - [anon_sym_DOT_DOT] = ACTIONS(6129), - [anon_sym_and] = ACTIONS(6129), - [anon_sym_or] = ACTIONS(6129), - [anon_sym_AMP_AMP] = ACTIONS(6129), - [anon_sym_PIPE_PIPE] = ACTIONS(6129), - [sym_op_coalescing] = ACTIONS(6129), - [anon_sym_into] = ACTIONS(6129), - [anon_sym_on] = ACTIONS(6129), - [anon_sym_equals] = ACTIONS(6129), - [anon_sym_by] = ACTIONS(6129), - [anon_sym_as] = ACTIONS(6129), - [anon_sym_is] = ACTIONS(6129), - [anon_sym_DASH_GT] = ACTIONS(6129), - [anon_sym_with] = ACTIONS(6129), - [aux_sym_preproc_if_token3] = ACTIONS(6129), - [aux_sym_preproc_else_token1] = ACTIONS(6129), - [aux_sym_preproc_elif_token1] = ACTIONS(6129), + [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), @@ -624246,6 +616300,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4798] = { + [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), @@ -624255,57 +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), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(7020), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_RBRACK] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(7020), - [anon_sym_RPAREN] = ACTIONS(5003), - [anon_sym_RBRACE] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(7023), - [anon_sym_GT] = ACTIONS(7023), - [anon_sym_in] = ACTIONS(5011), - [anon_sym_QMARK] = ACTIONS(7023), - [anon_sym_BANG] = ACTIONS(7023), - [anon_sym_PLUS_PLUS] = ACTIONS(7020), - [anon_sym_DASH_DASH] = ACTIONS(7020), - [anon_sym_PLUS] = ACTIONS(7023), - [anon_sym_DASH] = ACTIONS(7023), - [anon_sym_STAR] = ACTIONS(7020), - [anon_sym_SLASH] = ACTIONS(7023), - [anon_sym_PERCENT] = ACTIONS(7020), - [anon_sym_CARET] = ACTIONS(7020), - [anon_sym_PIPE] = ACTIONS(7023), - [anon_sym_AMP] = ACTIONS(7023), - [anon_sym_LT_LT] = ACTIONS(7020), - [anon_sym_GT_GT] = ACTIONS(7023), - [anon_sym_GT_GT_GT] = ACTIONS(7020), - [anon_sym_EQ_EQ] = ACTIONS(7020), - [anon_sym_BANG_EQ] = ACTIONS(7020), - [anon_sym_GT_EQ] = ACTIONS(7020), - [anon_sym_LT_EQ] = ACTIONS(7020), - [anon_sym_DOT] = ACTIONS(7023), - [anon_sym_EQ_GT] = ACTIONS(5003), - [anon_sym_switch] = ACTIONS(7020), - [anon_sym_when] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(7020), - [anon_sym_and] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(5003), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [sym_op_coalescing] = ACTIONS(7020), - [anon_sym_into] = ACTIONS(5003), - [anon_sym_on] = ACTIONS(5003), - [anon_sym_equals] = ACTIONS(5003), - [anon_sym_by] = ACTIONS(5003), - [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(5003), - [aux_sym_preproc_else_token1] = ACTIONS(5003), - [aux_sym_preproc_elif_token1] = ACTIONS(5003), + [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), @@ -624318,6 +616370,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4799] = { + [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), @@ -624327,57 +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), - [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), + [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), @@ -624390,6 +616440,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4800] = { + [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), @@ -624399,57 +616464,40 @@ 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), - [anon_sym_SEMI] = ACTIONS(6093), - [anon_sym_LBRACK] = ACTIONS(6093), - [anon_sym_COLON] = ACTIONS(6093), - [anon_sym_COMMA] = ACTIONS(6093), - [anon_sym_RBRACK] = ACTIONS(6093), - [anon_sym_LPAREN] = ACTIONS(6093), - [anon_sym_RPAREN] = ACTIONS(6093), - [anon_sym_RBRACE] = ACTIONS(6093), - [anon_sym_LT] = ACTIONS(6095), - [anon_sym_GT] = ACTIONS(6095), - [anon_sym_in] = ACTIONS(6095), - [anon_sym_QMARK] = ACTIONS(6095), - [anon_sym_BANG] = ACTIONS(6095), - [anon_sym_PLUS_PLUS] = ACTIONS(6093), - [anon_sym_DASH_DASH] = ACTIONS(6093), - [anon_sym_PLUS] = ACTIONS(6095), - [anon_sym_DASH] = ACTIONS(6095), - [anon_sym_STAR] = ACTIONS(6093), - [anon_sym_SLASH] = ACTIONS(6095), - [anon_sym_PERCENT] = ACTIONS(6093), - [anon_sym_CARET] = ACTIONS(6093), - [anon_sym_PIPE] = ACTIONS(6095), - [anon_sym_AMP] = ACTIONS(6095), - [anon_sym_LT_LT] = ACTIONS(6093), - [anon_sym_GT_GT] = ACTIONS(6095), - [anon_sym_GT_GT_GT] = ACTIONS(6093), - [anon_sym_EQ_EQ] = ACTIONS(6093), - [anon_sym_BANG_EQ] = ACTIONS(6093), - [anon_sym_GT_EQ] = ACTIONS(6093), - [anon_sym_LT_EQ] = ACTIONS(6093), - [anon_sym_DOT] = ACTIONS(6095), - [anon_sym_EQ_GT] = ACTIONS(6093), - [anon_sym_switch] = ACTIONS(6093), - [anon_sym_when] = ACTIONS(6093), - [anon_sym_DOT_DOT] = ACTIONS(6093), - [anon_sym_and] = ACTIONS(6093), - [anon_sym_or] = ACTIONS(6093), - [anon_sym_AMP_AMP] = ACTIONS(6093), - [anon_sym_PIPE_PIPE] = ACTIONS(6093), - [sym_op_coalescing] = ACTIONS(6093), - [anon_sym_into] = ACTIONS(6093), - [anon_sym_on] = ACTIONS(6093), - [anon_sym_equals] = ACTIONS(6093), - [anon_sym_by] = ACTIONS(6093), - [anon_sym_as] = ACTIONS(6093), - [anon_sym_is] = ACTIONS(6093), - [anon_sym_DASH_GT] = ACTIONS(6093), - [anon_sym_with] = ACTIONS(6093), - [aux_sym_preproc_if_token3] = ACTIONS(6093), - [aux_sym_preproc_else_token1] = ACTIONS(6093), - [aux_sym_preproc_elif_token1] = ACTIONS(6093), + [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), @@ -624462,26 +616510,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4801] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7895), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -624491,22 +616537,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(4801), [sym_preproc_define] = STATE(4801), [sym_preproc_undef] = STATE(4801), - [aux_sym_function_pointer_type_repeat1] = STATE(5133), + [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(6982), - [anon_sym_delegate] = ACTIONS(5889), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), + [anon_sym_GT] = ACTIONS(7456), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), + [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), @@ -624534,6 +616580,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4802] = { + [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), @@ -624543,57 +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(7030), - [anon_sym_extern] = ACTIONS(7030), - [anon_sym_alias] = ACTIONS(7030), - [anon_sym_global] = ACTIONS(7030), - [anon_sym_unsafe] = ACTIONS(7030), - [anon_sym_static] = ACTIONS(7030), - [anon_sym_LBRACK] = ACTIONS(7032), - [anon_sym_RBRACE] = ACTIONS(7032), - [anon_sym_public] = ACTIONS(7030), - [anon_sym_private] = ACTIONS(7030), - [anon_sym_readonly] = ACTIONS(7030), - [anon_sym_abstract] = ACTIONS(7030), - [anon_sym_async] = ACTIONS(7030), - [anon_sym_const] = ACTIONS(7030), - [anon_sym_file] = ACTIONS(7030), - [anon_sym_fixed] = ACTIONS(7030), - [anon_sym_internal] = ACTIONS(7030), - [anon_sym_new] = ACTIONS(7030), - [anon_sym_override] = ACTIONS(7030), - [anon_sym_partial] = ACTIONS(7030), - [anon_sym_protected] = ACTIONS(7030), - [anon_sym_required] = ACTIONS(7030), - [anon_sym_sealed] = ACTIONS(7030), - [anon_sym_virtual] = ACTIONS(7030), - [anon_sym_volatile] = ACTIONS(7030), - [anon_sym_where] = ACTIONS(7030), - [anon_sym_notnull] = ACTIONS(7030), - [anon_sym_unmanaged] = ACTIONS(7030), - [sym_accessor_get] = ACTIONS(7030), - [sym_accessor_set] = ACTIONS(7030), - [sym_accessor_add] = ACTIONS(7030), - [sym_accessor_remove] = ACTIONS(7030), - [sym_accessor_init] = ACTIONS(7030), - [anon_sym_scoped] = ACTIONS(7030), - [anon_sym_var] = ACTIONS(7030), - [anon_sym_yield] = ACTIONS(7030), - [anon_sym_when] = ACTIONS(7030), - [anon_sym_from] = ACTIONS(7030), - [anon_sym_into] = ACTIONS(7030), - [anon_sym_join] = ACTIONS(7030), - [anon_sym_on] = ACTIONS(7030), - [anon_sym_equals] = 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_by] = ACTIONS(7030), - [anon_sym_select] = ACTIONS(7030), - [sym_grit_metavariable] = ACTIONS(7032), - [aux_sym_preproc_if_token1] = ACTIONS(7032), + [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), @@ -624606,6 +616650,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4803] = { + [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), @@ -624615,57 +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), - [sym__identifier_token] = ACTIONS(7034), - [anon_sym_extern] = ACTIONS(7034), - [anon_sym_alias] = ACTIONS(7034), - [anon_sym_global] = ACTIONS(7034), - [anon_sym_unsafe] = ACTIONS(7034), - [anon_sym_static] = ACTIONS(7034), - [anon_sym_LBRACK] = ACTIONS(7036), - [anon_sym_RBRACE] = ACTIONS(7036), - [anon_sym_public] = ACTIONS(7034), - [anon_sym_private] = ACTIONS(7034), - [anon_sym_readonly] = ACTIONS(7034), - [anon_sym_abstract] = ACTIONS(7034), - [anon_sym_async] = ACTIONS(7034), - [anon_sym_const] = ACTIONS(7034), - [anon_sym_file] = ACTIONS(7034), - [anon_sym_fixed] = ACTIONS(7034), - [anon_sym_internal] = ACTIONS(7034), - [anon_sym_new] = ACTIONS(7034), - [anon_sym_override] = ACTIONS(7034), - [anon_sym_partial] = ACTIONS(7034), - [anon_sym_protected] = ACTIONS(7034), - [anon_sym_required] = ACTIONS(7034), - [anon_sym_sealed] = ACTIONS(7034), - [anon_sym_virtual] = ACTIONS(7034), - [anon_sym_volatile] = ACTIONS(7034), - [anon_sym_where] = ACTIONS(7034), - [anon_sym_notnull] = ACTIONS(7034), - [anon_sym_unmanaged] = ACTIONS(7034), - [sym_accessor_get] = ACTIONS(7034), - [sym_accessor_set] = ACTIONS(7034), - [sym_accessor_add] = ACTIONS(7034), - [sym_accessor_remove] = ACTIONS(7034), - [sym_accessor_init] = ACTIONS(7034), - [anon_sym_scoped] = ACTIONS(7034), - [anon_sym_var] = ACTIONS(7034), - [anon_sym_yield] = ACTIONS(7034), - [anon_sym_when] = ACTIONS(7034), - [anon_sym_from] = ACTIONS(7034), - [anon_sym_into] = ACTIONS(7034), - [anon_sym_join] = ACTIONS(7034), - [anon_sym_on] = ACTIONS(7034), - [anon_sym_equals] = ACTIONS(7034), - [anon_sym_let] = ACTIONS(7034), - [anon_sym_orderby] = ACTIONS(7034), - [anon_sym_ascending] = ACTIONS(7034), - [anon_sym_descending] = ACTIONS(7034), - [anon_sym_group] = ACTIONS(7034), - [anon_sym_by] = ACTIONS(7034), - [anon_sym_select] = ACTIONS(7034), - [sym_grit_metavariable] = ACTIONS(7036), - [aux_sym_preproc_if_token1] = ACTIONS(7036), + [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), @@ -624678,6 +616720,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4804] = { + [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), @@ -624687,57 +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), - [anon_sym_SEMI] = ACTIONS(5003), - [anon_sym_LBRACK] = ACTIONS(7038), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_RBRACK] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(7038), - [anon_sym_RPAREN] = ACTIONS(5003), - [anon_sym_RBRACE] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(7041), - [anon_sym_GT] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(5011), - [anon_sym_QMARK] = ACTIONS(7041), - [anon_sym_BANG] = ACTIONS(7041), - [anon_sym_PLUS_PLUS] = ACTIONS(7038), - [anon_sym_DASH_DASH] = ACTIONS(7038), - [anon_sym_PLUS] = ACTIONS(7041), - [anon_sym_DASH] = ACTIONS(7041), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_SLASH] = ACTIONS(7041), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_CARET] = ACTIONS(7038), - [anon_sym_PIPE] = ACTIONS(7041), - [anon_sym_AMP] = ACTIONS(7041), - [anon_sym_LT_LT] = ACTIONS(7038), - [anon_sym_GT_GT] = ACTIONS(7041), - [anon_sym_GT_GT_GT] = ACTIONS(7038), - [anon_sym_EQ_EQ] = ACTIONS(7038), - [anon_sym_BANG_EQ] = ACTIONS(7038), - [anon_sym_GT_EQ] = ACTIONS(7038), - [anon_sym_LT_EQ] = ACTIONS(7038), - [anon_sym_DOT] = ACTIONS(7041), - [anon_sym_EQ_GT] = ACTIONS(5003), - [anon_sym_switch] = ACTIONS(7038), - [anon_sym_when] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(7038), - [anon_sym_and] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(5003), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [sym_op_coalescing] = ACTIONS(7038), - [anon_sym_into] = ACTIONS(5003), - [anon_sym_on] = ACTIONS(5003), - [anon_sym_equals] = ACTIONS(5003), - [anon_sym_by] = ACTIONS(5003), - [anon_sym_as] = ACTIONS(7038), - [anon_sym_is] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(7038), - [anon_sym_with] = ACTIONS(7038), - [aux_sym_preproc_if_token3] = ACTIONS(5003), - [aux_sym_preproc_else_token1] = ACTIONS(5003), - [aux_sym_preproc_elif_token1] = ACTIONS(5003), + [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), @@ -624750,6 +616790,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4805] = { + [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), @@ -624759,57 +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), - [anon_sym_SEMI] = ACTIONS(6009), - [anon_sym_LBRACK] = ACTIONS(6009), - [anon_sym_COLON] = ACTIONS(6009), - [anon_sym_COMMA] = ACTIONS(6009), - [anon_sym_RBRACK] = ACTIONS(6009), - [anon_sym_LPAREN] = ACTIONS(6009), - [anon_sym_RPAREN] = ACTIONS(6009), - [anon_sym_RBRACE] = ACTIONS(6009), - [anon_sym_LT] = ACTIONS(6011), - [anon_sym_GT] = ACTIONS(6011), - [anon_sym_in] = ACTIONS(6011), - [anon_sym_QMARK] = ACTIONS(6011), - [anon_sym_BANG] = ACTIONS(6011), - [anon_sym_PLUS_PLUS] = ACTIONS(6009), - [anon_sym_DASH_DASH] = ACTIONS(6009), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_STAR] = ACTIONS(6009), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_PERCENT] = ACTIONS(6009), - [anon_sym_CARET] = ACTIONS(6009), - [anon_sym_PIPE] = ACTIONS(6011), - [anon_sym_AMP] = ACTIONS(6011), - [anon_sym_LT_LT] = ACTIONS(6009), - [anon_sym_GT_GT] = ACTIONS(6011), - [anon_sym_GT_GT_GT] = ACTIONS(6009), - [anon_sym_EQ_EQ] = ACTIONS(6009), - [anon_sym_BANG_EQ] = ACTIONS(6009), - [anon_sym_GT_EQ] = ACTIONS(6009), - [anon_sym_LT_EQ] = ACTIONS(6009), - [anon_sym_DOT] = ACTIONS(6011), - [anon_sym_EQ_GT] = ACTIONS(6009), - [anon_sym_switch] = ACTIONS(6009), - [anon_sym_when] = ACTIONS(6009), - [anon_sym_DOT_DOT] = ACTIONS(6009), - [anon_sym_and] = ACTIONS(6009), - [anon_sym_or] = ACTIONS(6009), - [anon_sym_AMP_AMP] = ACTIONS(6009), - [anon_sym_PIPE_PIPE] = ACTIONS(6009), - [sym_op_coalescing] = ACTIONS(6009), - [anon_sym_into] = ACTIONS(6009), - [anon_sym_on] = ACTIONS(6009), - [anon_sym_equals] = ACTIONS(6009), - [anon_sym_by] = ACTIONS(6009), - [anon_sym_as] = ACTIONS(6009), - [anon_sym_is] = ACTIONS(6009), - [anon_sym_DASH_GT] = ACTIONS(6009), - [anon_sym_with] = ACTIONS(6009), - [aux_sym_preproc_if_token3] = ACTIONS(6009), - [aux_sym_preproc_else_token1] = ACTIONS(6009), - [aux_sym_preproc_elif_token1] = ACTIONS(6009), + [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), @@ -624831,57 +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), - [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_BANG] = ACTIONS(6025), - [anon_sym_PLUS_PLUS] = ACTIONS(6023), - [anon_sym_DASH_DASH] = ACTIONS(6023), - [anon_sym_PLUS] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(6025), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6023), - [anon_sym_PIPE] = ACTIONS(6025), - [anon_sym_AMP] = ACTIONS(6025), - [anon_sym_LT_LT] = ACTIONS(6023), - [anon_sym_GT_GT] = ACTIONS(6025), - [anon_sym_GT_GT_GT] = ACTIONS(6023), - [anon_sym_EQ_EQ] = ACTIONS(6023), - [anon_sym_BANG_EQ] = ACTIONS(6023), - [anon_sym_GT_EQ] = ACTIONS(6023), - [anon_sym_LT_EQ] = ACTIONS(6023), - [anon_sym_DOT] = ACTIONS(6025), - [anon_sym_EQ_GT] = ACTIONS(6023), - [anon_sym_switch] = ACTIONS(6023), - [anon_sym_when] = ACTIONS(6023), - [anon_sym_DOT_DOT] = ACTIONS(6023), - [anon_sym_and] = ACTIONS(6023), - [anon_sym_or] = ACTIONS(6023), - [anon_sym_AMP_AMP] = ACTIONS(6023), - [anon_sym_PIPE_PIPE] = ACTIONS(6023), - [sym_op_coalescing] = 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), + [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), @@ -624894,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), @@ -624903,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(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_BANG] = ACTIONS(6029), - [anon_sym_PLUS_PLUS] = ACTIONS(6027), - [anon_sym_DASH_DASH] = ACTIONS(6027), - [anon_sym_PLUS] = ACTIONS(6029), - [anon_sym_DASH] = ACTIONS(6029), - [anon_sym_STAR] = ACTIONS(6027), - [anon_sym_SLASH] = ACTIONS(6029), - [anon_sym_PERCENT] = ACTIONS(6027), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_AMP] = ACTIONS(6029), - [anon_sym_LT_LT] = ACTIONS(6027), - [anon_sym_GT_GT] = ACTIONS(6029), - [anon_sym_GT_GT_GT] = ACTIONS(6027), - [anon_sym_EQ_EQ] = ACTIONS(6027), - [anon_sym_BANG_EQ] = ACTIONS(6027), - [anon_sym_GT_EQ] = ACTIONS(6027), - [anon_sym_LT_EQ] = ACTIONS(6027), - [anon_sym_DOT] = ACTIONS(6029), - [anon_sym_EQ_GT] = ACTIONS(6027), - [anon_sym_switch] = ACTIONS(6027), - [anon_sym_when] = ACTIONS(6027), - [anon_sym_DOT_DOT] = ACTIONS(6027), - [anon_sym_and] = ACTIONS(6027), - [anon_sym_or] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [sym_op_coalescing] = 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), + [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), @@ -624966,26 +617000,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4808] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(8047), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -624995,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(5133), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -625038,26 +617070,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4809] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(8045), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -625067,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(4808), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -625110,26 +617140,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4810] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(8045), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -625139,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(5133), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -625182,24 +617210,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4811] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6401), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -625209,39 +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), - [aux_sym__parameter_type_with_modifiers_repeat1] = STATE(6061), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5446), - [anon_sym_delegate] = ACTIONS(3709), - [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(5472), - [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), + [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), @@ -625254,6 +617280,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4812] = { + [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), @@ -625263,57 +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), - [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_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), @@ -625326,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), @@ -625335,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(6379), - [anon_sym_LBRACK] = ACTIONS(6379), - [anon_sym_COLON] = ACTIONS(6379), - [anon_sym_COMMA] = ACTIONS(6379), - [anon_sym_RBRACK] = ACTIONS(6379), - [anon_sym_LPAREN] = ACTIONS(6379), - [anon_sym_RPAREN] = ACTIONS(6379), - [anon_sym_RBRACE] = ACTIONS(6379), - [anon_sym_LT] = ACTIONS(6381), - [anon_sym_GT] = ACTIONS(6381), - [anon_sym_in] = ACTIONS(6381), - [anon_sym_QMARK] = ACTIONS(6381), - [anon_sym_BANG] = ACTIONS(6381), - [anon_sym_PLUS_PLUS] = ACTIONS(6379), - [anon_sym_DASH_DASH] = ACTIONS(6379), - [anon_sym_PLUS] = ACTIONS(6381), - [anon_sym_DASH] = ACTIONS(6381), - [anon_sym_STAR] = ACTIONS(6379), - [anon_sym_SLASH] = ACTIONS(6381), - [anon_sym_PERCENT] = ACTIONS(6379), - [anon_sym_CARET] = ACTIONS(6379), - [anon_sym_PIPE] = ACTIONS(6381), - [anon_sym_AMP] = ACTIONS(6381), - [anon_sym_LT_LT] = ACTIONS(6379), - [anon_sym_GT_GT] = ACTIONS(6381), - [anon_sym_GT_GT_GT] = ACTIONS(6379), - [anon_sym_EQ_EQ] = ACTIONS(6379), - [anon_sym_BANG_EQ] = ACTIONS(6379), - [anon_sym_GT_EQ] = ACTIONS(6379), - [anon_sym_LT_EQ] = ACTIONS(6379), - [anon_sym_DOT] = ACTIONS(6381), - [anon_sym_EQ_GT] = ACTIONS(6379), - [anon_sym_switch] = ACTIONS(6379), - [anon_sym_when] = ACTIONS(6379), - [anon_sym_DOT_DOT] = ACTIONS(6379), - [anon_sym_and] = ACTIONS(6379), - [anon_sym_or] = ACTIONS(6379), - [anon_sym_AMP_AMP] = ACTIONS(6379), - [anon_sym_PIPE_PIPE] = ACTIONS(6379), - [sym_op_coalescing] = ACTIONS(6379), - [anon_sym_into] = ACTIONS(6379), - [anon_sym_on] = ACTIONS(6379), - [anon_sym_equals] = ACTIONS(6379), - [anon_sym_by] = ACTIONS(6379), - [anon_sym_as] = ACTIONS(6379), - [anon_sym_is] = ACTIONS(6379), - [anon_sym_DASH_GT] = ACTIONS(6379), - [anon_sym_with] = ACTIONS(6379), - [aux_sym_preproc_if_token3] = ACTIONS(6379), - [aux_sym_preproc_else_token1] = ACTIONS(6379), - [aux_sym_preproc_elif_token1] = ACTIONS(6379), + [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), @@ -625398,6 +617420,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4814] = { + [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), @@ -625407,57 +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), - [anon_sym_SEMI] = ACTIONS(6375), - [anon_sym_LBRACK] = ACTIONS(6375), - [anon_sym_COLON] = ACTIONS(6375), - [anon_sym_COMMA] = ACTIONS(6375), - [anon_sym_RBRACK] = ACTIONS(6375), - [anon_sym_LPAREN] = ACTIONS(6375), - [anon_sym_RPAREN] = ACTIONS(6375), - [anon_sym_RBRACE] = ACTIONS(6375), - [anon_sym_LT] = ACTIONS(6377), - [anon_sym_GT] = ACTIONS(6377), - [anon_sym_in] = ACTIONS(6377), - [anon_sym_QMARK] = ACTIONS(6377), - [anon_sym_BANG] = ACTIONS(6377), - [anon_sym_PLUS_PLUS] = ACTIONS(6375), - [anon_sym_DASH_DASH] = ACTIONS(6375), - [anon_sym_PLUS] = ACTIONS(6377), - [anon_sym_DASH] = ACTIONS(6377), - [anon_sym_STAR] = ACTIONS(6375), - [anon_sym_SLASH] = ACTIONS(6377), - [anon_sym_PERCENT] = ACTIONS(6375), - [anon_sym_CARET] = ACTIONS(6375), - [anon_sym_PIPE] = ACTIONS(6377), - [anon_sym_AMP] = ACTIONS(6377), - [anon_sym_LT_LT] = ACTIONS(6375), - [anon_sym_GT_GT] = ACTIONS(6377), - [anon_sym_GT_GT_GT] = ACTIONS(6375), - [anon_sym_EQ_EQ] = ACTIONS(6375), - [anon_sym_BANG_EQ] = ACTIONS(6375), - [anon_sym_GT_EQ] = ACTIONS(6375), - [anon_sym_LT_EQ] = ACTIONS(6375), - [anon_sym_DOT] = ACTIONS(6377), - [anon_sym_EQ_GT] = ACTIONS(6375), - [anon_sym_switch] = ACTIONS(6375), - [anon_sym_when] = ACTIONS(6375), - [anon_sym_DOT_DOT] = ACTIONS(6375), - [anon_sym_and] = ACTIONS(6375), - [anon_sym_or] = ACTIONS(6375), - [anon_sym_AMP_AMP] = ACTIONS(6375), - [anon_sym_PIPE_PIPE] = ACTIONS(6375), - [sym_op_coalescing] = ACTIONS(6375), - [anon_sym_into] = ACTIONS(6375), - [anon_sym_on] = ACTIONS(6375), - [anon_sym_equals] = ACTIONS(6375), - [anon_sym_by] = ACTIONS(6375), - [anon_sym_as] = ACTIONS(6375), - [anon_sym_is] = ACTIONS(6375), - [anon_sym_DASH_GT] = ACTIONS(6375), - [anon_sym_with] = ACTIONS(6375), - [aux_sym_preproc_if_token3] = ACTIONS(6375), - [aux_sym_preproc_else_token1] = ACTIONS(6375), - [aux_sym_preproc_elif_token1] = ACTIONS(6375), + [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), @@ -625470,26 +617490,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4815] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(8038), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -625499,22 +617514,95 @@ 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(4810), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [4816] = { + [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), + [sym_preproc_pragma] = STATE(4816), + [sym_preproc_nullable] = STATE(4816), + [sym_preproc_error] = STATE(4816), + [sym_preproc_warning] = STATE(4816), + [sym_preproc_define] = STATE(4816), + [sym_preproc_undef] = STATE(4816), + [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(6982), - [anon_sym_delegate] = ACTIONS(5889), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), + [anon_sym_GT] = ACTIONS(7518), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), + [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), @@ -625541,79 +617629,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [4816] = { - [sym_preproc_region] = STATE(4816), - [sym_preproc_endregion] = STATE(4816), - [sym_preproc_line] = STATE(4816), - [sym_preproc_pragma] = STATE(4816), - [sym_preproc_nullable] = STATE(4816), - [sym_preproc_error] = STATE(4816), - [sym_preproc_warning] = STATE(4816), - [sym_preproc_define] = STATE(4816), - [sym_preproc_undef] = STATE(4816), - [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_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [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), @@ -625623,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(6117), - [anon_sym_LBRACK] = ACTIONS(6117), - [anon_sym_COLON] = ACTIONS(6117), - [anon_sym_COMMA] = ACTIONS(6117), - [anon_sym_RBRACK] = ACTIONS(6117), - [anon_sym_LPAREN] = ACTIONS(6117), - [anon_sym_RPAREN] = ACTIONS(6117), - [anon_sym_RBRACE] = ACTIONS(6117), - [anon_sym_LT] = ACTIONS(6119), - [anon_sym_GT] = ACTIONS(6119), - [anon_sym_in] = ACTIONS(6119), - [anon_sym_QMARK] = ACTIONS(6119), - [anon_sym_BANG] = ACTIONS(6119), - [anon_sym_PLUS_PLUS] = ACTIONS(6117), - [anon_sym_DASH_DASH] = ACTIONS(6117), - [anon_sym_PLUS] = ACTIONS(6119), - [anon_sym_DASH] = ACTIONS(6119), - [anon_sym_STAR] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(6119), - [anon_sym_PERCENT] = ACTIONS(6117), - [anon_sym_CARET] = ACTIONS(6117), - [anon_sym_PIPE] = ACTIONS(6119), - [anon_sym_AMP] = ACTIONS(6119), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6117), - [anon_sym_BANG_EQ] = ACTIONS(6117), - [anon_sym_GT_EQ] = ACTIONS(6117), - [anon_sym_LT_EQ] = ACTIONS(6117), - [anon_sym_DOT] = ACTIONS(6119), - [anon_sym_EQ_GT] = ACTIONS(6117), - [anon_sym_switch] = ACTIONS(6117), - [anon_sym_when] = ACTIONS(6117), - [anon_sym_DOT_DOT] = ACTIONS(6117), - [anon_sym_and] = ACTIONS(6117), - [anon_sym_or] = ACTIONS(6117), - [anon_sym_AMP_AMP] = ACTIONS(6117), - [anon_sym_PIPE_PIPE] = ACTIONS(6117), - [sym_op_coalescing] = ACTIONS(6117), - [anon_sym_into] = ACTIONS(6117), - [anon_sym_on] = ACTIONS(6117), - [anon_sym_equals] = ACTIONS(6117), - [anon_sym_by] = ACTIONS(6117), - [anon_sym_as] = ACTIONS(6117), - [anon_sym_is] = ACTIONS(6117), - [anon_sym_DASH_GT] = ACTIONS(6117), - [anon_sym_with] = ACTIONS(6117), - [aux_sym_preproc_if_token3] = ACTIONS(6117), - [aux_sym_preproc_else_token1] = ACTIONS(6117), - [aux_sym_preproc_elif_token1] = ACTIONS(6117), + [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), @@ -625686,6 +617700,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4818] = { + [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), @@ -625695,57 +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), - [anon_sym_SEMI] = ACTIONS(6273), - [anon_sym_LBRACK] = ACTIONS(6273), - [anon_sym_COLON] = ACTIONS(6273), - [anon_sym_COMMA] = ACTIONS(6273), - [anon_sym_RBRACK] = ACTIONS(6273), - [anon_sym_LPAREN] = ACTIONS(6273), - [anon_sym_RPAREN] = ACTIONS(6273), - [anon_sym_RBRACE] = ACTIONS(6273), - [anon_sym_LT] = ACTIONS(6275), - [anon_sym_GT] = ACTIONS(6275), - [anon_sym_in] = ACTIONS(6275), - [anon_sym_QMARK] = ACTIONS(6275), - [anon_sym_BANG] = ACTIONS(6275), - [anon_sym_PLUS_PLUS] = ACTIONS(6273), - [anon_sym_DASH_DASH] = ACTIONS(6273), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_STAR] = ACTIONS(6273), - [anon_sym_SLASH] = ACTIONS(6275), - [anon_sym_PERCENT] = ACTIONS(6273), - [anon_sym_CARET] = ACTIONS(6273), - [anon_sym_PIPE] = ACTIONS(6275), - [anon_sym_AMP] = ACTIONS(6275), - [anon_sym_LT_LT] = ACTIONS(6273), - [anon_sym_GT_GT] = ACTIONS(6275), - [anon_sym_GT_GT_GT] = ACTIONS(6273), - [anon_sym_EQ_EQ] = ACTIONS(6273), - [anon_sym_BANG_EQ] = ACTIONS(6273), - [anon_sym_GT_EQ] = ACTIONS(6273), - [anon_sym_LT_EQ] = ACTIONS(6273), - [anon_sym_DOT] = ACTIONS(6275), - [anon_sym_EQ_GT] = ACTIONS(6273), - [anon_sym_switch] = ACTIONS(6273), - [anon_sym_when] = ACTIONS(6273), - [anon_sym_DOT_DOT] = ACTIONS(6273), - [anon_sym_and] = ACTIONS(6273), - [anon_sym_or] = ACTIONS(6273), - [anon_sym_AMP_AMP] = ACTIONS(6273), - [anon_sym_PIPE_PIPE] = ACTIONS(6273), - [sym_op_coalescing] = ACTIONS(6273), - [anon_sym_into] = ACTIONS(6273), - [anon_sym_on] = ACTIONS(6273), - [anon_sym_equals] = ACTIONS(6273), - [anon_sym_by] = ACTIONS(6273), - [anon_sym_as] = ACTIONS(6273), - [anon_sym_is] = ACTIONS(6273), - [anon_sym_DASH_GT] = ACTIONS(6273), - [anon_sym_with] = ACTIONS(6273), - [aux_sym_preproc_if_token3] = ACTIONS(6273), - [aux_sym_preproc_else_token1] = ACTIONS(6273), - [aux_sym_preproc_elif_token1] = ACTIONS(6273), + [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), @@ -625758,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), @@ -625767,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(6031), - [anon_sym_LBRACK] = ACTIONS(6031), - [anon_sym_COLON] = ACTIONS(6031), - [anon_sym_COMMA] = ACTIONS(6031), - [anon_sym_RBRACK] = ACTIONS(6031), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_RBRACE] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6033), - [anon_sym_GT] = ACTIONS(6033), - [anon_sym_in] = ACTIONS(6033), - [anon_sym_QMARK] = ACTIONS(6033), - [anon_sym_BANG] = ACTIONS(6033), - [anon_sym_PLUS_PLUS] = ACTIONS(6031), - [anon_sym_DASH_DASH] = ACTIONS(6031), - [anon_sym_PLUS] = ACTIONS(6033), - [anon_sym_DASH] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6031), - [anon_sym_SLASH] = ACTIONS(6033), - [anon_sym_PERCENT] = ACTIONS(6031), - [anon_sym_CARET] = ACTIONS(6031), - [anon_sym_PIPE] = ACTIONS(6033), - [anon_sym_AMP] = ACTIONS(6033), - [anon_sym_LT_LT] = ACTIONS(6031), - [anon_sym_GT_GT] = ACTIONS(6033), - [anon_sym_GT_GT_GT] = ACTIONS(6031), - [anon_sym_EQ_EQ] = ACTIONS(6031), - [anon_sym_BANG_EQ] = ACTIONS(6031), - [anon_sym_GT_EQ] = ACTIONS(6031), - [anon_sym_LT_EQ] = ACTIONS(6031), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_EQ_GT] = ACTIONS(6031), - [anon_sym_switch] = ACTIONS(6031), - [anon_sym_when] = ACTIONS(6031), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(6031), - [anon_sym_or] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [sym_op_coalescing] = ACTIONS(6031), - [anon_sym_into] = ACTIONS(6031), - [anon_sym_on] = ACTIONS(6031), - [anon_sym_equals] = ACTIONS(6031), - [anon_sym_by] = ACTIONS(6031), - [anon_sym_as] = ACTIONS(6031), - [anon_sym_is] = ACTIONS(6031), - [anon_sym_DASH_GT] = ACTIONS(6031), - [anon_sym_with] = ACTIONS(6031), - [aux_sym_preproc_if_token3] = ACTIONS(6031), - [aux_sym_preproc_else_token1] = ACTIONS(6031), - [aux_sym_preproc_elif_token1] = ACTIONS(6031), + [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), @@ -625830,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), @@ -625839,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(6041), - [anon_sym_LBRACK] = ACTIONS(6041), - [anon_sym_COLON] = ACTIONS(6041), - [anon_sym_COMMA] = ACTIONS(6041), - [anon_sym_RBRACK] = ACTIONS(6041), - [anon_sym_LPAREN] = ACTIONS(6041), - [anon_sym_RPAREN] = ACTIONS(6041), - [anon_sym_RBRACE] = ACTIONS(6041), - [anon_sym_LT] = ACTIONS(6043), - [anon_sym_GT] = ACTIONS(6043), - [anon_sym_in] = ACTIONS(6043), - [anon_sym_QMARK] = ACTIONS(6043), - [anon_sym_BANG] = ACTIONS(6043), - [anon_sym_PLUS_PLUS] = ACTIONS(6041), - [anon_sym_DASH_DASH] = ACTIONS(6041), - [anon_sym_PLUS] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(6043), - [anon_sym_STAR] = ACTIONS(6041), - [anon_sym_SLASH] = ACTIONS(6043), - [anon_sym_PERCENT] = ACTIONS(6041), - [anon_sym_CARET] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - [anon_sym_LT_LT] = ACTIONS(6041), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_GT_GT_GT] = ACTIONS(6041), - [anon_sym_EQ_EQ] = ACTIONS(6041), - [anon_sym_BANG_EQ] = ACTIONS(6041), - [anon_sym_GT_EQ] = ACTIONS(6041), - [anon_sym_LT_EQ] = ACTIONS(6041), - [anon_sym_DOT] = ACTIONS(6043), - [anon_sym_EQ_GT] = ACTIONS(6041), - [anon_sym_switch] = ACTIONS(6041), - [anon_sym_when] = ACTIONS(6041), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_and] = ACTIONS(6041), - [anon_sym_or] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6041), - [anon_sym_PIPE_PIPE] = ACTIONS(6041), - [sym_op_coalescing] = ACTIONS(6041), - [anon_sym_into] = ACTIONS(6041), - [anon_sym_on] = ACTIONS(6041), - [anon_sym_equals] = ACTIONS(6041), - [anon_sym_by] = ACTIONS(6041), - [anon_sym_as] = ACTIONS(6041), - [anon_sym_is] = ACTIONS(6041), - [anon_sym_DASH_GT] = ACTIONS(6041), - [anon_sym_with] = ACTIONS(6041), - [aux_sym_preproc_if_token3] = ACTIONS(6041), - [aux_sym_preproc_else_token1] = ACTIONS(6041), - [aux_sym_preproc_elif_token1] = ACTIONS(6041), + [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), @@ -625902,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), @@ -625911,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(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_LBRACK] = ACTIONS(5765), + [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_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), @@ -625974,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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6214), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym__lambda_parameters] = STATE(7940), - [sym_identifier] = STATE(6058), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -626003,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(6141), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(4099), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(7044), - [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), + [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), @@ -626046,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), @@ -626055,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(6071), - [anon_sym_LBRACK] = ACTIONS(6071), - [anon_sym_COLON] = ACTIONS(6071), - [anon_sym_COMMA] = ACTIONS(6071), - [anon_sym_RBRACK] = ACTIONS(6071), - [anon_sym_LPAREN] = ACTIONS(6071), - [anon_sym_RPAREN] = ACTIONS(6071), - [anon_sym_RBRACE] = ACTIONS(6071), - [anon_sym_LT] = ACTIONS(6073), - [anon_sym_GT] = ACTIONS(6073), - [anon_sym_in] = ACTIONS(6073), - [anon_sym_QMARK] = ACTIONS(6073), - [anon_sym_BANG] = ACTIONS(6073), - [anon_sym_PLUS_PLUS] = ACTIONS(6071), - [anon_sym_DASH_DASH] = ACTIONS(6071), - [anon_sym_PLUS] = ACTIONS(6073), - [anon_sym_DASH] = ACTIONS(6073), - [anon_sym_STAR] = ACTIONS(6071), - [anon_sym_SLASH] = ACTIONS(6073), - [anon_sym_PERCENT] = ACTIONS(6071), - [anon_sym_CARET] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - [anon_sym_LT_LT] = ACTIONS(6071), - [anon_sym_GT_GT] = ACTIONS(6073), - [anon_sym_GT_GT_GT] = ACTIONS(6071), - [anon_sym_EQ_EQ] = ACTIONS(6071), - [anon_sym_BANG_EQ] = ACTIONS(6071), - [anon_sym_GT_EQ] = ACTIONS(6071), - [anon_sym_LT_EQ] = ACTIONS(6071), - [anon_sym_DOT] = ACTIONS(6073), - [anon_sym_EQ_GT] = ACTIONS(6071), - [anon_sym_switch] = ACTIONS(6071), - [anon_sym_when] = ACTIONS(6071), - [anon_sym_DOT_DOT] = ACTIONS(6071), - [anon_sym_and] = ACTIONS(6071), - [anon_sym_or] = ACTIONS(6071), - [anon_sym_AMP_AMP] = ACTIONS(6071), - [anon_sym_PIPE_PIPE] = ACTIONS(6071), - [sym_op_coalescing] = ACTIONS(6071), - [anon_sym_into] = ACTIONS(6071), - [anon_sym_on] = ACTIONS(6071), - [anon_sym_equals] = ACTIONS(6071), - [anon_sym_by] = ACTIONS(6071), - [anon_sym_as] = ACTIONS(6071), - [anon_sym_is] = ACTIONS(6071), - [anon_sym_DASH_GT] = ACTIONS(6071), - [anon_sym_with] = ACTIONS(6071), - [aux_sym_preproc_if_token3] = ACTIONS(6071), - [aux_sym_preproc_else_token1] = ACTIONS(6071), - [aux_sym_preproc_elif_token1] = ACTIONS(6071), + [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), @@ -626118,6 +618120,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4824] = { + [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), @@ -626127,57 +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), - [anon_sym_SEMI] = ACTIONS(6075), - [anon_sym_LBRACK] = ACTIONS(6075), - [anon_sym_COLON] = ACTIONS(6075), - [anon_sym_COMMA] = ACTIONS(6075), - [anon_sym_RBRACK] = ACTIONS(6075), - [anon_sym_LPAREN] = ACTIONS(6075), - [anon_sym_RPAREN] = ACTIONS(6075), - [anon_sym_RBRACE] = ACTIONS(6075), - [anon_sym_LT] = ACTIONS(6077), - [anon_sym_GT] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6077), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_BANG] = ACTIONS(6077), - [anon_sym_PLUS_PLUS] = ACTIONS(6075), - [anon_sym_DASH_DASH] = ACTIONS(6075), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6075), - [anon_sym_SLASH] = ACTIONS(6077), - [anon_sym_PERCENT] = ACTIONS(6075), - [anon_sym_CARET] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - [anon_sym_LT_LT] = ACTIONS(6075), - [anon_sym_GT_GT] = ACTIONS(6077), - [anon_sym_GT_GT_GT] = ACTIONS(6075), - [anon_sym_EQ_EQ] = ACTIONS(6075), - [anon_sym_BANG_EQ] = ACTIONS(6075), - [anon_sym_GT_EQ] = ACTIONS(6075), - [anon_sym_LT_EQ] = ACTIONS(6075), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_EQ_GT] = ACTIONS(6075), - [anon_sym_switch] = ACTIONS(6075), - [anon_sym_when] = ACTIONS(6075), - [anon_sym_DOT_DOT] = ACTIONS(6075), - [anon_sym_and] = ACTIONS(6075), - [anon_sym_or] = ACTIONS(6075), - [anon_sym_AMP_AMP] = ACTIONS(6075), - [anon_sym_PIPE_PIPE] = ACTIONS(6075), - [sym_op_coalescing] = ACTIONS(6075), - [anon_sym_into] = ACTIONS(6075), - [anon_sym_on] = ACTIONS(6075), - [anon_sym_equals] = ACTIONS(6075), - [anon_sym_by] = ACTIONS(6075), - [anon_sym_as] = ACTIONS(6075), - [anon_sym_is] = ACTIONS(6075), - [anon_sym_DASH_GT] = ACTIONS(6075), - [anon_sym_with] = ACTIONS(6075), - [aux_sym_preproc_if_token3] = ACTIONS(6075), - [aux_sym_preproc_else_token1] = ACTIONS(6075), - [aux_sym_preproc_elif_token1] = ACTIONS(6075), + [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), @@ -626190,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), @@ -626199,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(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_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), @@ -626262,6 +618260,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4826] = { + [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), @@ -626271,57 +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), - [anon_sym_SEMI] = ACTIONS(6113), - [anon_sym_LBRACK] = ACTIONS(6113), - [anon_sym_COLON] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_RBRACK] = ACTIONS(6113), - [anon_sym_LPAREN] = ACTIONS(6113), - [anon_sym_RPAREN] = ACTIONS(6113), - [anon_sym_RBRACE] = ACTIONS(6113), - [anon_sym_LT] = ACTIONS(6115), - [anon_sym_GT] = ACTIONS(6115), - [anon_sym_in] = ACTIONS(6115), - [anon_sym_QMARK] = ACTIONS(6115), - [anon_sym_BANG] = ACTIONS(6115), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS] = ACTIONS(6115), - [anon_sym_DASH] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(6113), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_PERCENT] = ACTIONS(6113), - [anon_sym_CARET] = ACTIONS(6113), - [anon_sym_PIPE] = ACTIONS(6115), - [anon_sym_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(6113), - [anon_sym_GT_GT] = ACTIONS(6115), - [anon_sym_GT_GT_GT] = ACTIONS(6113), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6113), - [anon_sym_DOT] = ACTIONS(6115), - [anon_sym_EQ_GT] = ACTIONS(6113), - [anon_sym_switch] = ACTIONS(6113), - [anon_sym_when] = ACTIONS(6113), - [anon_sym_DOT_DOT] = ACTIONS(6113), - [anon_sym_and] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6113), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [sym_op_coalescing] = ACTIONS(6113), - [anon_sym_into] = ACTIONS(6113), - [anon_sym_on] = ACTIONS(6113), - [anon_sym_equals] = ACTIONS(6113), - [anon_sym_by] = ACTIONS(6113), - [anon_sym_as] = ACTIONS(6113), - [anon_sym_is] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6113), - [anon_sym_with] = ACTIONS(6113), - [aux_sym_preproc_if_token3] = ACTIONS(6113), - [aux_sym_preproc_else_token1] = ACTIONS(6113), - [aux_sym_preproc_elif_token1] = ACTIONS(6113), + [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), @@ -626334,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), @@ -626343,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), - [sym__identifier_token] = ACTIONS(7046), - [anon_sym_extern] = ACTIONS(7046), - [anon_sym_alias] = ACTIONS(7046), - [anon_sym_global] = ACTIONS(7046), - [anon_sym_unsafe] = ACTIONS(7046), - [anon_sym_static] = ACTIONS(7046), - [anon_sym_LBRACK] = ACTIONS(7048), - [anon_sym_RBRACE] = ACTIONS(7048), - [anon_sym_public] = ACTIONS(7046), - [anon_sym_private] = ACTIONS(7046), - [anon_sym_readonly] = ACTIONS(7046), - [anon_sym_abstract] = ACTIONS(7046), - [anon_sym_async] = ACTIONS(7046), - [anon_sym_const] = ACTIONS(7046), - [anon_sym_file] = ACTIONS(7046), - [anon_sym_fixed] = ACTIONS(7046), - [anon_sym_internal] = ACTIONS(7046), - [anon_sym_new] = ACTIONS(7046), - [anon_sym_override] = ACTIONS(7046), - [anon_sym_partial] = ACTIONS(7046), - [anon_sym_protected] = ACTIONS(7046), - [anon_sym_required] = ACTIONS(7046), - [anon_sym_sealed] = ACTIONS(7046), - [anon_sym_virtual] = ACTIONS(7046), - [anon_sym_volatile] = ACTIONS(7046), - [anon_sym_where] = ACTIONS(7046), - [anon_sym_notnull] = ACTIONS(7046), - [anon_sym_unmanaged] = ACTIONS(7046), - [sym_accessor_get] = ACTIONS(7046), - [sym_accessor_set] = ACTIONS(7046), - [sym_accessor_add] = ACTIONS(7046), - [sym_accessor_remove] = ACTIONS(7046), - [sym_accessor_init] = ACTIONS(7046), - [anon_sym_scoped] = ACTIONS(7046), - [anon_sym_var] = ACTIONS(7046), - [anon_sym_yield] = ACTIONS(7046), - [anon_sym_when] = ACTIONS(7046), - [anon_sym_from] = ACTIONS(7046), - [anon_sym_into] = ACTIONS(7046), - [anon_sym_join] = ACTIONS(7046), - [anon_sym_on] = ACTIONS(7046), - [anon_sym_equals] = ACTIONS(7046), - [anon_sym_let] = ACTIONS(7046), - [anon_sym_orderby] = ACTIONS(7046), - [anon_sym_ascending] = ACTIONS(7046), - [anon_sym_descending] = ACTIONS(7046), - [anon_sym_group] = ACTIONS(7046), - [anon_sym_by] = ACTIONS(7046), - [anon_sym_select] = ACTIONS(7046), - [sym_grit_metavariable] = ACTIONS(7048), - [aux_sym_preproc_if_token1] = ACTIONS(7048), + [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), @@ -626406,26 +618400,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4828] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7732), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -626435,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(4738), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -626478,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), @@ -626487,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), - [sym__identifier_token] = ACTIONS(3422), - [anon_sym_extern] = ACTIONS(3422), - [anon_sym_alias] = ACTIONS(3422), - [anon_sym_global] = ACTIONS(3422), - [anon_sym_unsafe] = ACTIONS(3422), - [anon_sym_static] = ACTIONS(3422), - [anon_sym_LBRACK] = ACTIONS(3424), - [anon_sym_RBRACE] = ACTIONS(3424), - [anon_sym_public] = ACTIONS(3422), - [anon_sym_private] = ACTIONS(3422), - [anon_sym_readonly] = ACTIONS(3422), - [anon_sym_abstract] = ACTIONS(3422), - [anon_sym_async] = ACTIONS(3422), - [anon_sym_const] = ACTIONS(3422), - [anon_sym_file] = ACTIONS(3422), - [anon_sym_fixed] = ACTIONS(3422), - [anon_sym_internal] = ACTIONS(3422), - [anon_sym_new] = ACTIONS(3422), - [anon_sym_override] = ACTIONS(3422), - [anon_sym_partial] = ACTIONS(3422), - [anon_sym_protected] = ACTIONS(3422), - [anon_sym_required] = ACTIONS(3422), - [anon_sym_sealed] = ACTIONS(3422), - [anon_sym_virtual] = ACTIONS(3422), - [anon_sym_volatile] = ACTIONS(3422), - [anon_sym_where] = ACTIONS(3422), - [anon_sym_notnull] = ACTIONS(3422), - [anon_sym_unmanaged] = ACTIONS(3422), - [sym_accessor_get] = ACTIONS(3422), - [sym_accessor_set] = ACTIONS(3422), - [sym_accessor_add] = ACTIONS(3422), - [sym_accessor_remove] = ACTIONS(3422), - [sym_accessor_init] = ACTIONS(3422), - [anon_sym_scoped] = ACTIONS(3422), - [anon_sym_var] = ACTIONS(3422), - [anon_sym_yield] = ACTIONS(3422), - [anon_sym_when] = ACTIONS(3422), - [anon_sym_from] = ACTIONS(3422), - [anon_sym_into] = ACTIONS(3422), - [anon_sym_join] = ACTIONS(3422), - [anon_sym_on] = ACTIONS(3422), - [anon_sym_equals] = ACTIONS(3422), - [anon_sym_let] = ACTIONS(3422), - [anon_sym_orderby] = ACTIONS(3422), - [anon_sym_ascending] = ACTIONS(3422), - [anon_sym_descending] = ACTIONS(3422), - [anon_sym_group] = ACTIONS(3422), - [anon_sym_by] = ACTIONS(3422), - [anon_sym_select] = ACTIONS(3422), - [sym_grit_metavariable] = ACTIONS(3424), - [aux_sym_preproc_if_token1] = ACTIONS(3424), + [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), @@ -626550,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), @@ -626559,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), - [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_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), @@ -626622,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), @@ -626631,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(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_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), @@ -626694,7 +618680,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4832] = { - [sym_initializer_expression] = STATE(5001), + [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), @@ -626704,56 +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), - [anon_sym_SEMI] = ACTIONS(5974), - [anon_sym_LBRACK] = ACTIONS(5970), - [anon_sym_COLON] = ACTIONS(5974), - [anon_sym_COMMA] = ACTIONS(5974), - [anon_sym_RBRACK] = ACTIONS(5974), - [anon_sym_LPAREN] = ACTIONS(5974), - [anon_sym_RPAREN] = ACTIONS(5974), - [anon_sym_LBRACE] = ACTIONS(7050), - [anon_sym_RBRACE] = ACTIONS(5974), - [anon_sym_LT] = ACTIONS(5980), - [anon_sym_GT] = ACTIONS(5980), - [anon_sym_QMARK] = ACTIONS(7053), - [anon_sym_BANG] = ACTIONS(5980), - [anon_sym_PLUS_PLUS] = ACTIONS(5974), - [anon_sym_DASH_DASH] = ACTIONS(5974), - [anon_sym_PLUS] = ACTIONS(5980), - [anon_sym_DASH] = ACTIONS(5980), - [anon_sym_STAR] = ACTIONS(5974), - [anon_sym_SLASH] = ACTIONS(5980), - [anon_sym_PERCENT] = ACTIONS(5974), - [anon_sym_CARET] = ACTIONS(5974), - [anon_sym_PIPE] = ACTIONS(5980), - [anon_sym_AMP] = ACTIONS(5980), - [anon_sym_LT_LT] = ACTIONS(5974), - [anon_sym_GT_GT] = ACTIONS(5980), - [anon_sym_GT_GT_GT] = ACTIONS(5974), - [anon_sym_EQ_EQ] = ACTIONS(5974), - [anon_sym_BANG_EQ] = ACTIONS(5974), - [anon_sym_GT_EQ] = ACTIONS(5974), - [anon_sym_LT_EQ] = ACTIONS(5974), - [anon_sym_DOT] = ACTIONS(5980), - [anon_sym_EQ_GT] = ACTIONS(5974), - [anon_sym_switch] = ACTIONS(5974), - [anon_sym_when] = ACTIONS(5974), - [anon_sym_DOT_DOT] = ACTIONS(5974), - [anon_sym_and] = ACTIONS(5974), - [anon_sym_or] = ACTIONS(5974), - [anon_sym_AMP_AMP] = ACTIONS(5974), - [anon_sym_PIPE_PIPE] = ACTIONS(5974), - [sym_op_coalescing] = ACTIONS(5974), - [anon_sym_on] = ACTIONS(5974), - [anon_sym_equals] = ACTIONS(5974), - [anon_sym_by] = ACTIONS(5974), - [anon_sym_as] = ACTIONS(5974), - [anon_sym_is] = ACTIONS(5974), - [anon_sym_DASH_GT] = ACTIONS(5974), - [anon_sym_with] = ACTIONS(5974), - [aux_sym_preproc_if_token3] = ACTIONS(5974), - [aux_sym_preproc_else_token1] = ACTIONS(5974), - [aux_sym_preproc_elif_token1] = ACTIONS(5974), + [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), @@ -626766,26 +618750,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4833] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7718), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [sym_block] = STATE(2163), [sym_preproc_region] = STATE(4833), [sym_preproc_endregion] = STATE(4833), [sym_preproc_line] = STATE(4833), @@ -626795,138 +618760,16 @@ 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), - [aux_sym_function_pointer_type_repeat1] = STATE(4834), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), - }, - [4834] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7670), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(4834), - [sym_preproc_endregion] = STATE(4834), - [sym_preproc_line] = STATE(4834), - [sym_preproc_pragma] = STATE(4834), - [sym_preproc_nullable] = STATE(4834), - [sym_preproc_error] = STATE(4834), - [sym_preproc_warning] = STATE(4834), - [sym_preproc_define] = STATE(4834), - [sym_preproc_undef] = STATE(4834), - [aux_sym_function_pointer_type_repeat1] = STATE(5133), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), - }, - [4835] = { - [sym_preproc_region] = STATE(4835), - [sym_preproc_endregion] = STATE(4835), - [sym_preproc_line] = STATE(4835), - [sym_preproc_pragma] = STATE(4835), - [sym_preproc_nullable] = STATE(4835), - [sym_preproc_error] = STATE(4835), - [sym_preproc_warning] = STATE(4835), - [sym_preproc_define] = STATE(4835), - [sym_preproc_undef] = STATE(4835), [sym__identifier_token] = ACTIONS(3738), [anon_sym_extern] = ACTIONS(3738), [anon_sym_alias] = ACTIONS(3738), - [anon_sym_SEMI] = ACTIONS(3700), [anon_sym_global] = ACTIONS(3738), [anon_sym_unsafe] = ACTIONS(3738), [anon_sym_static] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(3700), + [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), @@ -626947,14 +618790,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(3700), [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), @@ -626969,7 +618807,147 @@ 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(5942), + [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), + }, + [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), + [sym_preproc_pragma] = STATE(4834), + [sym_preproc_nullable] = STATE(4834), + [sym_preproc_error] = STATE(4834), + [sym_preproc_warning] = STATE(4834), + [sym_preproc_define] = STATE(4834), + [sym_preproc_undef] = STATE(4834), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [4835] = { + [sym_preproc_region] = STATE(4835), + [sym_preproc_endregion] = STATE(4835), + [sym_preproc_line] = STATE(4835), + [sym_preproc_pragma] = STATE(4835), + [sym_preproc_nullable] = STATE(4835), + [sym_preproc_error] = STATE(4835), + [sym_preproc_warning] = STATE(4835), + [sym_preproc_define] = STATE(4835), + [sym_preproc_undef] = STATE(4835), + [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), @@ -626991,57 +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), - [anon_sym_SEMI] = ACTIONS(7057), - [anon_sym_LBRACK] = ACTIONS(7057), - [anon_sym_COLON] = ACTIONS(7057), - [anon_sym_COMMA] = ACTIONS(7057), - [anon_sym_RBRACK] = ACTIONS(7057), - [anon_sym_LPAREN] = ACTIONS(7057), - [anon_sym_RPAREN] = ACTIONS(7057), - [anon_sym_RBRACE] = ACTIONS(7057), - [anon_sym_LT] = ACTIONS(7059), - [anon_sym_GT] = ACTIONS(7059), - [anon_sym_in] = ACTIONS(7059), - [anon_sym_QMARK] = ACTIONS(7059), - [anon_sym_BANG] = ACTIONS(7059), - [anon_sym_PLUS_PLUS] = ACTIONS(7057), - [anon_sym_DASH_DASH] = ACTIONS(7057), - [anon_sym_PLUS] = ACTIONS(7059), - [anon_sym_DASH] = ACTIONS(7059), - [anon_sym_STAR] = ACTIONS(7057), - [anon_sym_SLASH] = ACTIONS(7059), - [anon_sym_PERCENT] = ACTIONS(7057), - [anon_sym_CARET] = ACTIONS(7057), - [anon_sym_PIPE] = ACTIONS(7059), - [anon_sym_AMP] = ACTIONS(7059), - [anon_sym_LT_LT] = ACTIONS(7057), - [anon_sym_GT_GT] = ACTIONS(7059), - [anon_sym_GT_GT_GT] = ACTIONS(7057), - [anon_sym_EQ_EQ] = ACTIONS(7057), - [anon_sym_BANG_EQ] = ACTIONS(7057), - [anon_sym_GT_EQ] = ACTIONS(7057), - [anon_sym_LT_EQ] = ACTIONS(7057), - [anon_sym_DOT] = ACTIONS(7059), - [anon_sym_EQ_GT] = ACTIONS(7057), - [anon_sym_switch] = ACTIONS(7057), - [anon_sym_when] = ACTIONS(7057), - [anon_sym_DOT_DOT] = ACTIONS(7057), - [anon_sym_and] = ACTIONS(7057), - [anon_sym_or] = ACTIONS(7057), - [anon_sym_AMP_AMP] = ACTIONS(7057), - [anon_sym_PIPE_PIPE] = ACTIONS(7057), - [sym_op_coalescing] = ACTIONS(7057), - [anon_sym_into] = ACTIONS(7057), - [anon_sym_on] = ACTIONS(7057), - [anon_sym_equals] = ACTIONS(7057), - [anon_sym_by] = ACTIONS(7057), - [anon_sym_as] = ACTIONS(7057), - [anon_sym_is] = ACTIONS(7057), - [anon_sym_DASH_GT] = ACTIONS(7057), - [anon_sym_with] = ACTIONS(7057), - [aux_sym_preproc_if_token3] = ACTIONS(7057), - [aux_sym_preproc_else_token1] = ACTIONS(7057), - [aux_sym_preproc_elif_token1] = ACTIONS(7057), + [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), @@ -627054,26 +619030,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4837] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7646), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(4837), [sym_preproc_endregion] = STATE(4837), [sym_preproc_line] = STATE(4837), @@ -627083,37 +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), - [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(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -627126,26 +619100,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4838] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7848), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -627155,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(5133), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -627198,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), @@ -627207,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(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_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), @@ -627279,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(4815), - [anon_sym_LBRACK] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_RBRACK] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [anon_sym_RBRACE] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_in] = ACTIONS(4817), - [anon_sym_QMARK] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PLUS_PLUS] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_CARET] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_LT_LT] = ACTIONS(4815), - [anon_sym_GT_GT] = ACTIONS(4817), - [anon_sym_GT_GT_GT] = ACTIONS(4815), - [anon_sym_EQ_EQ] = ACTIONS(4815), - [anon_sym_BANG_EQ] = ACTIONS(4815), - [anon_sym_GT_EQ] = ACTIONS(4815), - [anon_sym_LT_EQ] = ACTIONS(4815), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_EQ_GT] = ACTIONS(4815), - [anon_sym_switch] = ACTIONS(4815), - [anon_sym_when] = ACTIONS(4815), - [anon_sym_DOT_DOT] = ACTIONS(4815), - [anon_sym_and] = ACTIONS(4815), - [anon_sym_or] = ACTIONS(4815), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [sym_op_coalescing] = ACTIONS(4815), - [anon_sym_into] = ACTIONS(4815), - [anon_sym_on] = ACTIONS(4815), - [anon_sym_equals] = ACTIONS(4815), - [anon_sym_by] = ACTIONS(4815), - [anon_sym_as] = ACTIONS(4815), - [anon_sym_is] = ACTIONS(4815), - [anon_sym_DASH_GT] = ACTIONS(4815), - [anon_sym_with] = ACTIONS(4815), - [aux_sym_preproc_if_token3] = ACTIONS(4815), - [aux_sym_preproc_else_token1] = ACTIONS(4815), - [aux_sym_preproc_elif_token1] = ACTIONS(4815), + [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), @@ -627351,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(5964), - [anon_sym_LBRACK] = ACTIONS(5964), - [anon_sym_COLON] = ACTIONS(5964), - [anon_sym_COMMA] = ACTIONS(5964), - [anon_sym_RBRACK] = ACTIONS(5964), - [anon_sym_LPAREN] = ACTIONS(5964), - [anon_sym_RPAREN] = ACTIONS(5964), - [anon_sym_RBRACE] = ACTIONS(5964), - [anon_sym_LT] = ACTIONS(5966), - [anon_sym_GT] = ACTIONS(5966), - [anon_sym_in] = ACTIONS(5964), - [anon_sym_QMARK] = ACTIONS(5966), - [anon_sym_BANG] = ACTIONS(5966), - [anon_sym_PLUS_PLUS] = ACTIONS(5964), - [anon_sym_DASH_DASH] = ACTIONS(5964), - [anon_sym_PLUS] = ACTIONS(5966), - [anon_sym_DASH] = ACTIONS(5966), - [anon_sym_STAR] = ACTIONS(5964), - [anon_sym_SLASH] = ACTIONS(5966), - [anon_sym_PERCENT] = ACTIONS(5964), - [anon_sym_CARET] = ACTIONS(5964), - [anon_sym_PIPE] = ACTIONS(5966), - [anon_sym_AMP] = ACTIONS(5966), - [anon_sym_LT_LT] = ACTIONS(5964), - [anon_sym_GT_GT] = ACTIONS(5966), - [anon_sym_GT_GT_GT] = ACTIONS(5964), - [anon_sym_EQ_EQ] = ACTIONS(5964), - [anon_sym_BANG_EQ] = ACTIONS(5964), - [anon_sym_GT_EQ] = ACTIONS(5964), - [anon_sym_LT_EQ] = ACTIONS(5964), - [anon_sym_DOT] = ACTIONS(5966), - [anon_sym_EQ_GT] = ACTIONS(5964), - [anon_sym_switch] = ACTIONS(5964), - [anon_sym_when] = ACTIONS(5964), - [anon_sym_DOT_DOT] = ACTIONS(5964), - [anon_sym_and] = ACTIONS(5964), - [anon_sym_or] = ACTIONS(5964), - [anon_sym_AMP_AMP] = ACTIONS(5964), - [anon_sym_PIPE_PIPE] = ACTIONS(5964), - [sym_op_coalescing] = ACTIONS(5964), - [anon_sym_on] = ACTIONS(5964), - [anon_sym_equals] = ACTIONS(5964), - [anon_sym_by] = ACTIONS(5964), - [anon_sym_as] = ACTIONS(5964), - [anon_sym_is] = ACTIONS(5964), - [anon_sym_DASH_GT] = ACTIONS(5964), - [anon_sym_with] = ACTIONS(5964), - [aux_sym_raw_string_literal_token1] = ACTIONS(7061), - [aux_sym_preproc_if_token3] = ACTIONS(5964), - [aux_sym_preproc_else_token1] = ACTIONS(5964), - [aux_sym_preproc_elif_token1] = ACTIONS(5964), + [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), @@ -627423,57 +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), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_QMARK] = ACTIONS(7063), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4318), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [sym__identifier_token] = ACTIONS(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), @@ -627486,6 +619450,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4843] = { + [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), @@ -627495,57 +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), - [anon_sym_SEMI] = ACTIONS(5993), - [anon_sym_LBRACK] = ACTIONS(5993), - [anon_sym_COLON] = ACTIONS(5993), - [anon_sym_COMMA] = ACTIONS(5993), - [anon_sym_RBRACK] = ACTIONS(5993), - [anon_sym_LPAREN] = ACTIONS(5993), - [anon_sym_RPAREN] = ACTIONS(5993), - [anon_sym_RBRACE] = ACTIONS(5993), - [anon_sym_LT] = ACTIONS(5995), - [anon_sym_GT] = ACTIONS(5995), - [anon_sym_in] = ACTIONS(5995), - [anon_sym_QMARK] = ACTIONS(5995), - [anon_sym_BANG] = ACTIONS(5995), - [anon_sym_PLUS_PLUS] = ACTIONS(5993), - [anon_sym_DASH_DASH] = ACTIONS(5993), - [anon_sym_PLUS] = ACTIONS(5995), - [anon_sym_DASH] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5993), - [anon_sym_SLASH] = ACTIONS(5995), - [anon_sym_PERCENT] = ACTIONS(5993), - [anon_sym_CARET] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5995), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5993), - [anon_sym_GT_GT] = ACTIONS(5995), - [anon_sym_GT_GT_GT] = ACTIONS(5993), - [anon_sym_EQ_EQ] = ACTIONS(5993), - [anon_sym_BANG_EQ] = ACTIONS(5993), - [anon_sym_GT_EQ] = ACTIONS(5993), - [anon_sym_LT_EQ] = ACTIONS(5993), - [anon_sym_DOT] = ACTIONS(5995), - [anon_sym_EQ_GT] = ACTIONS(5993), - [anon_sym_switch] = ACTIONS(5993), - [anon_sym_when] = ACTIONS(5993), - [anon_sym_DOT_DOT] = ACTIONS(5993), - [anon_sym_and] = ACTIONS(5993), - [anon_sym_or] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [sym_op_coalescing] = ACTIONS(5993), - [anon_sym_into] = ACTIONS(5993), - [anon_sym_on] = ACTIONS(5993), - [anon_sym_equals] = ACTIONS(5993), - [anon_sym_by] = ACTIONS(5993), - [anon_sym_as] = ACTIONS(5993), - [anon_sym_is] = ACTIONS(5993), - [anon_sym_DASH_GT] = ACTIONS(5993), - [anon_sym_with] = ACTIONS(5993), - [aux_sym_preproc_if_token3] = ACTIONS(5993), - [aux_sym_preproc_else_token1] = ACTIONS(5993), - [aux_sym_preproc_elif_token1] = ACTIONS(5993), + [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), @@ -627558,26 +619520,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4844] = { - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6214), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym__lambda_parameters] = STATE(7940), - [sym_identifier] = STATE(6058), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -627587,37 +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), - [aux_sym__lambda_expression_init_repeat1] = STATE(6141), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(4099), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(7066), - [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), + [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), @@ -627630,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), @@ -627639,57 +619614,40 @@ 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_SEMI] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_RBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(5752), - [anon_sym_RBRACE] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_in] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5752), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5752), - [anon_sym_CARET] = ACTIONS(5752), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5752), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5752), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_EQ_GT] = ACTIONS(5752), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_when] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5752), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_on] = ACTIONS(5752), - [anon_sym_equals] = ACTIONS(5752), - [anon_sym_by] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), - [aux_sym_preproc_if_token3] = ACTIONS(5752), - [aux_sym_preproc_else_token1] = ACTIONS(5752), - [aux_sym_preproc_elif_token1] = ACTIONS(5752), + [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), @@ -627711,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(6057), - [anon_sym_LBRACK] = ACTIONS(6057), - [anon_sym_COLON] = ACTIONS(6057), - [anon_sym_COMMA] = ACTIONS(6057), - [anon_sym_RBRACK] = ACTIONS(6057), - [anon_sym_LPAREN] = ACTIONS(6057), - [anon_sym_RPAREN] = ACTIONS(6057), - [anon_sym_RBRACE] = ACTIONS(6057), - [anon_sym_LT] = ACTIONS(6059), - [anon_sym_GT] = ACTIONS(6059), - [anon_sym_in] = ACTIONS(6059), - [anon_sym_QMARK] = ACTIONS(6059), - [anon_sym_BANG] = ACTIONS(6059), - [anon_sym_PLUS_PLUS] = ACTIONS(6057), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_PLUS] = ACTIONS(6059), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_STAR] = ACTIONS(6057), - [anon_sym_SLASH] = ACTIONS(6059), - [anon_sym_PERCENT] = ACTIONS(6057), - [anon_sym_CARET] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6059), - [anon_sym_AMP] = ACTIONS(6059), - [anon_sym_LT_LT] = ACTIONS(6057), - [anon_sym_GT_GT] = ACTIONS(6059), - [anon_sym_GT_GT_GT] = ACTIONS(6057), - [anon_sym_EQ_EQ] = ACTIONS(6057), - [anon_sym_BANG_EQ] = ACTIONS(6057), - [anon_sym_GT_EQ] = ACTIONS(6057), - [anon_sym_LT_EQ] = ACTIONS(6057), - [anon_sym_DOT] = ACTIONS(6059), - [anon_sym_EQ_GT] = ACTIONS(6057), - [anon_sym_switch] = ACTIONS(6057), - [anon_sym_when] = ACTIONS(6057), - [anon_sym_DOT_DOT] = ACTIONS(6057), - [anon_sym_and] = ACTIONS(6057), - [anon_sym_or] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [sym_op_coalescing] = ACTIONS(6057), - [anon_sym_into] = ACTIONS(6057), - [anon_sym_on] = ACTIONS(6057), - [anon_sym_equals] = ACTIONS(6057), - [anon_sym_by] = ACTIONS(6057), - [anon_sym_as] = ACTIONS(6057), - [anon_sym_is] = ACTIONS(6057), - [anon_sym_DASH_GT] = ACTIONS(6057), - [anon_sym_with] = ACTIONS(6057), - [aux_sym_preproc_if_token3] = ACTIONS(6057), - [aux_sym_preproc_else_token1] = ACTIONS(6057), - [aux_sym_preproc_elif_token1] = ACTIONS(6057), + [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), @@ -627774,26 +619730,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4847] = { - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6214), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym__lambda_parameters] = STATE(7940), - [sym_identifier] = STATE(6058), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -627803,37 +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), - [aux_sym__lambda_expression_init_repeat1] = STATE(6141), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(4099), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(7068), - [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), + [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), @@ -627846,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), @@ -627855,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(6325), - [anon_sym_LBRACK] = ACTIONS(6325), - [anon_sym_COLON] = ACTIONS(6325), - [anon_sym_COMMA] = ACTIONS(6325), - [anon_sym_RBRACK] = ACTIONS(6325), - [anon_sym_LPAREN] = ACTIONS(6325), - [anon_sym_RPAREN] = ACTIONS(6325), - [anon_sym_RBRACE] = ACTIONS(6325), - [anon_sym_LT] = ACTIONS(6327), - [anon_sym_GT] = ACTIONS(6327), - [anon_sym_in] = ACTIONS(6327), - [anon_sym_QMARK] = ACTIONS(6327), - [anon_sym_BANG] = ACTIONS(6327), - [anon_sym_PLUS_PLUS] = ACTIONS(6325), - [anon_sym_DASH_DASH] = ACTIONS(6325), - [anon_sym_PLUS] = ACTIONS(6327), - [anon_sym_DASH] = ACTIONS(6327), - [anon_sym_STAR] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6327), - [anon_sym_PERCENT] = ACTIONS(6325), - [anon_sym_CARET] = ACTIONS(6325), - [anon_sym_PIPE] = ACTIONS(6327), - [anon_sym_AMP] = ACTIONS(6327), - [anon_sym_LT_LT] = ACTIONS(6325), - [anon_sym_GT_GT] = ACTIONS(6327), - [anon_sym_GT_GT_GT] = ACTIONS(6325), - [anon_sym_EQ_EQ] = ACTIONS(6325), - [anon_sym_BANG_EQ] = ACTIONS(6325), - [anon_sym_GT_EQ] = ACTIONS(6325), - [anon_sym_LT_EQ] = ACTIONS(6325), - [anon_sym_DOT] = ACTIONS(6327), - [anon_sym_EQ_GT] = ACTIONS(6325), - [anon_sym_switch] = ACTIONS(6325), - [anon_sym_when] = ACTIONS(6325), - [anon_sym_DOT_DOT] = ACTIONS(6325), - [anon_sym_and] = ACTIONS(6325), - [anon_sym_or] = ACTIONS(6325), - [anon_sym_AMP_AMP] = ACTIONS(6325), - [anon_sym_PIPE_PIPE] = ACTIONS(6325), - [sym_op_coalescing] = ACTIONS(6325), - [anon_sym_into] = ACTIONS(6325), - [anon_sym_on] = ACTIONS(6325), - [anon_sym_equals] = ACTIONS(6325), - [anon_sym_by] = ACTIONS(6325), - [anon_sym_as] = ACTIONS(6325), - [anon_sym_is] = ACTIONS(6325), - [anon_sym_DASH_GT] = ACTIONS(6325), - [anon_sym_with] = ACTIONS(6325), - [aux_sym_preproc_if_token3] = ACTIONS(6325), - [aux_sym_preproc_else_token1] = ACTIONS(6325), - [aux_sym_preproc_elif_token1] = ACTIONS(6325), + [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), @@ -627927,57 +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), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_QMARK] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4318), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [sym__identifier_token] = ACTIONS(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), @@ -627990,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), @@ -627999,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(4318), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_QMARK] = ACTIONS(7063), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4318), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [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), @@ -628062,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), @@ -628071,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(7070), - [anon_sym_LBRACK] = ACTIONS(7070), - [anon_sym_COLON] = ACTIONS(7070), - [anon_sym_COMMA] = ACTIONS(7070), - [anon_sym_RBRACK] = ACTIONS(7070), - [anon_sym_LPAREN] = ACTIONS(7070), - [anon_sym_RPAREN] = ACTIONS(7070), - [anon_sym_RBRACE] = ACTIONS(7070), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_GT] = ACTIONS(7072), - [anon_sym_in] = ACTIONS(7072), - [anon_sym_QMARK] = ACTIONS(7072), - [anon_sym_BANG] = ACTIONS(7072), - [anon_sym_PLUS_PLUS] = ACTIONS(7070), - [anon_sym_DASH_DASH] = ACTIONS(7070), - [anon_sym_PLUS] = ACTIONS(7072), - [anon_sym_DASH] = ACTIONS(7072), - [anon_sym_STAR] = ACTIONS(7070), - [anon_sym_SLASH] = ACTIONS(7072), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_CARET] = ACTIONS(7070), - [anon_sym_PIPE] = ACTIONS(7072), - [anon_sym_AMP] = ACTIONS(7072), - [anon_sym_LT_LT] = ACTIONS(7070), - [anon_sym_GT_GT] = ACTIONS(7072), - [anon_sym_GT_GT_GT] = ACTIONS(7070), - [anon_sym_EQ_EQ] = ACTIONS(7070), - [anon_sym_BANG_EQ] = ACTIONS(7070), - [anon_sym_GT_EQ] = ACTIONS(7070), - [anon_sym_LT_EQ] = ACTIONS(7070), - [anon_sym_DOT] = ACTIONS(7072), - [anon_sym_EQ_GT] = ACTIONS(7070), - [anon_sym_switch] = ACTIONS(7070), - [anon_sym_when] = ACTIONS(7070), - [anon_sym_DOT_DOT] = ACTIONS(7070), - [anon_sym_and] = ACTIONS(7070), - [anon_sym_or] = ACTIONS(7070), - [anon_sym_AMP_AMP] = ACTIONS(7070), - [anon_sym_PIPE_PIPE] = ACTIONS(7070), - [sym_op_coalescing] = ACTIONS(7070), - [anon_sym_into] = ACTIONS(7070), - [anon_sym_on] = ACTIONS(7070), - [anon_sym_equals] = ACTIONS(7070), - [anon_sym_by] = ACTIONS(7070), - [anon_sym_as] = ACTIONS(7070), - [anon_sym_is] = ACTIONS(7070), - [anon_sym_DASH_GT] = ACTIONS(7070), - [anon_sym_with] = ACTIONS(7070), - [aux_sym_preproc_if_token3] = ACTIONS(7070), - [aux_sym_preproc_else_token1] = ACTIONS(7070), - [aux_sym_preproc_elif_token1] = ACTIONS(7070), + [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), @@ -628134,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), @@ -628143,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(7074), - [anon_sym_LBRACK] = ACTIONS(7074), - [anon_sym_COLON] = ACTIONS(7074), - [anon_sym_COMMA] = ACTIONS(7074), - [anon_sym_RBRACK] = ACTIONS(7074), - [anon_sym_LPAREN] = ACTIONS(7074), - [anon_sym_RPAREN] = ACTIONS(7074), - [anon_sym_RBRACE] = ACTIONS(7074), - [anon_sym_LT] = ACTIONS(7076), - [anon_sym_GT] = ACTIONS(7076), - [anon_sym_in] = ACTIONS(7076), - [anon_sym_QMARK] = ACTIONS(7076), - [anon_sym_BANG] = ACTIONS(7076), - [anon_sym_PLUS_PLUS] = ACTIONS(7074), - [anon_sym_DASH_DASH] = ACTIONS(7074), - [anon_sym_PLUS] = ACTIONS(7076), - [anon_sym_DASH] = ACTIONS(7076), - [anon_sym_STAR] = ACTIONS(7074), - [anon_sym_SLASH] = ACTIONS(7076), - [anon_sym_PERCENT] = ACTIONS(7074), - [anon_sym_CARET] = ACTIONS(7074), - [anon_sym_PIPE] = ACTIONS(7076), - [anon_sym_AMP] = ACTIONS(7076), - [anon_sym_LT_LT] = ACTIONS(7074), - [anon_sym_GT_GT] = ACTIONS(7076), - [anon_sym_GT_GT_GT] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7074), - [anon_sym_BANG_EQ] = ACTIONS(7074), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_DOT] = ACTIONS(7076), - [anon_sym_EQ_GT] = ACTIONS(7074), - [anon_sym_switch] = ACTIONS(7074), - [anon_sym_when] = ACTIONS(7074), - [anon_sym_DOT_DOT] = ACTIONS(7074), - [anon_sym_and] = ACTIONS(7074), - [anon_sym_or] = ACTIONS(7074), - [anon_sym_AMP_AMP] = ACTIONS(7074), - [anon_sym_PIPE_PIPE] = ACTIONS(7074), - [sym_op_coalescing] = ACTIONS(7074), - [anon_sym_into] = ACTIONS(7074), - [anon_sym_on] = ACTIONS(7074), - [anon_sym_equals] = ACTIONS(7074), - [anon_sym_by] = ACTIONS(7074), - [anon_sym_as] = ACTIONS(7074), - [anon_sym_is] = ACTIONS(7074), - [anon_sym_DASH_GT] = ACTIONS(7074), - [anon_sym_with] = ACTIONS(7074), - [aux_sym_preproc_if_token3] = ACTIONS(7074), - [aux_sym_preproc_else_token1] = ACTIONS(7074), - [aux_sym_preproc_elif_token1] = ACTIONS(7074), + [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), @@ -628206,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), @@ -628215,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(7074), - [anon_sym_LBRACK] = ACTIONS(7074), - [anon_sym_COLON] = ACTIONS(7074), - [anon_sym_COMMA] = ACTIONS(7074), - [anon_sym_RBRACK] = ACTIONS(7074), - [anon_sym_LPAREN] = ACTIONS(7074), - [anon_sym_RPAREN] = ACTIONS(7074), - [anon_sym_RBRACE] = ACTIONS(7074), - [anon_sym_LT] = ACTIONS(7076), - [anon_sym_GT] = ACTIONS(7076), - [anon_sym_in] = ACTIONS(7076), - [anon_sym_QMARK] = ACTIONS(7076), - [anon_sym_BANG] = ACTIONS(7076), - [anon_sym_PLUS_PLUS] = ACTIONS(7074), - [anon_sym_DASH_DASH] = ACTIONS(7074), - [anon_sym_PLUS] = ACTIONS(7076), - [anon_sym_DASH] = ACTIONS(7076), - [anon_sym_STAR] = ACTIONS(7074), - [anon_sym_SLASH] = ACTIONS(7076), - [anon_sym_PERCENT] = ACTIONS(7074), - [anon_sym_CARET] = ACTIONS(7074), - [anon_sym_PIPE] = ACTIONS(7076), - [anon_sym_AMP] = ACTIONS(7076), - [anon_sym_LT_LT] = ACTIONS(7074), - [anon_sym_GT_GT] = ACTIONS(7076), - [anon_sym_GT_GT_GT] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7074), - [anon_sym_BANG_EQ] = ACTIONS(7074), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_DOT] = ACTIONS(7076), - [anon_sym_EQ_GT] = ACTIONS(7074), - [anon_sym_switch] = ACTIONS(7074), - [anon_sym_when] = ACTIONS(7074), - [anon_sym_DOT_DOT] = ACTIONS(7074), - [anon_sym_and] = ACTIONS(7074), - [anon_sym_or] = ACTIONS(7074), - [anon_sym_AMP_AMP] = ACTIONS(7074), - [anon_sym_PIPE_PIPE] = ACTIONS(7074), - [sym_op_coalescing] = ACTIONS(7074), - [anon_sym_into] = ACTIONS(7074), - [anon_sym_on] = ACTIONS(7074), - [anon_sym_equals] = ACTIONS(7074), - [anon_sym_by] = ACTIONS(7074), - [anon_sym_as] = ACTIONS(7074), - [anon_sym_is] = ACTIONS(7074), - [anon_sym_DASH_GT] = ACTIONS(7074), - [anon_sym_with] = ACTIONS(7074), - [aux_sym_preproc_if_token3] = ACTIONS(7074), - [aux_sym_preproc_else_token1] = ACTIONS(7074), - [aux_sym_preproc_elif_token1] = ACTIONS(7074), + [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), @@ -628278,7 +620220,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4854] = { - [sym_type_argument_list] = STATE(3621), + [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), @@ -628288,56 +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(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(5777), - [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(7078), - [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_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), @@ -628350,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), @@ -628359,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(6139), - [anon_sym_LBRACK] = ACTIONS(6139), - [anon_sym_COLON] = ACTIONS(6139), - [anon_sym_COMMA] = ACTIONS(6139), - [anon_sym_RBRACK] = ACTIONS(6139), - [anon_sym_LPAREN] = ACTIONS(6139), - [anon_sym_RPAREN] = ACTIONS(6139), - [anon_sym_RBRACE] = ACTIONS(6139), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_GT] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6141), - [anon_sym_QMARK] = ACTIONS(6141), - [anon_sym_BANG] = ACTIONS(6141), - [anon_sym_PLUS_PLUS] = ACTIONS(6139), - [anon_sym_DASH_DASH] = ACTIONS(6139), - [anon_sym_PLUS] = ACTIONS(6141), - [anon_sym_DASH] = ACTIONS(6141), - [anon_sym_STAR] = ACTIONS(6139), - [anon_sym_SLASH] = ACTIONS(6141), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_CARET] = ACTIONS(6139), - [anon_sym_PIPE] = ACTIONS(6141), - [anon_sym_AMP] = ACTIONS(6141), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(6139), - [anon_sym_BANG_EQ] = ACTIONS(6139), - [anon_sym_GT_EQ] = ACTIONS(6139), - [anon_sym_LT_EQ] = ACTIONS(6139), - [anon_sym_DOT] = ACTIONS(6141), - [anon_sym_EQ_GT] = ACTIONS(6139), - [anon_sym_switch] = ACTIONS(6139), - [anon_sym_when] = ACTIONS(6139), - [anon_sym_DOT_DOT] = ACTIONS(6139), - [anon_sym_and] = ACTIONS(6139), - [anon_sym_or] = ACTIONS(6139), - [anon_sym_AMP_AMP] = ACTIONS(6139), - [anon_sym_PIPE_PIPE] = ACTIONS(6139), - [sym_op_coalescing] = ACTIONS(6139), - [anon_sym_into] = ACTIONS(6139), - [anon_sym_on] = ACTIONS(6139), - [anon_sym_equals] = ACTIONS(6139), - [anon_sym_by] = ACTIONS(6139), - [anon_sym_as] = ACTIONS(6139), - [anon_sym_is] = ACTIONS(6139), - [anon_sym_DASH_GT] = ACTIONS(6139), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(6139), - [aux_sym_preproc_else_token1] = ACTIONS(6139), - [aux_sym_preproc_elif_token1] = ACTIONS(6139), + [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), @@ -628422,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), @@ -628431,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(6143), - [anon_sym_LBRACK] = ACTIONS(6143), - [anon_sym_COLON] = ACTIONS(6143), - [anon_sym_COMMA] = ACTIONS(6143), - [anon_sym_RBRACK] = ACTIONS(6143), - [anon_sym_LPAREN] = ACTIONS(6143), - [anon_sym_RPAREN] = ACTIONS(6143), - [anon_sym_RBRACE] = ACTIONS(6143), - [anon_sym_LT] = ACTIONS(6145), - [anon_sym_GT] = ACTIONS(6145), - [anon_sym_in] = ACTIONS(6145), - [anon_sym_QMARK] = ACTIONS(6145), - [anon_sym_BANG] = ACTIONS(6145), - [anon_sym_PLUS_PLUS] = ACTIONS(6143), - [anon_sym_DASH_DASH] = ACTIONS(6143), - [anon_sym_PLUS] = ACTIONS(6145), - [anon_sym_DASH] = ACTIONS(6145), - [anon_sym_STAR] = ACTIONS(6143), - [anon_sym_SLASH] = ACTIONS(6145), - [anon_sym_PERCENT] = ACTIONS(6143), - [anon_sym_CARET] = ACTIONS(6143), - [anon_sym_PIPE] = ACTIONS(6145), - [anon_sym_AMP] = ACTIONS(6145), - [anon_sym_LT_LT] = ACTIONS(6143), - [anon_sym_GT_GT] = ACTIONS(6145), - [anon_sym_GT_GT_GT] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6143), - [anon_sym_BANG_EQ] = ACTIONS(6143), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_DOT] = ACTIONS(6145), - [anon_sym_EQ_GT] = ACTIONS(6143), - [anon_sym_switch] = ACTIONS(6143), - [anon_sym_when] = ACTIONS(6143), - [anon_sym_DOT_DOT] = ACTIONS(6143), - [anon_sym_and] = ACTIONS(6143), - [anon_sym_or] = ACTIONS(6143), - [anon_sym_AMP_AMP] = ACTIONS(6143), - [anon_sym_PIPE_PIPE] = ACTIONS(6143), - [sym_op_coalescing] = ACTIONS(6143), - [anon_sym_into] = ACTIONS(6143), - [anon_sym_on] = ACTIONS(6143), - [anon_sym_equals] = ACTIONS(6143), - [anon_sym_by] = ACTIONS(6143), - [anon_sym_as] = ACTIONS(6143), - [anon_sym_is] = ACTIONS(6143), - [anon_sym_DASH_GT] = ACTIONS(6143), - [anon_sym_with] = ACTIONS(6143), - [aux_sym_preproc_if_token3] = ACTIONS(6143), - [aux_sym_preproc_else_token1] = ACTIONS(6143), - [aux_sym_preproc_elif_token1] = ACTIONS(6143), + [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), @@ -628494,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), @@ -628503,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(6045), - [anon_sym_LBRACK] = ACTIONS(6045), - [anon_sym_COLON] = ACTIONS(6045), - [anon_sym_COMMA] = ACTIONS(6045), - [anon_sym_RBRACK] = ACTIONS(6045), - [anon_sym_LPAREN] = ACTIONS(6045), - [anon_sym_RPAREN] = ACTIONS(6045), - [anon_sym_RBRACE] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6047), - [anon_sym_GT] = ACTIONS(6047), - [anon_sym_in] = ACTIONS(6047), - [anon_sym_QMARK] = ACTIONS(6047), - [anon_sym_BANG] = ACTIONS(6047), - [anon_sym_PLUS_PLUS] = ACTIONS(6045), - [anon_sym_DASH_DASH] = ACTIONS(6045), - [anon_sym_PLUS] = ACTIONS(6047), - [anon_sym_DASH] = ACTIONS(6047), - [anon_sym_STAR] = ACTIONS(6045), - [anon_sym_SLASH] = ACTIONS(6047), - [anon_sym_PERCENT] = ACTIONS(6045), - [anon_sym_CARET] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - [anon_sym_LT_LT] = ACTIONS(6045), - [anon_sym_GT_GT] = ACTIONS(6047), - [anon_sym_GT_GT_GT] = ACTIONS(6045), - [anon_sym_EQ_EQ] = ACTIONS(6045), - [anon_sym_BANG_EQ] = ACTIONS(6045), - [anon_sym_GT_EQ] = ACTIONS(6045), - [anon_sym_LT_EQ] = ACTIONS(6045), - [anon_sym_DOT] = ACTIONS(6047), - [anon_sym_EQ_GT] = ACTIONS(6045), - [anon_sym_switch] = ACTIONS(6045), - [anon_sym_when] = ACTIONS(6045), - [anon_sym_DOT_DOT] = ACTIONS(6045), - [anon_sym_and] = ACTIONS(6045), - [anon_sym_or] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [sym_op_coalescing] = ACTIONS(6045), - [anon_sym_into] = ACTIONS(6045), - [anon_sym_on] = ACTIONS(6045), - [anon_sym_equals] = ACTIONS(6045), - [anon_sym_by] = ACTIONS(6045), - [anon_sym_as] = ACTIONS(6045), - [anon_sym_is] = ACTIONS(6045), - [anon_sym_DASH_GT] = ACTIONS(6045), - [anon_sym_with] = ACTIONS(6045), - [aux_sym_preproc_if_token3] = ACTIONS(6045), - [aux_sym_preproc_else_token1] = ACTIONS(6045), - [aux_sym_preproc_elif_token1] = ACTIONS(6045), + [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), @@ -628566,26 +620500,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4858] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7839), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -628595,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(5133), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -628638,26 +620570,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4859] = { - [sym_type_parameter_constraint] = STATE(6879), - [sym_constructor_constraint] = STATE(6894), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6886), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -628667,37 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(7004), - [anon_sym_ref] = ACTIONS(7006), - [anon_sym_struct] = ACTIONS(7008), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_new] = ACTIONS(7010), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(7012), - [anon_sym_unmanaged] = ACTIONS(7012), - [anon_sym_scoped] = ACTIONS(7014), - [anon_sym_var] = ACTIONS(5500), - [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), + [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), @@ -628710,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), @@ -628719,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_EQ] = ACTIONS(7080), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_when] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [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_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -628782,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), @@ -628791,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(7084), - [anon_sym_LBRACK] = ACTIONS(7084), - [anon_sym_COLON] = ACTIONS(7084), - [anon_sym_COMMA] = ACTIONS(7084), - [anon_sym_RBRACK] = ACTIONS(7084), - [anon_sym_LPAREN] = ACTIONS(7084), - [anon_sym_RPAREN] = ACTIONS(7084), - [anon_sym_RBRACE] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7086), - [anon_sym_GT] = ACTIONS(7086), - [anon_sym_in] = ACTIONS(7086), - [anon_sym_QMARK] = ACTIONS(7086), - [anon_sym_BANG] = ACTIONS(7086), - [anon_sym_PLUS_PLUS] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7086), - [anon_sym_DASH] = ACTIONS(7086), - [anon_sym_STAR] = ACTIONS(7084), - [anon_sym_SLASH] = ACTIONS(7086), - [anon_sym_PERCENT] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7084), - [anon_sym_PIPE] = ACTIONS(7086), - [anon_sym_AMP] = ACTIONS(7086), - [anon_sym_LT_LT] = ACTIONS(7084), - [anon_sym_GT_GT] = ACTIONS(7086), - [anon_sym_GT_GT_GT] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7084), - [anon_sym_BANG_EQ] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7084), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_DOT] = ACTIONS(7086), - [anon_sym_EQ_GT] = ACTIONS(7084), - [anon_sym_switch] = ACTIONS(7084), - [anon_sym_when] = ACTIONS(7084), - [anon_sym_DOT_DOT] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_AMP_AMP] = ACTIONS(7084), - [anon_sym_PIPE_PIPE] = ACTIONS(7084), - [sym_op_coalescing] = ACTIONS(7084), - [anon_sym_into] = ACTIONS(7084), - [anon_sym_on] = ACTIONS(7084), - [anon_sym_equals] = ACTIONS(7084), - [anon_sym_by] = ACTIONS(7084), - [anon_sym_as] = ACTIONS(7084), - [anon_sym_is] = ACTIONS(7084), - [anon_sym_DASH_GT] = ACTIONS(7084), - [anon_sym_with] = ACTIONS(7084), - [aux_sym_preproc_if_token3] = ACTIONS(7084), - [aux_sym_preproc_else_token1] = ACTIONS(7084), - [aux_sym_preproc_elif_token1] = ACTIONS(7084), + [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), @@ -628854,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), @@ -628863,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(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), + [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), @@ -628926,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), @@ -628935,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(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(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), @@ -628998,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), @@ -629007,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(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_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), @@ -629070,26 +620990,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4865] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7941), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -629099,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(5133), + [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(6982), - [anon_sym_delegate] = ACTIONS(5889), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), + [anon_sym_GT] = ACTIONS(7572), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), + [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), @@ -629142,26 +621060,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4866] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7941), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -629171,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(4867), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -629214,26 +621130,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4867] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(8018), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -629243,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(5133), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -629286,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), @@ -629295,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(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_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), @@ -629358,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), @@ -629367,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(4318), - [anon_sym_LBRACK] = ACTIONS(4318), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4318), - [anon_sym_QMARK] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4318), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(4316), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4318), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [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), @@ -629430,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), @@ -629439,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(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(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), @@ -629502,6 +621410,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4871] = { + [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), @@ -629511,57 +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), - [sym__identifier_token] = ACTIONS(3379), - [anon_sym_extern] = ACTIONS(3379), - [anon_sym_alias] = ACTIONS(3379), - [anon_sym_global] = ACTIONS(3379), - [anon_sym_unsafe] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_public] = ACTIONS(3379), - [anon_sym_private] = ACTIONS(3379), - [anon_sym_readonly] = ACTIONS(3379), - [anon_sym_abstract] = ACTIONS(3379), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_file] = ACTIONS(3379), - [anon_sym_fixed] = ACTIONS(3379), - [anon_sym_internal] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3379), - [anon_sym_partial] = ACTIONS(3379), - [anon_sym_protected] = ACTIONS(3379), - [anon_sym_required] = ACTIONS(3379), - [anon_sym_sealed] = ACTIONS(3379), - [anon_sym_virtual] = ACTIONS(3379), - [anon_sym_volatile] = ACTIONS(3379), - [anon_sym_where] = ACTIONS(3379), - [anon_sym_notnull] = ACTIONS(3379), - [anon_sym_unmanaged] = ACTIONS(3379), - [sym_accessor_get] = ACTIONS(3379), - [sym_accessor_set] = ACTIONS(3379), - [sym_accessor_add] = ACTIONS(3379), - [sym_accessor_remove] = ACTIONS(3379), - [sym_accessor_init] = ACTIONS(3379), - [anon_sym_scoped] = ACTIONS(3379), - [anon_sym_var] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_when] = ACTIONS(3379), - [anon_sym_from] = ACTIONS(3379), - [anon_sym_into] = ACTIONS(3379), - [anon_sym_join] = ACTIONS(3379), - [anon_sym_on] = ACTIONS(3379), - [anon_sym_equals] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_orderby] = ACTIONS(3379), - [anon_sym_ascending] = ACTIONS(3379), - [anon_sym_descending] = ACTIONS(3379), - [anon_sym_group] = ACTIONS(3379), - [anon_sym_by] = ACTIONS(3379), - [anon_sym_select] = ACTIONS(3379), - [sym_grit_metavariable] = ACTIONS(3381), - [aux_sym_preproc_if_token1] = ACTIONS(3381), + [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), @@ -629574,26 +621480,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4872] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7834), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -629603,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(4858), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -629646,26 +621550,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4873] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7834), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -629675,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(5133), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -629718,26 +621620,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4874] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7831), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(4874), [sym_preproc_endregion] = STATE(4874), [sym_preproc_line] = STATE(4874), @@ -629747,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(4873), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -629790,6 +621690,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4875] = { + [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), @@ -629799,57 +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), - [anon_sym_SEMI] = ACTIONS(4326), - [anon_sym_LBRACK] = ACTIONS(4326), - [anon_sym_COLON] = ACTIONS(4326), - [anon_sym_COMMA] = ACTIONS(4326), - [anon_sym_RBRACK] = ACTIONS(4326), - [anon_sym_LPAREN] = ACTIONS(4326), - [anon_sym_RPAREN] = ACTIONS(4326), - [anon_sym_LBRACE] = ACTIONS(4326), - [anon_sym_RBRACE] = ACTIONS(4326), - [anon_sym_LT] = ACTIONS(4324), - [anon_sym_GT] = ACTIONS(4324), - [anon_sym_in] = ACTIONS(4326), - [anon_sym_QMARK] = ACTIONS(4324), - [anon_sym_BANG] = ACTIONS(4324), - [anon_sym_PLUS_PLUS] = ACTIONS(4326), - [anon_sym_DASH_DASH] = ACTIONS(4326), - [anon_sym_PLUS] = ACTIONS(4324), - [anon_sym_DASH] = ACTIONS(4324), - [anon_sym_STAR] = ACTIONS(4326), - [anon_sym_SLASH] = ACTIONS(4324), - [anon_sym_PERCENT] = ACTIONS(4326), - [anon_sym_CARET] = ACTIONS(4326), - [anon_sym_PIPE] = ACTIONS(4324), - [anon_sym_AMP] = ACTIONS(4324), - [anon_sym_LT_LT] = ACTIONS(4326), - [anon_sym_GT_GT] = ACTIONS(4324), - [anon_sym_GT_GT_GT] = ACTIONS(4326), - [anon_sym_EQ_EQ] = ACTIONS(4326), - [anon_sym_BANG_EQ] = ACTIONS(4326), - [anon_sym_GT_EQ] = ACTIONS(4326), - [anon_sym_LT_EQ] = ACTIONS(4326), - [anon_sym_DOT] = ACTIONS(4324), - [anon_sym_EQ_GT] = ACTIONS(4326), - [anon_sym_switch] = ACTIONS(4326), - [anon_sym_when] = ACTIONS(4326), - [anon_sym_DOT_DOT] = ACTIONS(4326), - [anon_sym_and] = ACTIONS(4326), - [anon_sym_or] = ACTIONS(4326), - [anon_sym_AMP_AMP] = ACTIONS(4326), - [anon_sym_PIPE_PIPE] = ACTIONS(4326), - [sym_op_coalescing] = ACTIONS(4326), - [anon_sym_on] = ACTIONS(4326), - [anon_sym_equals] = ACTIONS(4326), - [anon_sym_by] = ACTIONS(4326), - [anon_sym_as] = ACTIONS(4326), - [anon_sym_is] = ACTIONS(4326), - [anon_sym_DASH_GT] = ACTIONS(4326), - [anon_sym_with] = ACTIONS(4326), - [aux_sym_preproc_if_token3] = ACTIONS(4326), - [aux_sym_preproc_else_token1] = ACTIONS(4326), - [aux_sym_preproc_elif_token1] = ACTIONS(4326), + [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), @@ -629871,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(6253), - [anon_sym_LBRACK] = ACTIONS(6253), - [anon_sym_COLON] = ACTIONS(6253), - [anon_sym_COMMA] = ACTIONS(6253), - [anon_sym_RBRACK] = ACTIONS(6253), - [anon_sym_LPAREN] = ACTIONS(6253), - [anon_sym_RPAREN] = ACTIONS(6253), - [anon_sym_RBRACE] = ACTIONS(6253), - [anon_sym_LT] = ACTIONS(6255), - [anon_sym_GT] = ACTIONS(6255), - [anon_sym_in] = ACTIONS(6255), - [anon_sym_QMARK] = ACTIONS(6255), - [anon_sym_BANG] = ACTIONS(6255), - [anon_sym_PLUS_PLUS] = ACTIONS(6253), - [anon_sym_DASH_DASH] = ACTIONS(6253), - [anon_sym_PLUS] = ACTIONS(6255), - [anon_sym_DASH] = ACTIONS(6255), - [anon_sym_STAR] = ACTIONS(6253), - [anon_sym_SLASH] = ACTIONS(6255), - [anon_sym_PERCENT] = ACTIONS(6253), - [anon_sym_CARET] = ACTIONS(6253), - [anon_sym_PIPE] = ACTIONS(6255), - [anon_sym_AMP] = ACTIONS(6255), - [anon_sym_LT_LT] = ACTIONS(6253), - [anon_sym_GT_GT] = ACTIONS(6255), - [anon_sym_GT_GT_GT] = ACTIONS(6253), - [anon_sym_EQ_EQ] = ACTIONS(6253), - [anon_sym_BANG_EQ] = ACTIONS(6253), - [anon_sym_GT_EQ] = ACTIONS(6253), - [anon_sym_LT_EQ] = ACTIONS(6253), - [anon_sym_DOT] = ACTIONS(6255), - [anon_sym_EQ_GT] = ACTIONS(6253), - [anon_sym_switch] = ACTIONS(6253), - [anon_sym_when] = ACTIONS(6253), - [anon_sym_DOT_DOT] = ACTIONS(6253), - [anon_sym_and] = ACTIONS(6253), - [anon_sym_or] = ACTIONS(6253), - [anon_sym_AMP_AMP] = ACTIONS(6253), - [anon_sym_PIPE_PIPE] = ACTIONS(6253), - [sym_op_coalescing] = ACTIONS(6253), - [anon_sym_into] = ACTIONS(6253), - [anon_sym_on] = ACTIONS(6253), - [anon_sym_equals] = ACTIONS(6253), - [anon_sym_by] = ACTIONS(6253), - [anon_sym_as] = ACTIONS(6253), - [anon_sym_is] = ACTIONS(6253), - [anon_sym_DASH_GT] = ACTIONS(6253), - [anon_sym_with] = ACTIONS(6253), - [aux_sym_preproc_if_token3] = ACTIONS(6253), - [aux_sym_preproc_else_token1] = ACTIONS(6253), - [aux_sym_preproc_elif_token1] = ACTIONS(6253), + [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), @@ -629934,6 +621830,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4877] = { + [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), @@ -629943,57 +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), - [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_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), @@ -630006,15 +621900,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4878] = { - [sym__name] = STATE(5810), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_ref_type] = STATE(2386), - [sym__scoped_base_type] = STATE(2366), - [sym_identifier] = STATE(5575), - [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(4878), [sym_preproc_endregion] = STATE(4878), [sym_preproc_line] = STATE(4878), @@ -630024,48 +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), - [sym__identifier_token] = ACTIONS(3865), - [anon_sym_alias] = ACTIONS(3869), - [anon_sym_global] = ACTIONS(3869), - [anon_sym_EQ] = ACTIONS(3700), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(2969), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(2919), - [anon_sym_delegate] = ACTIONS(2919), - [anon_sym_readonly] = ACTIONS(2919), - [anon_sym_file] = ACTIONS(3869), - [anon_sym_LT] = ACTIONS(3700), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_out] = ACTIONS(2919), - [anon_sym_where] = ACTIONS(3869), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_notnull] = ACTIONS(3869), - [anon_sym_unmanaged] = ACTIONS(3869), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_this] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_scoped] = ACTIONS(3869), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [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_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), @@ -630078,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), @@ -630087,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), - [sym__identifier_token] = ACTIONS(7100), - [anon_sym_extern] = ACTIONS(7100), - [anon_sym_alias] = ACTIONS(7100), - [anon_sym_global] = ACTIONS(7100), - [anon_sym_unsafe] = ACTIONS(7100), - [anon_sym_static] = ACTIONS(7100), - [anon_sym_LBRACK] = ACTIONS(7102), - [anon_sym_RBRACE] = ACTIONS(7102), - [anon_sym_public] = ACTIONS(7100), - [anon_sym_private] = ACTIONS(7100), - [anon_sym_readonly] = ACTIONS(7100), - [anon_sym_abstract] = ACTIONS(7100), - [anon_sym_async] = ACTIONS(7100), - [anon_sym_const] = ACTIONS(7100), - [anon_sym_file] = ACTIONS(7100), - [anon_sym_fixed] = ACTIONS(7100), - [anon_sym_internal] = ACTIONS(7100), - [anon_sym_new] = ACTIONS(7100), - [anon_sym_override] = ACTIONS(7100), - [anon_sym_partial] = ACTIONS(7100), - [anon_sym_protected] = ACTIONS(7100), - [anon_sym_required] = ACTIONS(7100), - [anon_sym_sealed] = ACTIONS(7100), - [anon_sym_virtual] = ACTIONS(7100), - [anon_sym_volatile] = ACTIONS(7100), - [anon_sym_where] = ACTIONS(7100), - [anon_sym_notnull] = ACTIONS(7100), - [anon_sym_unmanaged] = ACTIONS(7100), - [sym_accessor_get] = ACTIONS(7100), - [sym_accessor_set] = ACTIONS(7100), - [sym_accessor_add] = ACTIONS(7100), - [sym_accessor_remove] = ACTIONS(7100), - [sym_accessor_init] = ACTIONS(7100), - [anon_sym_scoped] = ACTIONS(7100), - [anon_sym_var] = ACTIONS(7100), - [anon_sym_yield] = ACTIONS(7100), - [anon_sym_when] = ACTIONS(7100), - [anon_sym_from] = ACTIONS(7100), - [anon_sym_into] = ACTIONS(7100), - [anon_sym_join] = ACTIONS(7100), - [anon_sym_on] = ACTIONS(7100), - [anon_sym_equals] = 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_by] = ACTIONS(7100), - [anon_sym_select] = ACTIONS(7100), - [sym_grit_metavariable] = ACTIONS(7102), - [aux_sym_preproc_if_token1] = ACTIONS(7102), + [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), @@ -630150,26 +622040,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4880] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7947), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -630179,37 +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_function_pointer_type_repeat1] = STATE(4801), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -630222,26 +622110,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4881] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(8051), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -630251,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(5133), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -630294,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), @@ -630303,89 +622208,63 @@ 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_EQ] = ACTIONS(7104), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7106), - [anon_sym_DASH_EQ] = ACTIONS(7106), - [anon_sym_STAR_EQ] = ACTIONS(7106), - [anon_sym_SLASH_EQ] = ACTIONS(7106), - [anon_sym_PERCENT_EQ] = ACTIONS(7106), - [anon_sym_AMP_EQ] = ACTIONS(7106), - [anon_sym_CARET_EQ] = ACTIONS(7106), - [anon_sym_PIPE_EQ] = ACTIONS(7106), - [anon_sym_LT_LT_EQ] = ACTIONS(7106), - [anon_sym_GT_GT_EQ] = ACTIONS(7106), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7106), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7106), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(5752), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [4883] = { - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6214), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym__lambda_parameters] = STATE(7940), - [sym_identifier] = STATE(6058), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -630395,37 +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), - [aux_sym__lambda_expression_init_repeat1] = STATE(6141), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(4099), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(7108), - [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), + [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), @@ -630438,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), @@ -630447,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(4322), - [anon_sym_LBRACK] = ACTIONS(4322), - [anon_sym_COLON] = ACTIONS(4322), - [anon_sym_COMMA] = ACTIONS(4322), - [anon_sym_RBRACK] = ACTIONS(4322), - [anon_sym_LPAREN] = ACTIONS(4322), - [anon_sym_RPAREN] = ACTIONS(4322), - [anon_sym_LBRACE] = ACTIONS(4322), - [anon_sym_RBRACE] = ACTIONS(4322), - [anon_sym_LT] = ACTIONS(4320), - [anon_sym_GT] = ACTIONS(4320), - [anon_sym_in] = ACTIONS(4322), - [anon_sym_QMARK] = ACTIONS(4320), - [anon_sym_BANG] = ACTIONS(4320), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS] = ACTIONS(4320), - [anon_sym_DASH] = ACTIONS(4320), - [anon_sym_STAR] = ACTIONS(4322), - [anon_sym_SLASH] = ACTIONS(4320), - [anon_sym_PERCENT] = ACTIONS(4322), - [anon_sym_CARET] = ACTIONS(4322), - [anon_sym_PIPE] = ACTIONS(4320), - [anon_sym_AMP] = ACTIONS(4320), - [anon_sym_LT_LT] = ACTIONS(4322), - [anon_sym_GT_GT] = ACTIONS(4320), - [anon_sym_GT_GT_GT] = ACTIONS(4322), - [anon_sym_EQ_EQ] = ACTIONS(4322), - [anon_sym_BANG_EQ] = ACTIONS(4322), - [anon_sym_GT_EQ] = ACTIONS(4322), - [anon_sym_LT_EQ] = ACTIONS(4322), - [anon_sym_DOT] = ACTIONS(4320), - [anon_sym_EQ_GT] = ACTIONS(4322), - [anon_sym_switch] = ACTIONS(4322), - [anon_sym_when] = ACTIONS(4322), - [anon_sym_DOT_DOT] = ACTIONS(4322), - [anon_sym_and] = ACTIONS(4322), - [anon_sym_or] = ACTIONS(4322), - [anon_sym_AMP_AMP] = ACTIONS(4322), - [anon_sym_PIPE_PIPE] = ACTIONS(4322), - [sym_op_coalescing] = ACTIONS(4322), - [anon_sym_on] = ACTIONS(4322), - [anon_sym_equals] = ACTIONS(4322), - [anon_sym_by] = ACTIONS(4322), - [anon_sym_as] = ACTIONS(4322), - [anon_sym_is] = ACTIONS(4322), - [anon_sym_DASH_GT] = ACTIONS(4322), - [anon_sym_with] = ACTIONS(4322), - [aux_sym_preproc_if_token3] = ACTIONS(4322), - [aux_sym_preproc_else_token1] = ACTIONS(4322), - [aux_sym_preproc_elif_token1] = ACTIONS(4322), + [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), @@ -630510,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), @@ -630519,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(4338), - [anon_sym_LBRACK] = ACTIONS(4338), - [anon_sym_COLON] = ACTIONS(4338), - [anon_sym_COMMA] = ACTIONS(4338), - [anon_sym_RBRACK] = ACTIONS(4338), - [anon_sym_LPAREN] = ACTIONS(4338), - [anon_sym_RPAREN] = ACTIONS(4338), - [anon_sym_LBRACE] = ACTIONS(4338), - [anon_sym_RBRACE] = ACTIONS(4338), - [anon_sym_LT] = ACTIONS(4336), - [anon_sym_GT] = ACTIONS(4336), - [anon_sym_in] = ACTIONS(4338), - [anon_sym_QMARK] = ACTIONS(4336), - [anon_sym_BANG] = ACTIONS(4336), - [anon_sym_PLUS_PLUS] = ACTIONS(4338), - [anon_sym_DASH_DASH] = ACTIONS(4338), - [anon_sym_PLUS] = ACTIONS(4336), - [anon_sym_DASH] = ACTIONS(4336), - [anon_sym_STAR] = ACTIONS(4338), - [anon_sym_SLASH] = ACTIONS(4336), - [anon_sym_PERCENT] = ACTIONS(4338), - [anon_sym_CARET] = ACTIONS(4338), - [anon_sym_PIPE] = ACTIONS(4336), - [anon_sym_AMP] = ACTIONS(4336), - [anon_sym_LT_LT] = ACTIONS(4338), - [anon_sym_GT_GT] = ACTIONS(4336), - [anon_sym_GT_GT_GT] = ACTIONS(4338), - [anon_sym_EQ_EQ] = ACTIONS(4338), - [anon_sym_BANG_EQ] = ACTIONS(4338), - [anon_sym_GT_EQ] = ACTIONS(4338), - [anon_sym_LT_EQ] = ACTIONS(4338), - [anon_sym_DOT] = ACTIONS(4336), - [anon_sym_EQ_GT] = ACTIONS(4338), - [anon_sym_switch] = ACTIONS(4338), - [anon_sym_when] = ACTIONS(4338), - [anon_sym_DOT_DOT] = ACTIONS(4338), - [anon_sym_and] = ACTIONS(4338), - [anon_sym_or] = ACTIONS(4338), - [anon_sym_AMP_AMP] = ACTIONS(4338), - [anon_sym_PIPE_PIPE] = ACTIONS(4338), - [sym_op_coalescing] = ACTIONS(4338), - [anon_sym_on] = ACTIONS(4338), - [anon_sym_equals] = ACTIONS(4338), - [anon_sym_by] = ACTIONS(4338), - [anon_sym_as] = ACTIONS(4338), - [anon_sym_is] = ACTIONS(4338), - [anon_sym_DASH_GT] = ACTIONS(4338), - [anon_sym_with] = ACTIONS(4338), - [aux_sym_preproc_if_token3] = ACTIONS(4338), - [aux_sym_preproc_else_token1] = ACTIONS(4338), - [aux_sym_preproc_elif_token1] = ACTIONS(4338), + [anon_sym_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), @@ -630582,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), @@ -630591,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), - [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), + [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), @@ -630654,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), @@ -630663,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(7110), - [anon_sym_LBRACK] = ACTIONS(7110), - [anon_sym_COLON] = ACTIONS(7110), - [anon_sym_COMMA] = ACTIONS(7110), - [anon_sym_RBRACK] = ACTIONS(7110), - [anon_sym_LPAREN] = ACTIONS(7110), - [anon_sym_RPAREN] = ACTIONS(7110), - [anon_sym_RBRACE] = ACTIONS(7110), - [anon_sym_LT] = ACTIONS(7112), - [anon_sym_GT] = ACTIONS(7112), - [anon_sym_in] = ACTIONS(7112), - [anon_sym_QMARK] = ACTIONS(7112), - [anon_sym_BANG] = ACTIONS(7112), - [anon_sym_PLUS_PLUS] = ACTIONS(7110), - [anon_sym_DASH_DASH] = ACTIONS(7110), - [anon_sym_PLUS] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(7112), - [anon_sym_STAR] = ACTIONS(7110), - [anon_sym_SLASH] = ACTIONS(7112), - [anon_sym_PERCENT] = ACTIONS(7110), - [anon_sym_CARET] = ACTIONS(7110), - [anon_sym_PIPE] = ACTIONS(7112), - [anon_sym_AMP] = ACTIONS(7112), - [anon_sym_LT_LT] = ACTIONS(7110), - [anon_sym_GT_GT] = ACTIONS(7112), - [anon_sym_GT_GT_GT] = ACTIONS(7110), - [anon_sym_EQ_EQ] = ACTIONS(7110), - [anon_sym_BANG_EQ] = ACTIONS(7110), - [anon_sym_GT_EQ] = ACTIONS(7110), - [anon_sym_LT_EQ] = ACTIONS(7110), - [anon_sym_DOT] = ACTIONS(7112), - [anon_sym_EQ_GT] = ACTIONS(7110), - [anon_sym_switch] = ACTIONS(7110), - [anon_sym_when] = ACTIONS(7110), - [anon_sym_DOT_DOT] = ACTIONS(7110), - [anon_sym_and] = ACTIONS(7110), - [anon_sym_or] = ACTIONS(7110), - [anon_sym_AMP_AMP] = ACTIONS(7110), - [anon_sym_PIPE_PIPE] = ACTIONS(7110), - [sym_op_coalescing] = ACTIONS(7110), - [anon_sym_into] = ACTIONS(7110), - [anon_sym_on] = ACTIONS(7110), - [anon_sym_equals] = ACTIONS(7110), - [anon_sym_by] = ACTIONS(7110), - [anon_sym_as] = ACTIONS(7110), - [anon_sym_is] = ACTIONS(7110), - [anon_sym_DASH_GT] = ACTIONS(7110), - [anon_sym_with] = ACTIONS(7110), - [aux_sym_preproc_if_token3] = ACTIONS(7110), - [aux_sym_preproc_else_token1] = ACTIONS(7110), - [aux_sym_preproc_elif_token1] = ACTIONS(7110), + [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), @@ -630726,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), @@ -630735,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), - [anon_sym_SEMI] = ACTIONS(4355), - [anon_sym_LBRACK] = ACTIONS(4355), - [anon_sym_COLON] = ACTIONS(4355), - [anon_sym_COMMA] = ACTIONS(4355), - [anon_sym_RBRACK] = ACTIONS(4355), - [anon_sym_LPAREN] = ACTIONS(4355), - [anon_sym_RPAREN] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4355), - [anon_sym_RBRACE] = ACTIONS(4355), - [anon_sym_LT] = ACTIONS(4353), - [anon_sym_GT] = ACTIONS(4353), - [anon_sym_in] = ACTIONS(4355), - [anon_sym_QMARK] = ACTIONS(4353), - [anon_sym_BANG] = ACTIONS(4353), - [anon_sym_PLUS_PLUS] = ACTIONS(4355), - [anon_sym_DASH_DASH] = ACTIONS(4355), - [anon_sym_PLUS] = ACTIONS(4353), - [anon_sym_DASH] = ACTIONS(4353), - [anon_sym_STAR] = ACTIONS(4355), - [anon_sym_SLASH] = ACTIONS(4353), - [anon_sym_PERCENT] = ACTIONS(4355), - [anon_sym_CARET] = ACTIONS(4355), - [anon_sym_PIPE] = ACTIONS(4353), - [anon_sym_AMP] = ACTIONS(4353), - [anon_sym_LT_LT] = ACTIONS(4355), - [anon_sym_GT_GT] = ACTIONS(4353), - [anon_sym_GT_GT_GT] = ACTIONS(4355), - [anon_sym_EQ_EQ] = ACTIONS(4355), - [anon_sym_BANG_EQ] = ACTIONS(4355), - [anon_sym_GT_EQ] = ACTIONS(4355), - [anon_sym_LT_EQ] = ACTIONS(4355), - [anon_sym_DOT] = ACTIONS(4353), - [anon_sym_EQ_GT] = ACTIONS(4355), - [anon_sym_switch] = ACTIONS(4355), - [anon_sym_when] = ACTIONS(4355), - [anon_sym_DOT_DOT] = ACTIONS(4355), - [anon_sym_and] = ACTIONS(4355), - [anon_sym_or] = ACTIONS(4355), - [anon_sym_AMP_AMP] = ACTIONS(4355), - [anon_sym_PIPE_PIPE] = ACTIONS(4355), - [sym_op_coalescing] = ACTIONS(4355), - [anon_sym_on] = ACTIONS(4355), - [anon_sym_equals] = ACTIONS(4355), - [anon_sym_by] = ACTIONS(4355), - [anon_sym_as] = ACTIONS(4355), - [anon_sym_is] = ACTIONS(4355), - [anon_sym_DASH_GT] = ACTIONS(4355), - [anon_sym_with] = ACTIONS(4355), - [aux_sym_preproc_if_token3] = ACTIONS(4355), - [aux_sym_preproc_else_token1] = ACTIONS(4355), - [aux_sym_preproc_elif_token1] = ACTIONS(4355), + [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), @@ -630798,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), @@ -630807,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), - [anon_sym_SEMI] = ACTIONS(6187), - [anon_sym_LBRACK] = ACTIONS(6187), - [anon_sym_COLON] = ACTIONS(6187), - [anon_sym_COMMA] = ACTIONS(6187), - [anon_sym_RBRACK] = ACTIONS(6187), - [anon_sym_LPAREN] = ACTIONS(6187), - [anon_sym_RPAREN] = ACTIONS(6187), - [anon_sym_RBRACE] = ACTIONS(6187), - [anon_sym_LT] = ACTIONS(6189), - [anon_sym_GT] = ACTIONS(6189), - [anon_sym_in] = ACTIONS(6189), - [anon_sym_QMARK] = ACTIONS(6189), - [anon_sym_BANG] = ACTIONS(6189), - [anon_sym_PLUS_PLUS] = ACTIONS(6187), - [anon_sym_DASH_DASH] = ACTIONS(6187), - [anon_sym_PLUS] = ACTIONS(6189), - [anon_sym_DASH] = ACTIONS(6189), - [anon_sym_STAR] = ACTIONS(6187), - [anon_sym_SLASH] = ACTIONS(6189), - [anon_sym_PERCENT] = ACTIONS(6187), - [anon_sym_CARET] = ACTIONS(6187), - [anon_sym_PIPE] = ACTIONS(6189), - [anon_sym_AMP] = ACTIONS(6189), - [anon_sym_LT_LT] = ACTIONS(6187), - [anon_sym_GT_GT] = ACTIONS(6189), - [anon_sym_GT_GT_GT] = ACTIONS(6187), - [anon_sym_EQ_EQ] = ACTIONS(6187), - [anon_sym_BANG_EQ] = ACTIONS(6187), - [anon_sym_GT_EQ] = ACTIONS(6187), - [anon_sym_LT_EQ] = ACTIONS(6187), - [anon_sym_DOT] = ACTIONS(6189), - [anon_sym_EQ_GT] = ACTIONS(6187), - [anon_sym_switch] = ACTIONS(6187), - [anon_sym_when] = ACTIONS(6187), - [anon_sym_DOT_DOT] = ACTIONS(6187), - [anon_sym_and] = ACTIONS(6187), - [anon_sym_or] = ACTIONS(6187), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6187), - [sym_op_coalescing] = ACTIONS(6187), - [anon_sym_into] = ACTIONS(6187), - [anon_sym_on] = ACTIONS(6187), - [anon_sym_equals] = ACTIONS(6187), - [anon_sym_by] = ACTIONS(6187), - [anon_sym_as] = ACTIONS(6187), - [anon_sym_is] = ACTIONS(6187), - [anon_sym_DASH_GT] = ACTIONS(6187), - [anon_sym_with] = ACTIONS(6187), - [aux_sym_preproc_if_token3] = ACTIONS(6187), - [aux_sym_preproc_else_token1] = ACTIONS(6187), - [aux_sym_preproc_elif_token1] = ACTIONS(6187), + [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), @@ -630879,69 +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), - [anon_sym_SEMI] = ACTIONS(6195), - [anon_sym_LBRACK] = ACTIONS(6195), - [anon_sym_COLON] = ACTIONS(6195), - [anon_sym_COMMA] = ACTIONS(6195), - [anon_sym_RBRACK] = ACTIONS(6195), - [anon_sym_LPAREN] = ACTIONS(6195), - [anon_sym_RPAREN] = ACTIONS(6195), - [anon_sym_RBRACE] = ACTIONS(6195), - [anon_sym_LT] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6197), - [anon_sym_in] = ACTIONS(6197), - [anon_sym_QMARK] = ACTIONS(6197), - [anon_sym_BANG] = ACTIONS(6197), - [anon_sym_PLUS_PLUS] = ACTIONS(6195), - [anon_sym_DASH_DASH] = ACTIONS(6195), - [anon_sym_PLUS] = ACTIONS(6197), - [anon_sym_DASH] = ACTIONS(6197), - [anon_sym_STAR] = ACTIONS(6195), - [anon_sym_SLASH] = ACTIONS(6197), - [anon_sym_PERCENT] = ACTIONS(6195), - [anon_sym_CARET] = ACTIONS(6195), - [anon_sym_PIPE] = ACTIONS(6197), - [anon_sym_AMP] = ACTIONS(6197), - [anon_sym_LT_LT] = ACTIONS(6195), - [anon_sym_GT_GT] = ACTIONS(6197), - [anon_sym_GT_GT_GT] = ACTIONS(6195), - [anon_sym_EQ_EQ] = ACTIONS(6195), - [anon_sym_BANG_EQ] = ACTIONS(6195), - [anon_sym_GT_EQ] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6195), - [anon_sym_DOT] = ACTIONS(6197), - [anon_sym_EQ_GT] = ACTIONS(6195), - [anon_sym_switch] = ACTIONS(6195), - [anon_sym_when] = ACTIONS(6195), - [anon_sym_DOT_DOT] = ACTIONS(6195), - [anon_sym_and] = ACTIONS(6195), - [anon_sym_or] = ACTIONS(6195), - [anon_sym_AMP_AMP] = ACTIONS(6195), - [anon_sym_PIPE_PIPE] = ACTIONS(6195), - [sym_op_coalescing] = ACTIONS(6195), - [anon_sym_into] = ACTIONS(6195), - [anon_sym_on] = ACTIONS(6195), - [anon_sym_equals] = ACTIONS(6195), - [anon_sym_by] = ACTIONS(6195), - [anon_sym_as] = ACTIONS(6195), - [anon_sym_is] = ACTIONS(6195), - [anon_sym_DASH_GT] = ACTIONS(6195), - [anon_sym_with] = ACTIONS(6195), - [aux_sym_preproc_if_token3] = ACTIONS(6195), - [aux_sym_preproc_else_token1] = ACTIONS(6195), - [aux_sym_preproc_elif_token1] = ACTIONS(6195), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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_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), @@ -630951,57 +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), - [anon_sym_SEMI] = ACTIONS(4416), - [anon_sym_LBRACK] = ACTIONS(4416), - [anon_sym_COLON] = ACTIONS(4416), - [anon_sym_COMMA] = ACTIONS(4416), - [anon_sym_RBRACK] = ACTIONS(4416), - [anon_sym_LPAREN] = ACTIONS(4416), - [anon_sym_RPAREN] = ACTIONS(4416), - [anon_sym_LBRACE] = ACTIONS(4416), - [anon_sym_RBRACE] = ACTIONS(4416), - [anon_sym_LT] = ACTIONS(4414), - [anon_sym_GT] = ACTIONS(4414), - [anon_sym_in] = ACTIONS(4416), - [anon_sym_QMARK] = ACTIONS(4414), - [anon_sym_BANG] = ACTIONS(4414), - [anon_sym_PLUS_PLUS] = ACTIONS(4416), - [anon_sym_DASH_DASH] = ACTIONS(4416), - [anon_sym_PLUS] = ACTIONS(4414), - [anon_sym_DASH] = ACTIONS(4414), - [anon_sym_STAR] = ACTIONS(4416), - [anon_sym_SLASH] = ACTIONS(4414), - [anon_sym_PERCENT] = ACTIONS(4416), - [anon_sym_CARET] = ACTIONS(4416), - [anon_sym_PIPE] = ACTIONS(4414), - [anon_sym_AMP] = ACTIONS(4414), - [anon_sym_LT_LT] = ACTIONS(4416), - [anon_sym_GT_GT] = ACTIONS(4414), - [anon_sym_GT_GT_GT] = ACTIONS(4416), - [anon_sym_EQ_EQ] = ACTIONS(4416), - [anon_sym_BANG_EQ] = ACTIONS(4416), - [anon_sym_GT_EQ] = ACTIONS(4416), - [anon_sym_LT_EQ] = ACTIONS(4416), - [anon_sym_DOT] = ACTIONS(4414), - [anon_sym_EQ_GT] = ACTIONS(4416), - [anon_sym_switch] = ACTIONS(4416), - [anon_sym_when] = ACTIONS(4416), - [anon_sym_DOT_DOT] = ACTIONS(4416), - [anon_sym_and] = ACTIONS(4416), - [anon_sym_or] = ACTIONS(4416), - [anon_sym_AMP_AMP] = ACTIONS(4416), - [anon_sym_PIPE_PIPE] = ACTIONS(4416), - [sym_op_coalescing] = ACTIONS(4416), - [anon_sym_on] = ACTIONS(4416), - [anon_sym_equals] = ACTIONS(4416), - [anon_sym_by] = ACTIONS(4416), - [anon_sym_as] = ACTIONS(4416), - [anon_sym_is] = ACTIONS(4416), - [anon_sym_DASH_GT] = ACTIONS(4416), - [anon_sym_with] = ACTIONS(4416), - [aux_sym_preproc_if_token3] = ACTIONS(4416), - [aux_sym_preproc_else_token1] = ACTIONS(4416), - [aux_sym_preproc_elif_token1] = ACTIONS(4416), + [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), @@ -631023,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(4342), - [anon_sym_LBRACK] = ACTIONS(4342), - [anon_sym_COLON] = ACTIONS(4342), - [anon_sym_COMMA] = ACTIONS(4342), - [anon_sym_RBRACK] = ACTIONS(4342), - [anon_sym_LPAREN] = ACTIONS(4342), - [anon_sym_RPAREN] = ACTIONS(4342), - [anon_sym_LBRACE] = ACTIONS(4342), - [anon_sym_RBRACE] = ACTIONS(4342), - [anon_sym_LT] = ACTIONS(4340), - [anon_sym_GT] = ACTIONS(4340), - [anon_sym_in] = ACTIONS(4342), - [anon_sym_QMARK] = ACTIONS(4340), - [anon_sym_BANG] = ACTIONS(4340), - [anon_sym_PLUS_PLUS] = ACTIONS(4342), - [anon_sym_DASH_DASH] = ACTIONS(4342), - [anon_sym_PLUS] = ACTIONS(4340), - [anon_sym_DASH] = ACTIONS(4340), - [anon_sym_STAR] = ACTIONS(4342), - [anon_sym_SLASH] = ACTIONS(4340), - [anon_sym_PERCENT] = ACTIONS(4342), - [anon_sym_CARET] = ACTIONS(4342), - [anon_sym_PIPE] = ACTIONS(4340), - [anon_sym_AMP] = ACTIONS(4340), - [anon_sym_LT_LT] = ACTIONS(4342), - [anon_sym_GT_GT] = ACTIONS(4340), - [anon_sym_GT_GT_GT] = ACTIONS(4342), - [anon_sym_EQ_EQ] = ACTIONS(4342), - [anon_sym_BANG_EQ] = ACTIONS(4342), - [anon_sym_GT_EQ] = ACTIONS(4342), - [anon_sym_LT_EQ] = ACTIONS(4342), - [anon_sym_DOT] = ACTIONS(4340), - [anon_sym_EQ_GT] = ACTIONS(4342), - [anon_sym_switch] = ACTIONS(4342), - [anon_sym_when] = ACTIONS(4342), - [anon_sym_DOT_DOT] = ACTIONS(4342), - [anon_sym_and] = ACTIONS(4342), - [anon_sym_or] = ACTIONS(4342), - [anon_sym_AMP_AMP] = ACTIONS(4342), - [anon_sym_PIPE_PIPE] = ACTIONS(4342), - [sym_op_coalescing] = ACTIONS(4342), - [anon_sym_on] = ACTIONS(4342), - [anon_sym_equals] = ACTIONS(4342), - [anon_sym_by] = ACTIONS(4342), - [anon_sym_as] = ACTIONS(4342), - [anon_sym_is] = ACTIONS(4342), - [anon_sym_DASH_GT] = ACTIONS(4342), - [anon_sym_with] = ACTIONS(4342), - [aux_sym_preproc_if_token3] = ACTIONS(4342), - [aux_sym_preproc_else_token1] = ACTIONS(4342), - [aux_sym_preproc_elif_token1] = ACTIONS(4342), + [anon_sym_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), @@ -631086,26 +622950,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4893] = { - [sym_parameter_list] = STATE(7657), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6217), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym__lambda_parameters] = STATE(8120), - [sym_identifier] = STATE(6058), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -631115,37 +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), - [aux_sym__lambda_expression_init_repeat1] = STATE(6141), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(4099), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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), + [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), @@ -631158,6 +623020,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4894] = { + [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), @@ -631167,57 +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), - [anon_sym_SEMI] = ACTIONS(7114), - [anon_sym_LBRACK] = ACTIONS(7114), - [anon_sym_COLON] = ACTIONS(7114), - [anon_sym_COMMA] = ACTIONS(7114), - [anon_sym_RBRACK] = ACTIONS(7114), - [anon_sym_LPAREN] = ACTIONS(7114), - [anon_sym_RPAREN] = ACTIONS(7114), - [anon_sym_RBRACE] = ACTIONS(7114), - [anon_sym_LT] = ACTIONS(7116), - [anon_sym_GT] = ACTIONS(7116), - [anon_sym_in] = ACTIONS(7116), - [anon_sym_QMARK] = ACTIONS(7116), - [anon_sym_BANG] = ACTIONS(7116), - [anon_sym_PLUS_PLUS] = ACTIONS(7114), - [anon_sym_DASH_DASH] = ACTIONS(7114), - [anon_sym_PLUS] = ACTIONS(7116), - [anon_sym_DASH] = ACTIONS(7116), - [anon_sym_STAR] = ACTIONS(7114), - [anon_sym_SLASH] = ACTIONS(7116), - [anon_sym_PERCENT] = ACTIONS(7114), - [anon_sym_CARET] = ACTIONS(7114), - [anon_sym_PIPE] = ACTIONS(7116), - [anon_sym_AMP] = ACTIONS(7116), - [anon_sym_LT_LT] = ACTIONS(7114), - [anon_sym_GT_GT] = ACTIONS(7116), - [anon_sym_GT_GT_GT] = ACTIONS(7114), - [anon_sym_EQ_EQ] = ACTIONS(7114), - [anon_sym_BANG_EQ] = ACTIONS(7114), - [anon_sym_GT_EQ] = ACTIONS(7114), - [anon_sym_LT_EQ] = ACTIONS(7114), - [anon_sym_DOT] = ACTIONS(7116), - [anon_sym_EQ_GT] = ACTIONS(7114), - [anon_sym_switch] = ACTIONS(7114), - [anon_sym_when] = ACTIONS(7114), - [anon_sym_DOT_DOT] = ACTIONS(7114), - [anon_sym_and] = ACTIONS(7114), - [anon_sym_or] = ACTIONS(7114), - [anon_sym_AMP_AMP] = ACTIONS(7114), - [anon_sym_PIPE_PIPE] = ACTIONS(7114), - [sym_op_coalescing] = ACTIONS(7114), - [anon_sym_into] = ACTIONS(7114), - [anon_sym_on] = ACTIONS(7114), - [anon_sym_equals] = ACTIONS(7114), - [anon_sym_by] = ACTIONS(7114), - [anon_sym_as] = ACTIONS(7114), - [anon_sym_is] = ACTIONS(7114), - [anon_sym_DASH_GT] = ACTIONS(7114), - [anon_sym_with] = ACTIONS(7114), - [aux_sym_preproc_if_token3] = ACTIONS(7114), - [aux_sym_preproc_else_token1] = ACTIONS(7114), - [aux_sym_preproc_elif_token1] = ACTIONS(7114), + [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), @@ -631230,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), @@ -631239,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(4450), - [anon_sym_LBRACK] = ACTIONS(4450), - [anon_sym_COLON] = ACTIONS(4450), - [anon_sym_COMMA] = ACTIONS(4450), - [anon_sym_RBRACK] = ACTIONS(4450), - [anon_sym_LPAREN] = ACTIONS(4450), - [anon_sym_RPAREN] = ACTIONS(4450), - [anon_sym_LBRACE] = ACTIONS(4450), - [anon_sym_RBRACE] = ACTIONS(4450), - [anon_sym_LT] = ACTIONS(4448), - [anon_sym_GT] = ACTIONS(4448), - [anon_sym_in] = ACTIONS(4450), - [anon_sym_QMARK] = ACTIONS(4448), - [anon_sym_BANG] = ACTIONS(4448), - [anon_sym_PLUS_PLUS] = ACTIONS(4450), - [anon_sym_DASH_DASH] = ACTIONS(4450), - [anon_sym_PLUS] = ACTIONS(4448), - [anon_sym_DASH] = ACTIONS(4448), - [anon_sym_STAR] = ACTIONS(4450), - [anon_sym_SLASH] = ACTIONS(4448), - [anon_sym_PERCENT] = ACTIONS(4450), - [anon_sym_CARET] = ACTIONS(4450), - [anon_sym_PIPE] = ACTIONS(4448), - [anon_sym_AMP] = ACTIONS(4448), - [anon_sym_LT_LT] = ACTIONS(4450), - [anon_sym_GT_GT] = ACTIONS(4448), - [anon_sym_GT_GT_GT] = ACTIONS(4450), - [anon_sym_EQ_EQ] = ACTIONS(4450), - [anon_sym_BANG_EQ] = ACTIONS(4450), - [anon_sym_GT_EQ] = ACTIONS(4450), - [anon_sym_LT_EQ] = ACTIONS(4450), - [anon_sym_DOT] = ACTIONS(4448), - [anon_sym_EQ_GT] = ACTIONS(4450), - [anon_sym_switch] = ACTIONS(4450), - [anon_sym_when] = ACTIONS(4450), - [anon_sym_DOT_DOT] = ACTIONS(4450), - [anon_sym_and] = ACTIONS(4450), - [anon_sym_or] = ACTIONS(4450), - [anon_sym_AMP_AMP] = ACTIONS(4450), - [anon_sym_PIPE_PIPE] = ACTIONS(4450), - [sym_op_coalescing] = ACTIONS(4450), - [anon_sym_on] = ACTIONS(4450), - [anon_sym_equals] = ACTIONS(4450), - [anon_sym_by] = ACTIONS(4450), - [anon_sym_as] = ACTIONS(4450), - [anon_sym_is] = ACTIONS(4450), + [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(4450), - [aux_sym_preproc_if_token3] = ACTIONS(4450), - [aux_sym_preproc_else_token1] = ACTIONS(4450), - [aux_sym_preproc_elif_token1] = ACTIONS(4450), + [anon_sym_with] = ACTIONS(5803), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -631302,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), @@ -631311,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(7118), - [anon_sym_LBRACK] = ACTIONS(7118), - [anon_sym_COLON] = ACTIONS(7118), - [anon_sym_COMMA] = ACTIONS(7118), - [anon_sym_RBRACK] = ACTIONS(7118), - [anon_sym_LPAREN] = ACTIONS(7118), - [anon_sym_RPAREN] = ACTIONS(7118), - [anon_sym_RBRACE] = ACTIONS(7118), - [anon_sym_LT] = ACTIONS(7120), - [anon_sym_GT] = ACTIONS(7120), - [anon_sym_in] = ACTIONS(7120), - [anon_sym_QMARK] = ACTIONS(7120), - [anon_sym_BANG] = ACTIONS(7120), - [anon_sym_PLUS_PLUS] = ACTIONS(7118), - [anon_sym_DASH_DASH] = ACTIONS(7118), - [anon_sym_PLUS] = ACTIONS(7120), - [anon_sym_DASH] = ACTIONS(7120), - [anon_sym_STAR] = ACTIONS(7118), - [anon_sym_SLASH] = ACTIONS(7120), - [anon_sym_PERCENT] = ACTIONS(7118), - [anon_sym_CARET] = ACTIONS(7118), - [anon_sym_PIPE] = ACTIONS(7120), - [anon_sym_AMP] = ACTIONS(7120), - [anon_sym_LT_LT] = ACTIONS(7118), - [anon_sym_GT_GT] = ACTIONS(7120), - [anon_sym_GT_GT_GT] = ACTIONS(7118), - [anon_sym_EQ_EQ] = ACTIONS(7118), - [anon_sym_BANG_EQ] = ACTIONS(7118), - [anon_sym_GT_EQ] = ACTIONS(7118), - [anon_sym_LT_EQ] = ACTIONS(7118), - [anon_sym_DOT] = ACTIONS(7120), - [anon_sym_EQ_GT] = ACTIONS(7118), - [anon_sym_switch] = ACTIONS(7118), - [anon_sym_when] = ACTIONS(7118), - [anon_sym_DOT_DOT] = ACTIONS(7118), - [anon_sym_and] = ACTIONS(7118), - [anon_sym_or] = ACTIONS(7118), - [anon_sym_AMP_AMP] = ACTIONS(7118), - [anon_sym_PIPE_PIPE] = ACTIONS(7118), - [sym_op_coalescing] = ACTIONS(7118), - [anon_sym_into] = ACTIONS(7118), - [anon_sym_on] = ACTIONS(7118), - [anon_sym_equals] = ACTIONS(7118), - [anon_sym_by] = ACTIONS(7118), - [anon_sym_as] = ACTIONS(7118), - [anon_sym_is] = ACTIONS(7118), - [anon_sym_DASH_GT] = ACTIONS(7118), - [anon_sym_with] = ACTIONS(7118), - [aux_sym_preproc_if_token3] = ACTIONS(7118), - [aux_sym_preproc_else_token1] = ACTIONS(7118), - [aux_sym_preproc_elif_token1] = ACTIONS(7118), + [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), @@ -631374,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), @@ -631383,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(7118), - [anon_sym_LBRACK] = ACTIONS(7118), - [anon_sym_COLON] = ACTIONS(7118), - [anon_sym_COMMA] = ACTIONS(7118), - [anon_sym_RBRACK] = ACTIONS(7118), - [anon_sym_LPAREN] = ACTIONS(7118), - [anon_sym_RPAREN] = ACTIONS(7118), - [anon_sym_RBRACE] = ACTIONS(7118), - [anon_sym_LT] = ACTIONS(7120), - [anon_sym_GT] = ACTIONS(7120), - [anon_sym_in] = ACTIONS(7120), - [anon_sym_QMARK] = ACTIONS(7120), - [anon_sym_BANG] = ACTIONS(7120), - [anon_sym_PLUS_PLUS] = ACTIONS(7118), - [anon_sym_DASH_DASH] = ACTIONS(7118), - [anon_sym_PLUS] = ACTIONS(7120), - [anon_sym_DASH] = ACTIONS(7120), - [anon_sym_STAR] = ACTIONS(7118), - [anon_sym_SLASH] = ACTIONS(7120), - [anon_sym_PERCENT] = ACTIONS(7118), - [anon_sym_CARET] = ACTIONS(7118), - [anon_sym_PIPE] = ACTIONS(7120), - [anon_sym_AMP] = ACTIONS(7120), - [anon_sym_LT_LT] = ACTIONS(7118), - [anon_sym_GT_GT] = ACTIONS(7120), - [anon_sym_GT_GT_GT] = ACTIONS(7118), - [anon_sym_EQ_EQ] = ACTIONS(7118), - [anon_sym_BANG_EQ] = ACTIONS(7118), - [anon_sym_GT_EQ] = ACTIONS(7118), - [anon_sym_LT_EQ] = ACTIONS(7118), - [anon_sym_DOT] = ACTIONS(7120), - [anon_sym_EQ_GT] = ACTIONS(7118), - [anon_sym_switch] = ACTIONS(7118), - [anon_sym_when] = ACTIONS(7118), - [anon_sym_DOT_DOT] = ACTIONS(7118), - [anon_sym_and] = ACTIONS(7118), - [anon_sym_or] = ACTIONS(7118), - [anon_sym_AMP_AMP] = ACTIONS(7118), - [anon_sym_PIPE_PIPE] = ACTIONS(7118), - [sym_op_coalescing] = ACTIONS(7118), - [anon_sym_into] = ACTIONS(7118), - [anon_sym_on] = ACTIONS(7118), - [anon_sym_equals] = ACTIONS(7118), - [anon_sym_by] = ACTIONS(7118), - [anon_sym_as] = ACTIONS(7118), - [anon_sym_is] = ACTIONS(7118), - [anon_sym_DASH_GT] = ACTIONS(7118), - [anon_sym_with] = ACTIONS(7118), - [aux_sym_preproc_if_token3] = ACTIONS(7118), - [aux_sym_preproc_else_token1] = ACTIONS(7118), - [aux_sym_preproc_elif_token1] = ACTIONS(7118), + [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), @@ -631446,26 +623300,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4898] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7912), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -631475,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(4907), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -631518,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), @@ -631527,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(7122), - [anon_sym_LBRACK] = ACTIONS(7122), - [anon_sym_COLON] = ACTIONS(7122), - [anon_sym_COMMA] = ACTIONS(7122), - [anon_sym_RBRACK] = ACTIONS(7122), - [anon_sym_LPAREN] = ACTIONS(7122), - [anon_sym_RPAREN] = ACTIONS(7122), - [anon_sym_RBRACE] = ACTIONS(7122), - [anon_sym_LT] = ACTIONS(7124), - [anon_sym_GT] = ACTIONS(7124), - [anon_sym_in] = ACTIONS(7124), - [anon_sym_QMARK] = ACTIONS(7124), - [anon_sym_BANG] = ACTIONS(7124), - [anon_sym_PLUS_PLUS] = ACTIONS(7122), - [anon_sym_DASH_DASH] = ACTIONS(7122), - [anon_sym_PLUS] = ACTIONS(7124), - [anon_sym_DASH] = ACTIONS(7124), - [anon_sym_STAR] = ACTIONS(7122), - [anon_sym_SLASH] = ACTIONS(7124), - [anon_sym_PERCENT] = ACTIONS(7122), - [anon_sym_CARET] = ACTIONS(7122), - [anon_sym_PIPE] = ACTIONS(7124), - [anon_sym_AMP] = ACTIONS(7124), - [anon_sym_LT_LT] = ACTIONS(7122), - [anon_sym_GT_GT] = ACTIONS(7124), - [anon_sym_GT_GT_GT] = ACTIONS(7122), - [anon_sym_EQ_EQ] = ACTIONS(7122), - [anon_sym_BANG_EQ] = ACTIONS(7122), - [anon_sym_GT_EQ] = ACTIONS(7122), - [anon_sym_LT_EQ] = ACTIONS(7122), - [anon_sym_DOT] = ACTIONS(7124), - [anon_sym_EQ_GT] = ACTIONS(7122), - [anon_sym_switch] = ACTIONS(7122), - [anon_sym_when] = ACTIONS(7122), - [anon_sym_DOT_DOT] = ACTIONS(7122), - [anon_sym_and] = ACTIONS(7122), - [anon_sym_or] = ACTIONS(7122), - [anon_sym_AMP_AMP] = ACTIONS(7122), - [anon_sym_PIPE_PIPE] = ACTIONS(7122), - [sym_op_coalescing] = ACTIONS(7122), - [anon_sym_into] = ACTIONS(7122), - [anon_sym_on] = ACTIONS(7122), - [anon_sym_equals] = ACTIONS(7122), - [anon_sym_by] = ACTIONS(7122), - [anon_sym_as] = ACTIONS(7122), - [anon_sym_is] = ACTIONS(7122), - [anon_sym_DASH_GT] = ACTIONS(7122), - [anon_sym_with] = ACTIONS(7122), - [aux_sym_preproc_if_token3] = ACTIONS(7122), - [aux_sym_preproc_else_token1] = ACTIONS(7122), - [aux_sym_preproc_elif_token1] = ACTIONS(7122), + [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), @@ -631590,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), @@ -631599,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_SEMI] = ACTIONS(7126), - [anon_sym_LBRACK] = ACTIONS(7126), - [anon_sym_COLON] = ACTIONS(7126), - [anon_sym_COMMA] = ACTIONS(7126), - [anon_sym_RBRACK] = ACTIONS(7126), - [anon_sym_LPAREN] = ACTIONS(7126), - [anon_sym_RPAREN] = ACTIONS(7126), - [anon_sym_RBRACE] = ACTIONS(7126), - [anon_sym_LT] = ACTIONS(7128), - [anon_sym_GT] = ACTIONS(7128), - [anon_sym_in] = ACTIONS(7128), - [anon_sym_QMARK] = ACTIONS(7128), - [anon_sym_BANG] = ACTIONS(7128), - [anon_sym_PLUS_PLUS] = ACTIONS(7126), - [anon_sym_DASH_DASH] = ACTIONS(7126), - [anon_sym_PLUS] = ACTIONS(7128), - [anon_sym_DASH] = ACTIONS(7128), - [anon_sym_STAR] = ACTIONS(7126), - [anon_sym_SLASH] = ACTIONS(7128), - [anon_sym_PERCENT] = ACTIONS(7126), - [anon_sym_CARET] = ACTIONS(7126), - [anon_sym_PIPE] = ACTIONS(7128), - [anon_sym_AMP] = ACTIONS(7128), - [anon_sym_LT_LT] = ACTIONS(7126), - [anon_sym_GT_GT] = ACTIONS(7128), - [anon_sym_GT_GT_GT] = ACTIONS(7126), - [anon_sym_EQ_EQ] = ACTIONS(7126), - [anon_sym_BANG_EQ] = ACTIONS(7126), - [anon_sym_GT_EQ] = ACTIONS(7126), - [anon_sym_LT_EQ] = ACTIONS(7126), - [anon_sym_DOT] = ACTIONS(7128), - [anon_sym_EQ_GT] = ACTIONS(7126), - [anon_sym_switch] = ACTIONS(7126), - [anon_sym_when] = ACTIONS(7126), - [anon_sym_DOT_DOT] = ACTIONS(7126), - [anon_sym_and] = ACTIONS(7126), - [anon_sym_or] = ACTIONS(7126), - [anon_sym_AMP_AMP] = ACTIONS(7126), - [anon_sym_PIPE_PIPE] = ACTIONS(7126), - [sym_op_coalescing] = ACTIONS(7126), - [anon_sym_into] = ACTIONS(7126), - [anon_sym_on] = ACTIONS(7126), - [anon_sym_equals] = ACTIONS(7126), - [anon_sym_by] = ACTIONS(7126), - [anon_sym_as] = ACTIONS(7126), - [anon_sym_is] = ACTIONS(7126), - [anon_sym_DASH_GT] = ACTIONS(7126), - [anon_sym_with] = ACTIONS(7126), - [aux_sym_preproc_if_token3] = ACTIONS(7126), - [aux_sym_preproc_else_token1] = ACTIONS(7126), - [aux_sym_preproc_elif_token1] = ACTIONS(7126), + [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), @@ -631662,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), @@ -631671,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(7130), - [anon_sym_LBRACK] = ACTIONS(7130), - [anon_sym_COLON] = ACTIONS(7130), - [anon_sym_COMMA] = ACTIONS(7130), - [anon_sym_RBRACK] = ACTIONS(7130), - [anon_sym_LPAREN] = ACTIONS(7130), - [anon_sym_RPAREN] = ACTIONS(7130), - [anon_sym_RBRACE] = ACTIONS(7130), - [anon_sym_LT] = ACTIONS(7132), - [anon_sym_GT] = ACTIONS(7132), - [anon_sym_in] = ACTIONS(7132), - [anon_sym_QMARK] = ACTIONS(7132), - [anon_sym_BANG] = ACTIONS(7132), - [anon_sym_PLUS_PLUS] = ACTIONS(7130), - [anon_sym_DASH_DASH] = ACTIONS(7130), - [anon_sym_PLUS] = ACTIONS(7132), - [anon_sym_DASH] = ACTIONS(7132), - [anon_sym_STAR] = ACTIONS(7130), - [anon_sym_SLASH] = ACTIONS(7132), - [anon_sym_PERCENT] = ACTIONS(7130), - [anon_sym_CARET] = ACTIONS(7130), - [anon_sym_PIPE] = ACTIONS(7132), - [anon_sym_AMP] = ACTIONS(7132), - [anon_sym_LT_LT] = ACTIONS(7130), - [anon_sym_GT_GT] = ACTIONS(7132), - [anon_sym_GT_GT_GT] = ACTIONS(7130), - [anon_sym_EQ_EQ] = ACTIONS(7130), - [anon_sym_BANG_EQ] = ACTIONS(7130), - [anon_sym_GT_EQ] = ACTIONS(7130), - [anon_sym_LT_EQ] = ACTIONS(7130), - [anon_sym_DOT] = ACTIONS(7132), - [anon_sym_EQ_GT] = ACTIONS(7130), - [anon_sym_switch] = ACTIONS(7130), - [anon_sym_when] = ACTIONS(7130), - [anon_sym_DOT_DOT] = ACTIONS(7130), - [anon_sym_and] = ACTIONS(7130), - [anon_sym_or] = ACTIONS(7130), - [anon_sym_AMP_AMP] = ACTIONS(7130), - [anon_sym_PIPE_PIPE] = ACTIONS(7130), - [sym_op_coalescing] = ACTIONS(7130), - [anon_sym_into] = ACTIONS(7130), - [anon_sym_on] = ACTIONS(7130), - [anon_sym_equals] = ACTIONS(7130), - [anon_sym_by] = ACTIONS(7130), - [anon_sym_as] = ACTIONS(7130), - [anon_sym_is] = ACTIONS(7130), - [anon_sym_DASH_GT] = ACTIONS(7130), - [anon_sym_with] = ACTIONS(7130), - [aux_sym_preproc_if_token3] = ACTIONS(7130), - [aux_sym_preproc_else_token1] = ACTIONS(7130), - [aux_sym_preproc_elif_token1] = ACTIONS(7130), + [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), @@ -631734,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), @@ -631743,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(7134), - [anon_sym_LBRACK] = ACTIONS(7134), - [anon_sym_COLON] = ACTIONS(7134), - [anon_sym_COMMA] = ACTIONS(7134), - [anon_sym_RBRACK] = ACTIONS(7134), - [anon_sym_LPAREN] = ACTIONS(7134), - [anon_sym_RPAREN] = ACTIONS(7134), - [anon_sym_RBRACE] = ACTIONS(7134), - [anon_sym_LT] = ACTIONS(7136), - [anon_sym_GT] = ACTIONS(7136), - [anon_sym_in] = ACTIONS(7136), - [anon_sym_QMARK] = ACTIONS(7136), - [anon_sym_BANG] = ACTIONS(7136), - [anon_sym_PLUS_PLUS] = ACTIONS(7134), - [anon_sym_DASH_DASH] = ACTIONS(7134), - [anon_sym_PLUS] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(7136), - [anon_sym_STAR] = ACTIONS(7134), - [anon_sym_SLASH] = ACTIONS(7136), - [anon_sym_PERCENT] = ACTIONS(7134), - [anon_sym_CARET] = ACTIONS(7134), - [anon_sym_PIPE] = ACTIONS(7136), - [anon_sym_AMP] = ACTIONS(7136), - [anon_sym_LT_LT] = ACTIONS(7134), - [anon_sym_GT_GT] = ACTIONS(7136), - [anon_sym_GT_GT_GT] = ACTIONS(7134), - [anon_sym_EQ_EQ] = ACTIONS(7134), - [anon_sym_BANG_EQ] = ACTIONS(7134), - [anon_sym_GT_EQ] = ACTIONS(7134), - [anon_sym_LT_EQ] = ACTIONS(7134), - [anon_sym_DOT] = ACTIONS(7136), - [anon_sym_EQ_GT] = ACTIONS(7134), - [anon_sym_switch] = ACTIONS(7134), - [anon_sym_when] = ACTIONS(7134), - [anon_sym_DOT_DOT] = ACTIONS(7134), - [anon_sym_and] = ACTIONS(7134), - [anon_sym_or] = ACTIONS(7134), - [anon_sym_AMP_AMP] = ACTIONS(7134), - [anon_sym_PIPE_PIPE] = ACTIONS(7134), - [sym_op_coalescing] = ACTIONS(7134), - [anon_sym_into] = ACTIONS(7134), - [anon_sym_on] = ACTIONS(7134), - [anon_sym_equals] = ACTIONS(7134), - [anon_sym_by] = ACTIONS(7134), - [anon_sym_as] = ACTIONS(7134), - [anon_sym_is] = ACTIONS(7134), - [anon_sym_DASH_GT] = ACTIONS(7134), - [anon_sym_with] = ACTIONS(7134), - [aux_sym_preproc_if_token3] = ACTIONS(7134), - [aux_sym_preproc_else_token1] = ACTIONS(7134), - [aux_sym_preproc_elif_token1] = ACTIONS(7134), + [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), @@ -631806,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), @@ -631815,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(4464), - [anon_sym_LBRACK] = ACTIONS(4464), - [anon_sym_COLON] = ACTIONS(4464), - [anon_sym_COMMA] = ACTIONS(4464), - [anon_sym_RBRACK] = ACTIONS(4464), - [anon_sym_LPAREN] = ACTIONS(4464), - [anon_sym_RPAREN] = ACTIONS(4464), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_RBRACE] = ACTIONS(4464), - [anon_sym_LT] = ACTIONS(4462), - [anon_sym_GT] = ACTIONS(4462), - [anon_sym_in] = ACTIONS(4464), - [anon_sym_QMARK] = ACTIONS(4462), - [anon_sym_BANG] = ACTIONS(4462), - [anon_sym_PLUS_PLUS] = ACTIONS(4464), - [anon_sym_DASH_DASH] = ACTIONS(4464), - [anon_sym_PLUS] = ACTIONS(4462), - [anon_sym_DASH] = ACTIONS(4462), - [anon_sym_STAR] = ACTIONS(4464), - [anon_sym_SLASH] = ACTIONS(4462), - [anon_sym_PERCENT] = ACTIONS(4464), - [anon_sym_CARET] = ACTIONS(4464), - [anon_sym_PIPE] = ACTIONS(4462), - [anon_sym_AMP] = ACTIONS(4462), - [anon_sym_LT_LT] = ACTIONS(4464), - [anon_sym_GT_GT] = ACTIONS(4462), - [anon_sym_GT_GT_GT] = ACTIONS(4464), - [anon_sym_EQ_EQ] = ACTIONS(4464), - [anon_sym_BANG_EQ] = ACTIONS(4464), - [anon_sym_GT_EQ] = ACTIONS(4464), - [anon_sym_LT_EQ] = ACTIONS(4464), - [anon_sym_DOT] = ACTIONS(4462), - [anon_sym_EQ_GT] = ACTIONS(4464), - [anon_sym_switch] = ACTIONS(4464), - [anon_sym_when] = ACTIONS(4464), - [anon_sym_DOT_DOT] = ACTIONS(4464), - [anon_sym_and] = ACTIONS(4464), - [anon_sym_or] = ACTIONS(4464), - [anon_sym_AMP_AMP] = ACTIONS(4464), - [anon_sym_PIPE_PIPE] = ACTIONS(4464), - [sym_op_coalescing] = ACTIONS(4464), - [anon_sym_on] = ACTIONS(4464), - [anon_sym_equals] = ACTIONS(4464), - [anon_sym_by] = ACTIONS(4464), - [anon_sym_as] = ACTIONS(4464), - [anon_sym_is] = ACTIONS(4464), - [anon_sym_DASH_GT] = ACTIONS(4464), - [anon_sym_with] = ACTIONS(4464), - [aux_sym_preproc_if_token3] = ACTIONS(4464), - [aux_sym_preproc_else_token1] = ACTIONS(4464), - [aux_sym_preproc_elif_token1] = ACTIONS(4464), + [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), @@ -631878,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), @@ -631887,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(4163), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_COLON] = ACTIONS(4163), - [anon_sym_COMMA] = ACTIONS(4163), - [anon_sym_RBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4163), - [anon_sym_RPAREN] = ACTIONS(4163), - [anon_sym_RBRACE] = ACTIONS(4163), - [anon_sym_LT] = ACTIONS(6996), - [anon_sym_GT] = ACTIONS(6996), - [anon_sym_in] = ACTIONS(6996), - [anon_sym_QMARK] = ACTIONS(6996), - [anon_sym_BANG] = ACTIONS(6996), - [anon_sym_PLUS_PLUS] = ACTIONS(4163), - [anon_sym_DASH_DASH] = ACTIONS(4163), - [anon_sym_PLUS] = ACTIONS(6996), - [anon_sym_DASH] = ACTIONS(6996), - [anon_sym_STAR] = ACTIONS(4163), - [anon_sym_SLASH] = ACTIONS(6996), - [anon_sym_PERCENT] = ACTIONS(4163), - [anon_sym_CARET] = ACTIONS(4163), - [anon_sym_PIPE] = ACTIONS(6996), - [anon_sym_AMP] = ACTIONS(6996), - [anon_sym_LT_LT] = ACTIONS(4163), - [anon_sym_GT_GT] = ACTIONS(6996), - [anon_sym_GT_GT_GT] = ACTIONS(4163), - [anon_sym_EQ_EQ] = ACTIONS(4163), - [anon_sym_BANG_EQ] = ACTIONS(4163), - [anon_sym_GT_EQ] = ACTIONS(4163), - [anon_sym_LT_EQ] = ACTIONS(4163), - [anon_sym_DOT] = ACTIONS(6996), - [anon_sym_EQ_GT] = ACTIONS(4163), - [anon_sym_switch] = ACTIONS(4163), - [anon_sym_when] = ACTIONS(4163), - [anon_sym_DOT_DOT] = ACTIONS(4163), - [anon_sym_and] = ACTIONS(4163), - [anon_sym_or] = ACTIONS(4163), - [anon_sym_AMP_AMP] = ACTIONS(4163), - [anon_sym_PIPE_PIPE] = ACTIONS(4163), - [sym_op_coalescing] = ACTIONS(4163), - [anon_sym_into] = ACTIONS(4163), - [anon_sym_on] = ACTIONS(4163), - [anon_sym_equals] = ACTIONS(4163), - [anon_sym_by] = ACTIONS(4163), - [anon_sym_as] = ACTIONS(4163), - [anon_sym_is] = ACTIONS(4163), - [anon_sym_DASH_GT] = ACTIONS(4163), - [anon_sym_with] = ACTIONS(4163), - [aux_sym_preproc_if_token3] = ACTIONS(4163), - [aux_sym_preproc_else_token1] = ACTIONS(4163), - [aux_sym_preproc_elif_token1] = ACTIONS(4163), + [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), @@ -631950,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), @@ -631959,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(7138), - [anon_sym_LBRACK] = ACTIONS(7138), - [anon_sym_COLON] = ACTIONS(7138), - [anon_sym_COMMA] = ACTIONS(7138), - [anon_sym_RBRACK] = ACTIONS(7138), - [anon_sym_LPAREN] = ACTIONS(7138), - [anon_sym_RPAREN] = ACTIONS(7138), - [anon_sym_RBRACE] = ACTIONS(7138), - [anon_sym_LT] = ACTIONS(7140), - [anon_sym_GT] = ACTIONS(7140), - [anon_sym_in] = ACTIONS(7140), - [anon_sym_QMARK] = ACTIONS(7140), - [anon_sym_BANG] = ACTIONS(7140), - [anon_sym_PLUS_PLUS] = ACTIONS(7138), - [anon_sym_DASH_DASH] = ACTIONS(7138), - [anon_sym_PLUS] = ACTIONS(7140), - [anon_sym_DASH] = ACTIONS(7140), - [anon_sym_STAR] = ACTIONS(7138), - [anon_sym_SLASH] = ACTIONS(7140), - [anon_sym_PERCENT] = ACTIONS(7138), - [anon_sym_CARET] = ACTIONS(7138), - [anon_sym_PIPE] = ACTIONS(7140), - [anon_sym_AMP] = ACTIONS(7140), - [anon_sym_LT_LT] = ACTIONS(7138), - [anon_sym_GT_GT] = ACTIONS(7140), - [anon_sym_GT_GT_GT] = ACTIONS(7138), - [anon_sym_EQ_EQ] = ACTIONS(7138), - [anon_sym_BANG_EQ] = ACTIONS(7138), - [anon_sym_GT_EQ] = ACTIONS(7138), - [anon_sym_LT_EQ] = ACTIONS(7138), - [anon_sym_DOT] = ACTIONS(7140), - [anon_sym_EQ_GT] = ACTIONS(7138), - [anon_sym_switch] = ACTIONS(7138), - [anon_sym_when] = ACTIONS(7138), - [anon_sym_DOT_DOT] = ACTIONS(7138), - [anon_sym_and] = ACTIONS(7138), - [anon_sym_or] = ACTIONS(7138), - [anon_sym_AMP_AMP] = ACTIONS(7138), - [anon_sym_PIPE_PIPE] = ACTIONS(7138), - [sym_op_coalescing] = ACTIONS(7138), - [anon_sym_into] = ACTIONS(7138), - [anon_sym_on] = ACTIONS(7138), - [anon_sym_equals] = ACTIONS(7138), - [anon_sym_by] = ACTIONS(7138), - [anon_sym_as] = ACTIONS(7138), - [anon_sym_is] = ACTIONS(7138), - [anon_sym_DASH_GT] = ACTIONS(7138), - [anon_sym_with] = ACTIONS(7138), - [aux_sym_preproc_if_token3] = ACTIONS(7138), - [aux_sym_preproc_else_token1] = ACTIONS(7138), - [aux_sym_preproc_elif_token1] = ACTIONS(7138), + [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), @@ -632022,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), @@ -632031,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(7142), - [anon_sym_LBRACK] = ACTIONS(7142), - [anon_sym_COLON] = ACTIONS(7142), - [anon_sym_COMMA] = ACTIONS(7142), - [anon_sym_RBRACK] = ACTIONS(7142), - [anon_sym_LPAREN] = ACTIONS(7142), - [anon_sym_RPAREN] = ACTIONS(7142), - [anon_sym_RBRACE] = ACTIONS(7142), - [anon_sym_LT] = ACTIONS(7144), - [anon_sym_GT] = ACTIONS(7144), - [anon_sym_in] = ACTIONS(7144), - [anon_sym_QMARK] = ACTIONS(7144), - [anon_sym_BANG] = ACTIONS(7144), - [anon_sym_PLUS_PLUS] = ACTIONS(7142), - [anon_sym_DASH_DASH] = ACTIONS(7142), - [anon_sym_PLUS] = ACTIONS(7144), - [anon_sym_DASH] = ACTIONS(7144), - [anon_sym_STAR] = ACTIONS(7142), - [anon_sym_SLASH] = ACTIONS(7144), - [anon_sym_PERCENT] = ACTIONS(7142), - [anon_sym_CARET] = ACTIONS(7142), - [anon_sym_PIPE] = ACTIONS(7144), - [anon_sym_AMP] = ACTIONS(7144), - [anon_sym_LT_LT] = ACTIONS(7142), - [anon_sym_GT_GT] = ACTIONS(7144), - [anon_sym_GT_GT_GT] = ACTIONS(7142), - [anon_sym_EQ_EQ] = ACTIONS(7142), - [anon_sym_BANG_EQ] = ACTIONS(7142), - [anon_sym_GT_EQ] = ACTIONS(7142), - [anon_sym_LT_EQ] = ACTIONS(7142), - [anon_sym_DOT] = ACTIONS(7144), - [anon_sym_EQ_GT] = ACTIONS(7142), - [anon_sym_switch] = ACTIONS(7142), - [anon_sym_when] = ACTIONS(7142), - [anon_sym_DOT_DOT] = ACTIONS(7142), - [anon_sym_and] = ACTIONS(7142), - [anon_sym_or] = ACTIONS(7142), - [anon_sym_AMP_AMP] = ACTIONS(7142), - [anon_sym_PIPE_PIPE] = ACTIONS(7142), - [sym_op_coalescing] = ACTIONS(7142), - [anon_sym_into] = ACTIONS(7142), - [anon_sym_on] = ACTIONS(7142), - [anon_sym_equals] = ACTIONS(7142), - [anon_sym_by] = ACTIONS(7142), - [anon_sym_as] = ACTIONS(7142), - [anon_sym_is] = ACTIONS(7142), - [anon_sym_DASH_GT] = ACTIONS(7142), - [anon_sym_with] = ACTIONS(7142), - [aux_sym_preproc_if_token3] = ACTIONS(7142), - [aux_sym_preproc_else_token1] = ACTIONS(7142), - [aux_sym_preproc_elif_token1] = ACTIONS(7142), + [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), @@ -632094,26 +623930,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4907] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7793), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -632123,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(5133), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -632166,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), @@ -632175,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(4021), - [anon_sym_LBRACK] = ACTIONS(4021), - [anon_sym_COLON] = ACTIONS(4021), - [anon_sym_COMMA] = ACTIONS(4021), - [anon_sym_RBRACK] = ACTIONS(4021), - [anon_sym_LPAREN] = ACTIONS(4021), - [anon_sym_RPAREN] = ACTIONS(4021), - [anon_sym_LBRACE] = ACTIONS(4021), - [anon_sym_RBRACE] = ACTIONS(4021), - [anon_sym_LT] = ACTIONS(4014), - [anon_sym_GT] = ACTIONS(4014), - [anon_sym_in] = ACTIONS(4021), - [anon_sym_QMARK] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4014), - [anon_sym_PLUS_PLUS] = ACTIONS(4021), - [anon_sym_DASH_DASH] = ACTIONS(4021), - [anon_sym_PLUS] = ACTIONS(4014), - [anon_sym_DASH] = ACTIONS(4014), - [anon_sym_STAR] = ACTIONS(4021), - [anon_sym_SLASH] = ACTIONS(4014), - [anon_sym_PERCENT] = ACTIONS(4021), - [anon_sym_CARET] = ACTIONS(4021), - [anon_sym_PIPE] = ACTIONS(4014), - [anon_sym_AMP] = ACTIONS(4014), - [anon_sym_LT_LT] = ACTIONS(4021), - [anon_sym_GT_GT] = ACTIONS(4014), - [anon_sym_GT_GT_GT] = ACTIONS(4021), - [anon_sym_EQ_EQ] = ACTIONS(4021), - [anon_sym_BANG_EQ] = ACTIONS(4021), - [anon_sym_GT_EQ] = ACTIONS(4021), - [anon_sym_LT_EQ] = ACTIONS(4021), - [anon_sym_DOT] = ACTIONS(4014), - [anon_sym_EQ_GT] = ACTIONS(4021), - [anon_sym_switch] = ACTIONS(4021), - [anon_sym_when] = ACTIONS(4021), - [anon_sym_DOT_DOT] = ACTIONS(4021), - [anon_sym_and] = ACTIONS(4021), - [anon_sym_or] = ACTIONS(4021), - [anon_sym_AMP_AMP] = ACTIONS(4021), - [anon_sym_PIPE_PIPE] = ACTIONS(4021), - [sym_op_coalescing] = ACTIONS(4021), - [anon_sym_on] = ACTIONS(4021), - [anon_sym_equals] = ACTIONS(4021), - [anon_sym_by] = ACTIONS(4021), - [anon_sym_as] = ACTIONS(4021), - [anon_sym_is] = ACTIONS(4021), - [anon_sym_DASH_GT] = ACTIONS(4021), - [anon_sym_with] = ACTIONS(4021), - [aux_sym_preproc_if_token3] = ACTIONS(4021), - [aux_sym_preproc_else_token1] = ACTIONS(4021), - [aux_sym_preproc_elif_token1] = ACTIONS(4021), + [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), @@ -632238,26 +624070,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4909] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7793), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -632267,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(4910), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -632310,26 +624140,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4910] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7741), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -632339,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(5133), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -632382,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), @@ -632391,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(7142), - [anon_sym_LBRACK] = ACTIONS(7142), - [anon_sym_COLON] = ACTIONS(7142), - [anon_sym_COMMA] = ACTIONS(7142), - [anon_sym_RBRACK] = ACTIONS(7142), - [anon_sym_LPAREN] = ACTIONS(7142), - [anon_sym_RPAREN] = ACTIONS(7142), - [anon_sym_RBRACE] = ACTIONS(7142), - [anon_sym_LT] = ACTIONS(7144), - [anon_sym_GT] = ACTIONS(7144), - [anon_sym_in] = ACTIONS(7144), - [anon_sym_QMARK] = ACTIONS(7144), - [anon_sym_BANG] = ACTIONS(7144), - [anon_sym_PLUS_PLUS] = ACTIONS(7142), - [anon_sym_DASH_DASH] = ACTIONS(7142), - [anon_sym_PLUS] = ACTIONS(7144), - [anon_sym_DASH] = ACTIONS(7144), - [anon_sym_STAR] = ACTIONS(7142), - [anon_sym_SLASH] = ACTIONS(7144), - [anon_sym_PERCENT] = ACTIONS(7142), - [anon_sym_CARET] = ACTIONS(7142), - [anon_sym_PIPE] = ACTIONS(7144), - [anon_sym_AMP] = ACTIONS(7144), - [anon_sym_LT_LT] = ACTIONS(7142), - [anon_sym_GT_GT] = ACTIONS(7144), - [anon_sym_GT_GT_GT] = ACTIONS(7142), - [anon_sym_EQ_EQ] = ACTIONS(7142), - [anon_sym_BANG_EQ] = ACTIONS(7142), - [anon_sym_GT_EQ] = ACTIONS(7142), - [anon_sym_LT_EQ] = ACTIONS(7142), - [anon_sym_DOT] = ACTIONS(7144), - [anon_sym_EQ_GT] = ACTIONS(7142), - [anon_sym_switch] = ACTIONS(7142), - [anon_sym_when] = ACTIONS(7142), - [anon_sym_DOT_DOT] = ACTIONS(7142), - [anon_sym_and] = ACTIONS(7142), - [anon_sym_or] = ACTIONS(7142), - [anon_sym_AMP_AMP] = ACTIONS(7142), - [anon_sym_PIPE_PIPE] = ACTIONS(7142), - [sym_op_coalescing] = ACTIONS(7142), - [anon_sym_into] = ACTIONS(7142), - [anon_sym_on] = ACTIONS(7142), - [anon_sym_equals] = ACTIONS(7142), - [anon_sym_by] = ACTIONS(7142), - [anon_sym_as] = ACTIONS(7142), - [anon_sym_is] = ACTIONS(7142), - [anon_sym_DASH_GT] = ACTIONS(7142), - [anon_sym_with] = ACTIONS(7142), - [aux_sym_preproc_if_token3] = ACTIONS(7142), - [aux_sym_preproc_else_token1] = ACTIONS(7142), - [aux_sym_preproc_elif_token1] = ACTIONS(7142), + [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), @@ -632454,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), @@ -632463,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(6379), - [anon_sym_LBRACK] = ACTIONS(6379), - [anon_sym_COLON] = ACTIONS(6379), - [anon_sym_COMMA] = ACTIONS(6379), - [anon_sym_RBRACK] = ACTIONS(6379), - [anon_sym_LPAREN] = ACTIONS(6379), - [anon_sym_RPAREN] = ACTIONS(6379), - [anon_sym_RBRACE] = ACTIONS(6379), - [anon_sym_LT] = ACTIONS(6381), - [anon_sym_GT] = ACTIONS(6381), - [anon_sym_in] = ACTIONS(6379), - [anon_sym_QMARK] = ACTIONS(6381), - [anon_sym_BANG] = ACTIONS(6381), - [anon_sym_PLUS_PLUS] = ACTIONS(6379), - [anon_sym_DASH_DASH] = ACTIONS(6379), - [anon_sym_PLUS] = ACTIONS(6381), - [anon_sym_DASH] = ACTIONS(6381), - [anon_sym_STAR] = ACTIONS(6379), - [anon_sym_SLASH] = ACTIONS(6381), - [anon_sym_PERCENT] = ACTIONS(6379), - [anon_sym_CARET] = ACTIONS(6379), - [anon_sym_PIPE] = ACTIONS(6381), - [anon_sym_AMP] = ACTIONS(6381), - [anon_sym_LT_LT] = ACTIONS(6379), - [anon_sym_GT_GT] = ACTIONS(6381), - [anon_sym_GT_GT_GT] = ACTIONS(6379), - [anon_sym_EQ_EQ] = ACTIONS(6379), - [anon_sym_BANG_EQ] = ACTIONS(6379), - [anon_sym_GT_EQ] = ACTIONS(6379), - [anon_sym_LT_EQ] = ACTIONS(6379), - [anon_sym_DOT] = ACTIONS(6381), - [anon_sym_EQ_GT] = ACTIONS(6379), - [anon_sym_switch] = ACTIONS(6379), - [anon_sym_when] = ACTIONS(6379), - [anon_sym_DOT_DOT] = ACTIONS(6379), - [anon_sym_and] = ACTIONS(6379), - [anon_sym_or] = ACTIONS(6379), - [anon_sym_AMP_AMP] = ACTIONS(6379), - [anon_sym_PIPE_PIPE] = ACTIONS(6379), - [sym_op_coalescing] = ACTIONS(6379), - [anon_sym_on] = ACTIONS(6379), - [anon_sym_equals] = ACTIONS(6379), - [anon_sym_by] = ACTIONS(6379), - [anon_sym_as] = ACTIONS(6379), - [anon_sym_is] = ACTIONS(6379), - [anon_sym_DASH_GT] = ACTIONS(6379), - [anon_sym_with] = ACTIONS(6379), - [anon_sym_DQUOTE] = ACTIONS(6379), - [aux_sym_preproc_if_token3] = ACTIONS(6379), - [aux_sym_preproc_else_token1] = ACTIONS(6379), - [aux_sym_preproc_elif_token1] = ACTIONS(6379), + [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), @@ -632526,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), @@ -632535,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(4460), - [anon_sym_LBRACK] = ACTIONS(4460), - [anon_sym_COLON] = ACTIONS(4460), - [anon_sym_COMMA] = ACTIONS(4460), - [anon_sym_RBRACK] = ACTIONS(4460), - [anon_sym_LPAREN] = ACTIONS(4460), - [anon_sym_RPAREN] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4460), - [anon_sym_RBRACE] = ACTIONS(4460), - [anon_sym_LT] = ACTIONS(4458), - [anon_sym_GT] = ACTIONS(4458), - [anon_sym_in] = ACTIONS(4460), - [anon_sym_QMARK] = ACTIONS(4458), - [anon_sym_BANG] = ACTIONS(4458), - [anon_sym_PLUS_PLUS] = ACTIONS(4460), - [anon_sym_DASH_DASH] = ACTIONS(4460), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_SLASH] = ACTIONS(4458), - [anon_sym_PERCENT] = ACTIONS(4460), - [anon_sym_CARET] = ACTIONS(4460), - [anon_sym_PIPE] = ACTIONS(4458), - [anon_sym_AMP] = ACTIONS(4458), - [anon_sym_LT_LT] = ACTIONS(4460), - [anon_sym_GT_GT] = ACTIONS(4458), - [anon_sym_GT_GT_GT] = ACTIONS(4460), - [anon_sym_EQ_EQ] = ACTIONS(4460), - [anon_sym_BANG_EQ] = ACTIONS(4460), - [anon_sym_GT_EQ] = ACTIONS(4460), - [anon_sym_LT_EQ] = ACTIONS(4460), - [anon_sym_DOT] = ACTIONS(4458), - [anon_sym_EQ_GT] = ACTIONS(4460), - [anon_sym_switch] = ACTIONS(4460), - [anon_sym_when] = ACTIONS(4460), - [anon_sym_DOT_DOT] = ACTIONS(4460), - [anon_sym_and] = ACTIONS(4460), - [anon_sym_or] = ACTIONS(4460), - [anon_sym_AMP_AMP] = ACTIONS(4460), - [anon_sym_PIPE_PIPE] = ACTIONS(4460), - [sym_op_coalescing] = ACTIONS(4460), - [anon_sym_on] = ACTIONS(4460), - [anon_sym_equals] = ACTIONS(4460), - [anon_sym_by] = ACTIONS(4460), - [anon_sym_as] = ACTIONS(4460), - [anon_sym_is] = ACTIONS(4460), - [anon_sym_DASH_GT] = ACTIONS(4460), - [anon_sym_with] = ACTIONS(4460), - [aux_sym_preproc_if_token3] = ACTIONS(4460), - [aux_sym_preproc_else_token1] = ACTIONS(4460), - [aux_sym_preproc_elif_token1] = ACTIONS(4460), + [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), @@ -632598,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), @@ -632607,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(4420), - [anon_sym_LBRACK] = ACTIONS(4420), - [anon_sym_COLON] = ACTIONS(4420), - [anon_sym_COMMA] = ACTIONS(4420), - [anon_sym_RBRACK] = ACTIONS(4420), - [anon_sym_LPAREN] = ACTIONS(4420), - [anon_sym_RPAREN] = ACTIONS(4420), - [anon_sym_LBRACE] = ACTIONS(4420), - [anon_sym_RBRACE] = ACTIONS(4420), - [anon_sym_LT] = ACTIONS(4418), - [anon_sym_GT] = ACTIONS(4418), - [anon_sym_in] = ACTIONS(4420), - [anon_sym_QMARK] = ACTIONS(4418), - [anon_sym_BANG] = ACTIONS(4418), - [anon_sym_PLUS_PLUS] = ACTIONS(4420), - [anon_sym_DASH_DASH] = ACTIONS(4420), - [anon_sym_PLUS] = ACTIONS(4418), - [anon_sym_DASH] = ACTIONS(4418), - [anon_sym_STAR] = ACTIONS(4420), - [anon_sym_SLASH] = ACTIONS(4418), - [anon_sym_PERCENT] = ACTIONS(4420), - [anon_sym_CARET] = ACTIONS(4420), - [anon_sym_PIPE] = ACTIONS(4418), - [anon_sym_AMP] = ACTIONS(4418), - [anon_sym_LT_LT] = ACTIONS(4420), - [anon_sym_GT_GT] = ACTIONS(4418), - [anon_sym_GT_GT_GT] = ACTIONS(4420), - [anon_sym_EQ_EQ] = ACTIONS(4420), - [anon_sym_BANG_EQ] = ACTIONS(4420), - [anon_sym_GT_EQ] = ACTIONS(4420), - [anon_sym_LT_EQ] = ACTIONS(4420), - [anon_sym_DOT] = ACTIONS(4418), - [anon_sym_EQ_GT] = ACTIONS(4420), - [anon_sym_switch] = ACTIONS(4420), - [anon_sym_when] = ACTIONS(4420), - [anon_sym_DOT_DOT] = ACTIONS(4420), - [anon_sym_and] = ACTIONS(4420), - [anon_sym_or] = ACTIONS(4420), - [anon_sym_AMP_AMP] = ACTIONS(4420), - [anon_sym_PIPE_PIPE] = ACTIONS(4420), - [sym_op_coalescing] = ACTIONS(4420), - [anon_sym_on] = ACTIONS(4420), - [anon_sym_equals] = ACTIONS(4420), - [anon_sym_by] = ACTIONS(4420), - [anon_sym_as] = ACTIONS(4420), - [anon_sym_is] = ACTIONS(4420), - [anon_sym_DASH_GT] = ACTIONS(4420), - [anon_sym_with] = ACTIONS(4420), - [aux_sym_preproc_if_token3] = ACTIONS(4420), - [aux_sym_preproc_else_token1] = ACTIONS(4420), - [aux_sym_preproc_elif_token1] = ACTIONS(4420), + [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), @@ -632670,26 +624490,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4915] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(8094), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -632699,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(4792), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -632742,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), @@ -632751,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(7146), - [anon_sym_LBRACK] = ACTIONS(7146), - [anon_sym_COLON] = ACTIONS(7146), - [anon_sym_COMMA] = ACTIONS(7146), - [anon_sym_RBRACK] = ACTIONS(7146), - [anon_sym_LPAREN] = ACTIONS(7146), - [anon_sym_RPAREN] = ACTIONS(7146), - [anon_sym_RBRACE] = ACTIONS(7146), - [anon_sym_LT] = ACTIONS(7148), - [anon_sym_GT] = ACTIONS(7148), - [anon_sym_in] = ACTIONS(7148), - [anon_sym_QMARK] = ACTIONS(7148), - [anon_sym_BANG] = ACTIONS(7148), - [anon_sym_PLUS_PLUS] = ACTIONS(7146), - [anon_sym_DASH_DASH] = ACTIONS(7146), - [anon_sym_PLUS] = ACTIONS(7148), - [anon_sym_DASH] = ACTIONS(7148), - [anon_sym_STAR] = ACTIONS(7146), - [anon_sym_SLASH] = ACTIONS(7148), - [anon_sym_PERCENT] = ACTIONS(7146), - [anon_sym_CARET] = ACTIONS(7146), - [anon_sym_PIPE] = ACTIONS(7148), - [anon_sym_AMP] = ACTIONS(7148), - [anon_sym_LT_LT] = ACTIONS(7146), - [anon_sym_GT_GT] = ACTIONS(7148), - [anon_sym_GT_GT_GT] = ACTIONS(7146), - [anon_sym_EQ_EQ] = ACTIONS(7146), - [anon_sym_BANG_EQ] = ACTIONS(7146), - [anon_sym_GT_EQ] = ACTIONS(7146), - [anon_sym_LT_EQ] = ACTIONS(7146), - [anon_sym_DOT] = ACTIONS(7148), - [anon_sym_EQ_GT] = ACTIONS(7146), - [anon_sym_switch] = ACTIONS(7146), - [anon_sym_when] = ACTIONS(7146), - [anon_sym_DOT_DOT] = ACTIONS(7146), - [anon_sym_and] = ACTIONS(7146), - [anon_sym_or] = ACTIONS(7146), - [anon_sym_AMP_AMP] = ACTIONS(7146), - [anon_sym_PIPE_PIPE] = ACTIONS(7146), - [sym_op_coalescing] = ACTIONS(7146), - [anon_sym_into] = ACTIONS(7146), - [anon_sym_on] = ACTIONS(7146), - [anon_sym_equals] = ACTIONS(7146), - [anon_sym_by] = ACTIONS(7146), - [anon_sym_as] = ACTIONS(7146), - [anon_sym_is] = ACTIONS(7146), - [anon_sym_DASH_GT] = ACTIONS(7146), - [anon_sym_with] = ACTIONS(7146), - [aux_sym_preproc_if_token3] = ACTIONS(7146), - [aux_sym_preproc_else_token1] = ACTIONS(7146), - [aux_sym_preproc_elif_token1] = ACTIONS(7146), + [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), @@ -632814,26 +624630,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4917] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7706), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -632843,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(5133), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -632886,26 +624700,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4918] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7694), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -632915,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(4917), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -632958,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), @@ -632967,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), - [anon_sym_SEMI] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4444), - [anon_sym_COLON] = ACTIONS(4444), - [anon_sym_COMMA] = ACTIONS(4444), - [anon_sym_RBRACK] = ACTIONS(4444), - [anon_sym_LPAREN] = ACTIONS(4444), - [anon_sym_RPAREN] = ACTIONS(4444), - [anon_sym_LBRACE] = ACTIONS(4444), - [anon_sym_RBRACE] = ACTIONS(4444), - [anon_sym_LT] = ACTIONS(4442), - [anon_sym_GT] = ACTIONS(4442), - [anon_sym_in] = ACTIONS(4444), - [anon_sym_QMARK] = ACTIONS(4442), - [anon_sym_BANG] = ACTIONS(4442), - [anon_sym_PLUS_PLUS] = ACTIONS(4444), - [anon_sym_DASH_DASH] = ACTIONS(4444), - [anon_sym_PLUS] = ACTIONS(4442), - [anon_sym_DASH] = ACTIONS(4442), - [anon_sym_STAR] = ACTIONS(4444), - [anon_sym_SLASH] = ACTIONS(4442), - [anon_sym_PERCENT] = ACTIONS(4444), - [anon_sym_CARET] = ACTIONS(4444), - [anon_sym_PIPE] = ACTIONS(4442), - [anon_sym_AMP] = ACTIONS(4442), - [anon_sym_LT_LT] = ACTIONS(4444), - [anon_sym_GT_GT] = ACTIONS(4442), - [anon_sym_GT_GT_GT] = ACTIONS(4444), - [anon_sym_EQ_EQ] = ACTIONS(4444), - [anon_sym_BANG_EQ] = ACTIONS(4444), - [anon_sym_GT_EQ] = ACTIONS(4444), - [anon_sym_LT_EQ] = ACTIONS(4444), - [anon_sym_DOT] = ACTIONS(4442), - [anon_sym_EQ_GT] = ACTIONS(4444), - [anon_sym_switch] = ACTIONS(4444), - [anon_sym_when] = ACTIONS(4444), - [anon_sym_DOT_DOT] = ACTIONS(4444), - [anon_sym_and] = ACTIONS(4444), - [anon_sym_or] = ACTIONS(4444), - [anon_sym_AMP_AMP] = ACTIONS(4444), - [anon_sym_PIPE_PIPE] = ACTIONS(4444), - [sym_op_coalescing] = ACTIONS(4444), - [anon_sym_on] = ACTIONS(4444), - [anon_sym_equals] = ACTIONS(4444), - [anon_sym_by] = ACTIONS(4444), - [anon_sym_as] = ACTIONS(4444), - [anon_sym_is] = ACTIONS(4444), - [anon_sym_DASH_GT] = ACTIONS(4444), - [anon_sym_with] = ACTIONS(4444), - [aux_sym_preproc_if_token3] = ACTIONS(4444), - [aux_sym_preproc_else_token1] = ACTIONS(4444), - [aux_sym_preproc_elif_token1] = ACTIONS(4444), + [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), @@ -633030,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), @@ -633039,114 +624867,22 @@ 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(7150), - [anon_sym_LBRACK] = ACTIONS(7150), - [anon_sym_COLON] = ACTIONS(7150), - [anon_sym_COMMA] = ACTIONS(7150), - [anon_sym_RBRACK] = ACTIONS(7150), - [anon_sym_LPAREN] = ACTIONS(7150), - [anon_sym_RPAREN] = ACTIONS(7150), - [anon_sym_RBRACE] = ACTIONS(7150), - [anon_sym_LT] = ACTIONS(7152), - [anon_sym_GT] = ACTIONS(7152), - [anon_sym_in] = ACTIONS(7152), - [anon_sym_QMARK] = ACTIONS(7152), - [anon_sym_BANG] = ACTIONS(7152), - [anon_sym_PLUS_PLUS] = ACTIONS(7150), - [anon_sym_DASH_DASH] = ACTIONS(7150), - [anon_sym_PLUS] = ACTIONS(7152), - [anon_sym_DASH] = ACTIONS(7152), - [anon_sym_STAR] = ACTIONS(7150), - [anon_sym_SLASH] = ACTIONS(7152), - [anon_sym_PERCENT] = ACTIONS(7150), - [anon_sym_CARET] = ACTIONS(7150), - [anon_sym_PIPE] = ACTIONS(7152), - [anon_sym_AMP] = ACTIONS(7152), - [anon_sym_LT_LT] = ACTIONS(7150), - [anon_sym_GT_GT] = ACTIONS(7152), - [anon_sym_GT_GT_GT] = ACTIONS(7150), - [anon_sym_EQ_EQ] = ACTIONS(7150), - [anon_sym_BANG_EQ] = ACTIONS(7150), - [anon_sym_GT_EQ] = ACTIONS(7150), - [anon_sym_LT_EQ] = ACTIONS(7150), - [anon_sym_DOT] = ACTIONS(7152), - [anon_sym_EQ_GT] = ACTIONS(7150), - [anon_sym_switch] = ACTIONS(7150), - [anon_sym_when] = ACTIONS(7150), - [anon_sym_DOT_DOT] = ACTIONS(7150), - [anon_sym_and] = ACTIONS(7150), - [anon_sym_or] = ACTIONS(7150), - [anon_sym_AMP_AMP] = ACTIONS(7150), - [anon_sym_PIPE_PIPE] = ACTIONS(7150), - [sym_op_coalescing] = ACTIONS(7150), - [anon_sym_into] = ACTIONS(7150), - [anon_sym_on] = ACTIONS(7150), - [anon_sym_equals] = ACTIONS(7150), - [anon_sym_by] = ACTIONS(7150), - [anon_sym_as] = ACTIONS(7150), - [anon_sym_is] = ACTIONS(7150), - [anon_sym_DASH_GT] = ACTIONS(7150), - [anon_sym_with] = ACTIONS(7150), - [aux_sym_preproc_if_token3] = ACTIONS(7150), - [aux_sym_preproc_else_token1] = ACTIONS(7150), - [aux_sym_preproc_elif_token1] = ACTIONS(7150), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [4921] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7694), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(4921), - [sym_preproc_endregion] = STATE(4921), - [sym_preproc_line] = STATE(4921), - [sym_preproc_pragma] = STATE(4921), - [sym_preproc_nullable] = STATE(4921), - [sym_preproc_error] = STATE(4921), - [sym_preproc_warning] = STATE(4921), - [sym_preproc_define] = STATE(4921), - [sym_preproc_undef] = STATE(4921), - [aux_sym_function_pointer_type_repeat1] = STATE(5133), + [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(6982), - [anon_sym_delegate] = ACTIONS(5889), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), + [anon_sym_GT] = ACTIONS(7683), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), + [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), @@ -633173,27 +624909,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [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), + [sym_preproc_pragma] = STATE(4921), + [sym_preproc_nullable] = STATE(4921), + [sym_preproc_error] = STATE(4921), + [sym_preproc_warning] = STATE(4921), + [sym_preproc_define] = STATE(4921), + [sym_preproc_undef] = STATE(4921), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [4922] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7681), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_function_pointer_parameter] = STATE(8141), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(8137), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -633203,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(4921), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(6982), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(6984), - [anon_sym_out] = ACTIONS(6984), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -633246,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), @@ -633255,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(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_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), @@ -633318,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), @@ -633327,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(4290), - [anon_sym_LBRACK] = ACTIONS(4290), - [anon_sym_COLON] = ACTIONS(4290), - [anon_sym_COMMA] = ACTIONS(4290), - [anon_sym_RBRACK] = ACTIONS(4290), - [anon_sym_LPAREN] = ACTIONS(4290), - [anon_sym_RPAREN] = ACTIONS(4290), - [anon_sym_LBRACE] = ACTIONS(4290), - [anon_sym_RBRACE] = ACTIONS(4290), - [anon_sym_LT] = ACTIONS(4288), - [anon_sym_GT] = ACTIONS(4288), - [anon_sym_in] = ACTIONS(4290), - [anon_sym_QMARK] = ACTIONS(4288), - [anon_sym_BANG] = ACTIONS(4288), - [anon_sym_PLUS_PLUS] = ACTIONS(4290), - [anon_sym_DASH_DASH] = ACTIONS(4290), - [anon_sym_PLUS] = ACTIONS(4288), - [anon_sym_DASH] = ACTIONS(4288), - [anon_sym_STAR] = ACTIONS(4290), - [anon_sym_SLASH] = ACTIONS(4288), - [anon_sym_PERCENT] = ACTIONS(4290), - [anon_sym_CARET] = ACTIONS(4290), - [anon_sym_PIPE] = ACTIONS(4288), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_LT_LT] = ACTIONS(4290), - [anon_sym_GT_GT] = ACTIONS(4288), - [anon_sym_GT_GT_GT] = ACTIONS(4290), - [anon_sym_EQ_EQ] = ACTIONS(4290), - [anon_sym_BANG_EQ] = ACTIONS(4290), - [anon_sym_GT_EQ] = ACTIONS(4290), - [anon_sym_LT_EQ] = ACTIONS(4290), - [anon_sym_DOT] = ACTIONS(4288), - [anon_sym_EQ_GT] = ACTIONS(4290), - [anon_sym_switch] = ACTIONS(4290), - [anon_sym_when] = ACTIONS(4290), - [anon_sym_DOT_DOT] = ACTIONS(4290), - [anon_sym_and] = ACTIONS(4290), - [anon_sym_or] = ACTIONS(4290), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_PIPE_PIPE] = ACTIONS(4290), - [sym_op_coalescing] = ACTIONS(4290), - [anon_sym_on] = ACTIONS(4290), - [anon_sym_equals] = ACTIONS(4290), - [anon_sym_by] = ACTIONS(4290), - [anon_sym_as] = ACTIONS(4290), - [anon_sym_is] = ACTIONS(4290), - [anon_sym_DASH_GT] = ACTIONS(4290), - [anon_sym_with] = ACTIONS(4290), - [aux_sym_preproc_if_token3] = ACTIONS(4290), - [aux_sym_preproc_else_token1] = ACTIONS(4290), - [aux_sym_preproc_elif_token1] = ACTIONS(4290), + [sym__identifier_token] = ACTIONS(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), @@ -633390,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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6214), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym__lambda_parameters] = STATE(7940), - [sym_identifier] = STATE(6058), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -633419,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(6141), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(4099), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(7154), - [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), + [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), @@ -633462,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), @@ -633471,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(6071), - [anon_sym_LBRACK] = ACTIONS(6071), - [anon_sym_COLON] = ACTIONS(6071), - [anon_sym_COMMA] = ACTIONS(6071), - [anon_sym_RBRACK] = ACTIONS(6071), - [anon_sym_LPAREN] = ACTIONS(6071), - [anon_sym_RPAREN] = ACTIONS(6071), - [anon_sym_RBRACE] = ACTIONS(6071), - [anon_sym_LT] = ACTIONS(6073), - [anon_sym_GT] = ACTIONS(6073), - [anon_sym_in] = ACTIONS(6071), - [anon_sym_QMARK] = ACTIONS(6073), - [anon_sym_BANG] = ACTIONS(6073), - [anon_sym_PLUS_PLUS] = ACTIONS(6071), - [anon_sym_DASH_DASH] = ACTIONS(6071), - [anon_sym_PLUS] = ACTIONS(6073), - [anon_sym_DASH] = ACTIONS(6073), - [anon_sym_STAR] = ACTIONS(6071), - [anon_sym_SLASH] = ACTIONS(6073), - [anon_sym_PERCENT] = ACTIONS(6071), - [anon_sym_CARET] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - [anon_sym_LT_LT] = ACTIONS(6071), - [anon_sym_GT_GT] = ACTIONS(6073), - [anon_sym_GT_GT_GT] = ACTIONS(6071), - [anon_sym_EQ_EQ] = ACTIONS(6071), - [anon_sym_BANG_EQ] = ACTIONS(6071), - [anon_sym_GT_EQ] = ACTIONS(6071), - [anon_sym_LT_EQ] = ACTIONS(6071), - [anon_sym_DOT] = ACTIONS(6073), - [anon_sym_EQ_GT] = ACTIONS(6071), - [anon_sym_switch] = ACTIONS(6071), - [anon_sym_when] = ACTIONS(6071), - [anon_sym_DOT_DOT] = ACTIONS(6071), - [anon_sym_and] = ACTIONS(6071), - [anon_sym_or] = ACTIONS(6071), - [anon_sym_AMP_AMP] = ACTIONS(6071), - [anon_sym_PIPE_PIPE] = ACTIONS(6071), - [sym_op_coalescing] = ACTIONS(6071), - [anon_sym_on] = ACTIONS(6071), - [anon_sym_equals] = ACTIONS(6071), - [anon_sym_by] = ACTIONS(6071), - [anon_sym_as] = ACTIONS(6071), - [anon_sym_is] = ACTIONS(6071), - [anon_sym_DASH_GT] = ACTIONS(6071), - [anon_sym_with] = ACTIONS(6071), - [aux_sym_preproc_if_token3] = ACTIONS(6071), - [aux_sym_preproc_else_token1] = ACTIONS(6071), - [aux_sym_preproc_elif_token1] = ACTIONS(6071), + [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), @@ -633542,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(6163), - [anon_sym_LBRACK] = ACTIONS(6163), - [anon_sym_COLON] = ACTIONS(6163), - [anon_sym_COMMA] = ACTIONS(6163), - [anon_sym_RBRACK] = ACTIONS(6163), - [anon_sym_LPAREN] = ACTIONS(6163), - [anon_sym_RPAREN] = ACTIONS(6163), - [anon_sym_RBRACE] = ACTIONS(6163), - [anon_sym_LT] = ACTIONS(6165), - [anon_sym_GT] = ACTIONS(6165), - [anon_sym_in] = ACTIONS(6163), - [anon_sym_QMARK] = ACTIONS(6165), - [anon_sym_BANG] = ACTIONS(6165), - [anon_sym_PLUS_PLUS] = ACTIONS(6163), - [anon_sym_DASH_DASH] = ACTIONS(6163), - [anon_sym_PLUS] = ACTIONS(6165), - [anon_sym_DASH] = ACTIONS(6165), - [anon_sym_STAR] = ACTIONS(6163), - [anon_sym_SLASH] = ACTIONS(6165), - [anon_sym_PERCENT] = ACTIONS(6163), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_PIPE] = ACTIONS(6165), - [anon_sym_AMP] = ACTIONS(6165), - [anon_sym_LT_LT] = ACTIONS(6163), - [anon_sym_GT_GT] = ACTIONS(6165), - [anon_sym_GT_GT_GT] = ACTIONS(6163), - [anon_sym_EQ_EQ] = ACTIONS(6163), - [anon_sym_BANG_EQ] = ACTIONS(6163), - [anon_sym_GT_EQ] = ACTIONS(6163), - [anon_sym_LT_EQ] = ACTIONS(6163), - [anon_sym_DOT] = ACTIONS(6165), - [anon_sym_EQ_GT] = ACTIONS(6163), - [anon_sym_switch] = ACTIONS(6163), - [anon_sym_when] = ACTIONS(6163), - [anon_sym_DOT_DOT] = ACTIONS(6163), - [anon_sym_and] = ACTIONS(6163), - [anon_sym_or] = ACTIONS(6163), - [anon_sym_AMP_AMP] = ACTIONS(6163), - [anon_sym_PIPE_PIPE] = ACTIONS(6163), - [sym_op_coalescing] = ACTIONS(6163), - [anon_sym_on] = ACTIONS(6163), - [anon_sym_equals] = ACTIONS(6163), - [anon_sym_by] = ACTIONS(6163), - [anon_sym_as] = ACTIONS(6163), - [anon_sym_is] = ACTIONS(6163), - [anon_sym_DASH_GT] = ACTIONS(6163), - [anon_sym_with] = ACTIONS(6163), - [aux_sym_preproc_if_token3] = ACTIONS(6163), - [aux_sym_preproc_else_token1] = ACTIONS(6163), - [aux_sym_preproc_elif_token1] = ACTIONS(6163), + [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), @@ -633604,6 +625400,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4928] = { + [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), @@ -633613,56 +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(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_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), @@ -633675,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), @@ -633684,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(6241), - [anon_sym_LBRACK] = ACTIONS(6241), - [anon_sym_COLON] = ACTIONS(6241), - [anon_sym_COMMA] = ACTIONS(6241), - [anon_sym_RBRACK] = ACTIONS(6241), - [anon_sym_LPAREN] = ACTIONS(6241), - [anon_sym_RPAREN] = ACTIONS(6241), - [anon_sym_RBRACE] = ACTIONS(6241), - [anon_sym_LT] = ACTIONS(6243), - [anon_sym_GT] = ACTIONS(6243), - [anon_sym_in] = ACTIONS(6241), - [anon_sym_QMARK] = ACTIONS(6243), - [anon_sym_BANG] = ACTIONS(6243), - [anon_sym_PLUS_PLUS] = ACTIONS(6241), - [anon_sym_DASH_DASH] = ACTIONS(6241), - [anon_sym_PLUS] = ACTIONS(6243), - [anon_sym_DASH] = ACTIONS(6243), - [anon_sym_STAR] = ACTIONS(6241), - [anon_sym_SLASH] = ACTIONS(6243), - [anon_sym_PERCENT] = ACTIONS(6241), - [anon_sym_CARET] = ACTIONS(6241), - [anon_sym_PIPE] = ACTIONS(6243), - [anon_sym_AMP] = ACTIONS(6243), - [anon_sym_LT_LT] = ACTIONS(6241), - [anon_sym_GT_GT] = ACTIONS(6243), - [anon_sym_GT_GT_GT] = ACTIONS(6241), - [anon_sym_EQ_EQ] = ACTIONS(6241), - [anon_sym_BANG_EQ] = ACTIONS(6241), - [anon_sym_GT_EQ] = ACTIONS(6241), - [anon_sym_LT_EQ] = ACTIONS(6241), - [anon_sym_DOT] = ACTIONS(6243), - [anon_sym_EQ_GT] = ACTIONS(6241), - [anon_sym_switch] = ACTIONS(6241), - [anon_sym_when] = ACTIONS(6241), - [anon_sym_DOT_DOT] = ACTIONS(6241), - [anon_sym_and] = ACTIONS(6241), - [anon_sym_or] = ACTIONS(6241), - [anon_sym_AMP_AMP] = ACTIONS(6241), - [anon_sym_PIPE_PIPE] = ACTIONS(6241), - [sym_op_coalescing] = ACTIONS(6241), - [anon_sym_on] = ACTIONS(6241), - [anon_sym_equals] = ACTIONS(6241), - [anon_sym_by] = ACTIONS(6241), - [anon_sym_as] = ACTIONS(6241), - [anon_sym_is] = ACTIONS(6241), - [anon_sym_DASH_GT] = ACTIONS(6241), - [anon_sym_with] = ACTIONS(6241), - [aux_sym_preproc_if_token3] = ACTIONS(6241), - [aux_sym_preproc_else_token1] = ACTIONS(6241), - [aux_sym_preproc_elif_token1] = ACTIONS(6241), + [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), @@ -633746,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), @@ -633755,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(6233), - [anon_sym_LBRACK] = ACTIONS(6233), - [anon_sym_COLON] = ACTIONS(6233), - [anon_sym_COMMA] = ACTIONS(6233), - [anon_sym_RBRACK] = ACTIONS(6233), - [anon_sym_LPAREN] = ACTIONS(6233), - [anon_sym_RPAREN] = ACTIONS(6233), - [anon_sym_RBRACE] = ACTIONS(6233), - [anon_sym_LT] = ACTIONS(6235), - [anon_sym_GT] = ACTIONS(6235), - [anon_sym_in] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6235), - [anon_sym_BANG] = ACTIONS(6235), - [anon_sym_PLUS_PLUS] = ACTIONS(6233), - [anon_sym_DASH_DASH] = ACTIONS(6233), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6233), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6233), - [anon_sym_CARET] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_AMP] = ACTIONS(6235), - [anon_sym_LT_LT] = ACTIONS(6233), - [anon_sym_GT_GT] = ACTIONS(6235), - [anon_sym_GT_GT_GT] = ACTIONS(6233), - [anon_sym_EQ_EQ] = ACTIONS(6233), - [anon_sym_BANG_EQ] = ACTIONS(6233), - [anon_sym_GT_EQ] = ACTIONS(6233), - [anon_sym_LT_EQ] = ACTIONS(6233), - [anon_sym_DOT] = ACTIONS(6235), - [anon_sym_EQ_GT] = ACTIONS(6233), - [anon_sym_switch] = ACTIONS(6233), - [anon_sym_when] = ACTIONS(6233), - [anon_sym_DOT_DOT] = ACTIONS(6233), - [anon_sym_and] = ACTIONS(6233), - [anon_sym_or] = ACTIONS(6233), - [anon_sym_AMP_AMP] = ACTIONS(6233), - [anon_sym_PIPE_PIPE] = ACTIONS(6233), - [sym_op_coalescing] = ACTIONS(6233), - [anon_sym_on] = ACTIONS(6233), - [anon_sym_equals] = ACTIONS(6233), - [anon_sym_by] = ACTIONS(6233), - [anon_sym_as] = ACTIONS(6233), - [anon_sym_is] = ACTIONS(6233), - [anon_sym_DASH_GT] = ACTIONS(6233), - [anon_sym_with] = ACTIONS(6233), - [aux_sym_preproc_if_token3] = ACTIONS(6233), - [aux_sym_preproc_else_token1] = ACTIONS(6233), - [aux_sym_preproc_elif_token1] = ACTIONS(6233), + [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), @@ -633817,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), @@ -633826,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), - [sym__identifier_token] = ACTIONS(5857), - [anon_sym_extern] = ACTIONS(5857), - [anon_sym_alias] = ACTIONS(5857), - [anon_sym_global] = ACTIONS(5857), - [anon_sym_unsafe] = ACTIONS(5857), - [anon_sym_static] = ACTIONS(5857), - [anon_sym_LBRACK] = ACTIONS(5859), - [anon_sym_public] = ACTIONS(5857), - [anon_sym_private] = ACTIONS(5857), - [anon_sym_readonly] = ACTIONS(5857), - [anon_sym_abstract] = ACTIONS(5857), - [anon_sym_async] = ACTIONS(5857), - [anon_sym_const] = ACTIONS(5857), - [anon_sym_file] = ACTIONS(5857), - [anon_sym_fixed] = ACTIONS(5857), - [anon_sym_internal] = ACTIONS(5857), - [anon_sym_new] = ACTIONS(5857), - [anon_sym_override] = ACTIONS(5857), - [anon_sym_partial] = ACTIONS(5857), - [anon_sym_protected] = ACTIONS(5857), - [anon_sym_required] = ACTIONS(5857), - [anon_sym_sealed] = ACTIONS(5857), - [anon_sym_virtual] = ACTIONS(5857), - [anon_sym_volatile] = ACTIONS(5857), - [anon_sym_where] = ACTIONS(5857), - [anon_sym_notnull] = ACTIONS(5857), - [anon_sym_unmanaged] = ACTIONS(5857), - [sym_accessor_get] = ACTIONS(5857), - [sym_accessor_set] = ACTIONS(5857), - [sym_accessor_add] = ACTIONS(5857), - [sym_accessor_remove] = ACTIONS(5857), - [sym_accessor_init] = ACTIONS(5857), - [anon_sym_scoped] = ACTIONS(5857), - [anon_sym_var] = ACTIONS(5857), - [anon_sym_yield] = ACTIONS(5857), - [anon_sym_when] = 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_ascending] = ACTIONS(5857), - [anon_sym_descending] = ACTIONS(5857), - [anon_sym_group] = ACTIONS(5857), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_select] = ACTIONS(5857), - [sym_grit_metavariable] = ACTIONS(5859), - [aux_sym_preproc_if_token1] = ACTIONS(5859), + [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), @@ -633888,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), @@ -633897,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(7156), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7158), - [anon_sym_DASH_EQ] = ACTIONS(7158), - [anon_sym_STAR_EQ] = ACTIONS(7158), - [anon_sym_SLASH_EQ] = ACTIONS(7158), - [anon_sym_PERCENT_EQ] = ACTIONS(7158), - [anon_sym_AMP_EQ] = ACTIONS(7158), - [anon_sym_CARET_EQ] = ACTIONS(7158), - [anon_sym_PIPE_EQ] = ACTIONS(7158), - [anon_sym_LT_LT_EQ] = ACTIONS(7158), - [anon_sym_GT_GT_EQ] = ACTIONS(7158), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7158), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7158), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_by] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -633959,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), @@ -633968,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_SEMI] = ACTIONS(6259), - [anon_sym_LBRACK] = ACTIONS(6259), - [anon_sym_COLON] = ACTIONS(6259), - [anon_sym_COMMA] = ACTIONS(6259), - [anon_sym_RBRACK] = ACTIONS(6259), - [anon_sym_LPAREN] = ACTIONS(6259), - [anon_sym_RPAREN] = ACTIONS(6259), - [anon_sym_RBRACE] = ACTIONS(6259), - [anon_sym_LT] = ACTIONS(6261), - [anon_sym_GT] = ACTIONS(6261), - [anon_sym_in] = ACTIONS(6259), - [anon_sym_QMARK] = ACTIONS(6261), - [anon_sym_BANG] = ACTIONS(6261), - [anon_sym_PLUS_PLUS] = ACTIONS(6259), - [anon_sym_DASH_DASH] = ACTIONS(6259), - [anon_sym_PLUS] = ACTIONS(6261), - [anon_sym_DASH] = ACTIONS(6261), - [anon_sym_STAR] = ACTIONS(6259), - [anon_sym_SLASH] = ACTIONS(6261), - [anon_sym_PERCENT] = ACTIONS(6259), - [anon_sym_CARET] = ACTIONS(6259), - [anon_sym_PIPE] = ACTIONS(6261), - [anon_sym_AMP] = ACTIONS(6261), - [anon_sym_LT_LT] = ACTIONS(6259), - [anon_sym_GT_GT] = ACTIONS(6261), - [anon_sym_GT_GT_GT] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6259), - [anon_sym_BANG_EQ] = ACTIONS(6259), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_DOT] = ACTIONS(6261), - [anon_sym_EQ_GT] = ACTIONS(6259), - [anon_sym_switch] = ACTIONS(6259), - [anon_sym_when] = ACTIONS(6259), - [anon_sym_DOT_DOT] = ACTIONS(6259), - [anon_sym_and] = ACTIONS(6259), - [anon_sym_or] = ACTIONS(6259), - [anon_sym_AMP_AMP] = ACTIONS(6259), - [anon_sym_PIPE_PIPE] = ACTIONS(6259), - [sym_op_coalescing] = ACTIONS(6259), - [anon_sym_on] = ACTIONS(6259), - [anon_sym_equals] = ACTIONS(6259), - [anon_sym_by] = ACTIONS(6259), - [anon_sym_as] = ACTIONS(6259), - [anon_sym_is] = ACTIONS(6259), - [anon_sym_DASH_GT] = ACTIONS(6259), - [anon_sym_with] = ACTIONS(6259), - [aux_sym_preproc_if_token3] = ACTIONS(6259), - [aux_sym_preproc_else_token1] = ACTIONS(6259), - [aux_sym_preproc_elif_token1] = ACTIONS(6259), + [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), @@ -634030,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), @@ -634039,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(6265), - [anon_sym_LBRACK] = ACTIONS(6265), - [anon_sym_COLON] = ACTIONS(6265), - [anon_sym_COMMA] = ACTIONS(6265), - [anon_sym_RBRACK] = ACTIONS(6265), - [anon_sym_LPAREN] = ACTIONS(6265), - [anon_sym_RPAREN] = ACTIONS(6265), - [anon_sym_RBRACE] = ACTIONS(6265), - [anon_sym_LT] = ACTIONS(6267), - [anon_sym_GT] = ACTIONS(6267), - [anon_sym_in] = ACTIONS(6265), - [anon_sym_QMARK] = ACTIONS(6267), - [anon_sym_BANG] = ACTIONS(6267), - [anon_sym_PLUS_PLUS] = ACTIONS(6265), - [anon_sym_DASH_DASH] = ACTIONS(6265), - [anon_sym_PLUS] = ACTIONS(6267), - [anon_sym_DASH] = ACTIONS(6267), - [anon_sym_STAR] = ACTIONS(6265), - [anon_sym_SLASH] = ACTIONS(6267), - [anon_sym_PERCENT] = ACTIONS(6265), - [anon_sym_CARET] = ACTIONS(6265), - [anon_sym_PIPE] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6265), - [anon_sym_GT_GT] = ACTIONS(6267), - [anon_sym_GT_GT_GT] = ACTIONS(6265), - [anon_sym_EQ_EQ] = ACTIONS(6265), - [anon_sym_BANG_EQ] = ACTIONS(6265), - [anon_sym_GT_EQ] = ACTIONS(6265), - [anon_sym_LT_EQ] = ACTIONS(6265), - [anon_sym_DOT] = ACTIONS(6267), - [anon_sym_EQ_GT] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6265), - [anon_sym_when] = ACTIONS(6265), - [anon_sym_DOT_DOT] = ACTIONS(6265), - [anon_sym_and] = ACTIONS(6265), - [anon_sym_or] = ACTIONS(6265), - [anon_sym_AMP_AMP] = ACTIONS(6265), - [anon_sym_PIPE_PIPE] = ACTIONS(6265), - [sym_op_coalescing] = ACTIONS(6265), - [anon_sym_on] = ACTIONS(6265), - [anon_sym_equals] = ACTIONS(6265), - [anon_sym_by] = ACTIONS(6265), - [anon_sym_as] = ACTIONS(6265), - [anon_sym_is] = ACTIONS(6265), - [anon_sym_DASH_GT] = ACTIONS(6265), - [anon_sym_with] = ACTIONS(6265), - [aux_sym_preproc_if_token3] = ACTIONS(6265), - [aux_sym_preproc_else_token1] = ACTIONS(6265), - [aux_sym_preproc_elif_token1] = ACTIONS(6265), + [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), @@ -634101,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), @@ -634110,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), - [sym__identifier_token] = ACTIONS(5821), - [anon_sym_extern] = ACTIONS(5821), - [anon_sym_alias] = ACTIONS(5821), - [anon_sym_global] = ACTIONS(5821), - [anon_sym_unsafe] = ACTIONS(5821), - [anon_sym_static] = ACTIONS(5821), - [anon_sym_LBRACK] = ACTIONS(5823), - [anon_sym_public] = ACTIONS(5821), - [anon_sym_private] = ACTIONS(5821), - [anon_sym_readonly] = ACTIONS(5821), - [anon_sym_abstract] = ACTIONS(5821), - [anon_sym_async] = ACTIONS(5821), - [anon_sym_const] = ACTIONS(5821), - [anon_sym_file] = ACTIONS(5821), - [anon_sym_fixed] = ACTIONS(5821), - [anon_sym_internal] = ACTIONS(5821), - [anon_sym_new] = ACTIONS(5821), - [anon_sym_override] = ACTIONS(5821), - [anon_sym_partial] = ACTIONS(5821), - [anon_sym_protected] = ACTIONS(5821), - [anon_sym_required] = ACTIONS(5821), - [anon_sym_sealed] = ACTIONS(5821), - [anon_sym_virtual] = ACTIONS(5821), - [anon_sym_volatile] = ACTIONS(5821), - [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(5823), - [aux_sym_preproc_if_token1] = ACTIONS(5823), + [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), @@ -634172,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), @@ -634181,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(6277), - [anon_sym_LBRACK] = ACTIONS(6277), - [anon_sym_COLON] = ACTIONS(6277), - [anon_sym_COMMA] = ACTIONS(6277), - [anon_sym_RBRACK] = ACTIONS(6277), - [anon_sym_LPAREN] = ACTIONS(6277), - [anon_sym_RPAREN] = ACTIONS(6277), - [anon_sym_RBRACE] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6279), - [anon_sym_GT] = ACTIONS(6279), - [anon_sym_in] = ACTIONS(6277), - [anon_sym_QMARK] = ACTIONS(6279), - [anon_sym_BANG] = ACTIONS(6279), - [anon_sym_PLUS_PLUS] = ACTIONS(6277), - [anon_sym_DASH_DASH] = ACTIONS(6277), - [anon_sym_PLUS] = ACTIONS(6279), - [anon_sym_DASH] = ACTIONS(6279), - [anon_sym_STAR] = ACTIONS(6277), - [anon_sym_SLASH] = ACTIONS(6279), - [anon_sym_PERCENT] = ACTIONS(6277), - [anon_sym_CARET] = ACTIONS(6277), - [anon_sym_PIPE] = ACTIONS(6279), - [anon_sym_AMP] = ACTIONS(6279), - [anon_sym_LT_LT] = ACTIONS(6277), - [anon_sym_GT_GT] = ACTIONS(6279), - [anon_sym_GT_GT_GT] = ACTIONS(6277), - [anon_sym_EQ_EQ] = ACTIONS(6277), - [anon_sym_BANG_EQ] = ACTIONS(6277), - [anon_sym_GT_EQ] = ACTIONS(6277), - [anon_sym_LT_EQ] = ACTIONS(6277), - [anon_sym_DOT] = ACTIONS(6279), - [anon_sym_EQ_GT] = ACTIONS(6277), - [anon_sym_switch] = ACTIONS(6277), - [anon_sym_when] = ACTIONS(6277), - [anon_sym_DOT_DOT] = ACTIONS(6277), - [anon_sym_and] = ACTIONS(6277), - [anon_sym_or] = ACTIONS(6277), - [anon_sym_AMP_AMP] = ACTIONS(6277), - [anon_sym_PIPE_PIPE] = ACTIONS(6277), - [sym_op_coalescing] = ACTIONS(6277), - [anon_sym_on] = ACTIONS(6277), - [anon_sym_equals] = ACTIONS(6277), - [anon_sym_by] = ACTIONS(6277), - [anon_sym_as] = ACTIONS(6277), - [anon_sym_is] = ACTIONS(6277), - [anon_sym_DASH_GT] = ACTIONS(6277), - [anon_sym_with] = ACTIONS(6277), - [aux_sym_preproc_if_token3] = ACTIONS(6277), - [aux_sym_preproc_else_token1] = ACTIONS(6277), - [aux_sym_preproc_elif_token1] = ACTIONS(6277), + [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), @@ -634243,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), @@ -634252,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(6229), - [anon_sym_LBRACK] = ACTIONS(6229), - [anon_sym_COLON] = ACTIONS(6229), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_RBRACK] = ACTIONS(6229), - [anon_sym_LPAREN] = ACTIONS(6229), - [anon_sym_RPAREN] = ACTIONS(6229), - [anon_sym_RBRACE] = ACTIONS(6229), - [anon_sym_LT] = ACTIONS(6231), - [anon_sym_GT] = ACTIONS(6231), - [anon_sym_in] = ACTIONS(6229), - [anon_sym_QMARK] = ACTIONS(6231), - [anon_sym_BANG] = ACTIONS(6231), - [anon_sym_PLUS_PLUS] = ACTIONS(6229), - [anon_sym_DASH_DASH] = ACTIONS(6229), - [anon_sym_PLUS] = ACTIONS(6231), - [anon_sym_DASH] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(6229), - [anon_sym_SLASH] = ACTIONS(6231), - [anon_sym_PERCENT] = ACTIONS(6229), - [anon_sym_CARET] = ACTIONS(6229), - [anon_sym_PIPE] = ACTIONS(6231), - [anon_sym_AMP] = ACTIONS(6231), - [anon_sym_LT_LT] = ACTIONS(6229), - [anon_sym_GT_GT] = ACTIONS(6231), - [anon_sym_GT_GT_GT] = ACTIONS(6229), - [anon_sym_EQ_EQ] = ACTIONS(6229), - [anon_sym_BANG_EQ] = ACTIONS(6229), - [anon_sym_GT_EQ] = ACTIONS(6229), - [anon_sym_LT_EQ] = ACTIONS(6229), - [anon_sym_DOT] = ACTIONS(6231), - [anon_sym_EQ_GT] = ACTIONS(6229), - [anon_sym_switch] = ACTIONS(6229), - [anon_sym_when] = ACTIONS(6229), - [anon_sym_DOT_DOT] = ACTIONS(6229), - [anon_sym_and] = ACTIONS(6229), - [anon_sym_or] = ACTIONS(6229), - [anon_sym_AMP_AMP] = ACTIONS(6229), - [anon_sym_PIPE_PIPE] = ACTIONS(6229), - [sym_op_coalescing] = ACTIONS(6229), - [anon_sym_on] = ACTIONS(6229), - [anon_sym_equals] = ACTIONS(6229), - [anon_sym_by] = ACTIONS(6229), - [anon_sym_as] = ACTIONS(6229), - [anon_sym_is] = ACTIONS(6229), - [anon_sym_DASH_GT] = ACTIONS(6229), - [anon_sym_with] = ACTIONS(6229), - [aux_sym_preproc_if_token3] = ACTIONS(6229), - [aux_sym_preproc_else_token1] = ACTIONS(6229), - [aux_sym_preproc_elif_token1] = ACTIONS(6229), + [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), @@ -634314,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), @@ -634323,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_EQ] = ACTIONS(7160), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_when] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7162), - [anon_sym_DASH_EQ] = ACTIONS(7162), - [anon_sym_STAR_EQ] = ACTIONS(7162), - [anon_sym_SLASH_EQ] = ACTIONS(7162), - [anon_sym_PERCENT_EQ] = ACTIONS(7162), - [anon_sym_AMP_EQ] = ACTIONS(7162), - [anon_sym_CARET_EQ] = ACTIONS(7162), - [anon_sym_PIPE_EQ] = ACTIONS(7162), - [anon_sym_LT_LT_EQ] = ACTIONS(7162), - [anon_sym_GT_GT_EQ] = ACTIONS(7162), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7162), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7162), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -634385,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), @@ -634394,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), - [sym__identifier_token] = ACTIONS(5604), - [anon_sym_extern] = ACTIONS(5604), - [anon_sym_alias] = ACTIONS(5604), - [anon_sym_global] = ACTIONS(5604), - [anon_sym_unsafe] = ACTIONS(5604), - [anon_sym_static] = ACTIONS(5604), - [anon_sym_LBRACK] = ACTIONS(5606), - [anon_sym_public] = ACTIONS(5604), - [anon_sym_private] = ACTIONS(5604), - [anon_sym_readonly] = ACTIONS(5604), - [anon_sym_abstract] = ACTIONS(5604), - [anon_sym_async] = ACTIONS(5604), - [anon_sym_const] = ACTIONS(5604), - [anon_sym_file] = ACTIONS(5604), - [anon_sym_fixed] = ACTIONS(5604), - [anon_sym_internal] = ACTIONS(5604), - [anon_sym_new] = ACTIONS(5604), - [anon_sym_override] = ACTIONS(5604), - [anon_sym_partial] = ACTIONS(5604), - [anon_sym_protected] = ACTIONS(5604), - [anon_sym_required] = ACTIONS(5604), - [anon_sym_sealed] = ACTIONS(5604), - [anon_sym_virtual] = ACTIONS(5604), - [anon_sym_volatile] = ACTIONS(5604), - [anon_sym_where] = ACTIONS(5604), - [anon_sym_notnull] = ACTIONS(5604), - [anon_sym_unmanaged] = ACTIONS(5604), - [sym_accessor_get] = ACTIONS(5604), - [sym_accessor_set] = ACTIONS(5604), - [sym_accessor_add] = ACTIONS(5604), - [sym_accessor_remove] = ACTIONS(5604), - [sym_accessor_init] = ACTIONS(5604), - [anon_sym_scoped] = ACTIONS(5604), - [anon_sym_var] = ACTIONS(5604), - [anon_sym_yield] = ACTIONS(5604), - [anon_sym_when] = ACTIONS(5604), - [anon_sym_from] = ACTIONS(5604), - [anon_sym_into] = ACTIONS(5604), - [anon_sym_join] = ACTIONS(5604), - [anon_sym_on] = ACTIONS(5604), - [anon_sym_equals] = ACTIONS(5604), - [anon_sym_let] = ACTIONS(5604), - [anon_sym_orderby] = ACTIONS(5604), - [anon_sym_ascending] = ACTIONS(5604), - [anon_sym_descending] = ACTIONS(5604), - [anon_sym_group] = ACTIONS(5604), - [anon_sym_by] = ACTIONS(5604), - [anon_sym_select] = ACTIONS(5604), - [sym_grit_metavariable] = ACTIONS(5606), - [aux_sym_preproc_if_token1] = ACTIONS(5606), + [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), @@ -634456,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), @@ -634465,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), - [sym__identifier_token] = ACTIONS(5510), - [anon_sym_extern] = ACTIONS(5510), - [anon_sym_alias] = ACTIONS(5510), - [anon_sym_global] = ACTIONS(5510), - [anon_sym_unsafe] = ACTIONS(5510), - [anon_sym_static] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_public] = ACTIONS(5510), - [anon_sym_private] = ACTIONS(5510), - [anon_sym_readonly] = ACTIONS(5510), - [anon_sym_abstract] = ACTIONS(5510), - [anon_sym_async] = ACTIONS(5510), - [anon_sym_const] = ACTIONS(5510), - [anon_sym_file] = ACTIONS(5510), - [anon_sym_fixed] = ACTIONS(5510), - [anon_sym_internal] = ACTIONS(5510), - [anon_sym_new] = ACTIONS(5510), - [anon_sym_override] = ACTIONS(5510), - [anon_sym_partial] = ACTIONS(5510), - [anon_sym_protected] = ACTIONS(5510), - [anon_sym_required] = ACTIONS(5510), - [anon_sym_sealed] = ACTIONS(5510), - [anon_sym_virtual] = ACTIONS(5510), - [anon_sym_volatile] = ACTIONS(5510), - [anon_sym_where] = ACTIONS(5510), - [anon_sym_notnull] = ACTIONS(5510), - [anon_sym_unmanaged] = ACTIONS(5510), - [sym_accessor_get] = ACTIONS(5510), - [sym_accessor_set] = ACTIONS(5510), - [sym_accessor_add] = ACTIONS(5510), - [sym_accessor_remove] = ACTIONS(5510), - [sym_accessor_init] = ACTIONS(5510), - [anon_sym_scoped] = ACTIONS(5510), - [anon_sym_var] = ACTIONS(5510), - [anon_sym_yield] = ACTIONS(5510), - [anon_sym_when] = ACTIONS(5510), - [anon_sym_from] = ACTIONS(5510), - [anon_sym_into] = ACTIONS(5510), - [anon_sym_join] = ACTIONS(5510), - [anon_sym_on] = ACTIONS(5510), - [anon_sym_equals] = ACTIONS(5510), - [anon_sym_let] = ACTIONS(5510), - [anon_sym_orderby] = ACTIONS(5510), - [anon_sym_ascending] = ACTIONS(5510), - [anon_sym_descending] = ACTIONS(5510), - [anon_sym_group] = ACTIONS(5510), - [anon_sym_by] = ACTIONS(5510), - [anon_sym_select] = ACTIONS(5510), - [sym_grit_metavariable] = ACTIONS(5512), - [aux_sym_preproc_if_token1] = ACTIONS(5512), + [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), @@ -634527,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), @@ -634536,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), - [sym__identifier_token] = ACTIONS(5556), - [anon_sym_extern] = ACTIONS(5556), - [anon_sym_alias] = ACTIONS(5556), - [anon_sym_global] = ACTIONS(5556), - [anon_sym_unsafe] = ACTIONS(5556), - [anon_sym_static] = ACTIONS(5556), - [anon_sym_LBRACK] = ACTIONS(5558), - [anon_sym_public] = ACTIONS(5556), - [anon_sym_private] = ACTIONS(5556), - [anon_sym_readonly] = ACTIONS(5556), - [anon_sym_abstract] = ACTIONS(5556), - [anon_sym_async] = ACTIONS(5556), - [anon_sym_const] = ACTIONS(5556), - [anon_sym_file] = ACTIONS(5556), - [anon_sym_fixed] = ACTIONS(5556), - [anon_sym_internal] = ACTIONS(5556), - [anon_sym_new] = ACTIONS(5556), - [anon_sym_override] = ACTIONS(5556), - [anon_sym_partial] = ACTIONS(5556), - [anon_sym_protected] = ACTIONS(5556), - [anon_sym_required] = ACTIONS(5556), - [anon_sym_sealed] = ACTIONS(5556), - [anon_sym_virtual] = ACTIONS(5556), - [anon_sym_volatile] = ACTIONS(5556), - [anon_sym_where] = ACTIONS(5556), - [anon_sym_notnull] = ACTIONS(5556), - [anon_sym_unmanaged] = ACTIONS(5556), - [sym_accessor_get] = ACTIONS(5556), - [sym_accessor_set] = ACTIONS(5556), - [sym_accessor_add] = ACTIONS(5556), - [sym_accessor_remove] = ACTIONS(5556), - [sym_accessor_init] = ACTIONS(5556), - [anon_sym_scoped] = ACTIONS(5556), - [anon_sym_var] = ACTIONS(5556), - [anon_sym_yield] = ACTIONS(5556), - [anon_sym_when] = ACTIONS(5556), - [anon_sym_from] = ACTIONS(5556), - [anon_sym_into] = ACTIONS(5556), - [anon_sym_join] = ACTIONS(5556), - [anon_sym_on] = ACTIONS(5556), - [anon_sym_equals] = ACTIONS(5556), - [anon_sym_let] = ACTIONS(5556), - [anon_sym_orderby] = ACTIONS(5556), - [anon_sym_ascending] = ACTIONS(5556), - [anon_sym_descending] = ACTIONS(5556), - [anon_sym_group] = ACTIONS(5556), - [anon_sym_by] = ACTIONS(5556), - [anon_sym_select] = ACTIONS(5556), - [sym_grit_metavariable] = ACTIONS(5558), - [aux_sym_preproc_if_token1] = ACTIONS(5558), + [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), @@ -634598,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), @@ -634607,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_SEMI] = ACTIONS(6225), - [anon_sym_LBRACK] = ACTIONS(6225), - [anon_sym_COLON] = ACTIONS(6225), - [anon_sym_COMMA] = ACTIONS(6225), - [anon_sym_RBRACK] = ACTIONS(6225), - [anon_sym_LPAREN] = ACTIONS(6225), - [anon_sym_RPAREN] = ACTIONS(6225), - [anon_sym_RBRACE] = ACTIONS(6225), - [anon_sym_LT] = ACTIONS(6227), - [anon_sym_GT] = ACTIONS(6227), - [anon_sym_in] = ACTIONS(6225), - [anon_sym_QMARK] = ACTIONS(6227), - [anon_sym_BANG] = ACTIONS(6227), - [anon_sym_PLUS_PLUS] = ACTIONS(6225), - [anon_sym_DASH_DASH] = ACTIONS(6225), - [anon_sym_PLUS] = ACTIONS(6227), - [anon_sym_DASH] = ACTIONS(6227), - [anon_sym_STAR] = ACTIONS(6225), - [anon_sym_SLASH] = ACTIONS(6227), - [anon_sym_PERCENT] = ACTIONS(6225), - [anon_sym_CARET] = ACTIONS(6225), - [anon_sym_PIPE] = ACTIONS(6227), - [anon_sym_AMP] = ACTIONS(6227), - [anon_sym_LT_LT] = ACTIONS(6225), - [anon_sym_GT_GT] = ACTIONS(6227), - [anon_sym_GT_GT_GT] = ACTIONS(6225), - [anon_sym_EQ_EQ] = ACTIONS(6225), - [anon_sym_BANG_EQ] = ACTIONS(6225), - [anon_sym_GT_EQ] = ACTIONS(6225), - [anon_sym_LT_EQ] = ACTIONS(6225), - [anon_sym_DOT] = ACTIONS(6227), - [anon_sym_EQ_GT] = ACTIONS(6225), - [anon_sym_switch] = ACTIONS(6225), - [anon_sym_when] = ACTIONS(6225), - [anon_sym_DOT_DOT] = ACTIONS(6225), - [anon_sym_and] = ACTIONS(6225), - [anon_sym_or] = ACTIONS(6225), - [anon_sym_AMP_AMP] = ACTIONS(6225), - [anon_sym_PIPE_PIPE] = ACTIONS(6225), - [sym_op_coalescing] = ACTIONS(6225), - [anon_sym_on] = ACTIONS(6225), - [anon_sym_equals] = ACTIONS(6225), - [anon_sym_by] = ACTIONS(6225), - [anon_sym_as] = ACTIONS(6225), - [anon_sym_is] = ACTIONS(6225), - [anon_sym_DASH_GT] = ACTIONS(6225), - [anon_sym_with] = ACTIONS(6225), - [aux_sym_preproc_if_token3] = ACTIONS(6225), - [aux_sym_preproc_else_token1] = ACTIONS(6225), - [aux_sym_preproc_elif_token1] = ACTIONS(6225), + [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), @@ -634669,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), @@ -634678,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(6221), - [anon_sym_LBRACK] = ACTIONS(6221), - [anon_sym_COLON] = ACTIONS(6221), - [anon_sym_COMMA] = ACTIONS(6221), - [anon_sym_RBRACK] = ACTIONS(6221), - [anon_sym_LPAREN] = ACTIONS(6221), - [anon_sym_RPAREN] = ACTIONS(6221), - [anon_sym_RBRACE] = ACTIONS(6221), - [anon_sym_LT] = ACTIONS(6223), - [anon_sym_GT] = ACTIONS(6223), - [anon_sym_in] = ACTIONS(6221), - [anon_sym_QMARK] = ACTIONS(6223), - [anon_sym_BANG] = ACTIONS(6223), - [anon_sym_PLUS_PLUS] = ACTIONS(6221), - [anon_sym_DASH_DASH] = ACTIONS(6221), - [anon_sym_PLUS] = ACTIONS(6223), - [anon_sym_DASH] = ACTIONS(6223), - [anon_sym_STAR] = ACTIONS(6221), - [anon_sym_SLASH] = ACTIONS(6223), - [anon_sym_PERCENT] = ACTIONS(6221), - [anon_sym_CARET] = ACTIONS(6221), - [anon_sym_PIPE] = ACTIONS(6223), - [anon_sym_AMP] = ACTIONS(6223), - [anon_sym_LT_LT] = ACTIONS(6221), - [anon_sym_GT_GT] = ACTIONS(6223), - [anon_sym_GT_GT_GT] = ACTIONS(6221), - [anon_sym_EQ_EQ] = ACTIONS(6221), - [anon_sym_BANG_EQ] = ACTIONS(6221), - [anon_sym_GT_EQ] = ACTIONS(6221), - [anon_sym_LT_EQ] = ACTIONS(6221), - [anon_sym_DOT] = ACTIONS(6223), - [anon_sym_EQ_GT] = ACTIONS(6221), - [anon_sym_switch] = ACTIONS(6221), - [anon_sym_when] = ACTIONS(6221), - [anon_sym_DOT_DOT] = ACTIONS(6221), - [anon_sym_and] = ACTIONS(6221), - [anon_sym_or] = ACTIONS(6221), - [anon_sym_AMP_AMP] = ACTIONS(6221), - [anon_sym_PIPE_PIPE] = ACTIONS(6221), - [sym_op_coalescing] = ACTIONS(6221), - [anon_sym_on] = ACTIONS(6221), - [anon_sym_equals] = ACTIONS(6221), - [anon_sym_by] = ACTIONS(6221), - [anon_sym_as] = ACTIONS(6221), - [anon_sym_is] = ACTIONS(6221), - [anon_sym_DASH_GT] = ACTIONS(6221), - [anon_sym_with] = ACTIONS(6221), - [aux_sym_preproc_if_token3] = ACTIONS(6221), - [aux_sym_preproc_else_token1] = ACTIONS(6221), - [aux_sym_preproc_elif_token1] = ACTIONS(6221), + [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), @@ -634740,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), @@ -634749,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_SEMI] = ACTIONS(6213), - [anon_sym_LBRACK] = ACTIONS(6213), - [anon_sym_COLON] = ACTIONS(6213), - [anon_sym_COMMA] = ACTIONS(6213), - [anon_sym_RBRACK] = ACTIONS(6213), - [anon_sym_LPAREN] = ACTIONS(6213), - [anon_sym_RPAREN] = ACTIONS(6213), - [anon_sym_RBRACE] = ACTIONS(6213), - [anon_sym_LT] = ACTIONS(6215), - [anon_sym_GT] = ACTIONS(6215), - [anon_sym_in] = ACTIONS(6213), - [anon_sym_QMARK] = ACTIONS(6215), - [anon_sym_BANG] = ACTIONS(6215), - [anon_sym_PLUS_PLUS] = ACTIONS(6213), - [anon_sym_DASH_DASH] = ACTIONS(6213), - [anon_sym_PLUS] = ACTIONS(6215), - [anon_sym_DASH] = ACTIONS(6215), - [anon_sym_STAR] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6215), - [anon_sym_PERCENT] = ACTIONS(6213), - [anon_sym_CARET] = ACTIONS(6213), - [anon_sym_PIPE] = ACTIONS(6215), - [anon_sym_AMP] = ACTIONS(6215), - [anon_sym_LT_LT] = ACTIONS(6213), - [anon_sym_GT_GT] = ACTIONS(6215), - [anon_sym_GT_GT_GT] = ACTIONS(6213), - [anon_sym_EQ_EQ] = ACTIONS(6213), - [anon_sym_BANG_EQ] = ACTIONS(6213), - [anon_sym_GT_EQ] = ACTIONS(6213), - [anon_sym_LT_EQ] = ACTIONS(6213), - [anon_sym_DOT] = ACTIONS(6215), - [anon_sym_EQ_GT] = ACTIONS(6213), - [anon_sym_switch] = ACTIONS(6213), - [anon_sym_when] = ACTIONS(6213), - [anon_sym_DOT_DOT] = ACTIONS(6213), - [anon_sym_and] = ACTIONS(6213), - [anon_sym_or] = ACTIONS(6213), - [anon_sym_AMP_AMP] = ACTIONS(6213), - [anon_sym_PIPE_PIPE] = ACTIONS(6213), - [sym_op_coalescing] = ACTIONS(6213), - [anon_sym_on] = ACTIONS(6213), - [anon_sym_equals] = ACTIONS(6213), - [anon_sym_by] = ACTIONS(6213), - [anon_sym_as] = ACTIONS(6213), - [anon_sym_is] = ACTIONS(6213), - [anon_sym_DASH_GT] = ACTIONS(6213), - [anon_sym_with] = ACTIONS(6213), - [aux_sym_preproc_if_token3] = ACTIONS(6213), - [aux_sym_preproc_else_token1] = ACTIONS(6213), - [aux_sym_preproc_elif_token1] = ACTIONS(6213), + [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), @@ -634811,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), @@ -634820,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(6207), - [anon_sym_LBRACK] = ACTIONS(6207), - [anon_sym_COLON] = ACTIONS(6207), - [anon_sym_COMMA] = ACTIONS(6207), - [anon_sym_RBRACK] = ACTIONS(6207), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_RPAREN] = ACTIONS(6207), - [anon_sym_RBRACE] = ACTIONS(6207), - [anon_sym_LT] = ACTIONS(6209), - [anon_sym_GT] = ACTIONS(6209), - [anon_sym_in] = ACTIONS(6207), - [anon_sym_QMARK] = ACTIONS(6209), - [anon_sym_BANG] = ACTIONS(6209), - [anon_sym_PLUS_PLUS] = ACTIONS(6207), - [anon_sym_DASH_DASH] = ACTIONS(6207), - [anon_sym_PLUS] = ACTIONS(6209), - [anon_sym_DASH] = ACTIONS(6209), - [anon_sym_STAR] = ACTIONS(6207), - [anon_sym_SLASH] = ACTIONS(6209), - [anon_sym_PERCENT] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6207), - [anon_sym_PIPE] = ACTIONS(6209), - [anon_sym_AMP] = ACTIONS(6209), - [anon_sym_LT_LT] = ACTIONS(6207), - [anon_sym_GT_GT] = ACTIONS(6209), - [anon_sym_GT_GT_GT] = ACTIONS(6207), - [anon_sym_EQ_EQ] = ACTIONS(6207), - [anon_sym_BANG_EQ] = ACTIONS(6207), - [anon_sym_GT_EQ] = ACTIONS(6207), - [anon_sym_LT_EQ] = ACTIONS(6207), - [anon_sym_DOT] = ACTIONS(6209), - [anon_sym_EQ_GT] = ACTIONS(6207), - [anon_sym_switch] = ACTIONS(6207), - [anon_sym_when] = ACTIONS(6207), - [anon_sym_DOT_DOT] = ACTIONS(6207), - [anon_sym_and] = ACTIONS(6207), - [anon_sym_or] = ACTIONS(6207), - [anon_sym_AMP_AMP] = ACTIONS(6207), - [anon_sym_PIPE_PIPE] = ACTIONS(6207), - [sym_op_coalescing] = ACTIONS(6207), - [anon_sym_on] = ACTIONS(6207), - [anon_sym_equals] = ACTIONS(6207), - [anon_sym_by] = ACTIONS(6207), - [anon_sym_as] = ACTIONS(6207), - [anon_sym_is] = ACTIONS(6207), - [anon_sym_DASH_GT] = ACTIONS(6207), - [anon_sym_with] = ACTIONS(6207), - [aux_sym_preproc_if_token3] = ACTIONS(6207), - [aux_sym_preproc_else_token1] = ACTIONS(6207), - [aux_sym_preproc_elif_token1] = ACTIONS(6207), + [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), @@ -634882,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), @@ -634891,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(6203), - [anon_sym_LBRACK] = ACTIONS(6203), - [anon_sym_COLON] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_RBRACK] = ACTIONS(6203), - [anon_sym_LPAREN] = ACTIONS(6203), - [anon_sym_RPAREN] = ACTIONS(6203), - [anon_sym_RBRACE] = ACTIONS(6203), - [anon_sym_LT] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6205), - [anon_sym_in] = ACTIONS(6203), - [anon_sym_QMARK] = ACTIONS(6205), - [anon_sym_BANG] = ACTIONS(6205), - [anon_sym_PLUS_PLUS] = ACTIONS(6203), - [anon_sym_DASH_DASH] = ACTIONS(6203), - [anon_sym_PLUS] = ACTIONS(6205), - [anon_sym_DASH] = ACTIONS(6205), - [anon_sym_STAR] = ACTIONS(6203), - [anon_sym_SLASH] = ACTIONS(6205), - [anon_sym_PERCENT] = ACTIONS(6203), - [anon_sym_CARET] = ACTIONS(6203), - [anon_sym_PIPE] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6203), - [anon_sym_GT_GT] = ACTIONS(6205), - [anon_sym_GT_GT_GT] = ACTIONS(6203), - [anon_sym_EQ_EQ] = ACTIONS(6203), - [anon_sym_BANG_EQ] = ACTIONS(6203), - [anon_sym_GT_EQ] = ACTIONS(6203), - [anon_sym_LT_EQ] = ACTIONS(6203), - [anon_sym_DOT] = ACTIONS(6205), - [anon_sym_EQ_GT] = ACTIONS(6203), - [anon_sym_switch] = ACTIONS(6203), - [anon_sym_when] = ACTIONS(6203), - [anon_sym_DOT_DOT] = ACTIONS(6203), - [anon_sym_and] = ACTIONS(6203), - [anon_sym_or] = ACTIONS(6203), - [anon_sym_AMP_AMP] = ACTIONS(6203), - [anon_sym_PIPE_PIPE] = ACTIONS(6203), - [sym_op_coalescing] = ACTIONS(6203), - [anon_sym_on] = ACTIONS(6203), - [anon_sym_equals] = ACTIONS(6203), - [anon_sym_by] = ACTIONS(6203), - [anon_sym_as] = ACTIONS(6203), - [anon_sym_is] = ACTIONS(6203), - [anon_sym_DASH_GT] = ACTIONS(6203), - [anon_sym_with] = ACTIONS(6203), - [aux_sym_preproc_if_token3] = ACTIONS(6203), - [aux_sym_preproc_else_token1] = ACTIONS(6203), - [aux_sym_preproc_elif_token1] = ACTIONS(6203), + [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), @@ -634953,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), @@ -634962,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(6199), - [anon_sym_LBRACK] = ACTIONS(6199), - [anon_sym_COLON] = ACTIONS(6199), - [anon_sym_COMMA] = ACTIONS(6199), - [anon_sym_RBRACK] = ACTIONS(6199), - [anon_sym_LPAREN] = ACTIONS(6199), - [anon_sym_RPAREN] = ACTIONS(6199), - [anon_sym_RBRACE] = ACTIONS(6199), - [anon_sym_LT] = ACTIONS(6201), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_in] = ACTIONS(6199), - [anon_sym_QMARK] = ACTIONS(6201), - [anon_sym_BANG] = ACTIONS(6201), - [anon_sym_PLUS_PLUS] = ACTIONS(6199), - [anon_sym_DASH_DASH] = ACTIONS(6199), - [anon_sym_PLUS] = ACTIONS(6201), - [anon_sym_DASH] = ACTIONS(6201), - [anon_sym_STAR] = ACTIONS(6199), - [anon_sym_SLASH] = ACTIONS(6201), - [anon_sym_PERCENT] = ACTIONS(6199), - [anon_sym_CARET] = ACTIONS(6199), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_AMP] = ACTIONS(6201), - [anon_sym_LT_LT] = ACTIONS(6199), - [anon_sym_GT_GT] = ACTIONS(6201), - [anon_sym_GT_GT_GT] = ACTIONS(6199), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_GT_EQ] = ACTIONS(6199), - [anon_sym_LT_EQ] = ACTIONS(6199), - [anon_sym_DOT] = ACTIONS(6201), - [anon_sym_EQ_GT] = ACTIONS(6199), - [anon_sym_switch] = ACTIONS(6199), - [anon_sym_when] = ACTIONS(6199), - [anon_sym_DOT_DOT] = ACTIONS(6199), - [anon_sym_and] = ACTIONS(6199), - [anon_sym_or] = ACTIONS(6199), - [anon_sym_AMP_AMP] = ACTIONS(6199), - [anon_sym_PIPE_PIPE] = ACTIONS(6199), - [sym_op_coalescing] = ACTIONS(6199), - [anon_sym_on] = ACTIONS(6199), - [anon_sym_equals] = ACTIONS(6199), - [anon_sym_by] = ACTIONS(6199), - [anon_sym_as] = ACTIONS(6199), - [anon_sym_is] = ACTIONS(6199), - [anon_sym_DASH_GT] = ACTIONS(6199), - [anon_sym_with] = ACTIONS(6199), - [aux_sym_preproc_if_token3] = ACTIONS(6199), - [aux_sym_preproc_else_token1] = ACTIONS(6199), - [aux_sym_preproc_elif_token1] = ACTIONS(6199), + [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), @@ -635024,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), @@ -635033,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(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_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), @@ -635095,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), @@ -635104,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), - [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_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), @@ -635166,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), @@ -635175,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), - [sym__identifier_token] = ACTIONS(5582), - [anon_sym_extern] = ACTIONS(5582), - [anon_sym_alias] = ACTIONS(5582), - [anon_sym_global] = ACTIONS(5582), - [anon_sym_unsafe] = ACTIONS(5582), - [anon_sym_static] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5584), - [anon_sym_public] = ACTIONS(5582), - [anon_sym_private] = ACTIONS(5582), - [anon_sym_readonly] = ACTIONS(5582), - [anon_sym_abstract] = ACTIONS(5582), - [anon_sym_async] = ACTIONS(5582), - [anon_sym_const] = ACTIONS(5582), - [anon_sym_file] = ACTIONS(5582), - [anon_sym_fixed] = ACTIONS(5582), - [anon_sym_internal] = ACTIONS(5582), - [anon_sym_new] = ACTIONS(5582), - [anon_sym_override] = ACTIONS(5582), - [anon_sym_partial] = ACTIONS(5582), - [anon_sym_protected] = ACTIONS(5582), - [anon_sym_required] = ACTIONS(5582), - [anon_sym_sealed] = ACTIONS(5582), - [anon_sym_virtual] = ACTIONS(5582), - [anon_sym_volatile] = ACTIONS(5582), - [anon_sym_where] = ACTIONS(5582), - [anon_sym_notnull] = ACTIONS(5582), - [anon_sym_unmanaged] = ACTIONS(5582), - [sym_accessor_get] = ACTIONS(5582), - [sym_accessor_set] = ACTIONS(5582), - [sym_accessor_add] = ACTIONS(5582), - [sym_accessor_remove] = ACTIONS(5582), - [sym_accessor_init] = ACTIONS(5582), - [anon_sym_scoped] = ACTIONS(5582), - [anon_sym_var] = ACTIONS(5582), - [anon_sym_yield] = ACTIONS(5582), - [anon_sym_when] = ACTIONS(5582), - [anon_sym_from] = ACTIONS(5582), - [anon_sym_into] = ACTIONS(5582), - [anon_sym_join] = ACTIONS(5582), - [anon_sym_on] = ACTIONS(5582), - [anon_sym_equals] = ACTIONS(5582), - [anon_sym_let] = ACTIONS(5582), - [anon_sym_orderby] = ACTIONS(5582), - [anon_sym_ascending] = ACTIONS(5582), - [anon_sym_descending] = ACTIONS(5582), - [anon_sym_group] = ACTIONS(5582), - [anon_sym_by] = ACTIONS(5582), - [anon_sym_select] = ACTIONS(5582), - [sym_grit_metavariable] = ACTIONS(5584), - [aux_sym_preproc_if_token1] = ACTIONS(5584), + [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), @@ -635237,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), @@ -635246,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_SEMI] = ACTIONS(7118), - [anon_sym_LBRACK] = ACTIONS(7118), - [anon_sym_COLON] = ACTIONS(7118), - [anon_sym_COMMA] = ACTIONS(7118), - [anon_sym_RBRACK] = ACTIONS(7118), - [anon_sym_LPAREN] = ACTIONS(7118), - [anon_sym_RPAREN] = ACTIONS(7118), - [anon_sym_RBRACE] = ACTIONS(7118), - [anon_sym_LT] = ACTIONS(7120), - [anon_sym_GT] = ACTIONS(7120), - [anon_sym_in] = ACTIONS(7118), - [anon_sym_QMARK] = ACTIONS(7120), - [anon_sym_BANG] = ACTIONS(7120), - [anon_sym_PLUS_PLUS] = ACTIONS(7118), - [anon_sym_DASH_DASH] = ACTIONS(7118), - [anon_sym_PLUS] = ACTIONS(7120), - [anon_sym_DASH] = ACTIONS(7120), - [anon_sym_STAR] = ACTIONS(7118), - [anon_sym_SLASH] = ACTIONS(7120), - [anon_sym_PERCENT] = ACTIONS(7118), - [anon_sym_CARET] = ACTIONS(7118), - [anon_sym_PIPE] = ACTIONS(7120), - [anon_sym_AMP] = ACTIONS(7120), - [anon_sym_LT_LT] = ACTIONS(7118), - [anon_sym_GT_GT] = ACTIONS(7120), - [anon_sym_GT_GT_GT] = ACTIONS(7118), - [anon_sym_EQ_EQ] = ACTIONS(7118), - [anon_sym_BANG_EQ] = ACTIONS(7118), - [anon_sym_GT_EQ] = ACTIONS(7118), - [anon_sym_LT_EQ] = ACTIONS(7118), - [anon_sym_DOT] = ACTIONS(7120), - [anon_sym_EQ_GT] = ACTIONS(7118), - [anon_sym_switch] = ACTIONS(7118), - [anon_sym_when] = ACTIONS(7118), - [anon_sym_DOT_DOT] = ACTIONS(7118), - [anon_sym_and] = ACTIONS(7118), - [anon_sym_or] = ACTIONS(7118), - [anon_sym_AMP_AMP] = ACTIONS(7118), - [anon_sym_PIPE_PIPE] = ACTIONS(7118), - [sym_op_coalescing] = ACTIONS(7118), - [anon_sym_on] = ACTIONS(7118), - [anon_sym_equals] = ACTIONS(7118), - [anon_sym_by] = ACTIONS(7118), - [anon_sym_as] = ACTIONS(7118), - [anon_sym_is] = ACTIONS(7118), - [anon_sym_DASH_GT] = ACTIONS(7118), - [anon_sym_with] = ACTIONS(7118), - [aux_sym_preproc_if_token3] = ACTIONS(7118), - [aux_sym_preproc_else_token1] = ACTIONS(7118), - [aux_sym_preproc_elif_token1] = ACTIONS(7118), + [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), @@ -635308,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), @@ -635317,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_EQ] = ACTIONS(7164), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7166), - [anon_sym_DASH_EQ] = ACTIONS(7166), - [anon_sym_STAR_EQ] = ACTIONS(7166), - [anon_sym_SLASH_EQ] = ACTIONS(7166), - [anon_sym_PERCENT_EQ] = ACTIONS(7166), - [anon_sym_AMP_EQ] = ACTIONS(7166), - [anon_sym_CARET_EQ] = ACTIONS(7166), - [anon_sym_PIPE_EQ] = ACTIONS(7166), - [anon_sym_LT_LT_EQ] = ACTIONS(7166), - [anon_sym_GT_GT_EQ] = ACTIONS(7166), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7166), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7166), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_equals] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -635379,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), @@ -635388,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(6183), - [anon_sym_LBRACK] = ACTIONS(6183), - [anon_sym_COLON] = ACTIONS(6183), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_RBRACK] = ACTIONS(6183), - [anon_sym_LPAREN] = ACTIONS(6183), - [anon_sym_RPAREN] = ACTIONS(6183), - [anon_sym_RBRACE] = ACTIONS(6183), - [anon_sym_LT] = ACTIONS(6185), - [anon_sym_GT] = ACTIONS(6185), - [anon_sym_in] = ACTIONS(6183), - [anon_sym_QMARK] = ACTIONS(6185), - [anon_sym_BANG] = ACTIONS(6185), - [anon_sym_PLUS_PLUS] = ACTIONS(6183), - [anon_sym_DASH_DASH] = ACTIONS(6183), - [anon_sym_PLUS] = ACTIONS(6185), - [anon_sym_DASH] = ACTIONS(6185), - [anon_sym_STAR] = ACTIONS(6183), - [anon_sym_SLASH] = ACTIONS(6185), - [anon_sym_PERCENT] = ACTIONS(6183), - [anon_sym_CARET] = ACTIONS(6183), - [anon_sym_PIPE] = ACTIONS(6185), - [anon_sym_AMP] = ACTIONS(6185), - [anon_sym_LT_LT] = ACTIONS(6183), - [anon_sym_GT_GT] = ACTIONS(6185), - [anon_sym_GT_GT_GT] = ACTIONS(6183), - [anon_sym_EQ_EQ] = ACTIONS(6183), - [anon_sym_BANG_EQ] = ACTIONS(6183), - [anon_sym_GT_EQ] = ACTIONS(6183), - [anon_sym_LT_EQ] = ACTIONS(6183), - [anon_sym_DOT] = ACTIONS(6185), - [anon_sym_EQ_GT] = ACTIONS(6183), - [anon_sym_switch] = ACTIONS(6183), - [anon_sym_when] = ACTIONS(6183), - [anon_sym_DOT_DOT] = ACTIONS(6183), - [anon_sym_and] = ACTIONS(6183), - [anon_sym_or] = ACTIONS(6183), - [anon_sym_AMP_AMP] = ACTIONS(6183), - [anon_sym_PIPE_PIPE] = ACTIONS(6183), - [sym_op_coalescing] = ACTIONS(6183), - [anon_sym_on] = ACTIONS(6183), - [anon_sym_equals] = ACTIONS(6183), - [anon_sym_by] = ACTIONS(6183), - [anon_sym_as] = ACTIONS(6183), - [anon_sym_is] = ACTIONS(6183), - [anon_sym_DASH_GT] = ACTIONS(6183), - [anon_sym_with] = ACTIONS(6183), - [aux_sym_preproc_if_token3] = ACTIONS(6183), - [aux_sym_preproc_else_token1] = ACTIONS(6183), - [aux_sym_preproc_elif_token1] = ACTIONS(6183), + [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), @@ -635450,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), @@ -635459,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(6179), - [anon_sym_LBRACK] = ACTIONS(6179), - [anon_sym_COLON] = ACTIONS(6179), - [anon_sym_COMMA] = ACTIONS(6179), - [anon_sym_RBRACK] = ACTIONS(6179), - [anon_sym_LPAREN] = ACTIONS(6179), - [anon_sym_RPAREN] = ACTIONS(6179), - [anon_sym_RBRACE] = ACTIONS(6179), - [anon_sym_LT] = ACTIONS(6181), - [anon_sym_GT] = ACTIONS(6181), - [anon_sym_in] = ACTIONS(6179), - [anon_sym_QMARK] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(6181), - [anon_sym_PLUS_PLUS] = ACTIONS(6179), - [anon_sym_DASH_DASH] = ACTIONS(6179), - [anon_sym_PLUS] = ACTIONS(6181), - [anon_sym_DASH] = ACTIONS(6181), - [anon_sym_STAR] = ACTIONS(6179), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6179), - [anon_sym_CARET] = ACTIONS(6179), - [anon_sym_PIPE] = ACTIONS(6181), - [anon_sym_AMP] = ACTIONS(6181), - [anon_sym_LT_LT] = ACTIONS(6179), - [anon_sym_GT_GT] = ACTIONS(6181), - [anon_sym_GT_GT_GT] = ACTIONS(6179), - [anon_sym_EQ_EQ] = ACTIONS(6179), - [anon_sym_BANG_EQ] = ACTIONS(6179), - [anon_sym_GT_EQ] = ACTIONS(6179), - [anon_sym_LT_EQ] = ACTIONS(6179), - [anon_sym_DOT] = ACTIONS(6181), - [anon_sym_EQ_GT] = ACTIONS(6179), - [anon_sym_switch] = ACTIONS(6179), - [anon_sym_when] = ACTIONS(6179), - [anon_sym_DOT_DOT] = ACTIONS(6179), - [anon_sym_and] = ACTIONS(6179), - [anon_sym_or] = ACTIONS(6179), - [anon_sym_AMP_AMP] = ACTIONS(6179), - [anon_sym_PIPE_PIPE] = ACTIONS(6179), - [sym_op_coalescing] = ACTIONS(6179), - [anon_sym_on] = ACTIONS(6179), - [anon_sym_equals] = ACTIONS(6179), - [anon_sym_by] = ACTIONS(6179), - [anon_sym_as] = ACTIONS(6179), - [anon_sym_is] = ACTIONS(6179), - [anon_sym_DASH_GT] = ACTIONS(6179), - [anon_sym_with] = ACTIONS(6179), - [aux_sym_preproc_if_token3] = ACTIONS(6179), - [aux_sym_preproc_else_token1] = ACTIONS(6179), - [aux_sym_preproc_elif_token1] = ACTIONS(6179), + [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), @@ -635521,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), @@ -635530,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), - [anon_sym_SEMI] = ACTIONS(6375), - [anon_sym_LBRACK] = ACTIONS(6375), - [anon_sym_COLON] = ACTIONS(6375), - [anon_sym_COMMA] = ACTIONS(6375), - [anon_sym_RBRACK] = ACTIONS(6375), - [anon_sym_LPAREN] = ACTIONS(6375), - [anon_sym_RPAREN] = ACTIONS(6375), - [anon_sym_RBRACE] = ACTIONS(6375), - [anon_sym_LT] = ACTIONS(6377), - [anon_sym_GT] = ACTIONS(6377), - [anon_sym_in] = ACTIONS(6375), - [anon_sym_QMARK] = ACTIONS(6377), - [anon_sym_BANG] = ACTIONS(6377), - [anon_sym_PLUS_PLUS] = ACTIONS(6375), - [anon_sym_DASH_DASH] = ACTIONS(6375), - [anon_sym_PLUS] = ACTIONS(6377), - [anon_sym_DASH] = ACTIONS(6377), - [anon_sym_STAR] = ACTIONS(6375), - [anon_sym_SLASH] = ACTIONS(6377), - [anon_sym_PERCENT] = ACTIONS(6375), - [anon_sym_CARET] = ACTIONS(6375), - [anon_sym_PIPE] = ACTIONS(6377), - [anon_sym_AMP] = ACTIONS(6377), - [anon_sym_LT_LT] = ACTIONS(6375), - [anon_sym_GT_GT] = ACTIONS(6377), - [anon_sym_GT_GT_GT] = ACTIONS(6375), - [anon_sym_EQ_EQ] = ACTIONS(6375), - [anon_sym_BANG_EQ] = ACTIONS(6375), - [anon_sym_GT_EQ] = ACTIONS(6375), - [anon_sym_LT_EQ] = ACTIONS(6375), - [anon_sym_DOT] = ACTIONS(6377), - [anon_sym_EQ_GT] = ACTIONS(6375), - [anon_sym_switch] = ACTIONS(6375), - [anon_sym_when] = ACTIONS(6375), - [anon_sym_DOT_DOT] = ACTIONS(6375), - [anon_sym_and] = ACTIONS(6375), - [anon_sym_or] = ACTIONS(6375), - [anon_sym_AMP_AMP] = ACTIONS(6375), - [anon_sym_PIPE_PIPE] = ACTIONS(6375), - [sym_op_coalescing] = ACTIONS(6375), - [anon_sym_on] = ACTIONS(6375), - [anon_sym_equals] = ACTIONS(6375), - [anon_sym_by] = ACTIONS(6375), - [anon_sym_as] = ACTIONS(6375), - [anon_sym_is] = ACTIONS(6375), - [anon_sym_DASH_GT] = ACTIONS(6375), - [anon_sym_with] = ACTIONS(6375), - [aux_sym_preproc_if_token3] = ACTIONS(6375), - [aux_sym_preproc_else_token1] = ACTIONS(6375), - [aux_sym_preproc_elif_token1] = ACTIONS(6375), + [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), @@ -635592,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), @@ -635601,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(6285), - [anon_sym_LBRACK] = ACTIONS(6285), - [anon_sym_COLON] = ACTIONS(6285), - [anon_sym_COMMA] = ACTIONS(6285), - [anon_sym_RBRACK] = ACTIONS(6285), - [anon_sym_LPAREN] = ACTIONS(6285), - [anon_sym_RPAREN] = ACTIONS(6285), - [anon_sym_RBRACE] = ACTIONS(6285), - [anon_sym_LT] = ACTIONS(6287), - [anon_sym_GT] = ACTIONS(6287), - [anon_sym_in] = ACTIONS(6285), - [anon_sym_QMARK] = ACTIONS(6287), - [anon_sym_BANG] = ACTIONS(6287), - [anon_sym_PLUS_PLUS] = ACTIONS(6285), - [anon_sym_DASH_DASH] = ACTIONS(6285), - [anon_sym_PLUS] = ACTIONS(6287), - [anon_sym_DASH] = ACTIONS(6287), - [anon_sym_STAR] = ACTIONS(6285), - [anon_sym_SLASH] = ACTIONS(6287), - [anon_sym_PERCENT] = ACTIONS(6285), - [anon_sym_CARET] = ACTIONS(6285), - [anon_sym_PIPE] = ACTIONS(6287), - [anon_sym_AMP] = ACTIONS(6287), - [anon_sym_LT_LT] = ACTIONS(6285), - [anon_sym_GT_GT] = ACTIONS(6287), - [anon_sym_GT_GT_GT] = ACTIONS(6285), - [anon_sym_EQ_EQ] = ACTIONS(6285), - [anon_sym_BANG_EQ] = ACTIONS(6285), - [anon_sym_GT_EQ] = ACTIONS(6285), - [anon_sym_LT_EQ] = ACTIONS(6285), - [anon_sym_DOT] = ACTIONS(6287), - [anon_sym_EQ_GT] = ACTIONS(6285), - [anon_sym_switch] = ACTIONS(6285), - [anon_sym_when] = ACTIONS(6285), - [anon_sym_DOT_DOT] = ACTIONS(6285), - [anon_sym_and] = ACTIONS(6285), - [anon_sym_or] = ACTIONS(6285), - [anon_sym_AMP_AMP] = ACTIONS(6285), - [anon_sym_PIPE_PIPE] = ACTIONS(6285), - [sym_op_coalescing] = ACTIONS(6285), - [anon_sym_on] = ACTIONS(6285), - [anon_sym_equals] = ACTIONS(6285), - [anon_sym_by] = ACTIONS(6285), - [anon_sym_as] = ACTIONS(6285), - [anon_sym_is] = ACTIONS(6285), - [anon_sym_DASH_GT] = ACTIONS(6285), - [anon_sym_with] = ACTIONS(6285), - [aux_sym_preproc_if_token3] = ACTIONS(6285), - [aux_sym_preproc_else_token1] = ACTIONS(6285), - [aux_sym_preproc_elif_token1] = ACTIONS(6285), + [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), @@ -635663,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), @@ -635672,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(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(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), @@ -635734,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), @@ -635743,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(6175), - [anon_sym_LBRACK] = ACTIONS(6175), - [anon_sym_COLON] = ACTIONS(6175), - [anon_sym_COMMA] = ACTIONS(6175), - [anon_sym_RBRACK] = ACTIONS(6175), - [anon_sym_LPAREN] = ACTIONS(6175), - [anon_sym_RPAREN] = ACTIONS(6175), - [anon_sym_RBRACE] = ACTIONS(6175), - [anon_sym_LT] = ACTIONS(6177), - [anon_sym_GT] = ACTIONS(6177), - [anon_sym_in] = ACTIONS(6175), - [anon_sym_QMARK] = ACTIONS(6177), - [anon_sym_BANG] = ACTIONS(6177), - [anon_sym_PLUS_PLUS] = ACTIONS(6175), - [anon_sym_DASH_DASH] = ACTIONS(6175), - [anon_sym_PLUS] = ACTIONS(6177), - [anon_sym_DASH] = ACTIONS(6177), - [anon_sym_STAR] = ACTIONS(6175), - [anon_sym_SLASH] = ACTIONS(6177), - [anon_sym_PERCENT] = ACTIONS(6175), - [anon_sym_CARET] = ACTIONS(6175), - [anon_sym_PIPE] = ACTIONS(6177), - [anon_sym_AMP] = ACTIONS(6177), - [anon_sym_LT_LT] = ACTIONS(6175), - [anon_sym_GT_GT] = ACTIONS(6177), - [anon_sym_GT_GT_GT] = ACTIONS(6175), - [anon_sym_EQ_EQ] = ACTIONS(6175), - [anon_sym_BANG_EQ] = ACTIONS(6175), - [anon_sym_GT_EQ] = ACTIONS(6175), - [anon_sym_LT_EQ] = ACTIONS(6175), - [anon_sym_DOT] = ACTIONS(6177), - [anon_sym_EQ_GT] = ACTIONS(6175), - [anon_sym_switch] = ACTIONS(6175), - [anon_sym_when] = ACTIONS(6175), - [anon_sym_DOT_DOT] = ACTIONS(6175), - [anon_sym_and] = ACTIONS(6175), - [anon_sym_or] = ACTIONS(6175), - [anon_sym_AMP_AMP] = ACTIONS(6175), - [anon_sym_PIPE_PIPE] = ACTIONS(6175), - [sym_op_coalescing] = ACTIONS(6175), - [anon_sym_on] = ACTIONS(6175), - [anon_sym_equals] = ACTIONS(6175), - [anon_sym_by] = ACTIONS(6175), - [anon_sym_as] = ACTIONS(6175), - [anon_sym_is] = ACTIONS(6175), - [anon_sym_DASH_GT] = ACTIONS(6175), - [anon_sym_with] = ACTIONS(6175), - [aux_sym_preproc_if_token3] = ACTIONS(6175), - [aux_sym_preproc_else_token1] = ACTIONS(6175), - [aux_sym_preproc_elif_token1] = ACTIONS(6175), + [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), @@ -635805,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), @@ -635814,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(6171), - [anon_sym_LBRACK] = ACTIONS(6171), - [anon_sym_COLON] = ACTIONS(6171), - [anon_sym_COMMA] = ACTIONS(6171), - [anon_sym_RBRACK] = ACTIONS(6171), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_RPAREN] = ACTIONS(6171), - [anon_sym_RBRACE] = ACTIONS(6171), - [anon_sym_LT] = ACTIONS(6173), - [anon_sym_GT] = ACTIONS(6173), - [anon_sym_in] = ACTIONS(6171), - [anon_sym_QMARK] = ACTIONS(6173), - [anon_sym_BANG] = ACTIONS(6173), - [anon_sym_PLUS_PLUS] = ACTIONS(6171), - [anon_sym_DASH_DASH] = ACTIONS(6171), - [anon_sym_PLUS] = ACTIONS(6173), - [anon_sym_DASH] = ACTIONS(6173), - [anon_sym_STAR] = ACTIONS(6171), - [anon_sym_SLASH] = ACTIONS(6173), - [anon_sym_PERCENT] = ACTIONS(6171), - [anon_sym_CARET] = ACTIONS(6171), - [anon_sym_PIPE] = ACTIONS(6173), - [anon_sym_AMP] = ACTIONS(6173), - [anon_sym_LT_LT] = ACTIONS(6171), - [anon_sym_GT_GT] = ACTIONS(6173), - [anon_sym_GT_GT_GT] = ACTIONS(6171), - [anon_sym_EQ_EQ] = ACTIONS(6171), - [anon_sym_BANG_EQ] = ACTIONS(6171), - [anon_sym_GT_EQ] = ACTIONS(6171), - [anon_sym_LT_EQ] = ACTIONS(6171), - [anon_sym_DOT] = ACTIONS(6173), - [anon_sym_EQ_GT] = ACTIONS(6171), - [anon_sym_switch] = ACTIONS(6171), - [anon_sym_when] = ACTIONS(6171), - [anon_sym_DOT_DOT] = ACTIONS(6171), - [anon_sym_and] = ACTIONS(6171), - [anon_sym_or] = ACTIONS(6171), - [anon_sym_AMP_AMP] = ACTIONS(6171), - [anon_sym_PIPE_PIPE] = ACTIONS(6171), - [sym_op_coalescing] = ACTIONS(6171), - [anon_sym_on] = ACTIONS(6171), - [anon_sym_equals] = ACTIONS(6171), - [anon_sym_by] = ACTIONS(6171), - [anon_sym_as] = ACTIONS(6171), - [anon_sym_is] = ACTIONS(6171), - [anon_sym_DASH_GT] = ACTIONS(6171), - [anon_sym_with] = ACTIONS(6171), - [aux_sym_preproc_if_token3] = ACTIONS(6171), - [aux_sym_preproc_else_token1] = ACTIONS(6171), - [aux_sym_preproc_elif_token1] = ACTIONS(6171), + [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), @@ -635876,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), @@ -635885,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), - [sym__identifier_token] = ACTIONS(5930), - [anon_sym_extern] = ACTIONS(5930), - [anon_sym_alias] = ACTIONS(5930), - [anon_sym_global] = ACTIONS(5930), - [anon_sym_unsafe] = ACTIONS(5930), - [anon_sym_static] = ACTIONS(5930), - [anon_sym_LBRACK] = ACTIONS(5932), - [anon_sym_public] = ACTIONS(5930), - [anon_sym_private] = ACTIONS(5930), - [anon_sym_readonly] = ACTIONS(5930), - [anon_sym_abstract] = ACTIONS(5930), - [anon_sym_async] = ACTIONS(5930), - [anon_sym_const] = ACTIONS(5930), - [anon_sym_file] = ACTIONS(5930), - [anon_sym_fixed] = ACTIONS(5930), - [anon_sym_internal] = ACTIONS(5930), - [anon_sym_new] = ACTIONS(5930), - [anon_sym_override] = ACTIONS(5930), - [anon_sym_partial] = ACTIONS(5930), - [anon_sym_protected] = ACTIONS(5930), - [anon_sym_required] = ACTIONS(5930), - [anon_sym_sealed] = ACTIONS(5930), - [anon_sym_virtual] = ACTIONS(5930), - [anon_sym_volatile] = ACTIONS(5930), - [anon_sym_where] = ACTIONS(5930), - [anon_sym_notnull] = ACTIONS(5930), - [anon_sym_unmanaged] = ACTIONS(5930), - [sym_accessor_get] = ACTIONS(5930), - [sym_accessor_set] = ACTIONS(5930), - [sym_accessor_add] = ACTIONS(5930), - [sym_accessor_remove] = ACTIONS(5930), - [sym_accessor_init] = ACTIONS(5930), - [anon_sym_scoped] = ACTIONS(5930), - [anon_sym_var] = ACTIONS(5930), - [anon_sym_yield] = ACTIONS(5930), - [anon_sym_when] = ACTIONS(5930), - [anon_sym_from] = ACTIONS(5930), - [anon_sym_into] = ACTIONS(5930), - [anon_sym_join] = ACTIONS(5930), - [anon_sym_on] = ACTIONS(5930), - [anon_sym_equals] = ACTIONS(5930), - [anon_sym_let] = ACTIONS(5930), - [anon_sym_orderby] = ACTIONS(5930), - [anon_sym_ascending] = ACTIONS(5930), - [anon_sym_descending] = ACTIONS(5930), - [anon_sym_group] = ACTIONS(5930), - [anon_sym_by] = ACTIONS(5930), - [anon_sym_select] = ACTIONS(5930), - [sym_grit_metavariable] = ACTIONS(5932), - [aux_sym_preproc_if_token1] = ACTIONS(5932), + [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), @@ -635947,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), @@ -635956,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), - [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(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), @@ -636018,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), @@ -636027,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), - [anon_sym_SEMI] = ACTIONS(6167), - [anon_sym_LBRACK] = ACTIONS(6167), - [anon_sym_COLON] = ACTIONS(6167), - [anon_sym_COMMA] = ACTIONS(6167), - [anon_sym_RBRACK] = ACTIONS(6167), - [anon_sym_LPAREN] = ACTIONS(6167), - [anon_sym_RPAREN] = ACTIONS(6167), - [anon_sym_RBRACE] = ACTIONS(6167), - [anon_sym_LT] = ACTIONS(6169), - [anon_sym_GT] = ACTIONS(6169), - [anon_sym_in] = ACTIONS(6167), - [anon_sym_QMARK] = ACTIONS(6169), - [anon_sym_BANG] = ACTIONS(6169), - [anon_sym_PLUS_PLUS] = ACTIONS(6167), - [anon_sym_DASH_DASH] = ACTIONS(6167), - [anon_sym_PLUS] = ACTIONS(6169), - [anon_sym_DASH] = ACTIONS(6169), - [anon_sym_STAR] = ACTIONS(6167), - [anon_sym_SLASH] = ACTIONS(6169), - [anon_sym_PERCENT] = ACTIONS(6167), - [anon_sym_CARET] = ACTIONS(6167), - [anon_sym_PIPE] = ACTIONS(6169), - [anon_sym_AMP] = ACTIONS(6169), - [anon_sym_LT_LT] = ACTIONS(6167), - [anon_sym_GT_GT] = ACTIONS(6169), - [anon_sym_GT_GT_GT] = ACTIONS(6167), - [anon_sym_EQ_EQ] = ACTIONS(6167), - [anon_sym_BANG_EQ] = ACTIONS(6167), - [anon_sym_GT_EQ] = ACTIONS(6167), - [anon_sym_LT_EQ] = ACTIONS(6167), - [anon_sym_DOT] = ACTIONS(6169), - [anon_sym_EQ_GT] = ACTIONS(6167), - [anon_sym_switch] = ACTIONS(6167), - [anon_sym_when] = ACTIONS(6167), - [anon_sym_DOT_DOT] = ACTIONS(6167), - [anon_sym_and] = ACTIONS(6167), - [anon_sym_or] = ACTIONS(6167), - [anon_sym_AMP_AMP] = ACTIONS(6167), - [anon_sym_PIPE_PIPE] = ACTIONS(6167), - [sym_op_coalescing] = ACTIONS(6167), - [anon_sym_on] = ACTIONS(6167), - [anon_sym_equals] = ACTIONS(6167), - [anon_sym_by] = ACTIONS(6167), - [anon_sym_as] = ACTIONS(6167), - [anon_sym_is] = ACTIONS(6167), - [anon_sym_DASH_GT] = ACTIONS(6167), - [anon_sym_with] = ACTIONS(6167), - [aux_sym_preproc_if_token3] = ACTIONS(6167), - [aux_sym_preproc_else_token1] = ACTIONS(6167), - [aux_sym_preproc_elif_token1] = ACTIONS(6167), + [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), @@ -636089,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), @@ -636098,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), - [anon_sym_SEMI] = ACTIONS(6125), - [anon_sym_LBRACK] = ACTIONS(6125), - [anon_sym_COLON] = ACTIONS(6125), - [anon_sym_COMMA] = ACTIONS(6125), - [anon_sym_RBRACK] = ACTIONS(6125), - [anon_sym_LPAREN] = ACTIONS(6125), - [anon_sym_RPAREN] = ACTIONS(6125), - [anon_sym_RBRACE] = ACTIONS(6125), - [anon_sym_LT] = ACTIONS(6127), - [anon_sym_GT] = ACTIONS(6127), - [anon_sym_in] = ACTIONS(6125), - [anon_sym_QMARK] = ACTIONS(6127), - [anon_sym_BANG] = ACTIONS(6127), - [anon_sym_PLUS_PLUS] = ACTIONS(6125), - [anon_sym_DASH_DASH] = ACTIONS(6125), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6125), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6125), - [anon_sym_CARET] = ACTIONS(6125), - [anon_sym_PIPE] = ACTIONS(6127), - [anon_sym_AMP] = ACTIONS(6127), - [anon_sym_LT_LT] = ACTIONS(6125), - [anon_sym_GT_GT] = ACTIONS(6127), - [anon_sym_GT_GT_GT] = ACTIONS(6125), - [anon_sym_EQ_EQ] = ACTIONS(6125), - [anon_sym_BANG_EQ] = ACTIONS(6125), - [anon_sym_GT_EQ] = ACTIONS(6125), - [anon_sym_LT_EQ] = ACTIONS(6125), - [anon_sym_DOT] = ACTIONS(6127), - [anon_sym_EQ_GT] = ACTIONS(6125), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_when] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6125), - [anon_sym_and] = ACTIONS(6125), - [anon_sym_or] = ACTIONS(6125), - [anon_sym_AMP_AMP] = ACTIONS(6125), - [anon_sym_PIPE_PIPE] = ACTIONS(6125), - [sym_op_coalescing] = ACTIONS(6125), - [anon_sym_on] = ACTIONS(6125), - [anon_sym_equals] = ACTIONS(6125), - [anon_sym_by] = ACTIONS(6125), - [anon_sym_as] = ACTIONS(6125), - [anon_sym_is] = ACTIONS(6125), - [anon_sym_DASH_GT] = ACTIONS(6125), - [anon_sym_with] = ACTIONS(6125), - [aux_sym_preproc_if_token3] = ACTIONS(6125), - [aux_sym_preproc_else_token1] = ACTIONS(6125), - [aux_sym_preproc_elif_token1] = ACTIONS(6125), + [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), @@ -636160,25 +627920,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4964] = { - [sym_explicit_interface_specifier] = STATE(6194), - [sym__name] = STATE(6923), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7541), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -636188,37 +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), - [aux_sym_conversion_operator_declaration_repeat1] = STATE(5734), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7168), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(7170), - [anon_sym_checked] = ACTIONS(7170), - [anon_sym_scoped] = ACTIONS(7172), - [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), + [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), @@ -636231,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), @@ -636240,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(6121), - [anon_sym_LBRACK] = ACTIONS(6121), - [anon_sym_COLON] = ACTIONS(6121), - [anon_sym_COMMA] = ACTIONS(6121), - [anon_sym_RBRACK] = ACTIONS(6121), - [anon_sym_LPAREN] = ACTIONS(6121), - [anon_sym_RPAREN] = ACTIONS(6121), - [anon_sym_RBRACE] = ACTIONS(6121), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_in] = ACTIONS(6121), - [anon_sym_QMARK] = ACTIONS(6123), - [anon_sym_BANG] = ACTIONS(6123), - [anon_sym_PLUS_PLUS] = ACTIONS(6121), - [anon_sym_DASH_DASH] = ACTIONS(6121), - [anon_sym_PLUS] = ACTIONS(6123), - [anon_sym_DASH] = ACTIONS(6123), - [anon_sym_STAR] = ACTIONS(6121), - [anon_sym_SLASH] = ACTIONS(6123), - [anon_sym_PERCENT] = ACTIONS(6121), - [anon_sym_CARET] = ACTIONS(6121), - [anon_sym_PIPE] = ACTIONS(6123), - [anon_sym_AMP] = ACTIONS(6123), - [anon_sym_LT_LT] = ACTIONS(6121), - [anon_sym_GT_GT] = ACTIONS(6123), - [anon_sym_GT_GT_GT] = ACTIONS(6121), - [anon_sym_EQ_EQ] = ACTIONS(6121), - [anon_sym_BANG_EQ] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6121), - [anon_sym_LT_EQ] = ACTIONS(6121), - [anon_sym_DOT] = ACTIONS(6123), - [anon_sym_EQ_GT] = ACTIONS(6121), - [anon_sym_switch] = ACTIONS(6121), - [anon_sym_when] = ACTIONS(6121), - [anon_sym_DOT_DOT] = ACTIONS(6121), - [anon_sym_and] = ACTIONS(6121), - [anon_sym_or] = ACTIONS(6121), - [anon_sym_AMP_AMP] = ACTIONS(6121), - [anon_sym_PIPE_PIPE] = ACTIONS(6121), - [sym_op_coalescing] = ACTIONS(6121), - [anon_sym_on] = ACTIONS(6121), - [anon_sym_equals] = ACTIONS(6121), - [anon_sym_by] = ACTIONS(6121), - [anon_sym_as] = ACTIONS(6121), - [anon_sym_is] = ACTIONS(6121), - [anon_sym_DASH_GT] = ACTIONS(6121), - [anon_sym_with] = ACTIONS(6121), - [aux_sym_preproc_if_token3] = ACTIONS(6121), - [aux_sym_preproc_else_token1] = ACTIONS(6121), - [aux_sym_preproc_elif_token1] = ACTIONS(6121), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(7720), + [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), @@ -636302,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), @@ -636311,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(6159), - [anon_sym_LBRACK] = ACTIONS(6159), - [anon_sym_COLON] = ACTIONS(6159), - [anon_sym_COMMA] = ACTIONS(6159), - [anon_sym_RBRACK] = ACTIONS(6159), - [anon_sym_LPAREN] = ACTIONS(6159), - [anon_sym_RPAREN] = ACTIONS(6159), - [anon_sym_RBRACE] = ACTIONS(6159), - [anon_sym_LT] = ACTIONS(6161), - [anon_sym_GT] = ACTIONS(6161), - [anon_sym_in] = ACTIONS(6159), - [anon_sym_QMARK] = ACTIONS(6161), - [anon_sym_BANG] = ACTIONS(6161), - [anon_sym_PLUS_PLUS] = ACTIONS(6159), - [anon_sym_DASH_DASH] = ACTIONS(6159), - [anon_sym_PLUS] = ACTIONS(6161), - [anon_sym_DASH] = ACTIONS(6161), - [anon_sym_STAR] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6161), - [anon_sym_PERCENT] = ACTIONS(6159), - [anon_sym_CARET] = ACTIONS(6159), - [anon_sym_PIPE] = ACTIONS(6161), - [anon_sym_AMP] = ACTIONS(6161), - [anon_sym_LT_LT] = ACTIONS(6159), - [anon_sym_GT_GT] = ACTIONS(6161), - [anon_sym_GT_GT_GT] = ACTIONS(6159), - [anon_sym_EQ_EQ] = ACTIONS(6159), - [anon_sym_BANG_EQ] = ACTIONS(6159), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(6161), - [anon_sym_EQ_GT] = ACTIONS(6159), - [anon_sym_switch] = ACTIONS(6159), - [anon_sym_when] = ACTIONS(6159), - [anon_sym_DOT_DOT] = ACTIONS(6159), - [anon_sym_and] = ACTIONS(6159), - [anon_sym_or] = ACTIONS(6159), - [anon_sym_AMP_AMP] = ACTIONS(6159), - [anon_sym_PIPE_PIPE] = ACTIONS(6159), - [sym_op_coalescing] = ACTIONS(6159), - [anon_sym_on] = ACTIONS(6159), - [anon_sym_equals] = ACTIONS(6159), - [anon_sym_by] = ACTIONS(6159), - [anon_sym_as] = ACTIONS(6159), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(6159), - [anon_sym_with] = ACTIONS(6159), - [aux_sym_preproc_if_token3] = ACTIONS(6159), - [aux_sym_preproc_else_token1] = ACTIONS(6159), - [aux_sym_preproc_elif_token1] = ACTIONS(6159), + [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), @@ -636373,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), @@ -636382,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), - [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_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), @@ -636444,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), @@ -636453,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), - [sym__identifier_token] = ACTIONS(5640), - [anon_sym_extern] = ACTIONS(5640), - [anon_sym_alias] = ACTIONS(5640), - [anon_sym_global] = ACTIONS(5640), - [anon_sym_unsafe] = ACTIONS(5640), - [anon_sym_static] = ACTIONS(5640), - [anon_sym_LBRACK] = ACTIONS(5642), - [anon_sym_public] = ACTIONS(5640), - [anon_sym_private] = ACTIONS(5640), - [anon_sym_readonly] = ACTIONS(5640), - [anon_sym_abstract] = ACTIONS(5640), - [anon_sym_async] = ACTIONS(5640), - [anon_sym_const] = ACTIONS(5640), - [anon_sym_file] = ACTIONS(5640), - [anon_sym_fixed] = ACTIONS(5640), - [anon_sym_internal] = ACTIONS(5640), - [anon_sym_new] = ACTIONS(5640), - [anon_sym_override] = ACTIONS(5640), - [anon_sym_partial] = ACTIONS(5640), - [anon_sym_protected] = ACTIONS(5640), - [anon_sym_required] = ACTIONS(5640), - [anon_sym_sealed] = ACTIONS(5640), - [anon_sym_virtual] = ACTIONS(5640), - [anon_sym_volatile] = ACTIONS(5640), - [anon_sym_where] = ACTIONS(5640), - [anon_sym_notnull] = ACTIONS(5640), - [anon_sym_unmanaged] = ACTIONS(5640), - [sym_accessor_get] = ACTIONS(5640), - [sym_accessor_set] = ACTIONS(5640), - [sym_accessor_add] = ACTIONS(5640), - [sym_accessor_remove] = ACTIONS(5640), - [sym_accessor_init] = ACTIONS(5640), - [anon_sym_scoped] = ACTIONS(5640), - [anon_sym_var] = ACTIONS(5640), - [anon_sym_yield] = ACTIONS(5640), - [anon_sym_when] = ACTIONS(5640), - [anon_sym_from] = ACTIONS(5640), - [anon_sym_into] = ACTIONS(5640), - [anon_sym_join] = ACTIONS(5640), - [anon_sym_on] = ACTIONS(5640), - [anon_sym_equals] = ACTIONS(5640), - [anon_sym_let] = ACTIONS(5640), - [anon_sym_orderby] = ACTIONS(5640), - [anon_sym_ascending] = ACTIONS(5640), - [anon_sym_descending] = ACTIONS(5640), - [anon_sym_group] = ACTIONS(5640), - [anon_sym_by] = ACTIONS(5640), - [anon_sym_select] = ACTIONS(5640), - [sym_grit_metavariable] = ACTIONS(5642), - [aux_sym_preproc_if_token1] = ACTIONS(5642), + [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), @@ -636515,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), @@ -636524,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), - [sym__identifier_token] = ACTIONS(5552), - [anon_sym_extern] = ACTIONS(5552), - [anon_sym_alias] = ACTIONS(5552), - [anon_sym_global] = ACTIONS(5552), - [anon_sym_unsafe] = ACTIONS(5552), - [anon_sym_static] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5554), - [anon_sym_public] = ACTIONS(5552), - [anon_sym_private] = ACTIONS(5552), - [anon_sym_readonly] = ACTIONS(5552), - [anon_sym_abstract] = ACTIONS(5552), - [anon_sym_async] = ACTIONS(5552), - [anon_sym_const] = ACTIONS(5552), - [anon_sym_file] = ACTIONS(5552), - [anon_sym_fixed] = ACTIONS(5552), - [anon_sym_internal] = ACTIONS(5552), - [anon_sym_new] = ACTIONS(5552), - [anon_sym_override] = ACTIONS(5552), - [anon_sym_partial] = ACTIONS(5552), - [anon_sym_protected] = ACTIONS(5552), - [anon_sym_required] = ACTIONS(5552), - [anon_sym_sealed] = ACTIONS(5552), - [anon_sym_virtual] = ACTIONS(5552), - [anon_sym_volatile] = ACTIONS(5552), - [anon_sym_where] = ACTIONS(5552), - [anon_sym_notnull] = ACTIONS(5552), - [anon_sym_unmanaged] = ACTIONS(5552), - [sym_accessor_get] = ACTIONS(5552), - [sym_accessor_set] = ACTIONS(5552), - [sym_accessor_add] = ACTIONS(5552), - [sym_accessor_remove] = ACTIONS(5552), - [sym_accessor_init] = ACTIONS(5552), - [anon_sym_scoped] = ACTIONS(5552), - [anon_sym_var] = ACTIONS(5552), - [anon_sym_yield] = ACTIONS(5552), - [anon_sym_when] = ACTIONS(5552), - [anon_sym_from] = ACTIONS(5552), - [anon_sym_into] = ACTIONS(5552), - [anon_sym_join] = ACTIONS(5552), - [anon_sym_on] = ACTIONS(5552), - [anon_sym_equals] = ACTIONS(5552), - [anon_sym_let] = ACTIONS(5552), - [anon_sym_orderby] = ACTIONS(5552), - [anon_sym_ascending] = ACTIONS(5552), - [anon_sym_descending] = ACTIONS(5552), - [anon_sym_group] = ACTIONS(5552), - [anon_sym_by] = ACTIONS(5552), - [anon_sym_select] = ACTIONS(5552), - [sym_grit_metavariable] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), + [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), @@ -636595,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(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), + [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), @@ -636657,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), @@ -636666,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_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_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), @@ -636728,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), @@ -636737,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), - [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_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), @@ -636799,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), @@ -636808,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(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(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), @@ -636870,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), @@ -636879,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(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_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), @@ -636941,6 +628690,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4975] = { + [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), @@ -636950,56 +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_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_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), @@ -637012,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), @@ -637021,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(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(7174), - [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_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), @@ -637083,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), @@ -637092,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_EQ] = ACTIONS(7176), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [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(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_on] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -637154,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), @@ -637163,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(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), + [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), @@ -637225,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), @@ -637234,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_EQ] = ACTIONS(7180), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(5752), - [anon_sym_RBRACE] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [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(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -637296,6 +629040,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4980] = { + [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), @@ -637305,56 +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), - [anon_sym_SEMI] = ACTIONS(7084), - [anon_sym_LBRACK] = ACTIONS(7084), - [anon_sym_COLON] = ACTIONS(7084), - [anon_sym_COMMA] = ACTIONS(7084), - [anon_sym_RBRACK] = ACTIONS(7084), - [anon_sym_LPAREN] = ACTIONS(7084), - [anon_sym_RPAREN] = ACTIONS(7084), - [anon_sym_RBRACE] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7086), - [anon_sym_GT] = ACTIONS(7086), - [anon_sym_in] = ACTIONS(7084), - [anon_sym_QMARK] = ACTIONS(7086), - [anon_sym_BANG] = ACTIONS(7086), - [anon_sym_PLUS_PLUS] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7086), - [anon_sym_DASH] = ACTIONS(7086), - [anon_sym_STAR] = ACTIONS(7084), - [anon_sym_SLASH] = ACTIONS(7086), - [anon_sym_PERCENT] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7084), - [anon_sym_PIPE] = ACTIONS(7086), - [anon_sym_AMP] = ACTIONS(7086), - [anon_sym_LT_LT] = ACTIONS(7084), - [anon_sym_GT_GT] = ACTIONS(7086), - [anon_sym_GT_GT_GT] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7084), - [anon_sym_BANG_EQ] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7084), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_DOT] = ACTIONS(7086), - [anon_sym_EQ_GT] = ACTIONS(7084), - [anon_sym_switch] = ACTIONS(7084), - [anon_sym_when] = ACTIONS(7084), - [anon_sym_DOT_DOT] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_or] = ACTIONS(7084), - [anon_sym_AMP_AMP] = ACTIONS(7084), - [anon_sym_PIPE_PIPE] = ACTIONS(7084), - [sym_op_coalescing] = ACTIONS(7084), - [anon_sym_on] = ACTIONS(7084), - [anon_sym_equals] = ACTIONS(7084), - [anon_sym_by] = ACTIONS(7084), - [anon_sym_as] = ACTIONS(7084), - [anon_sym_is] = ACTIONS(7084), - [anon_sym_DASH_GT] = ACTIONS(7084), - [anon_sym_with] = ACTIONS(7084), - [aux_sym_preproc_if_token3] = ACTIONS(7084), - [aux_sym_preproc_else_token1] = ACTIONS(7084), - [aux_sym_preproc_elif_token1] = ACTIONS(7084), + [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), @@ -637367,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), @@ -637376,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(6135), - [anon_sym_LBRACK] = ACTIONS(6135), - [anon_sym_COLON] = ACTIONS(6135), - [anon_sym_COMMA] = ACTIONS(6135), - [anon_sym_RBRACK] = ACTIONS(6135), - [anon_sym_LPAREN] = ACTIONS(6135), - [anon_sym_RPAREN] = ACTIONS(6135), - [anon_sym_RBRACE] = ACTIONS(6135), - [anon_sym_LT] = ACTIONS(6137), - [anon_sym_GT] = ACTIONS(6137), - [anon_sym_in] = ACTIONS(6135), - [anon_sym_QMARK] = ACTIONS(6137), - [anon_sym_BANG] = ACTIONS(6137), - [anon_sym_PLUS_PLUS] = ACTIONS(6135), - [anon_sym_DASH_DASH] = ACTIONS(6135), - [anon_sym_PLUS] = ACTIONS(6137), - [anon_sym_DASH] = ACTIONS(6137), - [anon_sym_STAR] = ACTIONS(6135), - [anon_sym_SLASH] = ACTIONS(6137), - [anon_sym_PERCENT] = ACTIONS(6135), - [anon_sym_CARET] = ACTIONS(6135), - [anon_sym_PIPE] = ACTIONS(6137), - [anon_sym_AMP] = ACTIONS(6137), - [anon_sym_LT_LT] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6137), - [anon_sym_GT_GT_GT] = ACTIONS(6135), - [anon_sym_EQ_EQ] = ACTIONS(6135), - [anon_sym_BANG_EQ] = ACTIONS(6135), - [anon_sym_GT_EQ] = ACTIONS(6135), - [anon_sym_LT_EQ] = ACTIONS(6135), - [anon_sym_DOT] = ACTIONS(6137), - [anon_sym_EQ_GT] = ACTIONS(6135), - [anon_sym_switch] = ACTIONS(6135), - [anon_sym_when] = ACTIONS(6135), - [anon_sym_DOT_DOT] = ACTIONS(6135), - [anon_sym_and] = ACTIONS(6135), - [anon_sym_or] = ACTIONS(6135), - [anon_sym_AMP_AMP] = ACTIONS(6135), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [sym_op_coalescing] = ACTIONS(6135), - [anon_sym_on] = ACTIONS(6135), - [anon_sym_equals] = ACTIONS(6135), - [anon_sym_by] = ACTIONS(6135), - [anon_sym_as] = ACTIONS(6135), - [anon_sym_is] = ACTIONS(6135), - [anon_sym_DASH_GT] = ACTIONS(6135), - [anon_sym_with] = ACTIONS(6135), - [aux_sym_preproc_if_token3] = ACTIONS(6135), - [aux_sym_preproc_else_token1] = ACTIONS(6135), - [aux_sym_preproc_elif_token1] = ACTIONS(6135), + [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), @@ -637438,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), @@ -637447,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(4764), - [anon_sym_LBRACK] = ACTIONS(4764), - [anon_sym_COLON] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_RBRACK] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4764), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_in] = ACTIONS(4764), - [anon_sym_QMARK] = ACTIONS(4766), - [anon_sym_BANG] = ACTIONS(4766), - [anon_sym_PLUS_PLUS] = ACTIONS(4764), - [anon_sym_DASH_DASH] = ACTIONS(4764), - [anon_sym_PLUS] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4766), - [anon_sym_PERCENT] = ACTIONS(4764), - [anon_sym_CARET] = ACTIONS(4764), - [anon_sym_PIPE] = ACTIONS(4766), - [anon_sym_AMP] = ACTIONS(4766), - [anon_sym_LT_LT] = ACTIONS(4764), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_GT_GT_GT] = ACTIONS(4764), - [anon_sym_EQ_EQ] = ACTIONS(4764), - [anon_sym_BANG_EQ] = ACTIONS(4764), - [anon_sym_GT_EQ] = ACTIONS(4764), - [anon_sym_LT_EQ] = ACTIONS(4764), - [anon_sym_DOT] = ACTIONS(4766), - [anon_sym_EQ_GT] = ACTIONS(4764), - [anon_sym_switch] = ACTIONS(4764), - [anon_sym_when] = ACTIONS(4764), - [anon_sym_DOT_DOT] = ACTIONS(4764), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4764), - [anon_sym_PIPE_PIPE] = ACTIONS(4764), - [sym_op_coalescing] = ACTIONS(4764), - [anon_sym_on] = ACTIONS(4764), - [anon_sym_equals] = ACTIONS(4764), - [anon_sym_by] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4764), - [anon_sym_is] = ACTIONS(4764), - [anon_sym_DASH_GT] = ACTIONS(4764), - [anon_sym_with] = ACTIONS(4764), - [aux_sym_preproc_if_token3] = ACTIONS(4764), - [aux_sym_preproc_else_token1] = ACTIONS(4764), - [aux_sym_preproc_elif_token1] = ACTIONS(4764), + [sym__identifier_token] = ACTIONS(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), @@ -637509,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), @@ -637518,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(6129), - [anon_sym_LBRACK] = ACTIONS(6129), - [anon_sym_COLON] = ACTIONS(6129), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_RBRACK] = ACTIONS(6129), - [anon_sym_LPAREN] = ACTIONS(6129), - [anon_sym_RPAREN] = ACTIONS(6129), - [anon_sym_RBRACE] = ACTIONS(6129), - [anon_sym_LT] = ACTIONS(6131), - [anon_sym_GT] = ACTIONS(6131), - [anon_sym_in] = ACTIONS(6129), - [anon_sym_QMARK] = ACTIONS(6131), - [anon_sym_BANG] = ACTIONS(6131), - [anon_sym_PLUS_PLUS] = ACTIONS(6129), - [anon_sym_DASH_DASH] = ACTIONS(6129), - [anon_sym_PLUS] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6131), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6129), - [anon_sym_PIPE] = ACTIONS(6131), - [anon_sym_AMP] = ACTIONS(6131), - [anon_sym_LT_LT] = ACTIONS(6129), - [anon_sym_GT_GT] = ACTIONS(6131), - [anon_sym_GT_GT_GT] = ACTIONS(6129), - [anon_sym_EQ_EQ] = ACTIONS(6129), - [anon_sym_BANG_EQ] = ACTIONS(6129), - [anon_sym_GT_EQ] = ACTIONS(6129), - [anon_sym_LT_EQ] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6131), - [anon_sym_EQ_GT] = ACTIONS(6129), - [anon_sym_switch] = ACTIONS(6129), - [anon_sym_when] = ACTIONS(6129), - [anon_sym_DOT_DOT] = ACTIONS(6129), - [anon_sym_and] = ACTIONS(6129), - [anon_sym_or] = ACTIONS(6129), - [anon_sym_AMP_AMP] = ACTIONS(6129), - [anon_sym_PIPE_PIPE] = ACTIONS(6129), - [sym_op_coalescing] = ACTIONS(6129), - [anon_sym_on] = ACTIONS(6129), - [anon_sym_equals] = ACTIONS(6129), - [anon_sym_by] = ACTIONS(6129), - [anon_sym_as] = ACTIONS(6129), - [anon_sym_is] = ACTIONS(6129), - [anon_sym_DASH_GT] = ACTIONS(6129), - [anon_sym_with] = ACTIONS(6129), - [aux_sym_preproc_if_token3] = ACTIONS(6129), - [aux_sym_preproc_else_token1] = ACTIONS(6129), - [aux_sym_preproc_elif_token1] = ACTIONS(6129), + [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), @@ -637580,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), @@ -637589,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(7110), - [anon_sym_LBRACK] = ACTIONS(7110), - [anon_sym_COLON] = ACTIONS(7110), - [anon_sym_COMMA] = ACTIONS(7110), - [anon_sym_RBRACK] = ACTIONS(7110), - [anon_sym_LPAREN] = ACTIONS(7110), - [anon_sym_RPAREN] = ACTIONS(7110), - [anon_sym_RBRACE] = ACTIONS(7110), - [anon_sym_LT] = ACTIONS(7112), - [anon_sym_GT] = ACTIONS(7112), - [anon_sym_in] = ACTIONS(7110), - [anon_sym_QMARK] = ACTIONS(7112), - [anon_sym_BANG] = ACTIONS(7112), - [anon_sym_PLUS_PLUS] = ACTIONS(7110), - [anon_sym_DASH_DASH] = ACTIONS(7110), - [anon_sym_PLUS] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(7112), - [anon_sym_STAR] = ACTIONS(7110), - [anon_sym_SLASH] = ACTIONS(7112), - [anon_sym_PERCENT] = ACTIONS(7110), - [anon_sym_CARET] = ACTIONS(7110), - [anon_sym_PIPE] = ACTIONS(7112), - [anon_sym_AMP] = ACTIONS(7112), - [anon_sym_LT_LT] = ACTIONS(7110), - [anon_sym_GT_GT] = ACTIONS(7112), - [anon_sym_GT_GT_GT] = ACTIONS(7110), - [anon_sym_EQ_EQ] = ACTIONS(7110), - [anon_sym_BANG_EQ] = ACTIONS(7110), - [anon_sym_GT_EQ] = ACTIONS(7110), - [anon_sym_LT_EQ] = ACTIONS(7110), - [anon_sym_DOT] = ACTIONS(7112), - [anon_sym_EQ_GT] = ACTIONS(7110), - [anon_sym_switch] = ACTIONS(7110), - [anon_sym_when] = ACTIONS(7110), - [anon_sym_DOT_DOT] = ACTIONS(7110), - [anon_sym_and] = ACTIONS(7110), - [anon_sym_or] = ACTIONS(7110), - [anon_sym_AMP_AMP] = ACTIONS(7110), - [anon_sym_PIPE_PIPE] = ACTIONS(7110), - [sym_op_coalescing] = ACTIONS(7110), - [anon_sym_on] = ACTIONS(7110), - [anon_sym_equals] = ACTIONS(7110), - [anon_sym_by] = ACTIONS(7110), - [anon_sym_as] = ACTIONS(7110), - [anon_sym_is] = ACTIONS(7110), - [anon_sym_DASH_GT] = ACTIONS(7110), - [anon_sym_with] = ACTIONS(7110), - [aux_sym_preproc_if_token3] = ACTIONS(7110), - [aux_sym_preproc_else_token1] = ACTIONS(7110), - [aux_sym_preproc_elif_token1] = ACTIONS(7110), + [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), @@ -637651,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), @@ -637660,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(7142), - [anon_sym_LBRACK] = ACTIONS(7142), - [anon_sym_COLON] = ACTIONS(7142), - [anon_sym_COMMA] = ACTIONS(7142), - [anon_sym_RBRACK] = ACTIONS(7142), - [anon_sym_LPAREN] = ACTIONS(7142), - [anon_sym_RPAREN] = ACTIONS(7142), - [anon_sym_RBRACE] = ACTIONS(7142), - [anon_sym_LT] = ACTIONS(7144), - [anon_sym_GT] = ACTIONS(7144), - [anon_sym_in] = ACTIONS(7142), - [anon_sym_QMARK] = ACTIONS(7144), - [anon_sym_BANG] = ACTIONS(7144), - [anon_sym_PLUS_PLUS] = ACTIONS(7142), - [anon_sym_DASH_DASH] = ACTIONS(7142), - [anon_sym_PLUS] = ACTIONS(7144), - [anon_sym_DASH] = ACTIONS(7144), - [anon_sym_STAR] = ACTIONS(7142), - [anon_sym_SLASH] = ACTIONS(7144), - [anon_sym_PERCENT] = ACTIONS(7142), - [anon_sym_CARET] = ACTIONS(7142), - [anon_sym_PIPE] = ACTIONS(7144), - [anon_sym_AMP] = ACTIONS(7144), - [anon_sym_LT_LT] = ACTIONS(7142), - [anon_sym_GT_GT] = ACTIONS(7144), - [anon_sym_GT_GT_GT] = ACTIONS(7142), - [anon_sym_EQ_EQ] = ACTIONS(7142), - [anon_sym_BANG_EQ] = ACTIONS(7142), - [anon_sym_GT_EQ] = ACTIONS(7142), - [anon_sym_LT_EQ] = ACTIONS(7142), - [anon_sym_DOT] = ACTIONS(7144), - [anon_sym_EQ_GT] = ACTIONS(7142), - [anon_sym_switch] = ACTIONS(7142), - [anon_sym_when] = ACTIONS(7142), - [anon_sym_DOT_DOT] = ACTIONS(7142), - [anon_sym_and] = ACTIONS(7142), - [anon_sym_or] = ACTIONS(7142), - [anon_sym_AMP_AMP] = ACTIONS(7142), - [anon_sym_PIPE_PIPE] = ACTIONS(7142), - [sym_op_coalescing] = ACTIONS(7142), - [anon_sym_on] = ACTIONS(7142), - [anon_sym_equals] = ACTIONS(7142), - [anon_sym_by] = ACTIONS(7142), - [anon_sym_as] = ACTIONS(7142), - [anon_sym_is] = ACTIONS(7142), - [anon_sym_DASH_GT] = ACTIONS(7142), - [anon_sym_with] = ACTIONS(7142), - [aux_sym_preproc_if_token3] = ACTIONS(7142), - [aux_sym_preproc_else_token1] = ACTIONS(7142), - [aux_sym_preproc_elif_token1] = ACTIONS(7142), + [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), @@ -637722,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), @@ -637731,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(7142), - [anon_sym_LBRACK] = ACTIONS(7142), - [anon_sym_COLON] = ACTIONS(7142), - [anon_sym_COMMA] = ACTIONS(7142), - [anon_sym_RBRACK] = ACTIONS(7142), - [anon_sym_LPAREN] = ACTIONS(7142), - [anon_sym_RPAREN] = ACTIONS(7142), - [anon_sym_RBRACE] = ACTIONS(7142), - [anon_sym_LT] = ACTIONS(7144), - [anon_sym_GT] = ACTIONS(7144), - [anon_sym_in] = ACTIONS(7142), - [anon_sym_QMARK] = ACTIONS(7144), - [anon_sym_BANG] = ACTIONS(7144), - [anon_sym_PLUS_PLUS] = ACTIONS(7142), - [anon_sym_DASH_DASH] = ACTIONS(7142), - [anon_sym_PLUS] = ACTIONS(7144), - [anon_sym_DASH] = ACTIONS(7144), - [anon_sym_STAR] = ACTIONS(7142), - [anon_sym_SLASH] = ACTIONS(7144), - [anon_sym_PERCENT] = ACTIONS(7142), - [anon_sym_CARET] = ACTIONS(7142), - [anon_sym_PIPE] = ACTIONS(7144), - [anon_sym_AMP] = ACTIONS(7144), - [anon_sym_LT_LT] = ACTIONS(7142), - [anon_sym_GT_GT] = ACTIONS(7144), - [anon_sym_GT_GT_GT] = ACTIONS(7142), - [anon_sym_EQ_EQ] = ACTIONS(7142), - [anon_sym_BANG_EQ] = ACTIONS(7142), - [anon_sym_GT_EQ] = ACTIONS(7142), - [anon_sym_LT_EQ] = ACTIONS(7142), - [anon_sym_DOT] = ACTIONS(7144), - [anon_sym_EQ_GT] = ACTIONS(7142), - [anon_sym_switch] = ACTIONS(7142), - [anon_sym_when] = ACTIONS(7142), - [anon_sym_DOT_DOT] = ACTIONS(7142), - [anon_sym_and] = ACTIONS(7142), - [anon_sym_or] = ACTIONS(7142), - [anon_sym_AMP_AMP] = ACTIONS(7142), - [anon_sym_PIPE_PIPE] = ACTIONS(7142), - [sym_op_coalescing] = ACTIONS(7142), - [anon_sym_on] = ACTIONS(7142), - [anon_sym_equals] = ACTIONS(7142), - [anon_sym_by] = ACTIONS(7142), - [anon_sym_as] = ACTIONS(7142), - [anon_sym_is] = ACTIONS(7142), - [anon_sym_DASH_GT] = ACTIONS(7142), - [anon_sym_with] = ACTIONS(7142), - [aux_sym_preproc_if_token3] = ACTIONS(7142), - [aux_sym_preproc_else_token1] = ACTIONS(7142), - [aux_sym_preproc_elif_token1] = ACTIONS(7142), + [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), @@ -637793,6 +629530,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4987] = { + [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), @@ -637802,56 +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), - [anon_sym_SEMI] = ACTIONS(7114), - [anon_sym_LBRACK] = ACTIONS(7114), - [anon_sym_COLON] = ACTIONS(7114), - [anon_sym_COMMA] = ACTIONS(7114), - [anon_sym_RBRACK] = ACTIONS(7114), - [anon_sym_LPAREN] = ACTIONS(7114), - [anon_sym_RPAREN] = ACTIONS(7114), - [anon_sym_RBRACE] = ACTIONS(7114), - [anon_sym_LT] = ACTIONS(7116), - [anon_sym_GT] = ACTIONS(7116), - [anon_sym_in] = ACTIONS(7114), - [anon_sym_QMARK] = ACTIONS(7116), - [anon_sym_BANG] = ACTIONS(7116), - [anon_sym_PLUS_PLUS] = ACTIONS(7114), - [anon_sym_DASH_DASH] = ACTIONS(7114), - [anon_sym_PLUS] = ACTIONS(7116), - [anon_sym_DASH] = ACTIONS(7116), - [anon_sym_STAR] = ACTIONS(7114), - [anon_sym_SLASH] = ACTIONS(7116), - [anon_sym_PERCENT] = ACTIONS(7114), - [anon_sym_CARET] = ACTIONS(7114), - [anon_sym_PIPE] = ACTIONS(7116), - [anon_sym_AMP] = ACTIONS(7116), - [anon_sym_LT_LT] = ACTIONS(7114), - [anon_sym_GT_GT] = ACTIONS(7116), - [anon_sym_GT_GT_GT] = ACTIONS(7114), - [anon_sym_EQ_EQ] = ACTIONS(7114), - [anon_sym_BANG_EQ] = ACTIONS(7114), - [anon_sym_GT_EQ] = ACTIONS(7114), - [anon_sym_LT_EQ] = ACTIONS(7114), - [anon_sym_DOT] = ACTIONS(7116), - [anon_sym_EQ_GT] = ACTIONS(7114), - [anon_sym_switch] = ACTIONS(7114), - [anon_sym_when] = ACTIONS(7114), - [anon_sym_DOT_DOT] = ACTIONS(7114), - [anon_sym_and] = ACTIONS(7114), - [anon_sym_or] = ACTIONS(7114), - [anon_sym_AMP_AMP] = ACTIONS(7114), - [anon_sym_PIPE_PIPE] = ACTIONS(7114), - [sym_op_coalescing] = ACTIONS(7114), - [anon_sym_on] = ACTIONS(7114), - [anon_sym_equals] = ACTIONS(7114), - [anon_sym_by] = ACTIONS(7114), - [anon_sym_as] = ACTIONS(7114), - [anon_sym_is] = ACTIONS(7114), - [anon_sym_DASH_GT] = ACTIONS(7114), - [anon_sym_with] = ACTIONS(7114), - [aux_sym_preproc_if_token3] = ACTIONS(7114), - [aux_sym_preproc_else_token1] = ACTIONS(7114), - [aux_sym_preproc_elif_token1] = ACTIONS(7114), + [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), @@ -637864,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), @@ -637873,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(4163), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_COLON] = ACTIONS(4163), - [anon_sym_COMMA] = ACTIONS(4163), - [anon_sym_RBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4163), - [anon_sym_RPAREN] = ACTIONS(4163), - [anon_sym_RBRACE] = ACTIONS(4163), - [anon_sym_LT] = ACTIONS(6996), - [anon_sym_GT] = ACTIONS(6996), - [anon_sym_in] = ACTIONS(4163), - [anon_sym_QMARK] = ACTIONS(6996), - [anon_sym_BANG] = ACTIONS(6996), - [anon_sym_PLUS_PLUS] = ACTIONS(4163), - [anon_sym_DASH_DASH] = ACTIONS(4163), - [anon_sym_PLUS] = ACTIONS(6996), - [anon_sym_DASH] = ACTIONS(6996), - [anon_sym_STAR] = ACTIONS(4163), - [anon_sym_SLASH] = ACTIONS(6996), - [anon_sym_PERCENT] = ACTIONS(4163), - [anon_sym_CARET] = ACTIONS(4163), - [anon_sym_PIPE] = ACTIONS(6996), - [anon_sym_AMP] = ACTIONS(6996), - [anon_sym_LT_LT] = ACTIONS(4163), - [anon_sym_GT_GT] = ACTIONS(6996), - [anon_sym_GT_GT_GT] = ACTIONS(4163), - [anon_sym_EQ_EQ] = ACTIONS(4163), - [anon_sym_BANG_EQ] = ACTIONS(4163), - [anon_sym_GT_EQ] = ACTIONS(4163), - [anon_sym_LT_EQ] = ACTIONS(4163), - [anon_sym_DOT] = ACTIONS(6996), - [anon_sym_EQ_GT] = ACTIONS(3958), - [anon_sym_switch] = ACTIONS(4163), - [anon_sym_when] = ACTIONS(4163), - [anon_sym_DOT_DOT] = ACTIONS(4163), - [anon_sym_and] = ACTIONS(4163), - [anon_sym_or] = ACTIONS(4163), - [anon_sym_AMP_AMP] = ACTIONS(4163), - [anon_sym_PIPE_PIPE] = ACTIONS(4163), - [sym_op_coalescing] = ACTIONS(4163), - [anon_sym_on] = ACTIONS(4163), - [anon_sym_equals] = ACTIONS(4163), - [anon_sym_by] = ACTIONS(4163), - [anon_sym_as] = ACTIONS(4163), - [anon_sym_is] = ACTIONS(4163), - [anon_sym_DASH_GT] = ACTIONS(4163), - [anon_sym_with] = ACTIONS(4163), - [aux_sym_preproc_if_token3] = ACTIONS(4163), - [aux_sym_preproc_else_token1] = ACTIONS(4163), - [aux_sym_preproc_elif_token1] = ACTIONS(4163), + [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), @@ -637935,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), @@ -637944,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_EQ] = ACTIONS(7184), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_EQ_GT] = ACTIONS(5752), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_when] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [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(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -638006,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), @@ -638015,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_EQ] = ACTIONS(7188), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_RBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(5752), - [anon_sym_RBRACE] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7190), - [anon_sym_DASH_EQ] = ACTIONS(7190), - [anon_sym_STAR_EQ] = ACTIONS(7190), - [anon_sym_SLASH_EQ] = ACTIONS(7190), - [anon_sym_PERCENT_EQ] = ACTIONS(7190), - [anon_sym_AMP_EQ] = ACTIONS(7190), - [anon_sym_CARET_EQ] = ACTIONS(7190), - [anon_sym_PIPE_EQ] = ACTIONS(7190), - [anon_sym_LT_LT_EQ] = ACTIONS(7190), - [anon_sym_GT_GT_EQ] = ACTIONS(7190), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7190), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7190), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -638077,6 +629810,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4991] = { + [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), @@ -638086,56 +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), - [anon_sym_SEMI] = ACTIONS(7016), - [anon_sym_LBRACK] = ACTIONS(7016), - [anon_sym_COLON] = ACTIONS(7016), - [anon_sym_COMMA] = ACTIONS(7016), - [anon_sym_RBRACK] = ACTIONS(7016), - [anon_sym_LPAREN] = ACTIONS(7016), - [anon_sym_RPAREN] = ACTIONS(7016), - [anon_sym_RBRACE] = ACTIONS(7016), - [anon_sym_LT] = ACTIONS(7018), - [anon_sym_GT] = ACTIONS(7018), - [anon_sym_in] = ACTIONS(7016), - [anon_sym_QMARK] = ACTIONS(7018), - [anon_sym_BANG] = ACTIONS(7018), - [anon_sym_PLUS_PLUS] = ACTIONS(7016), - [anon_sym_DASH_DASH] = ACTIONS(7016), - [anon_sym_PLUS] = ACTIONS(7018), - [anon_sym_DASH] = ACTIONS(7018), - [anon_sym_STAR] = ACTIONS(7016), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7016), - [anon_sym_CARET] = ACTIONS(7016), - [anon_sym_PIPE] = ACTIONS(7018), - [anon_sym_AMP] = ACTIONS(7018), - [anon_sym_LT_LT] = ACTIONS(7016), - [anon_sym_GT_GT] = ACTIONS(7018), - [anon_sym_GT_GT_GT] = ACTIONS(7016), - [anon_sym_EQ_EQ] = ACTIONS(7016), - [anon_sym_BANG_EQ] = ACTIONS(7016), - [anon_sym_GT_EQ] = ACTIONS(7016), - [anon_sym_LT_EQ] = ACTIONS(7016), - [anon_sym_DOT] = ACTIONS(7018), - [anon_sym_EQ_GT] = ACTIONS(7016), - [anon_sym_switch] = ACTIONS(7016), - [anon_sym_when] = ACTIONS(7016), - [anon_sym_DOT_DOT] = ACTIONS(7016), - [anon_sym_and] = ACTIONS(7016), - [anon_sym_or] = ACTIONS(7016), - [anon_sym_AMP_AMP] = ACTIONS(7016), - [anon_sym_PIPE_PIPE] = ACTIONS(7016), - [sym_op_coalescing] = ACTIONS(7016), - [anon_sym_on] = ACTIONS(7016), - [anon_sym_equals] = ACTIONS(7016), - [anon_sym_by] = ACTIONS(7016), - [anon_sym_as] = ACTIONS(7016), - [anon_sym_is] = ACTIONS(7016), - [anon_sym_DASH_GT] = ACTIONS(7016), - [anon_sym_with] = ACTIONS(7016), - [aux_sym_preproc_if_token3] = ACTIONS(7016), - [aux_sym_preproc_else_token1] = ACTIONS(7016), - [aux_sym_preproc_elif_token1] = ACTIONS(7016), + [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), @@ -638148,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), @@ -638157,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), - [anon_sym_SEMI] = ACTIONS(6009), - [anon_sym_LBRACK] = ACTIONS(6009), - [anon_sym_COLON] = ACTIONS(6009), - [anon_sym_COMMA] = ACTIONS(6009), - [anon_sym_RBRACK] = ACTIONS(6009), - [anon_sym_LPAREN] = ACTIONS(6009), - [anon_sym_RPAREN] = ACTIONS(6009), - [anon_sym_RBRACE] = ACTIONS(6009), - [anon_sym_LT] = ACTIONS(6011), - [anon_sym_GT] = ACTIONS(6011), - [anon_sym_in] = ACTIONS(6009), - [anon_sym_QMARK] = ACTIONS(6011), - [anon_sym_BANG] = ACTIONS(6011), - [anon_sym_PLUS_PLUS] = ACTIONS(6009), - [anon_sym_DASH_DASH] = ACTIONS(6009), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_STAR] = ACTIONS(6009), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_PERCENT] = ACTIONS(6009), - [anon_sym_CARET] = ACTIONS(6009), - [anon_sym_PIPE] = ACTIONS(6011), - [anon_sym_AMP] = ACTIONS(6011), - [anon_sym_LT_LT] = ACTIONS(6009), - [anon_sym_GT_GT] = ACTIONS(6011), - [anon_sym_GT_GT_GT] = ACTIONS(6009), - [anon_sym_EQ_EQ] = ACTIONS(6009), - [anon_sym_BANG_EQ] = ACTIONS(6009), - [anon_sym_GT_EQ] = ACTIONS(6009), - [anon_sym_LT_EQ] = ACTIONS(6009), - [anon_sym_DOT] = ACTIONS(6011), - [anon_sym_EQ_GT] = ACTIONS(6009), - [anon_sym_switch] = ACTIONS(6009), - [anon_sym_when] = ACTIONS(6009), - [anon_sym_DOT_DOT] = ACTIONS(6009), - [anon_sym_and] = ACTIONS(6009), - [anon_sym_or] = ACTIONS(6009), - [anon_sym_AMP_AMP] = ACTIONS(6009), - [anon_sym_PIPE_PIPE] = ACTIONS(6009), - [sym_op_coalescing] = ACTIONS(6009), - [anon_sym_on] = ACTIONS(6009), - [anon_sym_equals] = ACTIONS(6009), - [anon_sym_by] = ACTIONS(6009), - [anon_sym_as] = ACTIONS(6009), - [anon_sym_is] = ACTIONS(6009), - [anon_sym_DASH_GT] = ACTIONS(6009), - [anon_sym_with] = ACTIONS(6009), - [aux_sym_preproc_if_token3] = ACTIONS(6009), - [aux_sym_preproc_else_token1] = ACTIONS(6009), - [aux_sym_preproc_elif_token1] = ACTIONS(6009), + [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), @@ -638219,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), @@ -638228,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(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_BANG] = ACTIONS(6025), - [anon_sym_PLUS_PLUS] = ACTIONS(6023), - [anon_sym_DASH_DASH] = ACTIONS(6023), - [anon_sym_PLUS] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(6025), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6023), - [anon_sym_PIPE] = ACTIONS(6025), - [anon_sym_AMP] = ACTIONS(6025), - [anon_sym_LT_LT] = ACTIONS(6023), - [anon_sym_GT_GT] = ACTIONS(6025), - [anon_sym_GT_GT_GT] = ACTIONS(6023), - [anon_sym_EQ_EQ] = ACTIONS(6023), - [anon_sym_BANG_EQ] = ACTIONS(6023), - [anon_sym_GT_EQ] = ACTIONS(6023), - [anon_sym_LT_EQ] = ACTIONS(6023), - [anon_sym_DOT] = ACTIONS(6025), - [anon_sym_EQ_GT] = ACTIONS(6023), - [anon_sym_switch] = ACTIONS(6023), - [anon_sym_when] = ACTIONS(6023), - [anon_sym_DOT_DOT] = ACTIONS(6023), - [anon_sym_and] = ACTIONS(6023), - [anon_sym_or] = ACTIONS(6023), - [anon_sym_AMP_AMP] = ACTIONS(6023), - [anon_sym_PIPE_PIPE] = ACTIONS(6023), - [sym_op_coalescing] = 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), + [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), @@ -638290,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), @@ -638299,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(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_BANG] = ACTIONS(6029), - [anon_sym_PLUS_PLUS] = ACTIONS(6027), - [anon_sym_DASH_DASH] = ACTIONS(6027), - [anon_sym_PLUS] = ACTIONS(6029), - [anon_sym_DASH] = ACTIONS(6029), - [anon_sym_STAR] = ACTIONS(6027), - [anon_sym_SLASH] = ACTIONS(6029), - [anon_sym_PERCENT] = ACTIONS(6027), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_AMP] = ACTIONS(6029), - [anon_sym_LT_LT] = ACTIONS(6027), - [anon_sym_GT_GT] = ACTIONS(6029), - [anon_sym_GT_GT_GT] = ACTIONS(6027), - [anon_sym_EQ_EQ] = ACTIONS(6027), - [anon_sym_BANG_EQ] = ACTIONS(6027), - [anon_sym_GT_EQ] = ACTIONS(6027), - [anon_sym_LT_EQ] = ACTIONS(6027), - [anon_sym_DOT] = ACTIONS(6029), - [anon_sym_EQ_GT] = ACTIONS(6027), - [anon_sym_switch] = ACTIONS(6027), - [anon_sym_when] = ACTIONS(6027), - [anon_sym_DOT_DOT] = ACTIONS(6027), - [anon_sym_and] = ACTIONS(6027), - [anon_sym_or] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [sym_op_coalescing] = 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), + [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), @@ -638361,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), @@ -638370,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), - [sym__identifier_token] = ACTIONS(5926), - [anon_sym_extern] = ACTIONS(5926), - [anon_sym_alias] = ACTIONS(5926), - [anon_sym_global] = ACTIONS(5926), - [anon_sym_unsafe] = ACTIONS(5926), - [anon_sym_static] = ACTIONS(5926), - [anon_sym_LBRACK] = ACTIONS(5928), - [anon_sym_public] = ACTIONS(5926), - [anon_sym_private] = ACTIONS(5926), - [anon_sym_readonly] = ACTIONS(5926), - [anon_sym_abstract] = ACTIONS(5926), - [anon_sym_async] = ACTIONS(5926), - [anon_sym_const] = ACTIONS(5926), - [anon_sym_file] = ACTIONS(5926), - [anon_sym_fixed] = ACTIONS(5926), - [anon_sym_internal] = ACTIONS(5926), - [anon_sym_new] = ACTIONS(5926), - [anon_sym_override] = ACTIONS(5926), - [anon_sym_partial] = ACTIONS(5926), - [anon_sym_protected] = ACTIONS(5926), - [anon_sym_required] = ACTIONS(5926), - [anon_sym_sealed] = ACTIONS(5926), - [anon_sym_virtual] = ACTIONS(5926), - [anon_sym_volatile] = ACTIONS(5926), - [anon_sym_where] = ACTIONS(5926), - [anon_sym_notnull] = ACTIONS(5926), - [anon_sym_unmanaged] = ACTIONS(5926), - [sym_accessor_get] = ACTIONS(5926), - [sym_accessor_set] = ACTIONS(5926), - [sym_accessor_add] = ACTIONS(5926), - [sym_accessor_remove] = ACTIONS(5926), - [sym_accessor_init] = ACTIONS(5926), - [anon_sym_scoped] = ACTIONS(5926), - [anon_sym_var] = ACTIONS(5926), - [anon_sym_yield] = ACTIONS(5926), - [anon_sym_when] = ACTIONS(5926), - [anon_sym_from] = ACTIONS(5926), - [anon_sym_into] = ACTIONS(5926), - [anon_sym_join] = ACTIONS(5926), - [anon_sym_on] = ACTIONS(5926), - [anon_sym_equals] = ACTIONS(5926), - [anon_sym_let] = ACTIONS(5926), - [anon_sym_orderby] = ACTIONS(5926), - [anon_sym_ascending] = ACTIONS(5926), - [anon_sym_descending] = ACTIONS(5926), - [anon_sym_group] = ACTIONS(5926), - [anon_sym_by] = ACTIONS(5926), - [anon_sym_select] = ACTIONS(5926), - [sym_grit_metavariable] = ACTIONS(5928), - [aux_sym_preproc_if_token1] = ACTIONS(5928), + [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), @@ -638432,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), @@ -638441,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(7138), - [anon_sym_LBRACK] = ACTIONS(7138), - [anon_sym_COLON] = ACTIONS(7138), - [anon_sym_COMMA] = ACTIONS(7138), - [anon_sym_RBRACK] = ACTIONS(7138), - [anon_sym_LPAREN] = ACTIONS(7138), - [anon_sym_RPAREN] = ACTIONS(7138), - [anon_sym_RBRACE] = ACTIONS(7138), - [anon_sym_LT] = ACTIONS(7140), - [anon_sym_GT] = ACTIONS(7140), - [anon_sym_in] = ACTIONS(7138), - [anon_sym_QMARK] = ACTIONS(7140), - [anon_sym_BANG] = ACTIONS(7140), - [anon_sym_PLUS_PLUS] = ACTIONS(7138), - [anon_sym_DASH_DASH] = ACTIONS(7138), - [anon_sym_PLUS] = ACTIONS(7140), - [anon_sym_DASH] = ACTIONS(7140), - [anon_sym_STAR] = ACTIONS(7138), - [anon_sym_SLASH] = ACTIONS(7140), - [anon_sym_PERCENT] = ACTIONS(7138), - [anon_sym_CARET] = ACTIONS(7138), - [anon_sym_PIPE] = ACTIONS(7140), - [anon_sym_AMP] = ACTIONS(7140), - [anon_sym_LT_LT] = ACTIONS(7138), - [anon_sym_GT_GT] = ACTIONS(7140), - [anon_sym_GT_GT_GT] = ACTIONS(7138), - [anon_sym_EQ_EQ] = ACTIONS(7138), - [anon_sym_BANG_EQ] = ACTIONS(7138), - [anon_sym_GT_EQ] = ACTIONS(7138), - [anon_sym_LT_EQ] = ACTIONS(7138), - [anon_sym_DOT] = ACTIONS(7140), - [anon_sym_EQ_GT] = ACTIONS(7138), - [anon_sym_switch] = ACTIONS(7138), - [anon_sym_when] = ACTIONS(7138), - [anon_sym_DOT_DOT] = ACTIONS(7138), - [anon_sym_and] = ACTIONS(7138), - [anon_sym_or] = ACTIONS(7138), - [anon_sym_AMP_AMP] = ACTIONS(7138), - [anon_sym_PIPE_PIPE] = ACTIONS(7138), - [sym_op_coalescing] = ACTIONS(7138), - [anon_sym_on] = ACTIONS(7138), - [anon_sym_equals] = ACTIONS(7138), - [anon_sym_by] = ACTIONS(7138), - [anon_sym_as] = ACTIONS(7138), - [anon_sym_is] = ACTIONS(7138), - [anon_sym_DASH_GT] = ACTIONS(7138), - [anon_sym_with] = ACTIONS(7138), - [aux_sym_preproc_if_token3] = ACTIONS(7138), - [aux_sym_preproc_else_token1] = ACTIONS(7138), - [aux_sym_preproc_elif_token1] = ACTIONS(7138), + [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), @@ -638512,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(7118), - [anon_sym_LBRACK] = ACTIONS(7118), - [anon_sym_COLON] = ACTIONS(7118), - [anon_sym_COMMA] = ACTIONS(7118), - [anon_sym_RBRACK] = ACTIONS(7118), - [anon_sym_LPAREN] = ACTIONS(7118), - [anon_sym_RPAREN] = ACTIONS(7118), - [anon_sym_RBRACE] = ACTIONS(7118), - [anon_sym_LT] = ACTIONS(7120), - [anon_sym_GT] = ACTIONS(7120), - [anon_sym_in] = ACTIONS(7118), - [anon_sym_QMARK] = ACTIONS(7120), - [anon_sym_BANG] = ACTIONS(7120), - [anon_sym_PLUS_PLUS] = ACTIONS(7118), - [anon_sym_DASH_DASH] = ACTIONS(7118), - [anon_sym_PLUS] = ACTIONS(7120), - [anon_sym_DASH] = ACTIONS(7120), - [anon_sym_STAR] = ACTIONS(7118), - [anon_sym_SLASH] = ACTIONS(7120), - [anon_sym_PERCENT] = ACTIONS(7118), - [anon_sym_CARET] = ACTIONS(7118), - [anon_sym_PIPE] = ACTIONS(7120), - [anon_sym_AMP] = ACTIONS(7120), - [anon_sym_LT_LT] = ACTIONS(7118), - [anon_sym_GT_GT] = ACTIONS(7120), - [anon_sym_GT_GT_GT] = ACTIONS(7118), - [anon_sym_EQ_EQ] = ACTIONS(7118), - [anon_sym_BANG_EQ] = ACTIONS(7118), - [anon_sym_GT_EQ] = ACTIONS(7118), - [anon_sym_LT_EQ] = ACTIONS(7118), - [anon_sym_DOT] = ACTIONS(7120), - [anon_sym_EQ_GT] = ACTIONS(7118), - [anon_sym_switch] = ACTIONS(7118), - [anon_sym_when] = ACTIONS(7118), - [anon_sym_DOT_DOT] = ACTIONS(7118), - [anon_sym_and] = ACTIONS(7118), - [anon_sym_or] = ACTIONS(7118), - [anon_sym_AMP_AMP] = ACTIONS(7118), - [anon_sym_PIPE_PIPE] = ACTIONS(7118), - [sym_op_coalescing] = ACTIONS(7118), - [anon_sym_on] = ACTIONS(7118), - [anon_sym_equals] = ACTIONS(7118), - [anon_sym_by] = ACTIONS(7118), - [anon_sym_as] = ACTIONS(7118), - [anon_sym_is] = ACTIONS(7118), - [anon_sym_DASH_GT] = ACTIONS(7118), - [anon_sym_with] = ACTIONS(7118), - [aux_sym_preproc_if_token3] = ACTIONS(7118), - [aux_sym_preproc_else_token1] = ACTIONS(7118), - [aux_sym_preproc_elif_token1] = ACTIONS(7118), + [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), @@ -638574,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), @@ -638583,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(6117), - [anon_sym_LBRACK] = ACTIONS(6117), - [anon_sym_COLON] = ACTIONS(6117), - [anon_sym_COMMA] = ACTIONS(6117), - [anon_sym_RBRACK] = ACTIONS(6117), - [anon_sym_LPAREN] = ACTIONS(6117), - [anon_sym_RPAREN] = ACTIONS(6117), - [anon_sym_RBRACE] = ACTIONS(6117), - [anon_sym_LT] = ACTIONS(6119), - [anon_sym_GT] = ACTIONS(6119), - [anon_sym_in] = ACTIONS(6117), - [anon_sym_QMARK] = ACTIONS(6119), - [anon_sym_BANG] = ACTIONS(6119), - [anon_sym_PLUS_PLUS] = ACTIONS(6117), - [anon_sym_DASH_DASH] = ACTIONS(6117), - [anon_sym_PLUS] = ACTIONS(6119), - [anon_sym_DASH] = ACTIONS(6119), - [anon_sym_STAR] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(6119), - [anon_sym_PERCENT] = ACTIONS(6117), - [anon_sym_CARET] = ACTIONS(6117), - [anon_sym_PIPE] = ACTIONS(6119), - [anon_sym_AMP] = ACTIONS(6119), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6117), - [anon_sym_BANG_EQ] = ACTIONS(6117), - [anon_sym_GT_EQ] = ACTIONS(6117), - [anon_sym_LT_EQ] = ACTIONS(6117), - [anon_sym_DOT] = ACTIONS(6119), - [anon_sym_EQ_GT] = ACTIONS(6117), - [anon_sym_switch] = ACTIONS(6117), - [anon_sym_when] = ACTIONS(6117), - [anon_sym_DOT_DOT] = ACTIONS(6117), - [anon_sym_and] = ACTIONS(6117), - [anon_sym_or] = ACTIONS(6117), - [anon_sym_AMP_AMP] = ACTIONS(6117), - [anon_sym_PIPE_PIPE] = ACTIONS(6117), - [sym_op_coalescing] = ACTIONS(6117), - [anon_sym_on] = ACTIONS(6117), - [anon_sym_equals] = ACTIONS(6117), - [anon_sym_by] = ACTIONS(6117), - [anon_sym_as] = ACTIONS(6117), - [anon_sym_is] = ACTIONS(6117), - [anon_sym_DASH_GT] = ACTIONS(6117), - [anon_sym_with] = ACTIONS(6117), - [aux_sym_preproc_if_token3] = ACTIONS(6117), - [aux_sym_preproc_else_token1] = ACTIONS(6117), - [aux_sym_preproc_elif_token1] = ACTIONS(6117), + [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), @@ -638645,8 +630370,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [4999] = { - [sym_argument_list] = STATE(3685), - [sym_initializer_expression] = STATE(4111), + [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), @@ -638656,54 +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(5682), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COLON] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5682), - [anon_sym_RBRACK] = ACTIONS(5682), - [anon_sym_LPAREN] = ACTIONS(5520), - [anon_sym_RPAREN] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(5682), - [anon_sym_LT] = ACTIONS(5684), - [anon_sym_GT] = ACTIONS(5684), - [anon_sym_in] = ACTIONS(5682), - [anon_sym_QMARK] = ACTIONS(5684), - [anon_sym_BANG] = ACTIONS(5684), - [anon_sym_PLUS_PLUS] = ACTIONS(5682), - [anon_sym_DASH_DASH] = ACTIONS(5682), - [anon_sym_PLUS] = ACTIONS(5684), - [anon_sym_DASH] = ACTIONS(5684), - [anon_sym_STAR] = ACTIONS(5682), - [anon_sym_SLASH] = ACTIONS(5684), - [anon_sym_PERCENT] = ACTIONS(5682), - [anon_sym_CARET] = ACTIONS(5682), - [anon_sym_PIPE] = ACTIONS(5684), - [anon_sym_AMP] = ACTIONS(5684), - [anon_sym_LT_LT] = ACTIONS(5682), - [anon_sym_GT_GT] = ACTIONS(5684), - [anon_sym_GT_GT_GT] = ACTIONS(5682), - [anon_sym_EQ_EQ] = ACTIONS(5682), - [anon_sym_BANG_EQ] = ACTIONS(5682), - [anon_sym_GT_EQ] = ACTIONS(5682), - [anon_sym_LT_EQ] = ACTIONS(5682), - [anon_sym_DOT] = ACTIONS(5684), - [anon_sym_EQ_GT] = ACTIONS(5682), - [anon_sym_switch] = ACTIONS(5682), - [anon_sym_DOT_DOT] = ACTIONS(5682), - [anon_sym_AMP_AMP] = ACTIONS(5682), - [anon_sym_PIPE_PIPE] = ACTIONS(5682), - [sym_op_coalescing] = ACTIONS(5682), - [anon_sym_on] = ACTIONS(5682), - [anon_sym_equals] = ACTIONS(5682), - [anon_sym_by] = ACTIONS(5682), - [anon_sym_as] = ACTIONS(5682), - [anon_sym_is] = ACTIONS(5682), - [anon_sym_DASH_GT] = ACTIONS(5682), - [anon_sym_with] = ACTIONS(5682), - [aux_sym_preproc_if_token3] = ACTIONS(5682), - [aux_sym_preproc_else_token1] = ACTIONS(5682), - [aux_sym_preproc_elif_token1] = ACTIONS(5682), + [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), @@ -638716,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), @@ -638725,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), - [anon_sym_SEMI] = ACTIONS(6147), - [anon_sym_LBRACK] = ACTIONS(6147), - [anon_sym_COLON] = ACTIONS(6147), - [anon_sym_COMMA] = ACTIONS(6147), - [anon_sym_RBRACK] = ACTIONS(6147), - [anon_sym_LPAREN] = ACTIONS(6147), - [anon_sym_RPAREN] = ACTIONS(6147), - [anon_sym_RBRACE] = ACTIONS(6147), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_in] = ACTIONS(6147), - [anon_sym_QMARK] = ACTIONS(6149), - [anon_sym_BANG] = ACTIONS(6149), - [anon_sym_PLUS_PLUS] = ACTIONS(6147), - [anon_sym_DASH_DASH] = ACTIONS(6147), - [anon_sym_PLUS] = ACTIONS(6149), - [anon_sym_DASH] = ACTIONS(6149), - [anon_sym_STAR] = ACTIONS(6147), - [anon_sym_SLASH] = ACTIONS(6149), - [anon_sym_PERCENT] = ACTIONS(6147), - [anon_sym_CARET] = ACTIONS(6147), - [anon_sym_PIPE] = ACTIONS(6149), - [anon_sym_AMP] = ACTIONS(6149), - [anon_sym_LT_LT] = ACTIONS(6147), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6147), - [anon_sym_EQ_EQ] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6147), - [anon_sym_LT_EQ] = ACTIONS(6147), - [anon_sym_DOT] = ACTIONS(6149), - [anon_sym_EQ_GT] = ACTIONS(6147), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_when] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6147), - [anon_sym_and] = ACTIONS(6147), - [anon_sym_or] = ACTIONS(6147), - [anon_sym_AMP_AMP] = ACTIONS(6147), - [anon_sym_PIPE_PIPE] = ACTIONS(6147), - [sym_op_coalescing] = ACTIONS(6147), - [anon_sym_on] = ACTIONS(6147), - [anon_sym_equals] = ACTIONS(6147), - [anon_sym_by] = ACTIONS(6147), - [anon_sym_as] = ACTIONS(6147), - [anon_sym_is] = ACTIONS(6147), - [anon_sym_DASH_GT] = ACTIONS(6147), - [anon_sym_with] = ACTIONS(6147), - [aux_sym_preproc_if_token3] = ACTIONS(6147), - [aux_sym_preproc_else_token1] = ACTIONS(6147), - [aux_sym_preproc_elif_token1] = ACTIONS(6147), + [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), @@ -638787,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), @@ -638796,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), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LBRACK] = ACTIONS(6031), - [anon_sym_COLON] = ACTIONS(6031), - [anon_sym_COMMA] = ACTIONS(6031), - [anon_sym_RBRACK] = ACTIONS(6031), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_RBRACE] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6033), - [anon_sym_GT] = ACTIONS(6033), - [anon_sym_in] = ACTIONS(6031), - [anon_sym_QMARK] = ACTIONS(6033), - [anon_sym_BANG] = ACTIONS(6033), - [anon_sym_PLUS_PLUS] = ACTIONS(6031), - [anon_sym_DASH_DASH] = ACTIONS(6031), - [anon_sym_PLUS] = ACTIONS(6033), - [anon_sym_DASH] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6031), - [anon_sym_SLASH] = ACTIONS(6033), - [anon_sym_PERCENT] = ACTIONS(6031), - [anon_sym_CARET] = ACTIONS(6031), - [anon_sym_PIPE] = ACTIONS(6033), - [anon_sym_AMP] = ACTIONS(6033), - [anon_sym_LT_LT] = ACTIONS(6031), - [anon_sym_GT_GT] = ACTIONS(6033), - [anon_sym_GT_GT_GT] = ACTIONS(6031), - [anon_sym_EQ_EQ] = ACTIONS(6031), - [anon_sym_BANG_EQ] = ACTIONS(6031), - [anon_sym_GT_EQ] = ACTIONS(6031), - [anon_sym_LT_EQ] = ACTIONS(6031), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_EQ_GT] = ACTIONS(6031), - [anon_sym_switch] = ACTIONS(6031), - [anon_sym_when] = ACTIONS(6031), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(6031), - [anon_sym_or] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [sym_op_coalescing] = ACTIONS(6031), - [anon_sym_on] = ACTIONS(6031), - [anon_sym_equals] = ACTIONS(6031), - [anon_sym_by] = ACTIONS(6031), - [anon_sym_as] = ACTIONS(6031), - [anon_sym_is] = ACTIONS(6031), - [anon_sym_DASH_GT] = ACTIONS(6031), - [anon_sym_with] = ACTIONS(6031), - [aux_sym_preproc_if_token3] = ACTIONS(6031), - [aux_sym_preproc_else_token1] = ACTIONS(6031), - [aux_sym_preproc_elif_token1] = ACTIONS(6031), + [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), @@ -638858,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), @@ -638867,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), - [anon_sym_SEMI] = ACTIONS(6041), - [anon_sym_LBRACK] = ACTIONS(6041), - [anon_sym_COLON] = ACTIONS(6041), - [anon_sym_COMMA] = ACTIONS(6041), - [anon_sym_RBRACK] = ACTIONS(6041), - [anon_sym_LPAREN] = ACTIONS(6041), - [anon_sym_RPAREN] = ACTIONS(6041), - [anon_sym_RBRACE] = ACTIONS(6041), - [anon_sym_LT] = ACTIONS(6043), - [anon_sym_GT] = ACTIONS(6043), - [anon_sym_in] = ACTIONS(6041), - [anon_sym_QMARK] = ACTIONS(6043), - [anon_sym_BANG] = ACTIONS(6043), - [anon_sym_PLUS_PLUS] = ACTIONS(6041), - [anon_sym_DASH_DASH] = ACTIONS(6041), - [anon_sym_PLUS] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(6043), - [anon_sym_STAR] = ACTIONS(6041), - [anon_sym_SLASH] = ACTIONS(6043), - [anon_sym_PERCENT] = ACTIONS(6041), - [anon_sym_CARET] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - [anon_sym_LT_LT] = ACTIONS(6041), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_GT_GT_GT] = ACTIONS(6041), - [anon_sym_EQ_EQ] = ACTIONS(6041), - [anon_sym_BANG_EQ] = ACTIONS(6041), - [anon_sym_GT_EQ] = ACTIONS(6041), - [anon_sym_LT_EQ] = ACTIONS(6041), - [anon_sym_DOT] = ACTIONS(6043), - [anon_sym_EQ_GT] = ACTIONS(6041), - [anon_sym_switch] = ACTIONS(6041), - [anon_sym_when] = ACTIONS(6041), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_and] = ACTIONS(6041), - [anon_sym_or] = ACTIONS(6041), - [anon_sym_AMP_AMP] = ACTIONS(6041), - [anon_sym_PIPE_PIPE] = ACTIONS(6041), - [sym_op_coalescing] = ACTIONS(6041), - [anon_sym_on] = ACTIONS(6041), - [anon_sym_equals] = ACTIONS(6041), - [anon_sym_by] = ACTIONS(6041), - [anon_sym_as] = ACTIONS(6041), - [anon_sym_is] = ACTIONS(6041), - [anon_sym_DASH_GT] = ACTIONS(6041), - [anon_sym_with] = ACTIONS(6041), - [aux_sym_preproc_if_token3] = ACTIONS(6041), - [aux_sym_preproc_else_token1] = ACTIONS(6041), - [aux_sym_preproc_elif_token1] = ACTIONS(6041), + [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), @@ -638929,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), @@ -638938,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(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(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), @@ -639000,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), @@ -639009,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(4163), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_COLON] = ACTIONS(4163), - [anon_sym_COMMA] = ACTIONS(4163), - [anon_sym_RBRACK] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4163), - [anon_sym_RPAREN] = ACTIONS(4163), - [anon_sym_RBRACE] = ACTIONS(4163), - [anon_sym_LT] = ACTIONS(6996), - [anon_sym_GT] = ACTIONS(6996), - [anon_sym_in] = ACTIONS(4163), - [anon_sym_QMARK] = ACTIONS(6996), - [anon_sym_BANG] = ACTIONS(6996), - [anon_sym_PLUS_PLUS] = ACTIONS(4163), - [anon_sym_DASH_DASH] = ACTIONS(4163), - [anon_sym_PLUS] = ACTIONS(6996), - [anon_sym_DASH] = ACTIONS(6996), - [anon_sym_STAR] = ACTIONS(4163), - [anon_sym_SLASH] = ACTIONS(6996), - [anon_sym_PERCENT] = ACTIONS(4163), - [anon_sym_CARET] = ACTIONS(4163), - [anon_sym_PIPE] = ACTIONS(6996), - [anon_sym_AMP] = ACTIONS(6996), - [anon_sym_LT_LT] = ACTIONS(4163), - [anon_sym_GT_GT] = ACTIONS(6996), - [anon_sym_GT_GT_GT] = ACTIONS(4163), - [anon_sym_EQ_EQ] = ACTIONS(4163), - [anon_sym_BANG_EQ] = ACTIONS(4163), - [anon_sym_GT_EQ] = ACTIONS(4163), - [anon_sym_LT_EQ] = ACTIONS(4163), - [anon_sym_DOT] = ACTIONS(6996), - [anon_sym_EQ_GT] = ACTIONS(4163), - [anon_sym_switch] = ACTIONS(4163), - [anon_sym_when] = ACTIONS(4163), - [anon_sym_DOT_DOT] = ACTIONS(4163), - [anon_sym_and] = ACTIONS(4163), - [anon_sym_or] = ACTIONS(4163), - [anon_sym_AMP_AMP] = ACTIONS(4163), - [anon_sym_PIPE_PIPE] = ACTIONS(4163), - [sym_op_coalescing] = ACTIONS(4163), - [anon_sym_on] = ACTIONS(4163), - [anon_sym_equals] = ACTIONS(4163), - [anon_sym_by] = ACTIONS(4163), - [anon_sym_as] = ACTIONS(4163), - [anon_sym_is] = ACTIONS(4163), - [anon_sym_DASH_GT] = ACTIONS(4163), - [anon_sym_with] = ACTIONS(4163), - [aux_sym_preproc_if_token3] = ACTIONS(4163), - [aux_sym_preproc_else_token1] = ACTIONS(4163), - [aux_sym_preproc_elif_token1] = ACTIONS(4163), + [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), @@ -639071,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), @@ -639080,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(6075), - [anon_sym_LBRACK] = ACTIONS(6075), - [anon_sym_COLON] = ACTIONS(6075), - [anon_sym_COMMA] = ACTIONS(6075), - [anon_sym_RBRACK] = ACTIONS(6075), - [anon_sym_LPAREN] = ACTIONS(6075), - [anon_sym_RPAREN] = ACTIONS(6075), - [anon_sym_RBRACE] = ACTIONS(6075), - [anon_sym_LT] = ACTIONS(6077), - [anon_sym_GT] = ACTIONS(6077), - [anon_sym_in] = ACTIONS(6075), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_BANG] = ACTIONS(6077), - [anon_sym_PLUS_PLUS] = ACTIONS(6075), - [anon_sym_DASH_DASH] = ACTIONS(6075), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6075), - [anon_sym_SLASH] = ACTIONS(6077), - [anon_sym_PERCENT] = ACTIONS(6075), - [anon_sym_CARET] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - [anon_sym_LT_LT] = ACTIONS(6075), - [anon_sym_GT_GT] = ACTIONS(6077), - [anon_sym_GT_GT_GT] = ACTIONS(6075), - [anon_sym_EQ_EQ] = ACTIONS(6075), - [anon_sym_BANG_EQ] = ACTIONS(6075), - [anon_sym_GT_EQ] = ACTIONS(6075), - [anon_sym_LT_EQ] = ACTIONS(6075), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_EQ_GT] = ACTIONS(6075), - [anon_sym_switch] = ACTIONS(6075), - [anon_sym_when] = ACTIONS(6075), - [anon_sym_DOT_DOT] = ACTIONS(6075), - [anon_sym_and] = ACTIONS(6075), - [anon_sym_or] = ACTIONS(6075), - [anon_sym_AMP_AMP] = ACTIONS(6075), - [anon_sym_PIPE_PIPE] = ACTIONS(6075), - [sym_op_coalescing] = ACTIONS(6075), - [anon_sym_on] = ACTIONS(6075), - [anon_sym_equals] = ACTIONS(6075), - [anon_sym_by] = ACTIONS(6075), - [anon_sym_as] = ACTIONS(6075), - [anon_sym_is] = ACTIONS(6075), - [anon_sym_DASH_GT] = ACTIONS(6075), - [anon_sym_with] = ACTIONS(6075), - [aux_sym_preproc_if_token3] = ACTIONS(6075), - [aux_sym_preproc_else_token1] = ACTIONS(6075), - [aux_sym_preproc_elif_token1] = ACTIONS(6075), + [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), @@ -639142,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), @@ -639151,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(4815), - [anon_sym_LBRACK] = ACTIONS(4815), - [anon_sym_COLON] = ACTIONS(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_RBRACK] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [anon_sym_RBRACE] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_in] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PLUS_PLUS] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_CARET] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_LT_LT] = ACTIONS(4815), - [anon_sym_GT_GT] = ACTIONS(4817), - [anon_sym_GT_GT_GT] = ACTIONS(4815), - [anon_sym_EQ_EQ] = ACTIONS(4815), - [anon_sym_BANG_EQ] = ACTIONS(4815), - [anon_sym_GT_EQ] = ACTIONS(4815), - [anon_sym_LT_EQ] = ACTIONS(4815), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_EQ_GT] = ACTIONS(4815), - [anon_sym_switch] = ACTIONS(4815), - [anon_sym_when] = ACTIONS(4815), - [anon_sym_DOT_DOT] = ACTIONS(4815), - [anon_sym_and] = ACTIONS(4815), - [anon_sym_or] = ACTIONS(4815), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [sym_op_coalescing] = ACTIONS(4815), - [anon_sym_on] = ACTIONS(4815), - [anon_sym_equals] = ACTIONS(4815), - [anon_sym_by] = ACTIONS(4815), - [anon_sym_as] = ACTIONS(4815), - [anon_sym_is] = ACTIONS(4815), - [anon_sym_DASH_GT] = ACTIONS(4815), - [anon_sym_with] = ACTIONS(4815), - [aux_sym_preproc_if_token3] = ACTIONS(4815), - [aux_sym_preproc_else_token1] = ACTIONS(4815), - [aux_sym_preproc_elif_token1] = ACTIONS(4815), + [anon_sym_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), @@ -639213,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), @@ -639222,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(7074), - [anon_sym_LBRACK] = ACTIONS(7074), - [anon_sym_COLON] = ACTIONS(7074), - [anon_sym_COMMA] = ACTIONS(7074), - [anon_sym_RBRACK] = ACTIONS(7074), - [anon_sym_LPAREN] = ACTIONS(7074), - [anon_sym_RPAREN] = ACTIONS(7074), - [anon_sym_RBRACE] = ACTIONS(7074), - [anon_sym_LT] = ACTIONS(7076), - [anon_sym_GT] = ACTIONS(7076), - [anon_sym_in] = ACTIONS(7074), - [anon_sym_QMARK] = ACTIONS(7076), - [anon_sym_BANG] = ACTIONS(7076), - [anon_sym_PLUS_PLUS] = ACTIONS(7074), - [anon_sym_DASH_DASH] = ACTIONS(7074), - [anon_sym_PLUS] = ACTIONS(7076), - [anon_sym_DASH] = ACTIONS(7076), - [anon_sym_STAR] = ACTIONS(7074), - [anon_sym_SLASH] = ACTIONS(7076), - [anon_sym_PERCENT] = ACTIONS(7074), - [anon_sym_CARET] = ACTIONS(7074), - [anon_sym_PIPE] = ACTIONS(7076), - [anon_sym_AMP] = ACTIONS(7076), - [anon_sym_LT_LT] = ACTIONS(7074), - [anon_sym_GT_GT] = ACTIONS(7076), - [anon_sym_GT_GT_GT] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7074), - [anon_sym_BANG_EQ] = ACTIONS(7074), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_DOT] = ACTIONS(7076), - [anon_sym_EQ_GT] = ACTIONS(7074), - [anon_sym_switch] = ACTIONS(7074), - [anon_sym_when] = ACTIONS(7074), - [anon_sym_DOT_DOT] = ACTIONS(7074), - [anon_sym_and] = ACTIONS(7074), - [anon_sym_or] = ACTIONS(7074), - [anon_sym_AMP_AMP] = ACTIONS(7074), - [anon_sym_PIPE_PIPE] = ACTIONS(7074), - [sym_op_coalescing] = ACTIONS(7074), - [anon_sym_on] = ACTIONS(7074), - [anon_sym_equals] = ACTIONS(7074), - [anon_sym_by] = ACTIONS(7074), - [anon_sym_as] = ACTIONS(7074), - [anon_sym_is] = ACTIONS(7074), - [anon_sym_DASH_GT] = ACTIONS(7074), - [anon_sym_with] = ACTIONS(7074), - [aux_sym_preproc_if_token3] = ACTIONS(7074), - [aux_sym_preproc_else_token1] = ACTIONS(7074), - [aux_sym_preproc_elif_token1] = ACTIONS(7074), + [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), @@ -639284,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), @@ -639293,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(7122), - [anon_sym_LBRACK] = ACTIONS(7122), - [anon_sym_COLON] = ACTIONS(7122), - [anon_sym_COMMA] = ACTIONS(7122), - [anon_sym_RBRACK] = ACTIONS(7122), - [anon_sym_LPAREN] = ACTIONS(7122), - [anon_sym_RPAREN] = ACTIONS(7122), - [anon_sym_RBRACE] = ACTIONS(7122), - [anon_sym_LT] = ACTIONS(7124), - [anon_sym_GT] = ACTIONS(7124), - [anon_sym_in] = ACTIONS(7122), - [anon_sym_QMARK] = ACTIONS(7124), - [anon_sym_BANG] = ACTIONS(7124), - [anon_sym_PLUS_PLUS] = ACTIONS(7122), - [anon_sym_DASH_DASH] = ACTIONS(7122), - [anon_sym_PLUS] = ACTIONS(7124), - [anon_sym_DASH] = ACTIONS(7124), - [anon_sym_STAR] = ACTIONS(7122), - [anon_sym_SLASH] = ACTIONS(7124), - [anon_sym_PERCENT] = ACTIONS(7122), - [anon_sym_CARET] = ACTIONS(7122), - [anon_sym_PIPE] = ACTIONS(7124), - [anon_sym_AMP] = ACTIONS(7124), - [anon_sym_LT_LT] = ACTIONS(7122), - [anon_sym_GT_GT] = ACTIONS(7124), - [anon_sym_GT_GT_GT] = ACTIONS(7122), - [anon_sym_EQ_EQ] = ACTIONS(7122), - [anon_sym_BANG_EQ] = ACTIONS(7122), - [anon_sym_GT_EQ] = ACTIONS(7122), - [anon_sym_LT_EQ] = ACTIONS(7122), - [anon_sym_DOT] = ACTIONS(7124), - [anon_sym_EQ_GT] = ACTIONS(7122), - [anon_sym_switch] = ACTIONS(7122), - [anon_sym_when] = ACTIONS(7122), - [anon_sym_DOT_DOT] = ACTIONS(7122), - [anon_sym_and] = ACTIONS(7122), - [anon_sym_or] = ACTIONS(7122), - [anon_sym_AMP_AMP] = ACTIONS(7122), - [anon_sym_PIPE_PIPE] = ACTIONS(7122), - [sym_op_coalescing] = ACTIONS(7122), - [anon_sym_on] = ACTIONS(7122), - [anon_sym_equals] = ACTIONS(7122), - [anon_sym_by] = ACTIONS(7122), - [anon_sym_as] = ACTIONS(7122), - [anon_sym_is] = ACTIONS(7122), - [anon_sym_DASH_GT] = ACTIONS(7122), - [anon_sym_with] = ACTIONS(7122), - [aux_sym_preproc_if_token3] = ACTIONS(7122), - [aux_sym_preproc_else_token1] = ACTIONS(7122), - [aux_sym_preproc_elif_token1] = ACTIONS(7122), + [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), @@ -639355,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), @@ -639364,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(7134), - [anon_sym_LBRACK] = ACTIONS(7134), - [anon_sym_COLON] = ACTIONS(7134), - [anon_sym_COMMA] = ACTIONS(7134), - [anon_sym_RBRACK] = ACTIONS(7134), - [anon_sym_LPAREN] = ACTIONS(7134), - [anon_sym_RPAREN] = ACTIONS(7134), - [anon_sym_RBRACE] = ACTIONS(7134), - [anon_sym_LT] = ACTIONS(7136), - [anon_sym_GT] = ACTIONS(7136), - [anon_sym_in] = ACTIONS(7134), - [anon_sym_QMARK] = ACTIONS(7136), - [anon_sym_BANG] = ACTIONS(7136), - [anon_sym_PLUS_PLUS] = ACTIONS(7134), - [anon_sym_DASH_DASH] = ACTIONS(7134), - [anon_sym_PLUS] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(7136), - [anon_sym_STAR] = ACTIONS(7134), - [anon_sym_SLASH] = ACTIONS(7136), - [anon_sym_PERCENT] = ACTIONS(7134), - [anon_sym_CARET] = ACTIONS(7134), - [anon_sym_PIPE] = ACTIONS(7136), - [anon_sym_AMP] = ACTIONS(7136), - [anon_sym_LT_LT] = ACTIONS(7134), - [anon_sym_GT_GT] = ACTIONS(7136), - [anon_sym_GT_GT_GT] = ACTIONS(7134), - [anon_sym_EQ_EQ] = ACTIONS(7134), - [anon_sym_BANG_EQ] = ACTIONS(7134), - [anon_sym_GT_EQ] = ACTIONS(7134), - [anon_sym_LT_EQ] = ACTIONS(7134), - [anon_sym_DOT] = ACTIONS(7136), - [anon_sym_EQ_GT] = ACTIONS(7134), - [anon_sym_switch] = ACTIONS(7134), - [anon_sym_when] = ACTIONS(7134), - [anon_sym_DOT_DOT] = ACTIONS(7134), - [anon_sym_and] = ACTIONS(7134), - [anon_sym_or] = ACTIONS(7134), - [anon_sym_AMP_AMP] = ACTIONS(7134), - [anon_sym_PIPE_PIPE] = ACTIONS(7134), - [sym_op_coalescing] = ACTIONS(7134), - [anon_sym_on] = ACTIONS(7134), - [anon_sym_equals] = ACTIONS(7134), - [anon_sym_by] = ACTIONS(7134), - [anon_sym_as] = ACTIONS(7134), - [anon_sym_is] = ACTIONS(7134), - [anon_sym_DASH_GT] = ACTIONS(7134), - [anon_sym_with] = ACTIONS(7134), - [aux_sym_preproc_if_token3] = ACTIONS(7134), - [aux_sym_preproc_else_token1] = ACTIONS(7134), - [aux_sym_preproc_elif_token1] = ACTIONS(7134), + [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), @@ -639426,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), @@ -639435,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_SEMI] = ACTIONS(7074), - [anon_sym_LBRACK] = ACTIONS(7074), - [anon_sym_COLON] = ACTIONS(7074), - [anon_sym_COMMA] = ACTIONS(7074), - [anon_sym_RBRACK] = ACTIONS(7074), - [anon_sym_LPAREN] = ACTIONS(7074), - [anon_sym_RPAREN] = ACTIONS(7074), - [anon_sym_RBRACE] = ACTIONS(7074), - [anon_sym_LT] = ACTIONS(7076), - [anon_sym_GT] = ACTIONS(7076), - [anon_sym_in] = ACTIONS(7074), - [anon_sym_QMARK] = ACTIONS(7076), - [anon_sym_BANG] = ACTIONS(7076), - [anon_sym_PLUS_PLUS] = ACTIONS(7074), - [anon_sym_DASH_DASH] = ACTIONS(7074), - [anon_sym_PLUS] = ACTIONS(7076), - [anon_sym_DASH] = ACTIONS(7076), - [anon_sym_STAR] = ACTIONS(7074), - [anon_sym_SLASH] = ACTIONS(7076), - [anon_sym_PERCENT] = ACTIONS(7074), - [anon_sym_CARET] = ACTIONS(7074), - [anon_sym_PIPE] = ACTIONS(7076), - [anon_sym_AMP] = ACTIONS(7076), - [anon_sym_LT_LT] = ACTIONS(7074), - [anon_sym_GT_GT] = ACTIONS(7076), - [anon_sym_GT_GT_GT] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7074), - [anon_sym_BANG_EQ] = ACTIONS(7074), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_DOT] = ACTIONS(7076), - [anon_sym_EQ_GT] = ACTIONS(7074), - [anon_sym_switch] = ACTIONS(7074), - [anon_sym_when] = ACTIONS(7074), - [anon_sym_DOT_DOT] = ACTIONS(7074), - [anon_sym_and] = ACTIONS(7074), - [anon_sym_or] = ACTIONS(7074), - [anon_sym_AMP_AMP] = ACTIONS(7074), - [anon_sym_PIPE_PIPE] = ACTIONS(7074), - [sym_op_coalescing] = ACTIONS(7074), - [anon_sym_on] = ACTIONS(7074), - [anon_sym_equals] = ACTIONS(7074), - [anon_sym_by] = ACTIONS(7074), - [anon_sym_as] = ACTIONS(7074), - [anon_sym_is] = ACTIONS(7074), - [anon_sym_DASH_GT] = ACTIONS(7074), - [anon_sym_with] = ACTIONS(7074), - [aux_sym_preproc_if_token3] = ACTIONS(7074), - [aux_sym_preproc_else_token1] = ACTIONS(7074), - [aux_sym_preproc_elif_token1] = ACTIONS(7074), + [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), @@ -639506,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(7146), - [anon_sym_LBRACK] = ACTIONS(7146), - [anon_sym_COLON] = ACTIONS(7146), - [anon_sym_COMMA] = ACTIONS(7146), - [anon_sym_RBRACK] = ACTIONS(7146), - [anon_sym_LPAREN] = ACTIONS(7146), - [anon_sym_RPAREN] = ACTIONS(7146), - [anon_sym_RBRACE] = ACTIONS(7146), - [anon_sym_LT] = ACTIONS(7148), - [anon_sym_GT] = ACTIONS(7148), - [anon_sym_in] = ACTIONS(7146), - [anon_sym_QMARK] = ACTIONS(7148), - [anon_sym_BANG] = ACTIONS(7148), - [anon_sym_PLUS_PLUS] = ACTIONS(7146), - [anon_sym_DASH_DASH] = ACTIONS(7146), - [anon_sym_PLUS] = ACTIONS(7148), - [anon_sym_DASH] = ACTIONS(7148), - [anon_sym_STAR] = ACTIONS(7146), - [anon_sym_SLASH] = ACTIONS(7148), - [anon_sym_PERCENT] = ACTIONS(7146), - [anon_sym_CARET] = ACTIONS(7146), - [anon_sym_PIPE] = ACTIONS(7148), - [anon_sym_AMP] = ACTIONS(7148), - [anon_sym_LT_LT] = ACTIONS(7146), - [anon_sym_GT_GT] = ACTIONS(7148), - [anon_sym_GT_GT_GT] = ACTIONS(7146), - [anon_sym_EQ_EQ] = ACTIONS(7146), - [anon_sym_BANG_EQ] = ACTIONS(7146), - [anon_sym_GT_EQ] = ACTIONS(7146), - [anon_sym_LT_EQ] = ACTIONS(7146), - [anon_sym_DOT] = ACTIONS(7148), - [anon_sym_EQ_GT] = ACTIONS(7146), - [anon_sym_switch] = ACTIONS(7146), - [anon_sym_when] = ACTIONS(7146), - [anon_sym_DOT_DOT] = ACTIONS(7146), - [anon_sym_and] = ACTIONS(7146), - [anon_sym_or] = ACTIONS(7146), - [anon_sym_AMP_AMP] = ACTIONS(7146), - [anon_sym_PIPE_PIPE] = ACTIONS(7146), - [sym_op_coalescing] = ACTIONS(7146), - [anon_sym_on] = ACTIONS(7146), - [anon_sym_equals] = ACTIONS(7146), - [anon_sym_by] = ACTIONS(7146), - [anon_sym_as] = ACTIONS(7146), - [anon_sym_is] = ACTIONS(7146), - [anon_sym_DASH_GT] = ACTIONS(7146), - [anon_sym_with] = ACTIONS(7146), - [aux_sym_preproc_if_token3] = ACTIONS(7146), - [aux_sym_preproc_else_token1] = ACTIONS(7146), - [aux_sym_preproc_elif_token1] = ACTIONS(7146), + [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), @@ -639568,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), @@ -639577,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_EQ] = ACTIONS(7192), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_EQ_GT] = ACTIONS(5752), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7194), - [anon_sym_DASH_EQ] = ACTIONS(7194), - [anon_sym_STAR_EQ] = ACTIONS(7194), - [anon_sym_SLASH_EQ] = ACTIONS(7194), - [anon_sym_PERCENT_EQ] = ACTIONS(7194), - [anon_sym_AMP_EQ] = ACTIONS(7194), - [anon_sym_CARET_EQ] = ACTIONS(7194), - [anon_sym_PIPE_EQ] = ACTIONS(7194), - [anon_sym_LT_LT_EQ] = ACTIONS(7194), - [anon_sym_GT_GT_EQ] = ACTIONS(7194), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7194), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7194), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -639639,24 +631350,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5013] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5629), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -639666,38 +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(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_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), @@ -639710,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), @@ -639719,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(7130), - [anon_sym_LBRACK] = ACTIONS(7130), - [anon_sym_COLON] = ACTIONS(7130), - [anon_sym_COMMA] = ACTIONS(7130), - [anon_sym_RBRACK] = ACTIONS(7130), - [anon_sym_LPAREN] = ACTIONS(7130), - [anon_sym_RPAREN] = ACTIONS(7130), - [anon_sym_RBRACE] = ACTIONS(7130), - [anon_sym_LT] = ACTIONS(7132), - [anon_sym_GT] = ACTIONS(7132), - [anon_sym_in] = ACTIONS(7130), - [anon_sym_QMARK] = ACTIONS(7132), - [anon_sym_BANG] = ACTIONS(7132), - [anon_sym_PLUS_PLUS] = ACTIONS(7130), - [anon_sym_DASH_DASH] = ACTIONS(7130), - [anon_sym_PLUS] = ACTIONS(7132), - [anon_sym_DASH] = ACTIONS(7132), - [anon_sym_STAR] = ACTIONS(7130), - [anon_sym_SLASH] = ACTIONS(7132), - [anon_sym_PERCENT] = ACTIONS(7130), - [anon_sym_CARET] = ACTIONS(7130), - [anon_sym_PIPE] = ACTIONS(7132), - [anon_sym_AMP] = ACTIONS(7132), - [anon_sym_LT_LT] = ACTIONS(7130), - [anon_sym_GT_GT] = ACTIONS(7132), - [anon_sym_GT_GT_GT] = ACTIONS(7130), - [anon_sym_EQ_EQ] = ACTIONS(7130), - [anon_sym_BANG_EQ] = ACTIONS(7130), - [anon_sym_GT_EQ] = ACTIONS(7130), - [anon_sym_LT_EQ] = ACTIONS(7130), - [anon_sym_DOT] = ACTIONS(7132), - [anon_sym_EQ_GT] = ACTIONS(7130), - [anon_sym_switch] = ACTIONS(7130), - [anon_sym_when] = ACTIONS(7130), - [anon_sym_DOT_DOT] = ACTIONS(7130), - [anon_sym_and] = ACTIONS(7130), - [anon_sym_or] = ACTIONS(7130), - [anon_sym_AMP_AMP] = ACTIONS(7130), - [anon_sym_PIPE_PIPE] = ACTIONS(7130), - [sym_op_coalescing] = ACTIONS(7130), - [anon_sym_on] = ACTIONS(7130), - [anon_sym_equals] = ACTIONS(7130), - [anon_sym_by] = ACTIONS(7130), - [anon_sym_as] = ACTIONS(7130), - [anon_sym_is] = ACTIONS(7130), - [anon_sym_DASH_GT] = ACTIONS(7130), - [anon_sym_with] = ACTIONS(7130), - [aux_sym_preproc_if_token3] = ACTIONS(7130), - [aux_sym_preproc_else_token1] = ACTIONS(7130), - [aux_sym_preproc_elif_token1] = ACTIONS(7130), + [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), @@ -639781,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), @@ -639790,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), - [anon_sym_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_COLON] = ACTIONS(5005), - [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(5003), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(5003), - [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(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), @@ -639852,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), @@ -639861,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), - [sym__identifier_token] = ACTIONS(5546), - [anon_sym_extern] = ACTIONS(5546), - [anon_sym_alias] = ACTIONS(5546), - [anon_sym_global] = ACTIONS(5546), - [anon_sym_unsafe] = ACTIONS(5546), - [anon_sym_static] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5548), - [anon_sym_public] = ACTIONS(5546), - [anon_sym_private] = ACTIONS(5546), - [anon_sym_readonly] = ACTIONS(5546), - [anon_sym_abstract] = ACTIONS(5546), - [anon_sym_async] = ACTIONS(5546), - [anon_sym_const] = ACTIONS(5546), - [anon_sym_file] = ACTIONS(5546), - [anon_sym_fixed] = ACTIONS(5546), - [anon_sym_internal] = ACTIONS(5546), - [anon_sym_new] = ACTIONS(5546), - [anon_sym_override] = ACTIONS(5546), - [anon_sym_partial] = ACTIONS(5546), - [anon_sym_protected] = ACTIONS(5546), - [anon_sym_required] = ACTIONS(5546), - [anon_sym_sealed] = ACTIONS(5546), - [anon_sym_virtual] = ACTIONS(5546), - [anon_sym_volatile] = ACTIONS(5546), - [anon_sym_where] = ACTIONS(5546), - [anon_sym_notnull] = ACTIONS(5546), - [anon_sym_unmanaged] = ACTIONS(5546), - [sym_accessor_get] = ACTIONS(5546), - [sym_accessor_set] = ACTIONS(5546), - [sym_accessor_add] = ACTIONS(5546), - [sym_accessor_remove] = ACTIONS(5546), - [sym_accessor_init] = ACTIONS(5546), - [anon_sym_scoped] = ACTIONS(5546), - [anon_sym_var] = ACTIONS(5546), - [anon_sym_yield] = ACTIONS(5546), - [anon_sym_when] = ACTIONS(5546), - [anon_sym_from] = ACTIONS(5546), - [anon_sym_into] = ACTIONS(5546), - [anon_sym_join] = ACTIONS(5546), - [anon_sym_on] = ACTIONS(5546), - [anon_sym_equals] = ACTIONS(5546), - [anon_sym_let] = ACTIONS(5546), - [anon_sym_orderby] = ACTIONS(5546), - [anon_sym_ascending] = ACTIONS(5546), - [anon_sym_descending] = ACTIONS(5546), - [anon_sym_group] = ACTIONS(5546), - [anon_sym_by] = ACTIONS(5546), - [anon_sym_select] = ACTIONS(5546), - [sym_grit_metavariable] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), + [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), @@ -639923,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), @@ -639932,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(7126), - [anon_sym_LBRACK] = ACTIONS(7126), - [anon_sym_COLON] = ACTIONS(7126), - [anon_sym_COMMA] = ACTIONS(7126), - [anon_sym_RBRACK] = ACTIONS(7126), - [anon_sym_LPAREN] = ACTIONS(7126), - [anon_sym_RPAREN] = ACTIONS(7126), - [anon_sym_RBRACE] = ACTIONS(7126), - [anon_sym_LT] = ACTIONS(7128), - [anon_sym_GT] = ACTIONS(7128), - [anon_sym_in] = ACTIONS(7126), - [anon_sym_QMARK] = ACTIONS(7128), - [anon_sym_BANG] = ACTIONS(7128), - [anon_sym_PLUS_PLUS] = ACTIONS(7126), - [anon_sym_DASH_DASH] = ACTIONS(7126), - [anon_sym_PLUS] = ACTIONS(7128), - [anon_sym_DASH] = ACTIONS(7128), - [anon_sym_STAR] = ACTIONS(7126), - [anon_sym_SLASH] = ACTIONS(7128), - [anon_sym_PERCENT] = ACTIONS(7126), - [anon_sym_CARET] = ACTIONS(7126), - [anon_sym_PIPE] = ACTIONS(7128), - [anon_sym_AMP] = ACTIONS(7128), - [anon_sym_LT_LT] = ACTIONS(7126), - [anon_sym_GT_GT] = ACTIONS(7128), - [anon_sym_GT_GT_GT] = ACTIONS(7126), - [anon_sym_EQ_EQ] = ACTIONS(7126), - [anon_sym_BANG_EQ] = ACTIONS(7126), - [anon_sym_GT_EQ] = ACTIONS(7126), - [anon_sym_LT_EQ] = ACTIONS(7126), - [anon_sym_DOT] = ACTIONS(7128), - [anon_sym_EQ_GT] = ACTIONS(7126), - [anon_sym_switch] = ACTIONS(7126), - [anon_sym_when] = ACTIONS(7126), - [anon_sym_DOT_DOT] = ACTIONS(7126), - [anon_sym_and] = ACTIONS(7126), - [anon_sym_or] = ACTIONS(7126), - [anon_sym_AMP_AMP] = ACTIONS(7126), - [anon_sym_PIPE_PIPE] = ACTIONS(7126), - [sym_op_coalescing] = ACTIONS(7126), - [anon_sym_on] = ACTIONS(7126), - [anon_sym_equals] = ACTIONS(7126), - [anon_sym_by] = ACTIONS(7126), - [anon_sym_as] = ACTIONS(7126), - [anon_sym_is] = ACTIONS(7126), - [anon_sym_DASH_GT] = ACTIONS(7126), - [anon_sym_with] = ACTIONS(7126), - [aux_sym_preproc_if_token3] = ACTIONS(7126), - [aux_sym_preproc_else_token1] = ACTIONS(7126), - [aux_sym_preproc_elif_token1] = ACTIONS(7126), + [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), @@ -640003,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(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_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), @@ -640065,6 +631770,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5019] = { + [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), @@ -640074,56 +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), - [anon_sym_SEMI] = ACTIONS(7070), - [anon_sym_LBRACK] = ACTIONS(7070), - [anon_sym_COLON] = ACTIONS(7070), - [anon_sym_COMMA] = ACTIONS(7070), - [anon_sym_RBRACK] = ACTIONS(7070), - [anon_sym_LPAREN] = ACTIONS(7070), - [anon_sym_RPAREN] = ACTIONS(7070), - [anon_sym_RBRACE] = ACTIONS(7070), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_GT] = ACTIONS(7072), - [anon_sym_in] = ACTIONS(7070), - [anon_sym_QMARK] = ACTIONS(7072), - [anon_sym_BANG] = ACTIONS(7072), - [anon_sym_PLUS_PLUS] = ACTIONS(7070), - [anon_sym_DASH_DASH] = ACTIONS(7070), - [anon_sym_PLUS] = ACTIONS(7072), - [anon_sym_DASH] = ACTIONS(7072), - [anon_sym_STAR] = ACTIONS(7070), - [anon_sym_SLASH] = ACTIONS(7072), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_CARET] = ACTIONS(7070), - [anon_sym_PIPE] = ACTIONS(7072), - [anon_sym_AMP] = ACTIONS(7072), - [anon_sym_LT_LT] = ACTIONS(7070), - [anon_sym_GT_GT] = ACTIONS(7072), - [anon_sym_GT_GT_GT] = ACTIONS(7070), - [anon_sym_EQ_EQ] = ACTIONS(7070), - [anon_sym_BANG_EQ] = ACTIONS(7070), - [anon_sym_GT_EQ] = ACTIONS(7070), - [anon_sym_LT_EQ] = ACTIONS(7070), - [anon_sym_DOT] = ACTIONS(7072), - [anon_sym_EQ_GT] = ACTIONS(7070), - [anon_sym_switch] = ACTIONS(7070), - [anon_sym_when] = ACTIONS(7070), - [anon_sym_DOT_DOT] = ACTIONS(7070), - [anon_sym_and] = ACTIONS(7070), - [anon_sym_or] = ACTIONS(7070), - [anon_sym_AMP_AMP] = ACTIONS(7070), - [anon_sym_PIPE_PIPE] = ACTIONS(7070), - [sym_op_coalescing] = ACTIONS(7070), - [anon_sym_on] = ACTIONS(7070), - [anon_sym_equals] = ACTIONS(7070), - [anon_sym_by] = ACTIONS(7070), - [anon_sym_as] = ACTIONS(7070), - [anon_sym_is] = ACTIONS(7070), - [anon_sym_DASH_GT] = ACTIONS(7070), - [anon_sym_with] = ACTIONS(7070), - [aux_sym_preproc_if_token3] = ACTIONS(7070), - [aux_sym_preproc_else_token1] = ACTIONS(7070), - [aux_sym_preproc_elif_token1] = ACTIONS(7070), + [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), @@ -640136,7 +631840,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5020] = { - [sym_modifier] = STATE(5141), + [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), @@ -640146,55 +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), - [aux_sym__class_declaration_initializer_repeat2] = STATE(5020), - [sym__identifier_token] = ACTIONS(6358), - [anon_sym_extern] = ACTIONS(7196), - [anon_sym_alias] = ACTIONS(6358), - [anon_sym_global] = ACTIONS(6358), - [anon_sym_unsafe] = ACTIONS(7196), - [anon_sym_static] = ACTIONS(7196), - [anon_sym_public] = ACTIONS(7196), - [anon_sym_private] = ACTIONS(7196), - [anon_sym_readonly] = ACTIONS(7196), - [anon_sym_abstract] = ACTIONS(7196), - [anon_sym_async] = ACTIONS(7196), - [anon_sym_const] = ACTIONS(7196), - [anon_sym_file] = ACTIONS(7196), - [anon_sym_fixed] = ACTIONS(7196), - [anon_sym_internal] = ACTIONS(7196), - [anon_sym_new] = ACTIONS(7196), - [anon_sym_override] = ACTIONS(7196), - [anon_sym_partial] = ACTIONS(7196), - [anon_sym_protected] = ACTIONS(7196), - [anon_sym_required] = ACTIONS(7196), - [anon_sym_sealed] = ACTIONS(7196), - [anon_sym_virtual] = ACTIONS(7196), - [anon_sym_volatile] = ACTIONS(7196), - [anon_sym_where] = ACTIONS(6358), - [anon_sym_notnull] = ACTIONS(6358), - [anon_sym_unmanaged] = ACTIONS(6358), - [sym_accessor_get] = ACTIONS(6358), - [sym_accessor_set] = ACTIONS(6358), - [sym_accessor_add] = ACTIONS(6358), - [sym_accessor_remove] = ACTIONS(6358), - [sym_accessor_init] = ACTIONS(6358), - [anon_sym_scoped] = ACTIONS(6358), - [anon_sym_var] = ACTIONS(6358), - [anon_sym_yield] = ACTIONS(6358), - [anon_sym_when] = ACTIONS(6358), - [anon_sym_from] = ACTIONS(6358), - [anon_sym_into] = ACTIONS(6358), - [anon_sym_join] = ACTIONS(6358), - [anon_sym_on] = ACTIONS(6358), - [anon_sym_equals] = ACTIONS(6358), - [anon_sym_let] = ACTIONS(6358), - [anon_sym_orderby] = ACTIONS(6358), - [anon_sym_ascending] = ACTIONS(6358), - [anon_sym_descending] = ACTIONS(6358), - [anon_sym_group] = ACTIONS(6358), - [anon_sym_by] = ACTIONS(6358), - [anon_sym_select] = ACTIONS(6358), - [sym_grit_metavariable] = ACTIONS(6363), + [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), @@ -640207,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), @@ -640216,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(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_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), @@ -640278,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), @@ -640287,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(6113), - [anon_sym_LBRACK] = ACTIONS(6113), - [anon_sym_COLON] = ACTIONS(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_RBRACK] = ACTIONS(6113), - [anon_sym_LPAREN] = ACTIONS(6113), - [anon_sym_RPAREN] = ACTIONS(6113), - [anon_sym_RBRACE] = ACTIONS(6113), - [anon_sym_LT] = ACTIONS(6115), - [anon_sym_GT] = ACTIONS(6115), - [anon_sym_in] = ACTIONS(6113), - [anon_sym_QMARK] = ACTIONS(6115), - [anon_sym_BANG] = ACTIONS(6115), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS] = ACTIONS(6115), - [anon_sym_DASH] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(6113), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_PERCENT] = ACTIONS(6113), - [anon_sym_CARET] = ACTIONS(6113), - [anon_sym_PIPE] = ACTIONS(6115), - [anon_sym_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(6113), - [anon_sym_GT_GT] = ACTIONS(6115), - [anon_sym_GT_GT_GT] = ACTIONS(6113), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6113), - [anon_sym_DOT] = ACTIONS(6115), - [anon_sym_EQ_GT] = ACTIONS(6113), - [anon_sym_switch] = ACTIONS(6113), - [anon_sym_when] = ACTIONS(6113), - [anon_sym_DOT_DOT] = ACTIONS(6113), - [anon_sym_and] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6113), - [anon_sym_AMP_AMP] = ACTIONS(6113), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [sym_op_coalescing] = ACTIONS(6113), - [anon_sym_on] = ACTIONS(6113), - [anon_sym_equals] = ACTIONS(6113), - [anon_sym_by] = ACTIONS(6113), - [anon_sym_as] = ACTIONS(6113), - [anon_sym_is] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6113), - [anon_sym_with] = ACTIONS(6113), - [aux_sym_preproc_if_token3] = ACTIONS(6113), - [aux_sym_preproc_else_token1] = ACTIONS(6113), - [aux_sym_preproc_elif_token1] = ACTIONS(6113), + [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), @@ -640358,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(5993), - [anon_sym_LBRACK] = ACTIONS(5993), - [anon_sym_COLON] = ACTIONS(5993), - [anon_sym_COMMA] = ACTIONS(5993), - [anon_sym_RBRACK] = ACTIONS(5993), - [anon_sym_LPAREN] = ACTIONS(5993), - [anon_sym_RPAREN] = ACTIONS(5993), - [anon_sym_RBRACE] = ACTIONS(5993), - [anon_sym_LT] = ACTIONS(5995), - [anon_sym_GT] = ACTIONS(5995), - [anon_sym_in] = ACTIONS(5993), - [anon_sym_QMARK] = ACTIONS(5995), - [anon_sym_BANG] = ACTIONS(5995), - [anon_sym_PLUS_PLUS] = ACTIONS(5993), - [anon_sym_DASH_DASH] = ACTIONS(5993), - [anon_sym_PLUS] = ACTIONS(5995), - [anon_sym_DASH] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5993), - [anon_sym_SLASH] = ACTIONS(5995), - [anon_sym_PERCENT] = ACTIONS(5993), - [anon_sym_CARET] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5995), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5993), - [anon_sym_GT_GT] = ACTIONS(5995), - [anon_sym_GT_GT_GT] = ACTIONS(5993), - [anon_sym_EQ_EQ] = ACTIONS(5993), - [anon_sym_BANG_EQ] = ACTIONS(5993), - [anon_sym_GT_EQ] = ACTIONS(5993), - [anon_sym_LT_EQ] = ACTIONS(5993), - [anon_sym_DOT] = ACTIONS(5995), - [anon_sym_EQ_GT] = ACTIONS(5993), - [anon_sym_switch] = ACTIONS(5993), - [anon_sym_when] = ACTIONS(5993), - [anon_sym_DOT_DOT] = ACTIONS(5993), - [anon_sym_and] = ACTIONS(5993), - [anon_sym_or] = ACTIONS(5993), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [sym_op_coalescing] = ACTIONS(5993), - [anon_sym_on] = ACTIONS(5993), - [anon_sym_equals] = ACTIONS(5993), - [anon_sym_by] = ACTIONS(5993), - [anon_sym_as] = ACTIONS(5993), - [anon_sym_is] = ACTIONS(5993), - [anon_sym_DASH_GT] = ACTIONS(5993), - [anon_sym_with] = ACTIONS(5993), - [aux_sym_preproc_if_token3] = ACTIONS(5993), - [aux_sym_preproc_else_token1] = ACTIONS(5993), - [aux_sym_preproc_elif_token1] = ACTIONS(5993), + [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), @@ -640420,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), @@ -640429,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_EQ] = ACTIONS(3991), - [anon_sym_LBRACK] = ACTIONS(4006), - [anon_sym_COLON] = ACTIONS(5003), - [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(5003), - [anon_sym_DOT_DOT] = ACTIONS(4006), - [anon_sym_and] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(5003), - [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(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), @@ -640491,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), @@ -640500,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(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(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), @@ -640562,6 +632260,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5026] = { + [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), @@ -640571,56 +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), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_COLON] = ACTIONS(3381), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_RBRACK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_RPAREN] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_in] = ACTIONS(3381), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3381), - [anon_sym_CARET] = ACTIONS(3381), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LT_LT] = ACTIONS(3381), - [anon_sym_GT_GT] = ACTIONS(3379), - [anon_sym_GT_GT_GT] = ACTIONS(3381), - [anon_sym_EQ_EQ] = ACTIONS(3381), - [anon_sym_BANG_EQ] = ACTIONS(3381), - [anon_sym_GT_EQ] = ACTIONS(3381), - [anon_sym_LT_EQ] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_EQ_GT] = ACTIONS(3381), - [anon_sym_switch] = ACTIONS(3381), - [anon_sym_when] = ACTIONS(3381), - [anon_sym_DOT_DOT] = ACTIONS(3381), - [anon_sym_and] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [sym_op_coalescing] = ACTIONS(3381), - [anon_sym_on] = ACTIONS(3381), - [anon_sym_equals] = ACTIONS(3381), - [anon_sym_by] = ACTIONS(3381), - [anon_sym_as] = ACTIONS(3381), - [anon_sym_is] = ACTIONS(3381), - [anon_sym_DASH_GT] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3381), - [aux_sym_preproc_if_token3] = ACTIONS(3381), - [aux_sym_preproc_else_token1] = ACTIONS(3381), - [aux_sym_preproc_elif_token1] = ACTIONS(3381), + [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), @@ -640633,7 +632330,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5027] = { - [sym_initializer_expression] = STATE(3780), + [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), @@ -640643,55 +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(5974), - [anon_sym_LBRACK] = ACTIONS(5970), - [anon_sym_COLON] = ACTIONS(5974), - [anon_sym_COMMA] = ACTIONS(5974), - [anon_sym_RBRACK] = ACTIONS(5974), - [anon_sym_LPAREN] = ACTIONS(5974), - [anon_sym_RPAREN] = ACTIONS(5974), - [anon_sym_LBRACE] = ACTIONS(7199), - [anon_sym_RBRACE] = ACTIONS(5974), - [anon_sym_LT] = ACTIONS(5980), - [anon_sym_GT] = ACTIONS(5980), - [anon_sym_in] = ACTIONS(5980), - [anon_sym_QMARK] = ACTIONS(7202), - [anon_sym_BANG] = ACTIONS(5980), - [anon_sym_PLUS_PLUS] = ACTIONS(5974), - [anon_sym_DASH_DASH] = ACTIONS(5974), - [anon_sym_PLUS] = ACTIONS(5980), - [anon_sym_DASH] = ACTIONS(5980), - [anon_sym_STAR] = ACTIONS(5974), - [anon_sym_SLASH] = ACTIONS(5980), - [anon_sym_PERCENT] = ACTIONS(5974), - [anon_sym_CARET] = ACTIONS(5974), - [anon_sym_PIPE] = ACTIONS(5980), - [anon_sym_AMP] = ACTIONS(5980), - [anon_sym_LT_LT] = ACTIONS(5974), - [anon_sym_GT_GT] = ACTIONS(5980), - [anon_sym_GT_GT_GT] = ACTIONS(5974), - [anon_sym_EQ_EQ] = ACTIONS(5974), - [anon_sym_BANG_EQ] = ACTIONS(5974), - [anon_sym_GT_EQ] = ACTIONS(5974), - [anon_sym_LT_EQ] = ACTIONS(5974), - [anon_sym_DOT] = ACTIONS(5980), - [anon_sym_EQ_GT] = ACTIONS(5974), - [anon_sym_switch] = ACTIONS(5974), - [anon_sym_DOT_DOT] = ACTIONS(5974), - [anon_sym_AMP_AMP] = ACTIONS(5974), - [anon_sym_PIPE_PIPE] = ACTIONS(5974), - [sym_op_coalescing] = ACTIONS(5974), - [anon_sym_into] = ACTIONS(5974), - [anon_sym_on] = ACTIONS(5974), - [anon_sym_equals] = ACTIONS(5974), - [anon_sym_by] = ACTIONS(5974), - [anon_sym_as] = ACTIONS(5974), - [anon_sym_is] = ACTIONS(5974), - [anon_sym_DASH_GT] = ACTIONS(5974), - [anon_sym_with] = ACTIONS(5974), - [aux_sym_preproc_if_token3] = ACTIONS(5974), - [aux_sym_preproc_else_token1] = ACTIONS(5974), - [aux_sym_preproc_elif_token1] = ACTIONS(5974), + [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), @@ -640704,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), @@ -640713,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(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_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(7206), - [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(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), @@ -640775,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), @@ -640784,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(4318), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(7063), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(7206), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_when] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_and] = ACTIONS(4318), - [anon_sym_or] = ACTIONS(4318), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [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), @@ -640846,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), @@ -640855,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(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_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), @@ -640917,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), @@ -640926,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(6045), - [anon_sym_LBRACK] = ACTIONS(6045), - [anon_sym_COLON] = ACTIONS(6045), - [anon_sym_COMMA] = ACTIONS(6045), - [anon_sym_RBRACK] = ACTIONS(6045), - [anon_sym_LPAREN] = ACTIONS(6045), - [anon_sym_RPAREN] = ACTIONS(6045), - [anon_sym_RBRACE] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6047), - [anon_sym_GT] = ACTIONS(6047), - [anon_sym_in] = ACTIONS(6045), - [anon_sym_QMARK] = ACTIONS(6047), - [anon_sym_BANG] = ACTIONS(6047), - [anon_sym_PLUS_PLUS] = ACTIONS(6045), - [anon_sym_DASH_DASH] = ACTIONS(6045), - [anon_sym_PLUS] = ACTIONS(6047), - [anon_sym_DASH] = ACTIONS(6047), - [anon_sym_STAR] = ACTIONS(6045), - [anon_sym_SLASH] = ACTIONS(6047), - [anon_sym_PERCENT] = ACTIONS(6045), - [anon_sym_CARET] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - [anon_sym_LT_LT] = ACTIONS(6045), - [anon_sym_GT_GT] = ACTIONS(6047), - [anon_sym_GT_GT_GT] = ACTIONS(6045), - [anon_sym_EQ_EQ] = ACTIONS(6045), - [anon_sym_BANG_EQ] = ACTIONS(6045), - [anon_sym_GT_EQ] = ACTIONS(6045), - [anon_sym_LT_EQ] = ACTIONS(6045), - [anon_sym_DOT] = ACTIONS(6047), - [anon_sym_EQ_GT] = ACTIONS(6045), - [anon_sym_switch] = ACTIONS(6045), - [anon_sym_when] = ACTIONS(6045), - [anon_sym_DOT_DOT] = ACTIONS(6045), - [anon_sym_and] = ACTIONS(6045), - [anon_sym_or] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [sym_op_coalescing] = ACTIONS(6045), - [anon_sym_on] = ACTIONS(6045), - [anon_sym_equals] = ACTIONS(6045), - [anon_sym_by] = ACTIONS(6045), - [anon_sym_as] = ACTIONS(6045), - [anon_sym_is] = ACTIONS(6045), - [anon_sym_DASH_GT] = ACTIONS(6045), - [anon_sym_with] = ACTIONS(6045), - [aux_sym_preproc_if_token3] = ACTIONS(6045), - [aux_sym_preproc_else_token1] = ACTIONS(6045), - [aux_sym_preproc_elif_token1] = ACTIONS(6045), + [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), @@ -640988,15 +632680,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5032] = { - [sym__name] = STATE(5810), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_ref_type] = STATE(2386), - [sym__scoped_base_type] = STATE(2366), - [sym_identifier] = STATE(5575), - [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(5032), [sym_preproc_endregion] = STATE(5032), [sym_preproc_line] = STATE(5032), @@ -641006,47 +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), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3894), - [anon_sym_global] = ACTIONS(3894), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(3900), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3894), - [anon_sym_LT] = ACTIONS(3700), - [anon_sym_where] = ACTIONS(3894), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_notnull] = ACTIONS(3894), - [anon_sym_unmanaged] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_scoped] = ACTIONS(3894), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3894), - [anon_sym_yield] = ACTIONS(3894), - [anon_sym_when] = ACTIONS(3894), - [sym_discard] = ACTIONS(3702), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [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_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), @@ -641059,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), @@ -641068,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), - [anon_sym_SEMI] = ACTIONS(6139), - [anon_sym_LBRACK] = ACTIONS(6139), - [anon_sym_COLON] = ACTIONS(6139), - [anon_sym_COMMA] = ACTIONS(6139), - [anon_sym_RBRACK] = ACTIONS(6139), - [anon_sym_LPAREN] = ACTIONS(6139), - [anon_sym_RPAREN] = ACTIONS(6139), - [anon_sym_RBRACE] = ACTIONS(6139), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_GT] = ACTIONS(6141), - [anon_sym_in] = ACTIONS(6139), - [anon_sym_QMARK] = ACTIONS(6141), - [anon_sym_BANG] = ACTIONS(6141), - [anon_sym_PLUS_PLUS] = ACTIONS(6139), - [anon_sym_DASH_DASH] = ACTIONS(6139), - [anon_sym_PLUS] = ACTIONS(6141), - [anon_sym_DASH] = ACTIONS(6141), - [anon_sym_STAR] = ACTIONS(6139), - [anon_sym_SLASH] = ACTIONS(6141), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_CARET] = ACTIONS(6139), - [anon_sym_PIPE] = ACTIONS(6141), - [anon_sym_AMP] = ACTIONS(6141), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(6139), - [anon_sym_BANG_EQ] = ACTIONS(6139), - [anon_sym_GT_EQ] = ACTIONS(6139), - [anon_sym_LT_EQ] = ACTIONS(6139), - [anon_sym_DOT] = ACTIONS(6141), - [anon_sym_EQ_GT] = ACTIONS(6139), - [anon_sym_switch] = ACTIONS(6139), - [anon_sym_when] = ACTIONS(6139), - [anon_sym_DOT_DOT] = ACTIONS(6139), - [anon_sym_and] = ACTIONS(6139), - [anon_sym_or] = ACTIONS(6139), - [anon_sym_AMP_AMP] = ACTIONS(6139), - [anon_sym_PIPE_PIPE] = ACTIONS(6139), - [sym_op_coalescing] = ACTIONS(6139), - [anon_sym_on] = ACTIONS(6139), - [anon_sym_equals] = ACTIONS(6139), - [anon_sym_by] = ACTIONS(6139), - [anon_sym_as] = ACTIONS(6139), - [anon_sym_is] = ACTIONS(6139), - [anon_sym_DASH_GT] = ACTIONS(6139), - [anon_sym_with] = ACTIONS(6139), - [aux_sym_preproc_if_token3] = ACTIONS(6139), - [aux_sym_preproc_else_token1] = ACTIONS(6139), - [aux_sym_preproc_elif_token1] = ACTIONS(6139), + [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), @@ -641130,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), @@ -641139,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_SEMI] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_RBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(5752), - [anon_sym_RBRACE] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_in] = ACTIONS(5752), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5752), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5752), - [anon_sym_CARET] = ACTIONS(5752), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5752), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5752), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_EQ_GT] = ACTIONS(5752), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_when] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5752), - [anon_sym_on] = ACTIONS(5752), - [anon_sym_equals] = ACTIONS(5752), - [anon_sym_by] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), - [aux_sym_preproc_if_token3] = ACTIONS(5752), - [aux_sym_preproc_else_token1] = ACTIONS(5752), - [aux_sym_preproc_elif_token1] = ACTIONS(5752), + [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), @@ -641201,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), @@ -641210,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), - [anon_sym_SEMI] = ACTIONS(6325), - [anon_sym_LBRACK] = ACTIONS(6325), - [anon_sym_COLON] = ACTIONS(6325), - [anon_sym_COMMA] = ACTIONS(6325), - [anon_sym_RBRACK] = ACTIONS(6325), - [anon_sym_LPAREN] = ACTIONS(6325), - [anon_sym_RPAREN] = ACTIONS(6325), - [anon_sym_RBRACE] = ACTIONS(6325), - [anon_sym_LT] = ACTIONS(6327), - [anon_sym_GT] = ACTIONS(6327), - [anon_sym_in] = ACTIONS(6325), - [anon_sym_QMARK] = ACTIONS(6327), - [anon_sym_BANG] = ACTIONS(6327), - [anon_sym_PLUS_PLUS] = ACTIONS(6325), - [anon_sym_DASH_DASH] = ACTIONS(6325), - [anon_sym_PLUS] = ACTIONS(6327), - [anon_sym_DASH] = ACTIONS(6327), - [anon_sym_STAR] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6327), - [anon_sym_PERCENT] = ACTIONS(6325), - [anon_sym_CARET] = ACTIONS(6325), - [anon_sym_PIPE] = ACTIONS(6327), - [anon_sym_AMP] = ACTIONS(6327), - [anon_sym_LT_LT] = ACTIONS(6325), - [anon_sym_GT_GT] = ACTIONS(6327), - [anon_sym_GT_GT_GT] = ACTIONS(6325), - [anon_sym_EQ_EQ] = ACTIONS(6325), - [anon_sym_BANG_EQ] = ACTIONS(6325), - [anon_sym_GT_EQ] = ACTIONS(6325), - [anon_sym_LT_EQ] = ACTIONS(6325), - [anon_sym_DOT] = ACTIONS(6327), - [anon_sym_EQ_GT] = ACTIONS(6325), - [anon_sym_switch] = ACTIONS(6325), - [anon_sym_when] = ACTIONS(6325), - [anon_sym_DOT_DOT] = ACTIONS(6325), - [anon_sym_and] = ACTIONS(6325), - [anon_sym_or] = ACTIONS(6325), - [anon_sym_AMP_AMP] = ACTIONS(6325), - [anon_sym_PIPE_PIPE] = ACTIONS(6325), - [sym_op_coalescing] = ACTIONS(6325), - [anon_sym_on] = ACTIONS(6325), - [anon_sym_equals] = ACTIONS(6325), - [anon_sym_by] = ACTIONS(6325), - [anon_sym_as] = ACTIONS(6325), - [anon_sym_is] = ACTIONS(6325), - [anon_sym_DASH_GT] = ACTIONS(6325), - [anon_sym_with] = ACTIONS(6325), - [aux_sym_preproc_if_token3] = ACTIONS(6325), - [aux_sym_preproc_else_token1] = ACTIONS(6325), - [aux_sym_preproc_elif_token1] = ACTIONS(6325), + [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), @@ -641272,25 +632960,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5036] = { - [sym_explicit_interface_specifier] = STATE(6194), - [sym__name] = STATE(6923), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7625), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -641300,37 +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), - [aux_sym_conversion_operator_declaration_repeat1] = STATE(5734), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7168), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(7170), - [anon_sym_checked] = ACTIONS(7170), - [anon_sym_scoped] = ACTIONS(7172), - [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), + [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), @@ -641352,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(6143), - [anon_sym_LBRACK] = ACTIONS(6143), - [anon_sym_COLON] = ACTIONS(6143), - [anon_sym_COMMA] = ACTIONS(6143), - [anon_sym_RBRACK] = ACTIONS(6143), - [anon_sym_LPAREN] = ACTIONS(6143), - [anon_sym_RPAREN] = ACTIONS(6143), - [anon_sym_RBRACE] = ACTIONS(6143), - [anon_sym_LT] = ACTIONS(6145), - [anon_sym_GT] = ACTIONS(6145), - [anon_sym_in] = ACTIONS(6143), - [anon_sym_QMARK] = ACTIONS(6145), - [anon_sym_BANG] = ACTIONS(6145), - [anon_sym_PLUS_PLUS] = ACTIONS(6143), - [anon_sym_DASH_DASH] = ACTIONS(6143), - [anon_sym_PLUS] = ACTIONS(6145), - [anon_sym_DASH] = ACTIONS(6145), - [anon_sym_STAR] = ACTIONS(6143), - [anon_sym_SLASH] = ACTIONS(6145), - [anon_sym_PERCENT] = ACTIONS(6143), - [anon_sym_CARET] = ACTIONS(6143), - [anon_sym_PIPE] = ACTIONS(6145), - [anon_sym_AMP] = ACTIONS(6145), - [anon_sym_LT_LT] = ACTIONS(6143), - [anon_sym_GT_GT] = ACTIONS(6145), - [anon_sym_GT_GT_GT] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6143), - [anon_sym_BANG_EQ] = ACTIONS(6143), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_DOT] = ACTIONS(6145), - [anon_sym_EQ_GT] = ACTIONS(6143), - [anon_sym_switch] = ACTIONS(6143), - [anon_sym_when] = ACTIONS(6143), - [anon_sym_DOT_DOT] = ACTIONS(6143), - [anon_sym_and] = ACTIONS(6143), - [anon_sym_or] = ACTIONS(6143), - [anon_sym_AMP_AMP] = ACTIONS(6143), - [anon_sym_PIPE_PIPE] = ACTIONS(6143), - [sym_op_coalescing] = ACTIONS(6143), - [anon_sym_on] = ACTIONS(6143), - [anon_sym_equals] = ACTIONS(6143), - [anon_sym_by] = ACTIONS(6143), - [anon_sym_as] = ACTIONS(6143), - [anon_sym_is] = ACTIONS(6143), - [anon_sym_DASH_GT] = ACTIONS(6143), - [anon_sym_with] = ACTIONS(6143), - [aux_sym_preproc_if_token3] = ACTIONS(6143), - [aux_sym_preproc_else_token1] = ACTIONS(6143), - [aux_sym_preproc_elif_token1] = ACTIONS(6143), + [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), @@ -641414,25 +633100,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5038] = { - [sym_explicit_interface_specifier] = STATE(6194), - [sym__name] = STATE(6923), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7400), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -641442,37 +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), - [aux_sym_conversion_operator_declaration_repeat1] = STATE(5734), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7168), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_operator] = ACTIONS(7170), - [anon_sym_checked] = ACTIONS(7170), - [anon_sym_scoped] = ACTIONS(7172), - [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), + [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), @@ -641485,6 +633170,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5039] = { + [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), @@ -641494,56 +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(5458), - [anon_sym_extern] = ACTIONS(5458), - [anon_sym_alias] = ACTIONS(5458), - [anon_sym_global] = ACTIONS(5458), - [anon_sym_unsafe] = ACTIONS(5458), - [anon_sym_static] = ACTIONS(5458), - [anon_sym_LBRACK] = ACTIONS(5460), - [anon_sym_public] = ACTIONS(5458), - [anon_sym_private] = ACTIONS(5458), - [anon_sym_readonly] = ACTIONS(5458), - [anon_sym_abstract] = ACTIONS(5458), - [anon_sym_async] = ACTIONS(5458), - [anon_sym_const] = ACTIONS(5458), - [anon_sym_file] = ACTIONS(5458), - [anon_sym_fixed] = ACTIONS(5458), - [anon_sym_internal] = ACTIONS(5458), - [anon_sym_new] = ACTIONS(5458), - [anon_sym_override] = ACTIONS(5458), - [anon_sym_partial] = ACTIONS(5458), - [anon_sym_protected] = ACTIONS(5458), - [anon_sym_required] = ACTIONS(5458), - [anon_sym_sealed] = ACTIONS(5458), - [anon_sym_virtual] = ACTIONS(5458), - [anon_sym_volatile] = ACTIONS(5458), - [anon_sym_where] = ACTIONS(5458), - [anon_sym_notnull] = ACTIONS(5458), - [anon_sym_unmanaged] = ACTIONS(5458), - [sym_accessor_get] = ACTIONS(5458), - [sym_accessor_set] = ACTIONS(5458), - [sym_accessor_add] = ACTIONS(5458), - [sym_accessor_remove] = ACTIONS(5458), - [sym_accessor_init] = ACTIONS(5458), - [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(5460), - [aux_sym_preproc_if_token1] = ACTIONS(5460), + [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), @@ -641556,26 +633240,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5040] = { - [sym_parameter_list] = STATE(7516), - [sym_block] = STATE(4138), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6385), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -641585,36 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(4099), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_LBRACE] = ACTIONS(7208), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(7210), - [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), + [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), @@ -641627,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), @@ -641636,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(5752), - [anon_sym_EQ] = ACTIONS(7212), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7214), - [anon_sym_DASH_EQ] = ACTIONS(7214), - [anon_sym_STAR_EQ] = ACTIONS(7214), - [anon_sym_SLASH_EQ] = ACTIONS(7214), - [anon_sym_PERCENT_EQ] = ACTIONS(7214), - [anon_sym_AMP_EQ] = ACTIONS(7214), - [anon_sym_CARET_EQ] = ACTIONS(7214), - [anon_sym_PIPE_EQ] = ACTIONS(7214), - [anon_sym_LT_LT_EQ] = ACTIONS(7214), - [anon_sym_GT_GT_EQ] = ACTIONS(7214), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7214), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7214), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), - [aux_sym_preproc_if_token3] = ACTIONS(5752), - [aux_sym_preproc_else_token1] = ACTIONS(5752), - [aux_sym_preproc_elif_token1] = ACTIONS(5752), + [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), @@ -641698,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), @@ -641707,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(6097), - [anon_sym_LBRACK] = ACTIONS(6097), - [anon_sym_COLON] = ACTIONS(6097), - [anon_sym_COMMA] = ACTIONS(6097), - [anon_sym_RBRACK] = ACTIONS(6097), - [anon_sym_LPAREN] = ACTIONS(6097), - [anon_sym_RPAREN] = ACTIONS(6097), - [anon_sym_RBRACE] = ACTIONS(6097), - [anon_sym_LT] = ACTIONS(6099), - [anon_sym_GT] = ACTIONS(6099), - [anon_sym_in] = ACTIONS(6097), - [anon_sym_QMARK] = ACTIONS(6099), - [anon_sym_BANG] = ACTIONS(6099), - [anon_sym_PLUS_PLUS] = ACTIONS(6097), - [anon_sym_DASH_DASH] = ACTIONS(6097), - [anon_sym_PLUS] = ACTIONS(6099), - [anon_sym_DASH] = ACTIONS(6099), - [anon_sym_STAR] = ACTIONS(6097), - [anon_sym_SLASH] = ACTIONS(6099), - [anon_sym_PERCENT] = ACTIONS(6097), - [anon_sym_CARET] = ACTIONS(6097), - [anon_sym_PIPE] = ACTIONS(6099), - [anon_sym_AMP] = ACTIONS(6099), - [anon_sym_LT_LT] = ACTIONS(6097), - [anon_sym_GT_GT] = ACTIONS(6099), - [anon_sym_GT_GT_GT] = ACTIONS(6097), - [anon_sym_EQ_EQ] = ACTIONS(6097), - [anon_sym_BANG_EQ] = ACTIONS(6097), - [anon_sym_GT_EQ] = ACTIONS(6097), - [anon_sym_LT_EQ] = ACTIONS(6097), - [anon_sym_DOT] = ACTIONS(6099), - [anon_sym_EQ_GT] = ACTIONS(6097), - [anon_sym_switch] = ACTIONS(6097), - [anon_sym_when] = ACTIONS(6097), - [anon_sym_DOT_DOT] = ACTIONS(6097), - [anon_sym_and] = ACTIONS(6097), - [anon_sym_or] = ACTIONS(6097), - [anon_sym_AMP_AMP] = ACTIONS(6097), - [anon_sym_PIPE_PIPE] = ACTIONS(6097), - [sym_op_coalescing] = ACTIONS(6097), - [anon_sym_on] = ACTIONS(6097), - [anon_sym_equals] = ACTIONS(6097), - [anon_sym_by] = ACTIONS(6097), - [anon_sym_as] = ACTIONS(6097), - [anon_sym_is] = ACTIONS(6097), - [anon_sym_DASH_GT] = ACTIONS(6097), - [anon_sym_with] = ACTIONS(6097), - [aux_sym_preproc_if_token3] = ACTIONS(6097), - [aux_sym_preproc_else_token1] = ACTIONS(6097), - [aux_sym_preproc_elif_token1] = ACTIONS(6097), + [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), @@ -641769,6 +633450,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5043] = { + [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), @@ -641778,56 +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(6195), - [anon_sym_LBRACK] = ACTIONS(6195), - [anon_sym_COLON] = ACTIONS(6195), - [anon_sym_COMMA] = ACTIONS(6195), - [anon_sym_RBRACK] = ACTIONS(6195), - [anon_sym_LPAREN] = ACTIONS(6195), - [anon_sym_RPAREN] = ACTIONS(6195), - [anon_sym_RBRACE] = ACTIONS(6195), - [anon_sym_LT] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6197), - [anon_sym_in] = ACTIONS(6195), - [anon_sym_QMARK] = ACTIONS(6197), - [anon_sym_BANG] = ACTIONS(6197), - [anon_sym_PLUS_PLUS] = ACTIONS(6195), - [anon_sym_DASH_DASH] = ACTIONS(6195), - [anon_sym_PLUS] = ACTIONS(6197), - [anon_sym_DASH] = ACTIONS(6197), - [anon_sym_STAR] = ACTIONS(6195), - [anon_sym_SLASH] = ACTIONS(6197), - [anon_sym_PERCENT] = ACTIONS(6195), - [anon_sym_CARET] = ACTIONS(6195), - [anon_sym_PIPE] = ACTIONS(6197), - [anon_sym_AMP] = ACTIONS(6197), - [anon_sym_LT_LT] = ACTIONS(6195), - [anon_sym_GT_GT] = ACTIONS(6197), - [anon_sym_GT_GT_GT] = ACTIONS(6195), - [anon_sym_EQ_EQ] = ACTIONS(6195), - [anon_sym_BANG_EQ] = ACTIONS(6195), - [anon_sym_GT_EQ] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6195), - [anon_sym_DOT] = ACTIONS(6197), - [anon_sym_EQ_GT] = ACTIONS(6195), - [anon_sym_switch] = ACTIONS(6195), - [anon_sym_when] = ACTIONS(6195), - [anon_sym_DOT_DOT] = ACTIONS(6195), - [anon_sym_and] = ACTIONS(6195), - [anon_sym_or] = ACTIONS(6195), - [anon_sym_AMP_AMP] = ACTIONS(6195), - [anon_sym_PIPE_PIPE] = ACTIONS(6195), - [sym_op_coalescing] = ACTIONS(6195), - [anon_sym_on] = ACTIONS(6195), - [anon_sym_equals] = ACTIONS(6195), - [anon_sym_by] = ACTIONS(6195), - [anon_sym_as] = ACTIONS(6195), - [anon_sym_is] = ACTIONS(6195), - [anon_sym_DASH_GT] = ACTIONS(6195), - [anon_sym_with] = ACTIONS(6195), - [aux_sym_preproc_if_token3] = ACTIONS(6195), - [aux_sym_preproc_else_token1] = ACTIONS(6195), - [aux_sym_preproc_elif_token1] = ACTIONS(6195), + [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), @@ -641840,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), @@ -641849,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(6057), - [anon_sym_LBRACK] = ACTIONS(6057), - [anon_sym_COLON] = ACTIONS(6057), - [anon_sym_COMMA] = ACTIONS(6057), - [anon_sym_RBRACK] = ACTIONS(6057), - [anon_sym_LPAREN] = ACTIONS(6057), - [anon_sym_RPAREN] = ACTIONS(6057), - [anon_sym_RBRACE] = ACTIONS(6057), - [anon_sym_LT] = ACTIONS(6059), - [anon_sym_GT] = ACTIONS(6059), - [anon_sym_in] = ACTIONS(6057), - [anon_sym_QMARK] = ACTIONS(6059), - [anon_sym_BANG] = ACTIONS(6059), - [anon_sym_PLUS_PLUS] = ACTIONS(6057), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_PLUS] = ACTIONS(6059), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_STAR] = ACTIONS(6057), - [anon_sym_SLASH] = ACTIONS(6059), - [anon_sym_PERCENT] = ACTIONS(6057), - [anon_sym_CARET] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6059), - [anon_sym_AMP] = ACTIONS(6059), - [anon_sym_LT_LT] = ACTIONS(6057), - [anon_sym_GT_GT] = ACTIONS(6059), - [anon_sym_GT_GT_GT] = ACTIONS(6057), - [anon_sym_EQ_EQ] = ACTIONS(6057), - [anon_sym_BANG_EQ] = ACTIONS(6057), - [anon_sym_GT_EQ] = ACTIONS(6057), - [anon_sym_LT_EQ] = ACTIONS(6057), - [anon_sym_DOT] = ACTIONS(6059), - [anon_sym_EQ_GT] = ACTIONS(6057), - [anon_sym_switch] = ACTIONS(6057), - [anon_sym_when] = ACTIONS(6057), - [anon_sym_DOT_DOT] = ACTIONS(6057), - [anon_sym_and] = ACTIONS(6057), - [anon_sym_or] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [sym_op_coalescing] = ACTIONS(6057), - [anon_sym_on] = ACTIONS(6057), - [anon_sym_equals] = ACTIONS(6057), - [anon_sym_by] = ACTIONS(6057), - [anon_sym_as] = ACTIONS(6057), - [anon_sym_is] = ACTIONS(6057), - [anon_sym_DASH_GT] = ACTIONS(6057), - [anon_sym_with] = ACTIONS(6057), - [aux_sym_preproc_if_token3] = ACTIONS(6057), - [aux_sym_preproc_else_token1] = ACTIONS(6057), - [aux_sym_preproc_elif_token1] = ACTIONS(6057), + [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), @@ -641911,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), @@ -641920,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(6187), - [anon_sym_LBRACK] = ACTIONS(6187), - [anon_sym_COLON] = ACTIONS(6187), - [anon_sym_COMMA] = ACTIONS(6187), - [anon_sym_RBRACK] = ACTIONS(6187), - [anon_sym_LPAREN] = ACTIONS(6187), - [anon_sym_RPAREN] = ACTIONS(6187), - [anon_sym_RBRACE] = ACTIONS(6187), - [anon_sym_LT] = ACTIONS(6189), - [anon_sym_GT] = ACTIONS(6189), - [anon_sym_in] = ACTIONS(6187), - [anon_sym_QMARK] = ACTIONS(6189), - [anon_sym_BANG] = ACTIONS(6189), - [anon_sym_PLUS_PLUS] = ACTIONS(6187), - [anon_sym_DASH_DASH] = ACTIONS(6187), - [anon_sym_PLUS] = ACTIONS(6189), - [anon_sym_DASH] = ACTIONS(6189), - [anon_sym_STAR] = ACTIONS(6187), - [anon_sym_SLASH] = ACTIONS(6189), - [anon_sym_PERCENT] = ACTIONS(6187), - [anon_sym_CARET] = ACTIONS(6187), - [anon_sym_PIPE] = ACTIONS(6189), - [anon_sym_AMP] = ACTIONS(6189), - [anon_sym_LT_LT] = ACTIONS(6187), - [anon_sym_GT_GT] = ACTIONS(6189), - [anon_sym_GT_GT_GT] = ACTIONS(6187), - [anon_sym_EQ_EQ] = ACTIONS(6187), - [anon_sym_BANG_EQ] = ACTIONS(6187), - [anon_sym_GT_EQ] = ACTIONS(6187), - [anon_sym_LT_EQ] = ACTIONS(6187), - [anon_sym_DOT] = ACTIONS(6189), - [anon_sym_EQ_GT] = ACTIONS(6187), - [anon_sym_switch] = ACTIONS(6187), - [anon_sym_when] = ACTIONS(6187), - [anon_sym_DOT_DOT] = ACTIONS(6187), - [anon_sym_and] = ACTIONS(6187), - [anon_sym_or] = ACTIONS(6187), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6187), - [sym_op_coalescing] = ACTIONS(6187), - [anon_sym_on] = ACTIONS(6187), - [anon_sym_equals] = ACTIONS(6187), - [anon_sym_by] = ACTIONS(6187), - [anon_sym_as] = ACTIONS(6187), - [anon_sym_is] = ACTIONS(6187), - [anon_sym_DASH_GT] = ACTIONS(6187), - [anon_sym_with] = ACTIONS(6187), - [aux_sym_preproc_if_token3] = ACTIONS(6187), - [aux_sym_preproc_else_token1] = ACTIONS(6187), - [aux_sym_preproc_elif_token1] = ACTIONS(6187), + [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), @@ -641982,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), @@ -641991,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(6093), - [anon_sym_LBRACK] = ACTIONS(6093), - [anon_sym_COLON] = ACTIONS(6093), - [anon_sym_COMMA] = ACTIONS(6093), - [anon_sym_RBRACK] = ACTIONS(6093), - [anon_sym_LPAREN] = ACTIONS(6093), - [anon_sym_RPAREN] = ACTIONS(6093), - [anon_sym_RBRACE] = ACTIONS(6093), - [anon_sym_LT] = ACTIONS(6095), - [anon_sym_GT] = ACTIONS(6095), - [anon_sym_in] = ACTIONS(6093), - [anon_sym_QMARK] = ACTIONS(6095), - [anon_sym_BANG] = ACTIONS(6095), - [anon_sym_PLUS_PLUS] = ACTIONS(6093), - [anon_sym_DASH_DASH] = ACTIONS(6093), - [anon_sym_PLUS] = ACTIONS(6095), - [anon_sym_DASH] = ACTIONS(6095), - [anon_sym_STAR] = ACTIONS(6093), - [anon_sym_SLASH] = ACTIONS(6095), - [anon_sym_PERCENT] = ACTIONS(6093), - [anon_sym_CARET] = ACTIONS(6093), - [anon_sym_PIPE] = ACTIONS(6095), - [anon_sym_AMP] = ACTIONS(6095), - [anon_sym_LT_LT] = ACTIONS(6093), - [anon_sym_GT_GT] = ACTIONS(6095), - [anon_sym_GT_GT_GT] = ACTIONS(6093), - [anon_sym_EQ_EQ] = ACTIONS(6093), - [anon_sym_BANG_EQ] = ACTIONS(6093), - [anon_sym_GT_EQ] = ACTIONS(6093), - [anon_sym_LT_EQ] = ACTIONS(6093), - [anon_sym_DOT] = ACTIONS(6095), - [anon_sym_EQ_GT] = ACTIONS(6093), - [anon_sym_switch] = ACTIONS(6093), - [anon_sym_when] = ACTIONS(6093), - [anon_sym_DOT_DOT] = ACTIONS(6093), - [anon_sym_and] = ACTIONS(6093), - [anon_sym_or] = ACTIONS(6093), - [anon_sym_AMP_AMP] = ACTIONS(6093), - [anon_sym_PIPE_PIPE] = ACTIONS(6093), - [sym_op_coalescing] = ACTIONS(6093), - [anon_sym_on] = ACTIONS(6093), - [anon_sym_equals] = ACTIONS(6093), - [anon_sym_by] = ACTIONS(6093), - [anon_sym_as] = ACTIONS(6093), - [anon_sym_is] = ACTIONS(6093), - [anon_sym_DASH_GT] = ACTIONS(6093), - [anon_sym_with] = ACTIONS(6093), - [aux_sym_preproc_if_token3] = ACTIONS(6093), - [aux_sym_preproc_else_token1] = ACTIONS(6093), - [aux_sym_preproc_elif_token1] = ACTIONS(6093), + [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), @@ -642053,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), @@ -642062,56 +633754,40 @@ 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_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(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), @@ -642124,6 +633800,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -642133,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(7057), - [anon_sym_LBRACK] = ACTIONS(7057), - [anon_sym_COLON] = ACTIONS(7057), - [anon_sym_COMMA] = ACTIONS(7057), - [anon_sym_RBRACK] = ACTIONS(7057), - [anon_sym_LPAREN] = ACTIONS(7057), - [anon_sym_RPAREN] = ACTIONS(7057), - [anon_sym_RBRACE] = ACTIONS(7057), - [anon_sym_LT] = ACTIONS(7059), - [anon_sym_GT] = ACTIONS(7059), - [anon_sym_in] = ACTIONS(7057), - [anon_sym_QMARK] = ACTIONS(7059), - [anon_sym_BANG] = ACTIONS(7059), - [anon_sym_PLUS_PLUS] = ACTIONS(7057), - [anon_sym_DASH_DASH] = ACTIONS(7057), - [anon_sym_PLUS] = ACTIONS(7059), - [anon_sym_DASH] = ACTIONS(7059), - [anon_sym_STAR] = ACTIONS(7057), - [anon_sym_SLASH] = ACTIONS(7059), - [anon_sym_PERCENT] = ACTIONS(7057), - [anon_sym_CARET] = ACTIONS(7057), - [anon_sym_PIPE] = ACTIONS(7059), - [anon_sym_AMP] = ACTIONS(7059), - [anon_sym_LT_LT] = ACTIONS(7057), - [anon_sym_GT_GT] = ACTIONS(7059), - [anon_sym_GT_GT_GT] = ACTIONS(7057), - [anon_sym_EQ_EQ] = ACTIONS(7057), - [anon_sym_BANG_EQ] = ACTIONS(7057), - [anon_sym_GT_EQ] = ACTIONS(7057), - [anon_sym_LT_EQ] = ACTIONS(7057), - [anon_sym_DOT] = ACTIONS(7059), - [anon_sym_EQ_GT] = ACTIONS(7057), - [anon_sym_switch] = ACTIONS(7057), - [anon_sym_when] = ACTIONS(7057), - [anon_sym_DOT_DOT] = ACTIONS(7057), - [anon_sym_and] = ACTIONS(7057), - [anon_sym_or] = ACTIONS(7057), - [anon_sym_AMP_AMP] = ACTIONS(7057), - [anon_sym_PIPE_PIPE] = ACTIONS(7057), - [sym_op_coalescing] = ACTIONS(7057), - [anon_sym_on] = ACTIONS(7057), - [anon_sym_equals] = ACTIONS(7057), - [anon_sym_by] = ACTIONS(7057), - [anon_sym_as] = ACTIONS(7057), - [anon_sym_is] = ACTIONS(7057), - [anon_sym_DASH_GT] = ACTIONS(7057), - [anon_sym_with] = ACTIONS(7057), - [aux_sym_preproc_if_token3] = ACTIONS(7057), - [aux_sym_preproc_else_token1] = ACTIONS(7057), - [aux_sym_preproc_elif_token1] = ACTIONS(7057), + [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), @@ -642195,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), @@ -642204,68 +633894,54 @@ 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_EQ] = ACTIONS(7216), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7218), - [anon_sym_DASH_EQ] = ACTIONS(7218), - [anon_sym_STAR_EQ] = ACTIONS(7218), - [anon_sym_SLASH_EQ] = ACTIONS(7218), - [anon_sym_PERCENT_EQ] = ACTIONS(7218), - [anon_sym_AMP_EQ] = ACTIONS(7218), - [anon_sym_CARET_EQ] = ACTIONS(7218), - [anon_sym_PIPE_EQ] = ACTIONS(7218), - [anon_sym_LT_LT_EQ] = ACTIONS(7218), - [anon_sym_GT_GT_EQ] = ACTIONS(7218), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7218), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7218), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(5752), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), @@ -642275,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(5003), - [anon_sym_LBRACK] = ACTIONS(7020), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_RBRACK] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(7020), - [anon_sym_RPAREN] = ACTIONS(5003), - [anon_sym_RBRACE] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(7023), - [anon_sym_GT] = ACTIONS(7023), - [anon_sym_in] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(7023), - [anon_sym_BANG] = ACTIONS(7023), - [anon_sym_PLUS_PLUS] = ACTIONS(7020), - [anon_sym_DASH_DASH] = ACTIONS(7020), - [anon_sym_PLUS] = ACTIONS(7023), - [anon_sym_DASH] = ACTIONS(7023), - [anon_sym_STAR] = ACTIONS(7020), - [anon_sym_SLASH] = ACTIONS(7023), - [anon_sym_PERCENT] = ACTIONS(7020), - [anon_sym_CARET] = ACTIONS(7020), - [anon_sym_PIPE] = ACTIONS(7023), - [anon_sym_AMP] = ACTIONS(7023), - [anon_sym_LT_LT] = ACTIONS(7020), - [anon_sym_GT_GT] = ACTIONS(7023), - [anon_sym_GT_GT_GT] = ACTIONS(7020), - [anon_sym_EQ_EQ] = ACTIONS(7020), - [anon_sym_BANG_EQ] = ACTIONS(7020), - [anon_sym_GT_EQ] = ACTIONS(7020), - [anon_sym_LT_EQ] = ACTIONS(7020), - [anon_sym_DOT] = ACTIONS(7023), - [anon_sym_EQ_GT] = ACTIONS(5003), - [anon_sym_switch] = ACTIONS(7020), - [anon_sym_when] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(7020), - [anon_sym_and] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(5003), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [sym_op_coalescing] = ACTIONS(7020), - [anon_sym_on] = ACTIONS(5003), - [anon_sym_equals] = ACTIONS(5003), - [anon_sym_by] = ACTIONS(5003), - [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(5003), - [aux_sym_preproc_else_token1] = ACTIONS(5003), - [aux_sym_preproc_elif_token1] = ACTIONS(5003), + [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), @@ -642337,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), @@ -642346,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(5003), - [anon_sym_LBRACK] = ACTIONS(7038), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_RBRACK] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(7038), - [anon_sym_RPAREN] = ACTIONS(5003), - [anon_sym_RBRACE] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(7041), - [anon_sym_GT] = ACTIONS(7041), - [anon_sym_in] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(7041), - [anon_sym_BANG] = ACTIONS(7041), - [anon_sym_PLUS_PLUS] = ACTIONS(7038), - [anon_sym_DASH_DASH] = ACTIONS(7038), - [anon_sym_PLUS] = ACTIONS(7041), - [anon_sym_DASH] = ACTIONS(7041), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_SLASH] = ACTIONS(7041), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_CARET] = ACTIONS(7038), - [anon_sym_PIPE] = ACTIONS(7041), - [anon_sym_AMP] = ACTIONS(7041), - [anon_sym_LT_LT] = ACTIONS(7038), - [anon_sym_GT_GT] = ACTIONS(7041), - [anon_sym_GT_GT_GT] = ACTIONS(7038), - [anon_sym_EQ_EQ] = ACTIONS(7038), - [anon_sym_BANG_EQ] = ACTIONS(7038), - [anon_sym_GT_EQ] = ACTIONS(7038), - [anon_sym_LT_EQ] = ACTIONS(7038), - [anon_sym_DOT] = ACTIONS(7041), - [anon_sym_EQ_GT] = ACTIONS(5003), - [anon_sym_switch] = ACTIONS(7038), - [anon_sym_when] = ACTIONS(5003), - [anon_sym_DOT_DOT] = ACTIONS(7038), - [anon_sym_and] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(5003), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [sym_op_coalescing] = ACTIONS(7038), - [anon_sym_on] = ACTIONS(5003), - [anon_sym_equals] = ACTIONS(5003), - [anon_sym_by] = ACTIONS(5003), - [anon_sym_as] = ACTIONS(7038), - [anon_sym_is] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(7038), - [anon_sym_with] = ACTIONS(7038), - [aux_sym_preproc_if_token3] = ACTIONS(5003), - [aux_sym_preproc_else_token1] = ACTIONS(5003), - [aux_sym_preproc_elif_token1] = ACTIONS(5003), + [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), @@ -642408,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), @@ -642417,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(6005), - [anon_sym_LBRACK] = ACTIONS(6005), - [anon_sym_COLON] = ACTIONS(6005), - [anon_sym_COMMA] = ACTIONS(6005), - [anon_sym_RBRACK] = ACTIONS(6005), - [anon_sym_LPAREN] = ACTIONS(6005), - [anon_sym_RPAREN] = ACTIONS(6005), - [anon_sym_RBRACE] = ACTIONS(6005), - [anon_sym_LT] = ACTIONS(6007), - [anon_sym_GT] = ACTIONS(6007), - [anon_sym_in] = ACTIONS(6005), - [anon_sym_QMARK] = ACTIONS(6007), - [anon_sym_BANG] = ACTIONS(6007), - [anon_sym_PLUS_PLUS] = ACTIONS(6005), - [anon_sym_DASH_DASH] = ACTIONS(6005), - [anon_sym_PLUS] = ACTIONS(6007), - [anon_sym_DASH] = ACTIONS(6007), - [anon_sym_STAR] = ACTIONS(6005), - [anon_sym_SLASH] = ACTIONS(6007), - [anon_sym_PERCENT] = ACTIONS(6005), - [anon_sym_CARET] = ACTIONS(6005), - [anon_sym_PIPE] = ACTIONS(6007), - [anon_sym_AMP] = ACTIONS(6007), - [anon_sym_LT_LT] = ACTIONS(6005), - [anon_sym_GT_GT] = ACTIONS(6007), - [anon_sym_GT_GT_GT] = ACTIONS(6005), - [anon_sym_EQ_EQ] = ACTIONS(6005), - [anon_sym_BANG_EQ] = ACTIONS(6005), - [anon_sym_GT_EQ] = ACTIONS(6005), - [anon_sym_LT_EQ] = ACTIONS(6005), - [anon_sym_DOT] = ACTIONS(6007), - [anon_sym_EQ_GT] = ACTIONS(6005), - [anon_sym_switch] = ACTIONS(6005), - [anon_sym_when] = ACTIONS(6005), - [anon_sym_DOT_DOT] = ACTIONS(6005), - [anon_sym_and] = ACTIONS(6005), - [anon_sym_or] = ACTIONS(6005), - [anon_sym_AMP_AMP] = ACTIONS(6005), - [anon_sym_PIPE_PIPE] = ACTIONS(6005), - [sym_op_coalescing] = ACTIONS(6005), - [anon_sym_on] = ACTIONS(6005), - [anon_sym_equals] = ACTIONS(6005), - [anon_sym_by] = ACTIONS(6005), - [anon_sym_as] = ACTIONS(6005), - [anon_sym_is] = ACTIONS(6005), - [anon_sym_DASH_GT] = ACTIONS(6005), - [anon_sym_with] = ACTIONS(6005), - [aux_sym_preproc_if_token3] = ACTIONS(6005), - [aux_sym_preproc_else_token1] = ACTIONS(6005), - [aux_sym_preproc_elif_token1] = ACTIONS(6005), + [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), @@ -642479,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), @@ -642488,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_EQ] = ACTIONS(7220), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_in] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7222), - [anon_sym_DASH_EQ] = ACTIONS(7222), - [anon_sym_STAR_EQ] = ACTIONS(7222), - [anon_sym_SLASH_EQ] = ACTIONS(7222), - [anon_sym_PERCENT_EQ] = ACTIONS(7222), - [anon_sym_AMP_EQ] = ACTIONS(7222), - [anon_sym_CARET_EQ] = ACTIONS(7222), - [anon_sym_PIPE_EQ] = ACTIONS(7222), - [anon_sym_LT_LT_EQ] = ACTIONS(7222), - [anon_sym_GT_GT_EQ] = ACTIONS(7222), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7222), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7222), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -642550,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), @@ -642559,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(7150), - [anon_sym_LBRACK] = ACTIONS(7150), - [anon_sym_COLON] = ACTIONS(7150), - [anon_sym_COMMA] = ACTIONS(7150), - [anon_sym_RBRACK] = ACTIONS(7150), - [anon_sym_LPAREN] = ACTIONS(7150), - [anon_sym_RPAREN] = ACTIONS(7150), - [anon_sym_RBRACE] = ACTIONS(7150), - [anon_sym_LT] = ACTIONS(7152), - [anon_sym_GT] = ACTIONS(7152), - [anon_sym_in] = ACTIONS(7150), - [anon_sym_QMARK] = ACTIONS(7152), - [anon_sym_BANG] = ACTIONS(7152), - [anon_sym_PLUS_PLUS] = ACTIONS(7150), - [anon_sym_DASH_DASH] = ACTIONS(7150), - [anon_sym_PLUS] = ACTIONS(7152), - [anon_sym_DASH] = ACTIONS(7152), - [anon_sym_STAR] = ACTIONS(7150), - [anon_sym_SLASH] = ACTIONS(7152), - [anon_sym_PERCENT] = ACTIONS(7150), - [anon_sym_CARET] = ACTIONS(7150), - [anon_sym_PIPE] = ACTIONS(7152), - [anon_sym_AMP] = ACTIONS(7152), - [anon_sym_LT_LT] = ACTIONS(7150), - [anon_sym_GT_GT] = ACTIONS(7152), - [anon_sym_GT_GT_GT] = ACTIONS(7150), - [anon_sym_EQ_EQ] = ACTIONS(7150), - [anon_sym_BANG_EQ] = ACTIONS(7150), - [anon_sym_GT_EQ] = ACTIONS(7150), - [anon_sym_LT_EQ] = ACTIONS(7150), - [anon_sym_DOT] = ACTIONS(7152), - [anon_sym_EQ_GT] = ACTIONS(7150), - [anon_sym_switch] = ACTIONS(7150), - [anon_sym_when] = ACTIONS(7150), - [anon_sym_DOT_DOT] = ACTIONS(7150), - [anon_sym_and] = ACTIONS(7150), - [anon_sym_or] = ACTIONS(7150), - [anon_sym_AMP_AMP] = ACTIONS(7150), - [anon_sym_PIPE_PIPE] = ACTIONS(7150), - [sym_op_coalescing] = ACTIONS(7150), - [anon_sym_on] = ACTIONS(7150), - [anon_sym_equals] = ACTIONS(7150), - [anon_sym_by] = ACTIONS(7150), - [anon_sym_as] = ACTIONS(7150), - [anon_sym_is] = ACTIONS(7150), - [anon_sym_DASH_GT] = ACTIONS(7150), - [anon_sym_with] = ACTIONS(7150), - [aux_sym_preproc_if_token3] = ACTIONS(7150), - [aux_sym_preproc_else_token1] = ACTIONS(7150), - [aux_sym_preproc_elif_token1] = ACTIONS(7150), + [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), @@ -642621,24 +634290,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5055] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7116), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -642648,37 +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), - [aux_sym_type_argument_list_repeat1] = STATE(7149), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5885), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5887), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7224), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5895), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(5897), - [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), + [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), @@ -642691,25 +634360,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5056] = { - [sym_argument_list] = STATE(4645), - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4636), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4654), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), + [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), @@ -642719,36 +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), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(7226), - [anon_sym_LPAREN] = ACTIONS(7228), - [anon_sym_ref] = ACTIONS(4476), - [anon_sym_LBRACE] = ACTIONS(7230), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7234), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), - [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_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), @@ -642761,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), @@ -642770,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(7240), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [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_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_equals] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -642831,25 +634500,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5058] = { - [sym_argument_list] = STATE(5579), - [sym__name] = STATE(5608), - [sym_alias_qualified_name] = STATE(5627), - [sym__simple_name] = STATE(5627), - [sym_qualified_name] = STATE(5627), - [sym_generic_name] = STATE(5585), - [sym_type] = STATE(5539), - [sym_implicit_type] = STATE(5637), - [sym_array_type] = STATE(5559), - [sym__array_base_type] = STATE(7380), - [sym_nullable_type] = STATE(5581), - [sym_pointer_type] = STATE(5581), - [sym__pointer_base_type] = STATE(8140), - [sym_function_pointer_type] = STATE(5581), - [sym_ref_type] = STATE(5637), - [sym_scoped_type] = STATE(5637), - [sym_tuple_type] = STATE(5609), - [sym_identifier] = STATE(5530), - [sym__reserved_identifier] = STATE(5560), + [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), @@ -642859,36 +634529,35 @@ 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(4328), - [anon_sym_alias] = ACTIONS(4330), - [anon_sym_global] = ACTIONS(4330), - [anon_sym_LBRACK] = ACTIONS(7244), - [anon_sym_LPAREN] = ACTIONS(7246), - [anon_sym_ref] = ACTIONS(4332), - [anon_sym_LBRACE] = ACTIONS(7248), - [anon_sym_delegate] = ACTIONS(7250), - [anon_sym_file] = ACTIONS(4330), - [anon_sym_where] = ACTIONS(4330), - [anon_sym_notnull] = ACTIONS(4330), - [anon_sym_unmanaged] = ACTIONS(4330), - [anon_sym_scoped] = ACTIONS(7252), - [anon_sym_var] = ACTIONS(7254), - [sym_predefined_type] = ACTIONS(7256), - [anon_sym_yield] = ACTIONS(4330), - [anon_sym_when] = ACTIONS(4330), - [anon_sym_from] = ACTIONS(4330), - [anon_sym_into] = ACTIONS(4330), - [anon_sym_join] = ACTIONS(4330), - [anon_sym_on] = ACTIONS(4330), - [anon_sym_equals] = ACTIONS(4330), - [anon_sym_let] = ACTIONS(4330), - [anon_sym_orderby] = ACTIONS(4330), - [anon_sym_ascending] = ACTIONS(4330), - [anon_sym_descending] = ACTIONS(4330), - [anon_sym_group] = ACTIONS(4330), - [anon_sym_by] = ACTIONS(4330), - [anon_sym_select] = ACTIONS(4330), - [sym_grit_metavariable] = ACTIONS(4334), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(5224), + [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), + [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_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -642901,6 +634570,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -642910,55 +634594,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5059), [sym_preproc_define] = STATE(5059), [sym_preproc_undef] = STATE(5059), - [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_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), @@ -642971,25 +634640,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5060] = { - [sym_argument_list] = STATE(3651), - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(5474), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(3718), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -642999,36 +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), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(7258), - [anon_sym_ref] = ACTIONS(4513), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7260), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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(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), @@ -643041,25 +634710,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5061] = { - [sym_argument_list] = STATE(3651), - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4999), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(3718), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -643069,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(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4377), - [anon_sym_ref] = ACTIONS(4596), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7262), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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(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), @@ -643111,6 +634780,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5062] = { + [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), @@ -643120,55 +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(5930), - [anon_sym_extern] = ACTIONS(5930), - [anon_sym_alias] = ACTIONS(5930), - [anon_sym_global] = ACTIONS(5930), - [anon_sym_unsafe] = ACTIONS(5930), - [anon_sym_static] = ACTIONS(5930), - [anon_sym_LBRACK] = ACTIONS(5932), - [anon_sym_LPAREN] = ACTIONS(5932), - [anon_sym_ref] = ACTIONS(5930), - [anon_sym_delegate] = ACTIONS(5930), - [anon_sym_public] = ACTIONS(5930), - [anon_sym_private] = ACTIONS(5930), - [anon_sym_readonly] = ACTIONS(5930), - [anon_sym_abstract] = ACTIONS(5930), - [anon_sym_async] = ACTIONS(5930), - [anon_sym_const] = ACTIONS(5930), - [anon_sym_file] = ACTIONS(5930), - [anon_sym_fixed] = ACTIONS(5930), - [anon_sym_internal] = ACTIONS(5930), - [anon_sym_new] = ACTIONS(5930), - [anon_sym_override] = ACTIONS(5930), - [anon_sym_partial] = ACTIONS(5930), - [anon_sym_protected] = ACTIONS(5930), - [anon_sym_required] = ACTIONS(5930), - [anon_sym_sealed] = ACTIONS(5930), - [anon_sym_virtual] = ACTIONS(5930), - [anon_sym_volatile] = ACTIONS(5930), - [anon_sym_where] = ACTIONS(5930), - [anon_sym_notnull] = ACTIONS(5930), - [anon_sym_unmanaged] = ACTIONS(5930), - [anon_sym_scoped] = ACTIONS(5930), - [anon_sym_var] = ACTIONS(5930), - [sym_predefined_type] = ACTIONS(5930), - [anon_sym_yield] = ACTIONS(5930), - [anon_sym_when] = ACTIONS(5930), - [anon_sym_from] = ACTIONS(5930), - [anon_sym_into] = ACTIONS(5930), - [anon_sym_join] = ACTIONS(5930), - [anon_sym_on] = ACTIONS(5930), - [anon_sym_equals] = ACTIONS(5930), - [anon_sym_let] = ACTIONS(5930), - [anon_sym_orderby] = ACTIONS(5930), - [anon_sym_ascending] = ACTIONS(5930), - [anon_sym_descending] = ACTIONS(5930), - [anon_sym_group] = ACTIONS(5930), - [anon_sym_by] = ACTIONS(5930), - [anon_sym_select] = ACTIONS(5930), - [sym_grit_metavariable] = ACTIONS(5932), - [aux_sym_preproc_if_token1] = ACTIONS(5932), + [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), @@ -643181,25 +634850,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5063] = { - [sym_argument_list] = STATE(3651), - [sym__name] = STATE(5801), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4999), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(3718), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(5616), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -643209,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(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4377), - [anon_sym_ref] = ACTIONS(4368), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7264), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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(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), @@ -643251,25 +634920,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5064] = { - [sym_argument_list] = STATE(3651), - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4999), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(3718), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -643279,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(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4377), - [anon_sym_ref] = ACTIONS(4626), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7266), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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(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), @@ -643321,7 +634990,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5065] = { - [sym_block] = STATE(2056), + [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), @@ -643331,54 +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(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(5942), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(6899), - [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(5942), + [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), @@ -643391,25 +635060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5066] = { - [sym_argument_list] = STATE(3400), - [sym__name] = STATE(5487), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3281), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(5472), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(5284), - [sym__reserved_identifier] = STATE(3393), + [sym_initializer_expression] = STATE(5326), [sym_preproc_region] = STATE(5066), [sym_preproc_endregion] = STATE(5066), [sym_preproc_line] = STATE(5066), @@ -643419,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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(7268), - [anon_sym_LPAREN] = ACTIONS(7270), - [anon_sym_ref] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(7272), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7276), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -643461,64 +635130,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5067] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7183), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(5067), - [sym_preproc_endregion] = STATE(5067), - [sym_preproc_line] = STATE(5067), - [sym_preproc_pragma] = STATE(5067), - [sym_preproc_nullable] = STATE(5067), - [sym_preproc_error] = STATE(5067), - [sym_preproc_warning] = STATE(5067), - [sym_preproc_define] = STATE(5067), - [sym_preproc_undef] = STATE(5067), - [aux_sym_type_argument_list_repeat1] = STATE(7166), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5885), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5887), - [anon_sym_delegate] = ACTIONS(5889), - [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(5895), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(5897), - [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), + [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), + [sym_preproc_pragma] = STATE(5067), + [sym_preproc_nullable] = STATE(5067), + [sym_preproc_error] = STATE(5067), + [sym_preproc_warning] = STATE(5067), + [sym_preproc_define] = STATE(5067), + [sym_preproc_undef] = STATE(5067), + [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), @@ -643531,24 +635200,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5068] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7272), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -643558,37 +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), - [aux_sym_type_argument_list_repeat1] = STATE(7324), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5885), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5887), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7284), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5895), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(5897), - [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), + [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), @@ -643601,26 +635270,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5069] = { - [sym_tuple_pattern] = STATE(7293), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6240), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_identifier] = STATE(6036), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5069), [sym_preproc_endregion] = STATE(5069), [sym_preproc_line] = STATE(5069), @@ -643630,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(5470), - [anon_sym_ref] = ACTIONS(3900), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7286), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3211), - [anon_sym_when] = ACTIONS(3211), - [sym_discard] = ACTIONS(5474), - [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), + [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), @@ -643671,25 +635340,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5070] = { - [sym_argument_list] = STATE(3651), - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4999), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(3718), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -643699,36 +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), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4377), - [anon_sym_ref] = ACTIONS(4230), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(4383), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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(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), @@ -643741,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), @@ -643750,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_EQ] = ACTIONS(7288), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_EQ_GT] = ACTIONS(5752), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7290), - [anon_sym_DASH_EQ] = ACTIONS(7290), - [anon_sym_STAR_EQ] = ACTIONS(7290), - [anon_sym_SLASH_EQ] = ACTIONS(7290), - [anon_sym_PERCENT_EQ] = ACTIONS(7290), - [anon_sym_AMP_EQ] = ACTIONS(7290), - [anon_sym_CARET_EQ] = ACTIONS(7290), - [anon_sym_PIPE_EQ] = ACTIONS(7290), - [anon_sym_LT_LT_EQ] = ACTIONS(7290), - [anon_sym_GT_GT_EQ] = ACTIONS(7290), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7290), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7290), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -643811,6 +635480,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5072] = { + [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), @@ -643820,55 +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), - [anon_sym_SEMI] = ACTIONS(5752), - [anon_sym_EQ] = ACTIONS(7292), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RBRACE] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7294), - [anon_sym_DASH_EQ] = ACTIONS(7294), - [anon_sym_STAR_EQ] = ACTIONS(7294), - [anon_sym_SLASH_EQ] = ACTIONS(7294), - [anon_sym_PERCENT_EQ] = ACTIONS(7294), - [anon_sym_AMP_EQ] = ACTIONS(7294), - [anon_sym_CARET_EQ] = ACTIONS(7294), - [anon_sym_PIPE_EQ] = ACTIONS(7294), - [anon_sym_LT_LT_EQ] = ACTIONS(7294), - [anon_sym_GT_GT_EQ] = ACTIONS(7294), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7294), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7294), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -643881,8 +635550,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5073] = { - [sym_identifier] = STATE(8036), - [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(5073), [sym_preproc_endregion] = STATE(5073), [sym_preproc_line] = STATE(5073), @@ -643892,53 +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(7296), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(7300), - [anon_sym_global] = ACTIONS(7300), - [anon_sym_unsafe] = ACTIONS(7304), - [anon_sym_static] = ACTIONS(7304), - [anon_sym_LPAREN] = ACTIONS(5942), - [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(7300), - [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(7300), - [anon_sym_notnull] = ACTIONS(7300), - [anon_sym_unmanaged] = ACTIONS(7300), - [anon_sym_scoped] = ACTIONS(7300), - [anon_sym_var] = ACTIONS(7300), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(7300), - [anon_sym_when] = ACTIONS(7300), - [anon_sym_from] = ACTIONS(7300), - [anon_sym_into] = ACTIONS(7300), - [anon_sym_join] = ACTIONS(7300), - [anon_sym_on] = ACTIONS(7300), - [anon_sym_equals] = ACTIONS(7300), - [anon_sym_let] = ACTIONS(7300), - [anon_sym_orderby] = ACTIONS(7300), - [anon_sym_ascending] = ACTIONS(7300), - [anon_sym_descending] = ACTIONS(7300), - [anon_sym_group] = ACTIONS(7300), - [anon_sym_by] = ACTIONS(7300), - [anon_sym_select] = ACTIONS(7300), - [sym_grit_metavariable] = ACTIONS(7307), + [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), @@ -643951,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), @@ -643960,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_EQ] = ACTIONS(7180), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(7311), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [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(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -644021,25 +635690,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5075] = { - [sym_argument_list] = STATE(4735), - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4642), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4832), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), [sym_preproc_region] = STATE(5075), [sym_preproc_endregion] = STATE(5075), [sym_preproc_line] = STATE(5075), @@ -644049,36 +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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(7313), - [anon_sym_LPAREN] = ACTIONS(7315), - [anon_sym_ref] = ACTIONS(4490), - [anon_sym_LBRACE] = ACTIONS(7317), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7321), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -644091,25 +635760,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5076] = { - [sym_argument_list] = STATE(3651), - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4999), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(5574), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -644119,36 +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), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LBRACK] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4377), - [anon_sym_ref] = ACTIONS(4230), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(4383), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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(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), @@ -644161,6 +635830,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5077] = { + [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), @@ -644170,55 +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(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_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), @@ -644231,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), @@ -644240,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(5458), - [anon_sym_extern] = ACTIONS(5458), - [anon_sym_alias] = ACTIONS(5458), - [anon_sym_global] = ACTIONS(5458), - [anon_sym_unsafe] = ACTIONS(5458), - [anon_sym_static] = ACTIONS(5458), - [anon_sym_LBRACK] = ACTIONS(5460), - [anon_sym_LPAREN] = ACTIONS(5460), - [anon_sym_ref] = ACTIONS(5458), - [anon_sym_delegate] = ACTIONS(5458), - [anon_sym_public] = ACTIONS(5458), - [anon_sym_private] = ACTIONS(5458), - [anon_sym_readonly] = ACTIONS(5458), - [anon_sym_abstract] = ACTIONS(5458), - [anon_sym_async] = ACTIONS(5458), - [anon_sym_const] = ACTIONS(5458), - [anon_sym_file] = ACTIONS(5458), - [anon_sym_fixed] = ACTIONS(5458), - [anon_sym_internal] = ACTIONS(5458), - [anon_sym_new] = ACTIONS(5458), - [anon_sym_override] = ACTIONS(5458), - [anon_sym_partial] = ACTIONS(5458), - [anon_sym_protected] = ACTIONS(5458), - [anon_sym_required] = ACTIONS(5458), - [anon_sym_sealed] = ACTIONS(5458), - [anon_sym_virtual] = ACTIONS(5458), - [anon_sym_volatile] = ACTIONS(5458), - [anon_sym_where] = ACTIONS(5458), - [anon_sym_notnull] = ACTIONS(5458), - [anon_sym_unmanaged] = ACTIONS(5458), - [anon_sym_scoped] = ACTIONS(5458), - [anon_sym_var] = ACTIONS(5458), - [sym_predefined_type] = 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(5460), - [aux_sym_preproc_if_token1] = ACTIONS(5460), + [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), @@ -644301,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), @@ -644310,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_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(7327), - [anon_sym_EQ_GT] = ACTIONS(4363), - [anon_sym_switch] = ACTIONS(4363), - [anon_sym_DOT_DOT] = 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_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), @@ -644371,6 +636040,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5080] = { + [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), @@ -644380,55 +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(5640), - [anon_sym_extern] = ACTIONS(5640), - [anon_sym_alias] = ACTIONS(5640), - [anon_sym_global] = ACTIONS(5640), - [anon_sym_unsafe] = ACTIONS(5640), - [anon_sym_static] = ACTIONS(5640), - [anon_sym_LBRACK] = ACTIONS(5642), - [anon_sym_LPAREN] = ACTIONS(5642), - [anon_sym_ref] = ACTIONS(5640), - [anon_sym_delegate] = ACTIONS(5640), - [anon_sym_public] = ACTIONS(5640), - [anon_sym_private] = ACTIONS(5640), - [anon_sym_readonly] = ACTIONS(5640), - [anon_sym_abstract] = ACTIONS(5640), - [anon_sym_async] = ACTIONS(5640), - [anon_sym_const] = ACTIONS(5640), - [anon_sym_file] = ACTIONS(5640), - [anon_sym_fixed] = ACTIONS(5640), - [anon_sym_internal] = ACTIONS(5640), - [anon_sym_new] = ACTIONS(5640), - [anon_sym_override] = ACTIONS(5640), - [anon_sym_partial] = ACTIONS(5640), - [anon_sym_protected] = ACTIONS(5640), - [anon_sym_required] = ACTIONS(5640), - [anon_sym_sealed] = ACTIONS(5640), - [anon_sym_virtual] = ACTIONS(5640), - [anon_sym_volatile] = ACTIONS(5640), - [anon_sym_where] = ACTIONS(5640), - [anon_sym_notnull] = ACTIONS(5640), - [anon_sym_unmanaged] = ACTIONS(5640), - [anon_sym_scoped] = ACTIONS(5640), - [anon_sym_var] = ACTIONS(5640), - [sym_predefined_type] = ACTIONS(5640), - [anon_sym_yield] = ACTIONS(5640), - [anon_sym_when] = ACTIONS(5640), - [anon_sym_from] = ACTIONS(5640), - [anon_sym_into] = ACTIONS(5640), - [anon_sym_join] = ACTIONS(5640), - [anon_sym_on] = ACTIONS(5640), - [anon_sym_equals] = ACTIONS(5640), - [anon_sym_let] = ACTIONS(5640), - [anon_sym_orderby] = ACTIONS(5640), - [anon_sym_ascending] = ACTIONS(5640), - [anon_sym_descending] = ACTIONS(5640), - [anon_sym_group] = ACTIONS(5640), - [anon_sym_by] = ACTIONS(5640), - [anon_sym_select] = ACTIONS(5640), - [sym_grit_metavariable] = ACTIONS(5642), - [aux_sym_preproc_if_token1] = ACTIONS(5642), + [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), @@ -644441,6 +636110,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5081] = { + [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), @@ -644450,55 +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), - [anon_sym_SEMI] = ACTIONS(4318), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4318), - [anon_sym_COMMA] = ACTIONS(4318), - [anon_sym_RBRACK] = ACTIONS(4318), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym_RPAREN] = ACTIONS(4318), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_RBRACE] = ACTIONS(4318), - [anon_sym_LT] = ACTIONS(4316), - [anon_sym_GT] = ACTIONS(4316), - [anon_sym_in] = ACTIONS(4316), - [anon_sym_QMARK] = ACTIONS(5806), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_PLUS_PLUS] = ACTIONS(4318), - [anon_sym_DASH_DASH] = ACTIONS(4318), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4397), - [anon_sym_SLASH] = ACTIONS(4316), - [anon_sym_PERCENT] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_LT] = ACTIONS(4318), - [anon_sym_GT_GT] = ACTIONS(4316), - [anon_sym_GT_GT_GT] = ACTIONS(4318), - [anon_sym_EQ_EQ] = ACTIONS(4318), - [anon_sym_BANG_EQ] = ACTIONS(4318), - [anon_sym_GT_EQ] = ACTIONS(4318), - [anon_sym_LT_EQ] = ACTIONS(4318), - [anon_sym_DOT] = ACTIONS(7327), - [anon_sym_EQ_GT] = ACTIONS(4318), - [anon_sym_switch] = ACTIONS(4318), - [anon_sym_DOT_DOT] = ACTIONS(4318), - [anon_sym_AMP_AMP] = ACTIONS(4318), - [anon_sym_PIPE_PIPE] = ACTIONS(4318), - [sym_op_coalescing] = ACTIONS(4318), - [anon_sym_into] = ACTIONS(4318), - [anon_sym_on] = ACTIONS(4318), - [anon_sym_equals] = ACTIONS(4318), - [anon_sym_by] = ACTIONS(4318), - [anon_sym_as] = ACTIONS(4318), - [anon_sym_is] = ACTIONS(4318), - [anon_sym_DASH_GT] = ACTIONS(4318), - [anon_sym_with] = ACTIONS(4318), - [aux_sym_preproc_if_token3] = ACTIONS(4318), - [aux_sym_preproc_else_token1] = ACTIONS(4318), - [aux_sym_preproc_elif_token1] = ACTIONS(4318), + [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), @@ -644511,24 +636180,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5082] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7323), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5082), [sym_preproc_endregion] = STATE(5082), [sym_preproc_line] = STATE(5082), @@ -644538,37 +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), - [aux_sym_type_argument_list_repeat1] = STATE(7326), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5885), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5887), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(5891), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5895), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(5897), - [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), + [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), @@ -644581,24 +636250,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5083] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7110), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -644608,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(7104), + [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(5885), + [anon_sym_COMMA] = ACTIONS(5678), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5887), - [anon_sym_delegate] = ACTIONS(5889), + [anon_sym_ref] = ACTIONS(5680), + [anon_sym_delegate] = ACTIONS(5682), [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(5684), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5895), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(5897), + [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), @@ -644651,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), @@ -644660,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), - [anon_sym_EQ] = ACTIONS(7331), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7333), - [anon_sym_DASH_EQ] = ACTIONS(7333), - [anon_sym_STAR_EQ] = ACTIONS(7333), - [anon_sym_SLASH_EQ] = ACTIONS(7333), - [anon_sym_PERCENT_EQ] = ACTIONS(7333), - [anon_sym_AMP_EQ] = ACTIONS(7333), - [anon_sym_CARET_EQ] = ACTIONS(7333), - [anon_sym_PIPE_EQ] = ACTIONS(7333), - [anon_sym_LT_LT_EQ] = ACTIONS(7333), - [anon_sym_GT_GT_EQ] = ACTIONS(7333), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7333), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7333), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_by] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -644721,6 +636390,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5085] = { + [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), @@ -644730,55 +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), - [anon_sym_EQ] = ACTIONS(7335), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7337), - [anon_sym_DASH_EQ] = ACTIONS(7337), - [anon_sym_STAR_EQ] = ACTIONS(7337), - [anon_sym_SLASH_EQ] = ACTIONS(7337), - [anon_sym_PERCENT_EQ] = ACTIONS(7337), - [anon_sym_AMP_EQ] = ACTIONS(7337), - [anon_sym_CARET_EQ] = ACTIONS(7337), - [anon_sym_PIPE_EQ] = ACTIONS(7337), - [anon_sym_LT_LT_EQ] = ACTIONS(7337), - [anon_sym_GT_GT_EQ] = ACTIONS(7337), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7337), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7337), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_on] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -644791,24 +636460,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5086] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7261), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5086), [sym_preproc_endregion] = STATE(5086), [sym_preproc_line] = STATE(5086), @@ -644818,37 +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), - [aux_sym_type_argument_list_repeat1] = STATE(7185), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5885), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5887), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7339), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5895), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(5897), - [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), + [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), @@ -644861,8 +636530,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5087] = { - [sym_identifier] = STATE(7948), - [sym__reserved_identifier] = STATE(2206), + [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), @@ -644872,53 +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), - [sym__identifier_token] = ACTIONS(7296), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(7300), - [anon_sym_global] = ACTIONS(7300), - [anon_sym_unsafe] = ACTIONS(7304), - [anon_sym_static] = ACTIONS(7304), - [anon_sym_LPAREN] = ACTIONS(5942), - [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(7300), - [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(7300), - [anon_sym_notnull] = ACTIONS(7300), - [anon_sym_unmanaged] = ACTIONS(7300), - [anon_sym_scoped] = ACTIONS(7300), - [anon_sym_var] = ACTIONS(7300), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(7300), - [anon_sym_when] = ACTIONS(7300), - [anon_sym_from] = ACTIONS(7300), - [anon_sym_into] = ACTIONS(7300), - [anon_sym_join] = ACTIONS(7300), - [anon_sym_on] = ACTIONS(7300), - [anon_sym_equals] = ACTIONS(7300), - [anon_sym_let] = ACTIONS(7300), - [anon_sym_orderby] = ACTIONS(7300), - [anon_sym_ascending] = ACTIONS(7300), - [anon_sym_descending] = ACTIONS(7300), - [anon_sym_group] = ACTIONS(7300), - [anon_sym_by] = ACTIONS(7300), - [anon_sym_select] = ACTIONS(7300), - [sym_grit_metavariable] = ACTIONS(7307), + [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), @@ -644931,25 +636600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5088] = { - [sym_argument_list] = STATE(4645), - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4636), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4654), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), + [sym_initializer_expression] = STATE(5248), [sym_preproc_region] = STATE(5088), [sym_preproc_endregion] = STATE(5088), [sym_preproc_line] = STATE(5088), @@ -644959,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(7226), - [anon_sym_LPAREN] = ACTIONS(7228), - [anon_sym_ref] = ACTIONS(4480), - [anon_sym_LBRACE] = ACTIONS(7230), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7341), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), - [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), @@ -645001,6 +636670,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5089] = { + [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), @@ -645010,55 +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), - [anon_sym_EQ] = ACTIONS(7343), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7345), - [anon_sym_DASH_EQ] = ACTIONS(7345), - [anon_sym_STAR_EQ] = ACTIONS(7345), - [anon_sym_SLASH_EQ] = ACTIONS(7345), - [anon_sym_PERCENT_EQ] = ACTIONS(7345), - [anon_sym_AMP_EQ] = ACTIONS(7345), - [anon_sym_CARET_EQ] = ACTIONS(7345), - [anon_sym_PIPE_EQ] = ACTIONS(7345), - [anon_sym_LT_LT_EQ] = ACTIONS(7345), - [anon_sym_GT_GT_EQ] = ACTIONS(7345), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7345), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), - [aux_sym_preproc_if_token3] = ACTIONS(5752), - [aux_sym_preproc_else_token1] = ACTIONS(5752), - [aux_sym_preproc_elif_token1] = ACTIONS(5752), + [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), @@ -645071,25 +636740,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5090] = { - [sym_argument_list] = STATE(4645), - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4636), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4654), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), + [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), @@ -645099,36 +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(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(7226), - [anon_sym_LPAREN] = ACTIONS(7228), - [anon_sym_ref] = ACTIONS(4478), - [anon_sym_LBRACE] = ACTIONS(7230), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7347), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), - [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(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), @@ -645141,25 +636810,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5091] = { - [sym_argument_list] = STATE(4735), - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4642), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4832), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -645169,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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(7313), - [anon_sym_LPAREN] = ACTIONS(7315), - [anon_sym_ref] = ACTIONS(4494), - [anon_sym_LBRACE] = ACTIONS(7317), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7349), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -645220,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), - [sym__identifier_token] = ACTIONS(5552), - [anon_sym_extern] = ACTIONS(5552), - [anon_sym_alias] = ACTIONS(5552), - [anon_sym_global] = ACTIONS(5552), - [anon_sym_unsafe] = ACTIONS(5552), - [anon_sym_static] = ACTIONS(5552), - [anon_sym_LBRACK] = ACTIONS(5554), - [anon_sym_LPAREN] = ACTIONS(5554), - [anon_sym_ref] = ACTIONS(5552), - [anon_sym_delegate] = ACTIONS(5552), - [anon_sym_public] = ACTIONS(5552), - [anon_sym_private] = ACTIONS(5552), - [anon_sym_readonly] = ACTIONS(5552), - [anon_sym_abstract] = ACTIONS(5552), - [anon_sym_async] = ACTIONS(5552), - [anon_sym_const] = ACTIONS(5552), - [anon_sym_file] = ACTIONS(5552), - [anon_sym_fixed] = ACTIONS(5552), - [anon_sym_internal] = ACTIONS(5552), - [anon_sym_new] = ACTIONS(5552), - [anon_sym_override] = ACTIONS(5552), - [anon_sym_partial] = ACTIONS(5552), - [anon_sym_protected] = ACTIONS(5552), - [anon_sym_required] = ACTIONS(5552), - [anon_sym_sealed] = ACTIONS(5552), - [anon_sym_virtual] = ACTIONS(5552), - [anon_sym_volatile] = ACTIONS(5552), - [anon_sym_where] = ACTIONS(5552), - [anon_sym_notnull] = ACTIONS(5552), - [anon_sym_unmanaged] = ACTIONS(5552), - [anon_sym_scoped] = ACTIONS(5552), - [anon_sym_var] = ACTIONS(5552), - [sym_predefined_type] = ACTIONS(5552), - [anon_sym_yield] = ACTIONS(5552), - [anon_sym_when] = ACTIONS(5552), - [anon_sym_from] = ACTIONS(5552), - [anon_sym_into] = ACTIONS(5552), - [anon_sym_join] = ACTIONS(5552), - [anon_sym_on] = ACTIONS(5552), - [anon_sym_equals] = ACTIONS(5552), - [anon_sym_let] = ACTIONS(5552), - [anon_sym_orderby] = ACTIONS(5552), - [anon_sym_ascending] = ACTIONS(5552), - [anon_sym_descending] = ACTIONS(5552), - [anon_sym_group] = ACTIONS(5552), - [anon_sym_by] = ACTIONS(5552), - [anon_sym_select] = ACTIONS(5552), - [sym_grit_metavariable] = ACTIONS(5554), - [aux_sym_preproc_if_token1] = ACTIONS(5554), + [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), @@ -645281,24 +636950,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5093] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7256), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -645308,37 +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), - [aux_sym_type_argument_list_repeat1] = STATE(7233), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5885), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5887), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7351), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5895), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(5897), - [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), + [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), @@ -645351,25 +637020,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5094] = { - [sym_argument_list] = STATE(3651), - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4999), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(3718), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), [sym_preproc_region] = STATE(5094), [sym_preproc_endregion] = STATE(5094), [sym_preproc_line] = STATE(5094), @@ -645379,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(4375), - [anon_sym_LPAREN] = ACTIONS(4377), - [anon_sym_ref] = ACTIONS(4590), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7353), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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), @@ -645421,24 +637090,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5095] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7329), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -645448,37 +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), - [aux_sym_type_argument_list_repeat1] = STATE(7082), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5885), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5887), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7355), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5895), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(5897), - [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), + [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), @@ -645491,6 +637160,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5096] = { + [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), @@ -645500,55 +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(5510), - [anon_sym_extern] = ACTIONS(5510), - [anon_sym_alias] = ACTIONS(5510), - [anon_sym_global] = ACTIONS(5510), - [anon_sym_unsafe] = ACTIONS(5510), - [anon_sym_static] = ACTIONS(5510), - [anon_sym_LBRACK] = ACTIONS(5512), - [anon_sym_LPAREN] = ACTIONS(5512), - [anon_sym_ref] = ACTIONS(5510), - [anon_sym_delegate] = ACTIONS(5510), - [anon_sym_public] = ACTIONS(5510), - [anon_sym_private] = ACTIONS(5510), - [anon_sym_readonly] = ACTIONS(5510), - [anon_sym_abstract] = ACTIONS(5510), - [anon_sym_async] = ACTIONS(5510), - [anon_sym_const] = ACTIONS(5510), - [anon_sym_file] = ACTIONS(5510), - [anon_sym_fixed] = ACTIONS(5510), - [anon_sym_internal] = ACTIONS(5510), - [anon_sym_new] = ACTIONS(5510), - [anon_sym_override] = ACTIONS(5510), - [anon_sym_partial] = ACTIONS(5510), - [anon_sym_protected] = ACTIONS(5510), - [anon_sym_required] = ACTIONS(5510), - [anon_sym_sealed] = ACTIONS(5510), - [anon_sym_virtual] = ACTIONS(5510), - [anon_sym_volatile] = ACTIONS(5510), - [anon_sym_where] = ACTIONS(5510), - [anon_sym_notnull] = ACTIONS(5510), - [anon_sym_unmanaged] = ACTIONS(5510), - [anon_sym_scoped] = ACTIONS(5510), - [anon_sym_var] = ACTIONS(5510), - [sym_predefined_type] = ACTIONS(5510), - [anon_sym_yield] = ACTIONS(5510), - [anon_sym_when] = ACTIONS(5510), - [anon_sym_from] = ACTIONS(5510), - [anon_sym_into] = ACTIONS(5510), - [anon_sym_join] = ACTIONS(5510), - [anon_sym_on] = ACTIONS(5510), - [anon_sym_equals] = ACTIONS(5510), - [anon_sym_let] = ACTIONS(5510), - [anon_sym_orderby] = ACTIONS(5510), - [anon_sym_ascending] = ACTIONS(5510), - [anon_sym_descending] = ACTIONS(5510), - [anon_sym_group] = ACTIONS(5510), - [anon_sym_by] = ACTIONS(5510), - [anon_sym_select] = ACTIONS(5510), - [sym_grit_metavariable] = ACTIONS(5512), - [aux_sym_preproc_if_token1] = ACTIONS(5512), + [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), @@ -645561,25 +637229,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5097] = { - [sym_argument_list] = STATE(5140), - [sym__name] = STATE(2471), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2445), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2433), - [sym_type] = STATE(5112), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5139), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_identifier] = STATE(2399), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(5097), [sym_preproc_endregion] = STATE(5097), [sym_preproc_line] = STATE(5097), @@ -645589,36 +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), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(7357), - [anon_sym_LPAREN] = ACTIONS(7359), - [anon_sym_ref] = ACTIONS(4452), - [anon_sym_LBRACE] = ACTIONS(7361), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_where] = ACTIONS(4432), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_scoped] = ACTIONS(7363), - [anon_sym_var] = ACTIONS(7365), - [sym_predefined_type] = ACTIONS(7367), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_when] = ACTIONS(4432), - [anon_sym_from] = ACTIONS(4432), - [anon_sym_into] = ACTIONS(4432), - [anon_sym_join] = ACTIONS(4432), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4432), - [anon_sym_orderby] = ACTIONS(4432), - [anon_sym_ascending] = ACTIONS(4432), - [anon_sym_descending] = ACTIONS(4432), - [anon_sym_group] = ACTIONS(4432), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4432), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -645631,25 +637298,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5098] = { - [sym_argument_list] = STATE(4735), - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4642), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4832), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -645659,36 +637325,36 @@ 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), - [sym__identifier_token] = ACTIONS(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(7313), - [anon_sym_LPAREN] = ACTIONS(7315), - [anon_sym_ref] = ACTIONS(4107), - [anon_sym_LBRACE] = ACTIONS(7317), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7369), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -645701,7 +637367,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5099] = { - [sym_block] = STATE(1997), [sym_preproc_region] = STATE(5099), [sym_preproc_endregion] = STATE(5099), [sym_preproc_line] = STATE(5099), @@ -645711,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(5942), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(6897), - [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(5942), + [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), @@ -645771,25 +637436,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5100] = { - [sym_argument_list] = STATE(3400), - [sym__name] = STATE(5081), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3281), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(5027), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), + [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), @@ -645799,36 +637463,36 @@ 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), - [sym__identifier_token] = ACTIONS(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(7268), - [anon_sym_LPAREN] = ACTIONS(7270), - [anon_sym_ref] = ACTIONS(4570), - [anon_sym_LBRACE] = ACTIONS(7272), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7371), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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(4268), + [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), @@ -645841,25 +637505,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5101] = { - [sym_argument_list] = STATE(3400), - [sym__name] = STATE(5081), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3281), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(5027), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), [sym_preproc_region] = STATE(5101), [sym_preproc_endregion] = STATE(5101), [sym_preproc_line] = STATE(5101), @@ -645869,36 +637514,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5101), [sym_preproc_define] = STATE(5101), [sym_preproc_undef] = STATE(5101), - [sym__identifier_token] = ACTIONS(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(7268), - [anon_sym_LPAREN] = ACTIONS(7270), - [anon_sym_ref] = ACTIONS(4632), - [anon_sym_LBRACE] = ACTIONS(7272), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7373), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -645911,7 +637574,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5102] = { - [sym_modifier] = STATE(5186), [sym_preproc_region] = STATE(5102), [sym_preproc_endregion] = STATE(5102), [sym_preproc_line] = STATE(5102), @@ -645921,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(6358), - [anon_sym_extern] = ACTIONS(7375), - [anon_sym_alias] = ACTIONS(6358), - [anon_sym_global] = ACTIONS(6358), - [anon_sym_unsafe] = ACTIONS(7375), - [anon_sym_static] = ACTIONS(7375), - [anon_sym_LPAREN] = ACTIONS(6363), - [anon_sym_ref] = ACTIONS(6358), - [anon_sym_delegate] = ACTIONS(6358), - [anon_sym_public] = ACTIONS(7375), - [anon_sym_private] = ACTIONS(7375), - [anon_sym_readonly] = ACTIONS(7375), - [anon_sym_abstract] = ACTIONS(7375), - [anon_sym_async] = ACTIONS(7375), - [anon_sym_const] = ACTIONS(7375), - [anon_sym_file] = ACTIONS(7375), - [anon_sym_fixed] = ACTIONS(7375), - [anon_sym_internal] = ACTIONS(7375), - [anon_sym_new] = ACTIONS(7375), - [anon_sym_override] = ACTIONS(7375), - [anon_sym_partial] = ACTIONS(7375), - [anon_sym_protected] = ACTIONS(7375), - [anon_sym_required] = ACTIONS(7375), - [anon_sym_sealed] = ACTIONS(7375), - [anon_sym_virtual] = ACTIONS(7375), - [anon_sym_volatile] = ACTIONS(7375), - [anon_sym_where] = ACTIONS(6358), - [anon_sym_notnull] = ACTIONS(6358), - [anon_sym_unmanaged] = ACTIONS(6358), - [anon_sym_scoped] = ACTIONS(6358), - [anon_sym_var] = ACTIONS(6358), - [sym_predefined_type] = ACTIONS(6358), - [anon_sym_yield] = ACTIONS(6358), - [anon_sym_when] = ACTIONS(6358), - [anon_sym_from] = ACTIONS(6358), - [anon_sym_into] = ACTIONS(6358), - [anon_sym_join] = ACTIONS(6358), - [anon_sym_on] = ACTIONS(6358), - [anon_sym_equals] = ACTIONS(6358), - [anon_sym_let] = ACTIONS(6358), - [anon_sym_orderby] = ACTIONS(6358), - [anon_sym_ascending] = ACTIONS(6358), - [anon_sym_descending] = ACTIONS(6358), - [anon_sym_group] = ACTIONS(6358), - [anon_sym_by] = ACTIONS(6358), - [anon_sym_select] = ACTIONS(6358), - [sym_grit_metavariable] = ACTIONS(6363), + [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), @@ -645981,25 +637643,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5103] = { - [sym_argument_list] = STATE(4645), - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4636), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4654), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), [sym_preproc_region] = STATE(5103), [sym_preproc_endregion] = STATE(5103), [sym_preproc_line] = STATE(5103), @@ -646009,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(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(7226), - [anon_sym_LPAREN] = ACTIONS(7228), - [anon_sym_ref] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(7230), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7378), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), - [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_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), @@ -646060,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(5604), - [anon_sym_extern] = ACTIONS(5604), - [anon_sym_alias] = ACTIONS(5604), - [anon_sym_global] = ACTIONS(5604), - [anon_sym_unsafe] = ACTIONS(5604), - [anon_sym_static] = ACTIONS(5604), - [anon_sym_LBRACK] = ACTIONS(5606), - [anon_sym_LPAREN] = ACTIONS(5606), - [anon_sym_ref] = ACTIONS(5604), - [anon_sym_delegate] = ACTIONS(5604), - [anon_sym_public] = ACTIONS(5604), - [anon_sym_private] = ACTIONS(5604), - [anon_sym_readonly] = ACTIONS(5604), - [anon_sym_abstract] = ACTIONS(5604), - [anon_sym_async] = ACTIONS(5604), - [anon_sym_const] = ACTIONS(5604), - [anon_sym_file] = ACTIONS(5604), - [anon_sym_fixed] = ACTIONS(5604), - [anon_sym_internal] = ACTIONS(5604), - [anon_sym_new] = ACTIONS(5604), - [anon_sym_override] = ACTIONS(5604), - [anon_sym_partial] = ACTIONS(5604), - [anon_sym_protected] = ACTIONS(5604), - [anon_sym_required] = ACTIONS(5604), - [anon_sym_sealed] = ACTIONS(5604), - [anon_sym_virtual] = ACTIONS(5604), - [anon_sym_volatile] = ACTIONS(5604), - [anon_sym_where] = ACTIONS(5604), - [anon_sym_notnull] = ACTIONS(5604), - [anon_sym_unmanaged] = ACTIONS(5604), - [anon_sym_scoped] = ACTIONS(5604), - [anon_sym_var] = ACTIONS(5604), - [sym_predefined_type] = ACTIONS(5604), - [anon_sym_yield] = ACTIONS(5604), - [anon_sym_when] = ACTIONS(5604), - [anon_sym_from] = ACTIONS(5604), - [anon_sym_into] = ACTIONS(5604), - [anon_sym_join] = ACTIONS(5604), - [anon_sym_on] = ACTIONS(5604), - [anon_sym_equals] = ACTIONS(5604), - [anon_sym_let] = ACTIONS(5604), - [anon_sym_orderby] = ACTIONS(5604), - [anon_sym_ascending] = ACTIONS(5604), - [anon_sym_descending] = ACTIONS(5604), - [anon_sym_group] = ACTIONS(5604), - [anon_sym_by] = ACTIONS(5604), - [anon_sym_select] = ACTIONS(5604), - [sym_grit_metavariable] = ACTIONS(5606), - [aux_sym_preproc_if_token1] = ACTIONS(5606), + [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), @@ -646121,25 +637781,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5105] = { - [sym_argument_list] = STATE(4735), - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4642), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4832), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), [sym_preproc_region] = STATE(5105), [sym_preproc_endregion] = STATE(5105), [sym_preproc_line] = STATE(5105), @@ -646149,36 +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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(7313), - [anon_sym_LPAREN] = ACTIONS(7315), - [anon_sym_ref] = ACTIONS(4524), - [anon_sym_LBRACE] = ACTIONS(7317), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7380), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -646191,25 +637850,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5106] = { - [sym_argument_list] = STATE(4645), - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4636), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4654), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), + [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), @@ -646219,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(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LBRACK] = ACTIONS(7226), - [anon_sym_LPAREN] = ACTIONS(7228), - [anon_sym_ref] = ACTIONS(4092), - [anon_sym_LBRACE] = ACTIONS(7230), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7382), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), - [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(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), @@ -646261,25 +637919,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5107] = { - [sym_argument_list] = STATE(3400), - [sym__name] = STATE(5081), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3281), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(5027), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), + [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), @@ -646289,36 +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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(7268), - [anon_sym_LPAREN] = ACTIONS(7270), - [anon_sym_ref] = ACTIONS(4153), - [anon_sym_LBRACE] = ACTIONS(7272), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7384), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -646331,6 +637988,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5108] = { + [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), @@ -646340,55 +638012,39 @@ 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), - [sym__identifier_token] = ACTIONS(5556), - [anon_sym_extern] = ACTIONS(5556), - [anon_sym_alias] = ACTIONS(5556), - [anon_sym_global] = ACTIONS(5556), - [anon_sym_unsafe] = ACTIONS(5556), - [anon_sym_static] = ACTIONS(5556), - [anon_sym_LBRACK] = ACTIONS(5558), - [anon_sym_LPAREN] = ACTIONS(5558), - [anon_sym_ref] = ACTIONS(5556), - [anon_sym_delegate] = ACTIONS(5556), - [anon_sym_public] = ACTIONS(5556), - [anon_sym_private] = ACTIONS(5556), - [anon_sym_readonly] = ACTIONS(5556), - [anon_sym_abstract] = ACTIONS(5556), - [anon_sym_async] = ACTIONS(5556), - [anon_sym_const] = ACTIONS(5556), - [anon_sym_file] = ACTIONS(5556), - [anon_sym_fixed] = ACTIONS(5556), - [anon_sym_internal] = ACTIONS(5556), - [anon_sym_new] = ACTIONS(5556), - [anon_sym_override] = ACTIONS(5556), - [anon_sym_partial] = ACTIONS(5556), - [anon_sym_protected] = ACTIONS(5556), - [anon_sym_required] = ACTIONS(5556), - [anon_sym_sealed] = ACTIONS(5556), - [anon_sym_virtual] = ACTIONS(5556), - [anon_sym_volatile] = ACTIONS(5556), - [anon_sym_where] = ACTIONS(5556), - [anon_sym_notnull] = ACTIONS(5556), - [anon_sym_unmanaged] = ACTIONS(5556), - [anon_sym_scoped] = ACTIONS(5556), - [anon_sym_var] = ACTIONS(5556), - [sym_predefined_type] = ACTIONS(5556), - [anon_sym_yield] = ACTIONS(5556), - [anon_sym_when] = ACTIONS(5556), - [anon_sym_from] = ACTIONS(5556), - [anon_sym_into] = ACTIONS(5556), - [anon_sym_join] = ACTIONS(5556), - [anon_sym_on] = ACTIONS(5556), - [anon_sym_equals] = ACTIONS(5556), - [anon_sym_let] = ACTIONS(5556), - [anon_sym_orderby] = ACTIONS(5556), - [anon_sym_ascending] = ACTIONS(5556), - [anon_sym_descending] = ACTIONS(5556), - [anon_sym_group] = ACTIONS(5556), - [anon_sym_by] = ACTIONS(5556), - [anon_sym_select] = ACTIONS(5556), - [sym_grit_metavariable] = ACTIONS(5558), - [aux_sym_preproc_if_token1] = ACTIONS(5558), + [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), @@ -646401,24 +638057,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5109] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7320), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -646428,22 +638085,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5109), [sym_preproc_define] = STATE(5109), [sym_preproc_undef] = STATE(5109), - [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(5885), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5887), - [anon_sym_delegate] = ACTIONS(5889), + [anon_sym_ref] = ACTIONS(7922), + [anon_sym_delegate] = ACTIONS(5682), + [anon_sym_readonly] = ACTIONS(7924), [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7386), [anon_sym_where] = ACTIONS(3211), [anon_sym_notnull] = ACTIONS(3211), [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5895), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(5897), + [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), @@ -646471,6 +638126,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5110] = { + [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), @@ -646480,55 +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), - [sym__identifier_token] = ACTIONS(5582), - [anon_sym_extern] = ACTIONS(5582), - [anon_sym_alias] = ACTIONS(5582), - [anon_sym_global] = ACTIONS(5582), - [anon_sym_unsafe] = ACTIONS(5582), - [anon_sym_static] = ACTIONS(5582), - [anon_sym_LBRACK] = ACTIONS(5584), - [anon_sym_LPAREN] = ACTIONS(5584), - [anon_sym_ref] = ACTIONS(5582), - [anon_sym_delegate] = ACTIONS(5582), - [anon_sym_public] = ACTIONS(5582), - [anon_sym_private] = ACTIONS(5582), - [anon_sym_readonly] = ACTIONS(5582), - [anon_sym_abstract] = ACTIONS(5582), - [anon_sym_async] = ACTIONS(5582), - [anon_sym_const] = ACTIONS(5582), - [anon_sym_file] = ACTIONS(5582), - [anon_sym_fixed] = ACTIONS(5582), - [anon_sym_internal] = ACTIONS(5582), - [anon_sym_new] = ACTIONS(5582), - [anon_sym_override] = ACTIONS(5582), - [anon_sym_partial] = ACTIONS(5582), - [anon_sym_protected] = ACTIONS(5582), - [anon_sym_required] = ACTIONS(5582), - [anon_sym_sealed] = ACTIONS(5582), - [anon_sym_virtual] = ACTIONS(5582), - [anon_sym_volatile] = ACTIONS(5582), - [anon_sym_where] = ACTIONS(5582), - [anon_sym_notnull] = ACTIONS(5582), - [anon_sym_unmanaged] = ACTIONS(5582), - [anon_sym_scoped] = ACTIONS(5582), - [anon_sym_var] = ACTIONS(5582), - [sym_predefined_type] = ACTIONS(5582), - [anon_sym_yield] = ACTIONS(5582), - [anon_sym_when] = ACTIONS(5582), - [anon_sym_from] = ACTIONS(5582), - [anon_sym_into] = ACTIONS(5582), - [anon_sym_join] = ACTIONS(5582), - [anon_sym_on] = ACTIONS(5582), - [anon_sym_equals] = ACTIONS(5582), - [anon_sym_let] = ACTIONS(5582), - [anon_sym_orderby] = ACTIONS(5582), - [anon_sym_ascending] = ACTIONS(5582), - [anon_sym_descending] = ACTIONS(5582), - [anon_sym_group] = ACTIONS(5582), - [anon_sym_by] = ACTIONS(5582), - [anon_sym_select] = ACTIONS(5582), - [sym_grit_metavariable] = ACTIONS(5584), - [aux_sym_preproc_if_token1] = ACTIONS(5584), + [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), @@ -646541,25 +638195,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5111] = { - [sym_argument_list] = STATE(5579), - [sym__name] = STATE(5608), - [sym_alias_qualified_name] = STATE(5627), - [sym__simple_name] = STATE(5627), - [sym_qualified_name] = STATE(5627), - [sym_generic_name] = STATE(5585), - [sym_type] = STATE(5539), - [sym_implicit_type] = STATE(5637), - [sym_array_type] = STATE(5559), - [sym__array_base_type] = STATE(7380), - [sym_nullable_type] = STATE(5581), - [sym_pointer_type] = STATE(5581), - [sym__pointer_base_type] = STATE(8140), - [sym_function_pointer_type] = STATE(5581), - [sym_ref_type] = STATE(5637), - [sym_scoped_type] = STATE(5637), - [sym_tuple_type] = STATE(5609), - [sym_identifier] = STATE(5530), - [sym__reserved_identifier] = STATE(5560), + [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), @@ -646569,36 +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(4328), - [anon_sym_alias] = ACTIONS(4330), - [anon_sym_global] = ACTIONS(4330), - [anon_sym_LBRACK] = ACTIONS(7244), - [anon_sym_LPAREN] = ACTIONS(7246), - [anon_sym_ref] = ACTIONS(4348), - [anon_sym_LBRACE] = ACTIONS(7248), - [anon_sym_delegate] = ACTIONS(7250), - [anon_sym_file] = ACTIONS(4330), - [anon_sym_where] = ACTIONS(4330), - [anon_sym_notnull] = ACTIONS(4330), - [anon_sym_unmanaged] = ACTIONS(4330), - [anon_sym_scoped] = ACTIONS(7388), - [anon_sym_var] = ACTIONS(7254), - [sym_predefined_type] = ACTIONS(7256), - [anon_sym_yield] = ACTIONS(4330), - [anon_sym_when] = ACTIONS(4330), - [anon_sym_from] = ACTIONS(4330), - [anon_sym_into] = ACTIONS(4330), - [anon_sym_join] = ACTIONS(4330), - [anon_sym_on] = ACTIONS(4330), - [anon_sym_equals] = ACTIONS(4330), - [anon_sym_let] = ACTIONS(4330), - [anon_sym_orderby] = ACTIONS(4330), - [anon_sym_ascending] = ACTIONS(4330), - [anon_sym_descending] = ACTIONS(4330), - [anon_sym_group] = ACTIONS(4330), - [anon_sym_by] = ACTIONS(4330), - [anon_sym_select] = ACTIONS(4330), - [sym_grit_metavariable] = ACTIONS(4334), + [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), @@ -646611,8 +638264,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5112] = { - [sym_argument_list] = STATE(5131), - [sym_initializer_expression] = STATE(5350), + [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), @@ -646622,53 +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), - [anon_sym_LBRACK] = ACTIONS(5682), - [anon_sym_COMMA] = ACTIONS(5682), - [anon_sym_LPAREN] = ACTIONS(4688), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(5684), - [anon_sym_GT] = ACTIONS(5684), - [anon_sym_where] = ACTIONS(5682), - [anon_sym_QMARK] = ACTIONS(5684), - [anon_sym_BANG] = ACTIONS(5684), - [anon_sym_PLUS_PLUS] = ACTIONS(5682), - [anon_sym_DASH_DASH] = ACTIONS(5682), - [anon_sym_PLUS] = ACTIONS(5684), - [anon_sym_DASH] = ACTIONS(5684), - [anon_sym_STAR] = ACTIONS(5682), - [anon_sym_SLASH] = ACTIONS(5684), - [anon_sym_PERCENT] = ACTIONS(5682), - [anon_sym_CARET] = ACTIONS(5682), - [anon_sym_PIPE] = ACTIONS(5684), - [anon_sym_AMP] = ACTIONS(5684), - [anon_sym_LT_LT] = ACTIONS(5682), - [anon_sym_GT_GT] = ACTIONS(5684), - [anon_sym_GT_GT_GT] = ACTIONS(5682), - [anon_sym_EQ_EQ] = ACTIONS(5682), - [anon_sym_BANG_EQ] = ACTIONS(5682), - [anon_sym_GT_EQ] = ACTIONS(5682), - [anon_sym_LT_EQ] = ACTIONS(5682), - [anon_sym_DOT] = ACTIONS(5684), - [anon_sym_switch] = ACTIONS(5682), - [anon_sym_DOT_DOT] = ACTIONS(5682), - [anon_sym_and] = ACTIONS(5682), - [anon_sym_or] = ACTIONS(5684), - [anon_sym_AMP_AMP] = ACTIONS(5682), - [anon_sym_PIPE_PIPE] = ACTIONS(5682), - [sym_op_coalescing] = ACTIONS(5682), - [anon_sym_from] = ACTIONS(5682), - [anon_sym_into] = ACTIONS(5682), - [anon_sym_join] = ACTIONS(5682), - [anon_sym_let] = ACTIONS(5682), - [anon_sym_orderby] = ACTIONS(5682), - [anon_sym_ascending] = ACTIONS(5682), - [anon_sym_descending] = ACTIONS(5682), - [anon_sym_group] = ACTIONS(5682), - [anon_sym_select] = ACTIONS(5682), - [anon_sym_as] = ACTIONS(5684), - [anon_sym_is] = ACTIONS(5682), - [anon_sym_DASH_GT] = ACTIONS(5682), - [anon_sym_with] = ACTIONS(5682), + [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), @@ -646681,25 +638333,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5113] = { - [sym_argument_list] = STATE(5140), - [sym__name] = STATE(2471), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2445), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2433), - [sym_type] = STATE(5112), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5139), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_identifier] = STATE(2399), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(5113), [sym_preproc_endregion] = STATE(5113), [sym_preproc_line] = STATE(5113), @@ -646709,36 +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), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LBRACK] = ACTIONS(7357), - [anon_sym_LPAREN] = ACTIONS(7359), - [anon_sym_ref] = ACTIONS(4434), - [anon_sym_LBRACE] = ACTIONS(7361), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_where] = ACTIONS(4432), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_scoped] = ACTIONS(7390), - [anon_sym_var] = ACTIONS(7365), - [sym_predefined_type] = ACTIONS(7367), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_when] = ACTIONS(4432), - [anon_sym_from] = ACTIONS(4432), - [anon_sym_into] = ACTIONS(4432), - [anon_sym_join] = ACTIONS(4432), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4432), - [anon_sym_orderby] = ACTIONS(4432), - [anon_sym_ascending] = ACTIONS(4432), - [anon_sym_descending] = ACTIONS(4432), - [anon_sym_group] = ACTIONS(4432), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4432), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -646751,7 +638402,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5114] = { - [sym_block] = STATE(7558), + [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), @@ -646761,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(5942), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(7208), - [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(5942), + [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), @@ -646821,25 +638471,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5115] = { - [sym_argument_list] = STATE(4735), - [sym__name] = STATE(5909), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4642), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(5809), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(5757), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -646849,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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(7313), - [anon_sym_LPAREN] = ACTIONS(7315), - [anon_sym_ref] = ACTIONS(4428), - [anon_sym_LBRACE] = ACTIONS(7317), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7392), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -646891,24 +638540,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5116] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7054), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -646918,37 +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), - [aux_sym_type_argument_list_repeat1] = STATE(7060), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5885), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5887), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7394), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5895), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(5897), - [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), + [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), @@ -646961,24 +638609,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5117] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7236), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5117), [sym_preproc_endregion] = STATE(5117), [sym_preproc_line] = STATE(5117), @@ -646988,37 +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), - [aux_sym_type_argument_list_repeat1] = STATE(7112), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5885), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5887), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7396), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5895), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(5897), - [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), + [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), @@ -647031,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), @@ -647040,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(7398), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7400), - [anon_sym_DASH_EQ] = ACTIONS(7400), - [anon_sym_STAR_EQ] = ACTIONS(7400), - [anon_sym_SLASH_EQ] = ACTIONS(7400), - [anon_sym_PERCENT_EQ] = ACTIONS(7400), - [anon_sym_AMP_EQ] = ACTIONS(7400), - [anon_sym_CARET_EQ] = ACTIONS(7400), - [anon_sym_PIPE_EQ] = ACTIONS(7400), - [anon_sym_LT_LT_EQ] = ACTIONS(7400), - [anon_sym_GT_GT_EQ] = ACTIONS(7400), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7400), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7400), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -647110,55 +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_EQ] = ACTIONS(7402), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_in] = ACTIONS(5752), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7404), - [anon_sym_DASH_EQ] = ACTIONS(7404), - [anon_sym_STAR_EQ] = ACTIONS(7404), - [anon_sym_SLASH_EQ] = ACTIONS(7404), - [anon_sym_PERCENT_EQ] = ACTIONS(7404), - [anon_sym_AMP_EQ] = ACTIONS(7404), - [anon_sym_CARET_EQ] = ACTIONS(7404), - [anon_sym_PIPE_EQ] = ACTIONS(7404), - [anon_sym_LT_LT_EQ] = ACTIONS(7404), - [anon_sym_GT_GT_EQ] = ACTIONS(7404), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7404), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7404), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -647171,24 +638816,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5120] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7126), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5120), [sym_preproc_endregion] = STATE(5120), [sym_preproc_line] = STATE(5120), @@ -647198,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(7127), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5885), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5887), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7406), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5895), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(5897), - [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), + [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), @@ -647241,25 +638885,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5121] = { - [sym_argument_list] = STATE(4735), - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4642), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4832), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -647269,36 +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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LBRACK] = ACTIONS(7313), - [anon_sym_LPAREN] = ACTIONS(7315), - [anon_sym_ref] = ACTIONS(4370), - [anon_sym_LBRACE] = ACTIONS(7317), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7408), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -647311,6 +638954,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5122] = { + [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), @@ -647320,55 +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), - [sym__identifier_token] = ACTIONS(5546), - [anon_sym_extern] = ACTIONS(5546), - [anon_sym_alias] = ACTIONS(5546), - [anon_sym_global] = ACTIONS(5546), - [anon_sym_unsafe] = ACTIONS(5546), - [anon_sym_static] = ACTIONS(5546), - [anon_sym_LBRACK] = ACTIONS(5548), - [anon_sym_LPAREN] = ACTIONS(5548), - [anon_sym_ref] = ACTIONS(5546), - [anon_sym_delegate] = ACTIONS(5546), - [anon_sym_public] = ACTIONS(5546), - [anon_sym_private] = ACTIONS(5546), - [anon_sym_readonly] = ACTIONS(5546), - [anon_sym_abstract] = ACTIONS(5546), - [anon_sym_async] = ACTIONS(5546), - [anon_sym_const] = ACTIONS(5546), - [anon_sym_file] = ACTIONS(5546), - [anon_sym_fixed] = ACTIONS(5546), - [anon_sym_internal] = ACTIONS(5546), - [anon_sym_new] = ACTIONS(5546), - [anon_sym_override] = ACTIONS(5546), - [anon_sym_partial] = ACTIONS(5546), - [anon_sym_protected] = ACTIONS(5546), - [anon_sym_required] = ACTIONS(5546), - [anon_sym_sealed] = ACTIONS(5546), - [anon_sym_virtual] = ACTIONS(5546), - [anon_sym_volatile] = ACTIONS(5546), - [anon_sym_where] = ACTIONS(5546), - [anon_sym_notnull] = ACTIONS(5546), - [anon_sym_unmanaged] = ACTIONS(5546), - [anon_sym_scoped] = ACTIONS(5546), - [anon_sym_var] = ACTIONS(5546), - [sym_predefined_type] = ACTIONS(5546), - [anon_sym_yield] = ACTIONS(5546), - [anon_sym_when] = ACTIONS(5546), - [anon_sym_from] = ACTIONS(5546), - [anon_sym_into] = ACTIONS(5546), - [anon_sym_join] = ACTIONS(5546), - [anon_sym_on] = ACTIONS(5546), - [anon_sym_equals] = ACTIONS(5546), - [anon_sym_let] = ACTIONS(5546), - [anon_sym_orderby] = ACTIONS(5546), - [anon_sym_ascending] = ACTIONS(5546), - [anon_sym_descending] = ACTIONS(5546), - [anon_sym_group] = ACTIONS(5546), - [anon_sym_by] = ACTIONS(5546), - [anon_sym_select] = ACTIONS(5546), - [sym_grit_metavariable] = ACTIONS(5548), - [aux_sym_preproc_if_token1] = ACTIONS(5548), + [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), @@ -647381,24 +639023,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5123] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7311), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5123), [sym_preproc_endregion] = STATE(5123), [sym_preproc_line] = STATE(5123), @@ -647408,37 +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), - [aux_sym_type_argument_list_repeat1] = STATE(7309), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5885), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5887), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7410), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5895), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(5897), - [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), + [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), @@ -647451,7 +639092,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5124] = { - [sym_block] = STATE(2148), + [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), @@ -647461,54 +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(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(5942), - [anon_sym_ref] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(7412), - [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(5942), + [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), @@ -647521,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), @@ -647530,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(5821), - [anon_sym_extern] = ACTIONS(5821), - [anon_sym_alias] = ACTIONS(5821), - [anon_sym_global] = ACTIONS(5821), - [anon_sym_unsafe] = ACTIONS(5821), - [anon_sym_static] = ACTIONS(5821), - [anon_sym_LBRACK] = ACTIONS(5823), - [anon_sym_LPAREN] = ACTIONS(5823), - [anon_sym_ref] = ACTIONS(5821), - [anon_sym_delegate] = ACTIONS(5821), - [anon_sym_public] = ACTIONS(5821), - [anon_sym_private] = ACTIONS(5821), - [anon_sym_readonly] = ACTIONS(5821), - [anon_sym_abstract] = ACTIONS(5821), - [anon_sym_async] = ACTIONS(5821), - [anon_sym_const] = ACTIONS(5821), - [anon_sym_file] = ACTIONS(5821), - [anon_sym_fixed] = ACTIONS(5821), - [anon_sym_internal] = ACTIONS(5821), - [anon_sym_new] = ACTIONS(5821), - [anon_sym_override] = ACTIONS(5821), - [anon_sym_partial] = ACTIONS(5821), - [anon_sym_protected] = ACTIONS(5821), - [anon_sym_required] = ACTIONS(5821), - [anon_sym_sealed] = ACTIONS(5821), - [anon_sym_virtual] = ACTIONS(5821), - [anon_sym_volatile] = ACTIONS(5821), - [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(5823), - [aux_sym_preproc_if_token1] = ACTIONS(5823), + [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), @@ -647591,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), @@ -647600,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), - [sym__identifier_token] = ACTIONS(5857), - [anon_sym_extern] = ACTIONS(5857), - [anon_sym_alias] = ACTIONS(5857), - [anon_sym_global] = ACTIONS(5857), - [anon_sym_unsafe] = ACTIONS(5857), - [anon_sym_static] = ACTIONS(5857), - [anon_sym_LBRACK] = ACTIONS(5859), - [anon_sym_LPAREN] = ACTIONS(5859), - [anon_sym_ref] = ACTIONS(5857), - [anon_sym_delegate] = ACTIONS(5857), - [anon_sym_public] = ACTIONS(5857), - [anon_sym_private] = ACTIONS(5857), - [anon_sym_readonly] = ACTIONS(5857), - [anon_sym_abstract] = ACTIONS(5857), - [anon_sym_async] = ACTIONS(5857), - [anon_sym_const] = ACTIONS(5857), - [anon_sym_file] = ACTIONS(5857), - [anon_sym_fixed] = ACTIONS(5857), - [anon_sym_internal] = ACTIONS(5857), - [anon_sym_new] = ACTIONS(5857), - [anon_sym_override] = ACTIONS(5857), - [anon_sym_partial] = ACTIONS(5857), - [anon_sym_protected] = ACTIONS(5857), - [anon_sym_required] = ACTIONS(5857), - [anon_sym_sealed] = ACTIONS(5857), - [anon_sym_virtual] = ACTIONS(5857), - [anon_sym_volatile] = ACTIONS(5857), - [anon_sym_where] = ACTIONS(5857), - [anon_sym_notnull] = ACTIONS(5857), - [anon_sym_unmanaged] = ACTIONS(5857), - [anon_sym_scoped] = ACTIONS(5857), - [anon_sym_var] = ACTIONS(5857), - [sym_predefined_type] = ACTIONS(5857), - [anon_sym_yield] = ACTIONS(5857), - [anon_sym_when] = 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_ascending] = ACTIONS(5857), - [anon_sym_descending] = ACTIONS(5857), - [anon_sym_group] = ACTIONS(5857), - [anon_sym_by] = ACTIONS(5857), - [anon_sym_select] = ACTIONS(5857), - [sym_grit_metavariable] = ACTIONS(5859), - [aux_sym_preproc_if_token1] = ACTIONS(5859), + [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), @@ -647670,55 +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), - [sym__identifier_token] = ACTIONS(5926), - [anon_sym_extern] = ACTIONS(5926), - [anon_sym_alias] = ACTIONS(5926), - [anon_sym_global] = ACTIONS(5926), - [anon_sym_unsafe] = ACTIONS(5926), - [anon_sym_static] = ACTIONS(5926), - [anon_sym_LBRACK] = ACTIONS(5928), - [anon_sym_LPAREN] = ACTIONS(5928), - [anon_sym_ref] = ACTIONS(5926), - [anon_sym_delegate] = ACTIONS(5926), - [anon_sym_public] = ACTIONS(5926), - [anon_sym_private] = ACTIONS(5926), - [anon_sym_readonly] = ACTIONS(5926), - [anon_sym_abstract] = ACTIONS(5926), - [anon_sym_async] = ACTIONS(5926), - [anon_sym_const] = ACTIONS(5926), - [anon_sym_file] = ACTIONS(5926), - [anon_sym_fixed] = ACTIONS(5926), - [anon_sym_internal] = ACTIONS(5926), - [anon_sym_new] = ACTIONS(5926), - [anon_sym_override] = ACTIONS(5926), - [anon_sym_partial] = ACTIONS(5926), - [anon_sym_protected] = ACTIONS(5926), - [anon_sym_required] = ACTIONS(5926), - [anon_sym_sealed] = ACTIONS(5926), - [anon_sym_virtual] = ACTIONS(5926), - [anon_sym_volatile] = ACTIONS(5926), - [anon_sym_where] = ACTIONS(5926), - [anon_sym_notnull] = ACTIONS(5926), - [anon_sym_unmanaged] = ACTIONS(5926), - [anon_sym_scoped] = ACTIONS(5926), - [anon_sym_var] = ACTIONS(5926), - [sym_predefined_type] = ACTIONS(5926), - [anon_sym_yield] = ACTIONS(5926), - [anon_sym_when] = ACTIONS(5926), - [anon_sym_from] = ACTIONS(5926), - [anon_sym_into] = ACTIONS(5926), - [anon_sym_join] = ACTIONS(5926), - [anon_sym_on] = ACTIONS(5926), - [anon_sym_equals] = ACTIONS(5926), - [anon_sym_let] = ACTIONS(5926), - [anon_sym_orderby] = ACTIONS(5926), - [anon_sym_ascending] = ACTIONS(5926), - [anon_sym_descending] = ACTIONS(5926), - [anon_sym_group] = ACTIONS(5926), - [anon_sym_by] = ACTIONS(5926), - [anon_sym_select] = ACTIONS(5926), - [sym_grit_metavariable] = ACTIONS(5928), - [aux_sym_preproc_if_token1] = ACTIONS(5928), + [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), @@ -647731,24 +639368,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5128] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7174), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5128), [sym_preproc_endregion] = STATE(5128), [sym_preproc_line] = STATE(5128), @@ -647758,37 +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), - [aux_sym_type_argument_list_repeat1] = STATE(7176), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(5885), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5887), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(7414), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5895), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(5897), - [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), + [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), @@ -647801,25 +639437,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5129] = { - [sym_argument_list] = STATE(3400), - [sym__name] = STATE(5081), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3281), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(5027), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), + [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), @@ -647829,36 +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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LBRACK] = ACTIONS(7268), - [anon_sym_LPAREN] = ACTIONS(7270), - [anon_sym_ref] = ACTIONS(4576), - [anon_sym_LBRACE] = ACTIONS(7272), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7416), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -647871,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), @@ -647880,68 +639530,66 @@ 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(7418), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7420), - [anon_sym_DASH_EQ] = ACTIONS(7420), - [anon_sym_STAR_EQ] = ACTIONS(7420), - [anon_sym_SLASH_EQ] = ACTIONS(7420), - [anon_sym_PERCENT_EQ] = ACTIONS(7420), - [anon_sym_AMP_EQ] = ACTIONS(7420), - [anon_sym_CARET_EQ] = ACTIONS(7420), - [anon_sym_PIPE_EQ] = ACTIONS(7420), - [anon_sym_LT_LT_EQ] = ACTIONS(7420), - [anon_sym_GT_GT_EQ] = ACTIONS(7420), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7420), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7420), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - [sym_interpolation_close_brace] = ACTIONS(5752), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), }, [5131] = { - [sym_initializer_expression] = STATE(5326), + [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), @@ -647951,53 +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), - [anon_sym_LBRACK] = ACTIONS(5773), - [anon_sym_COMMA] = ACTIONS(5773), - [anon_sym_LPAREN] = ACTIONS(5773), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(5775), - [anon_sym_GT] = ACTIONS(5775), - [anon_sym_where] = ACTIONS(5773), - [anon_sym_QMARK] = ACTIONS(5775), - [anon_sym_BANG] = ACTIONS(5775), - [anon_sym_PLUS_PLUS] = ACTIONS(5773), - [anon_sym_DASH_DASH] = ACTIONS(5773), - [anon_sym_PLUS] = ACTIONS(5775), - [anon_sym_DASH] = ACTIONS(5775), - [anon_sym_STAR] = ACTIONS(5773), - [anon_sym_SLASH] = ACTIONS(5775), - [anon_sym_PERCENT] = ACTIONS(5773), - [anon_sym_CARET] = ACTIONS(5773), - [anon_sym_PIPE] = ACTIONS(5775), - [anon_sym_AMP] = ACTIONS(5775), - [anon_sym_LT_LT] = ACTIONS(5773), - [anon_sym_GT_GT] = ACTIONS(5775), - [anon_sym_GT_GT_GT] = ACTIONS(5773), - [anon_sym_EQ_EQ] = ACTIONS(5773), - [anon_sym_BANG_EQ] = ACTIONS(5773), - [anon_sym_GT_EQ] = ACTIONS(5773), - [anon_sym_LT_EQ] = ACTIONS(5773), - [anon_sym_DOT] = ACTIONS(5775), - [anon_sym_switch] = ACTIONS(5773), - [anon_sym_DOT_DOT] = ACTIONS(5773), - [anon_sym_and] = ACTIONS(5773), - [anon_sym_or] = ACTIONS(5775), - [anon_sym_AMP_AMP] = ACTIONS(5773), - [anon_sym_PIPE_PIPE] = ACTIONS(5773), - [sym_op_coalescing] = ACTIONS(5773), - [anon_sym_from] = ACTIONS(5773), - [anon_sym_into] = ACTIONS(5773), - [anon_sym_join] = ACTIONS(5773), - [anon_sym_let] = ACTIONS(5773), - [anon_sym_orderby] = ACTIONS(5773), - [anon_sym_ascending] = ACTIONS(5773), - [anon_sym_descending] = ACTIONS(5773), - [anon_sym_group] = ACTIONS(5773), - [anon_sym_select] = ACTIONS(5773), - [anon_sym_as] = ACTIONS(5775), - [anon_sym_is] = ACTIONS(5773), - [anon_sym_DASH_GT] = ACTIONS(5773), - [anon_sym_with] = ACTIONS(5773), + [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), @@ -648010,6 +639644,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5132] = { + [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), @@ -648019,54 +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(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(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), @@ -648079,23 +639713,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5133] = { - [sym__name] = STATE(6834), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_implicit_type] = STATE(7754), - [sym_array_type] = STATE(7221), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(7212), - [sym_pointer_type] = STATE(7212), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(7212), - [sym_function_pointer_parameter] = STATE(8141), - [sym__ref_base_type] = STATE(8137), - [sym_tuple_type] = STATE(6987), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -648105,37 +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), - [aux_sym_function_pointer_type_repeat1] = STATE(5133), - [sym__identifier_token] = ACTIONS(7422), - [anon_sym_alias] = ACTIONS(7425), - [anon_sym_global] = ACTIONS(7425), - [anon_sym_LPAREN] = ACTIONS(7428), - [anon_sym_ref] = ACTIONS(7431), - [anon_sym_delegate] = ACTIONS(7434), - [anon_sym_file] = ACTIONS(7425), - [anon_sym_in] = ACTIONS(7431), - [anon_sym_out] = ACTIONS(7431), - [anon_sym_where] = ACTIONS(7425), - [anon_sym_notnull] = ACTIONS(7425), - [anon_sym_unmanaged] = ACTIONS(7425), - [anon_sym_scoped] = ACTIONS(7425), - [anon_sym_var] = ACTIONS(7437), - [sym_predefined_type] = ACTIONS(7440), - [anon_sym_yield] = ACTIONS(7425), - [anon_sym_when] = ACTIONS(7425), - [anon_sym_from] = ACTIONS(7425), - [anon_sym_into] = ACTIONS(7425), - [anon_sym_join] = ACTIONS(7425), - [anon_sym_on] = ACTIONS(7425), - [anon_sym_equals] = ACTIONS(7425), - [anon_sym_let] = ACTIONS(7425), - [anon_sym_orderby] = ACTIONS(7425), - [anon_sym_ascending] = ACTIONS(7425), - [anon_sym_descending] = ACTIONS(7425), - [anon_sym_group] = ACTIONS(7425), - [anon_sym_by] = ACTIONS(7425), - [anon_sym_select] = ACTIONS(7425), - [sym_grit_metavariable] = ACTIONS(7443), + [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), @@ -648157,54 +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(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(5942), + [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), @@ -648217,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), @@ -648226,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(3702), - [anon_sym_alias] = ACTIONS(3702), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_global] = ACTIONS(3702), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3700), - [anon_sym_GT] = ACTIONS(3700), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3702), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_notnull] = ACTIONS(3702), - [anon_sym_unmanaged] = ACTIONS(3702), - [anon_sym_operator] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_this] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_scoped] = ACTIONS(3702), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3702), - [anon_sym_when] = ACTIONS(3702), - [sym_discard] = ACTIONS(3702), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3702), - [anon_sym_into] = ACTIONS(3702), - [anon_sym_join] = ACTIONS(3702), - [anon_sym_on] = ACTIONS(3702), - [anon_sym_equals] = ACTIONS(3702), - [anon_sym_let] = ACTIONS(3702), - [anon_sym_orderby] = ACTIONS(3702), - [anon_sym_ascending] = ACTIONS(3702), - [anon_sym_descending] = ACTIONS(3702), - [anon_sym_group] = ACTIONS(3702), - [anon_sym_by] = ACTIONS(3702), - [anon_sym_select] = ACTIONS(3702), - [anon_sym_DASH_GT] = ACTIONS(3700), - [sym_grit_metavariable] = ACTIONS(3700), + [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), @@ -648286,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), @@ -648295,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), - [anon_sym_EQ] = ACTIONS(7446), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7448), - [anon_sym_DASH_EQ] = ACTIONS(7448), - [anon_sym_STAR_EQ] = ACTIONS(7448), - [anon_sym_SLASH_EQ] = ACTIONS(7448), - [anon_sym_PERCENT_EQ] = ACTIONS(7448), - [anon_sym_AMP_EQ] = ACTIONS(7448), - [anon_sym_CARET_EQ] = ACTIONS(7448), - [anon_sym_PIPE_EQ] = ACTIONS(7448), - [anon_sym_LT_LT_EQ] = ACTIONS(7448), - [anon_sym_GT_GT_EQ] = ACTIONS(7448), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7448), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7448), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_by] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -648355,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), @@ -648364,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(7188), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(7450), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7190), - [anon_sym_DASH_EQ] = ACTIONS(7190), - [anon_sym_STAR_EQ] = ACTIONS(7190), - [anon_sym_SLASH_EQ] = ACTIONS(7190), - [anon_sym_PERCENT_EQ] = ACTIONS(7190), - [anon_sym_AMP_EQ] = ACTIONS(7190), - [anon_sym_CARET_EQ] = ACTIONS(7190), - [anon_sym_PIPE_EQ] = ACTIONS(7190), - [anon_sym_LT_LT_EQ] = ACTIONS(7190), - [anon_sym_GT_GT_EQ] = ACTIONS(7190), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7190), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7190), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -648433,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(7188), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(7311), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7190), - [anon_sym_DASH_EQ] = ACTIONS(7190), - [anon_sym_STAR_EQ] = ACTIONS(7190), - [anon_sym_SLASH_EQ] = ACTIONS(7190), - [anon_sym_PERCENT_EQ] = ACTIONS(7190), - [anon_sym_AMP_EQ] = ACTIONS(7190), - [anon_sym_CARET_EQ] = ACTIONS(7190), - [anon_sym_PIPE_EQ] = ACTIONS(7190), - [anon_sym_LT_LT_EQ] = ACTIONS(7190), - [anon_sym_GT_GT_EQ] = ACTIONS(7190), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7190), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7190), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -648493,7 +640127,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5139] = { - [sym_initializer_expression] = STATE(5353), + [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), @@ -648503,53 +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_LBRACK] = ACTIONS(5970), - [anon_sym_COMMA] = ACTIONS(5974), - [anon_sym_LPAREN] = ACTIONS(5974), - [anon_sym_LBRACE] = ACTIONS(7452), - [anon_sym_LT] = ACTIONS(5980), - [anon_sym_GT] = ACTIONS(5980), - [anon_sym_where] = ACTIONS(5974), - [anon_sym_QMARK] = ACTIONS(7455), - [anon_sym_BANG] = ACTIONS(5980), - [anon_sym_PLUS_PLUS] = ACTIONS(5974), - [anon_sym_DASH_DASH] = ACTIONS(5974), - [anon_sym_PLUS] = ACTIONS(5980), - [anon_sym_DASH] = ACTIONS(5980), - [anon_sym_STAR] = ACTIONS(5974), - [anon_sym_SLASH] = ACTIONS(5980), - [anon_sym_PERCENT] = ACTIONS(5974), - [anon_sym_CARET] = ACTIONS(5974), - [anon_sym_PIPE] = ACTIONS(5980), - [anon_sym_AMP] = ACTIONS(5980), - [anon_sym_LT_LT] = ACTIONS(5974), - [anon_sym_GT_GT] = ACTIONS(5980), - [anon_sym_GT_GT_GT] = ACTIONS(5974), - [anon_sym_EQ_EQ] = ACTIONS(5974), - [anon_sym_BANG_EQ] = ACTIONS(5974), - [anon_sym_GT_EQ] = ACTIONS(5974), - [anon_sym_LT_EQ] = ACTIONS(5974), - [anon_sym_DOT] = ACTIONS(5980), - [anon_sym_switch] = ACTIONS(5974), - [anon_sym_DOT_DOT] = ACTIONS(5974), - [anon_sym_and] = ACTIONS(5974), - [anon_sym_or] = ACTIONS(5980), - [anon_sym_AMP_AMP] = ACTIONS(5974), - [anon_sym_PIPE_PIPE] = ACTIONS(5974), - [sym_op_coalescing] = ACTIONS(5974), - [anon_sym_from] = ACTIONS(5974), - [anon_sym_into] = ACTIONS(5974), - [anon_sym_join] = ACTIONS(5974), - [anon_sym_let] = ACTIONS(5974), - [anon_sym_orderby] = ACTIONS(5974), - [anon_sym_ascending] = ACTIONS(5974), - [anon_sym_descending] = ACTIONS(5974), - [anon_sym_group] = ACTIONS(5974), - [anon_sym_select] = ACTIONS(5974), - [anon_sym_as] = ACTIONS(5980), - [anon_sym_is] = ACTIONS(5974), - [anon_sym_DASH_GT] = ACTIONS(5974), - [anon_sym_with] = ACTIONS(5974), + [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), @@ -648562,7 +640196,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5140] = { - [sym_initializer_expression] = STATE(5348), + [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), @@ -648572,53 +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(5760), - [anon_sym_COMMA] = ACTIONS(5760), - [anon_sym_LPAREN] = ACTIONS(5760), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(5762), - [anon_sym_GT] = ACTIONS(5762), - [anon_sym_where] = ACTIONS(5760), - [anon_sym_QMARK] = ACTIONS(5762), - [anon_sym_BANG] = ACTIONS(5762), - [anon_sym_PLUS_PLUS] = ACTIONS(5760), - [anon_sym_DASH_DASH] = ACTIONS(5760), - [anon_sym_PLUS] = ACTIONS(5762), - [anon_sym_DASH] = ACTIONS(5762), - [anon_sym_STAR] = ACTIONS(5760), - [anon_sym_SLASH] = ACTIONS(5762), - [anon_sym_PERCENT] = ACTIONS(5760), - [anon_sym_CARET] = ACTIONS(5760), - [anon_sym_PIPE] = ACTIONS(5762), - [anon_sym_AMP] = ACTIONS(5762), - [anon_sym_LT_LT] = ACTIONS(5760), - [anon_sym_GT_GT] = ACTIONS(5762), - [anon_sym_GT_GT_GT] = ACTIONS(5760), - [anon_sym_EQ_EQ] = ACTIONS(5760), - [anon_sym_BANG_EQ] = ACTIONS(5760), - [anon_sym_GT_EQ] = ACTIONS(5760), - [anon_sym_LT_EQ] = ACTIONS(5760), - [anon_sym_DOT] = ACTIONS(5762), - [anon_sym_switch] = ACTIONS(5760), - [anon_sym_DOT_DOT] = ACTIONS(5760), - [anon_sym_and] = ACTIONS(5760), - [anon_sym_or] = ACTIONS(5762), - [anon_sym_AMP_AMP] = ACTIONS(5760), - [anon_sym_PIPE_PIPE] = ACTIONS(5760), - [sym_op_coalescing] = ACTIONS(5760), - [anon_sym_from] = ACTIONS(5760), - [anon_sym_into] = ACTIONS(5760), - [anon_sym_join] = ACTIONS(5760), - [anon_sym_let] = ACTIONS(5760), - [anon_sym_orderby] = ACTIONS(5760), - [anon_sym_ascending] = ACTIONS(5760), - [anon_sym_descending] = ACTIONS(5760), - [anon_sym_group] = ACTIONS(5760), - [anon_sym_select] = ACTIONS(5760), - [anon_sym_as] = ACTIONS(5762), - [anon_sym_is] = ACTIONS(5760), - [anon_sym_DASH_GT] = ACTIONS(5760), - [anon_sym_with] = ACTIONS(5760), + [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), @@ -648631,6 +640265,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5141] = { + [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), @@ -648640,54 +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(6531), - [anon_sym_extern] = ACTIONS(6531), - [anon_sym_alias] = ACTIONS(6531), - [anon_sym_global] = ACTIONS(6531), - [anon_sym_unsafe] = ACTIONS(6531), - [anon_sym_static] = ACTIONS(6531), - [anon_sym_public] = ACTIONS(6531), - [anon_sym_private] = ACTIONS(6531), - [anon_sym_readonly] = ACTIONS(6531), - [anon_sym_abstract] = ACTIONS(6531), - [anon_sym_async] = ACTIONS(6531), - [anon_sym_const] = ACTIONS(6531), - [anon_sym_file] = ACTIONS(6531), - [anon_sym_fixed] = ACTIONS(6531), - [anon_sym_internal] = ACTIONS(6531), - [anon_sym_new] = ACTIONS(6531), - [anon_sym_override] = ACTIONS(6531), - [anon_sym_partial] = ACTIONS(6531), - [anon_sym_protected] = ACTIONS(6531), - [anon_sym_required] = ACTIONS(6531), - [anon_sym_sealed] = ACTIONS(6531), - [anon_sym_virtual] = ACTIONS(6531), - [anon_sym_volatile] = ACTIONS(6531), - [anon_sym_where] = ACTIONS(6531), - [anon_sym_notnull] = ACTIONS(6531), - [anon_sym_unmanaged] = ACTIONS(6531), - [sym_accessor_get] = ACTIONS(6531), - [sym_accessor_set] = ACTIONS(6531), - [sym_accessor_add] = ACTIONS(6531), - [sym_accessor_remove] = ACTIONS(6531), - [sym_accessor_init] = ACTIONS(6531), - [anon_sym_scoped] = ACTIONS(6531), - [anon_sym_var] = ACTIONS(6531), - [anon_sym_yield] = ACTIONS(6531), - [anon_sym_when] = ACTIONS(6531), - [anon_sym_from] = ACTIONS(6531), - [anon_sym_into] = ACTIONS(6531), - [anon_sym_join] = ACTIONS(6531), - [anon_sym_on] = ACTIONS(6531), - [anon_sym_equals] = ACTIONS(6531), - [anon_sym_let] = ACTIONS(6531), - [anon_sym_orderby] = ACTIONS(6531), - [anon_sym_ascending] = ACTIONS(6531), - [anon_sym_descending] = ACTIONS(6531), - [anon_sym_group] = ACTIONS(6531), - [anon_sym_by] = ACTIONS(6531), - [anon_sym_select] = ACTIONS(6531), - [sym_grit_metavariable] = ACTIONS(6533), + [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), @@ -648700,7 +640334,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5142] = { - [sym_initializer_expression] = STATE(5357), [sym_preproc_region] = STATE(5142), [sym_preproc_endregion] = STATE(5142), [sym_preproc_line] = STATE(5142), @@ -648710,53 +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_LBRACK] = ACTIONS(5766), - [anon_sym_COMMA] = ACTIONS(5764), - [anon_sym_LPAREN] = ACTIONS(5764), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(5769), - [anon_sym_GT] = ACTIONS(5769), - [anon_sym_where] = ACTIONS(5764), - [anon_sym_QMARK] = ACTIONS(5769), - [anon_sym_BANG] = ACTIONS(5769), - [anon_sym_PLUS_PLUS] = ACTIONS(5764), - [anon_sym_DASH_DASH] = ACTIONS(5764), - [anon_sym_PLUS] = ACTIONS(5769), - [anon_sym_DASH] = ACTIONS(5769), - [anon_sym_STAR] = ACTIONS(5764), - [anon_sym_SLASH] = ACTIONS(5769), - [anon_sym_PERCENT] = ACTIONS(5764), - [anon_sym_CARET] = ACTIONS(5764), - [anon_sym_PIPE] = ACTIONS(5769), - [anon_sym_AMP] = ACTIONS(5769), - [anon_sym_LT_LT] = ACTIONS(5764), - [anon_sym_GT_GT] = ACTIONS(5769), - [anon_sym_GT_GT_GT] = ACTIONS(5764), - [anon_sym_EQ_EQ] = ACTIONS(5764), - [anon_sym_BANG_EQ] = ACTIONS(5764), - [anon_sym_GT_EQ] = ACTIONS(5764), - [anon_sym_LT_EQ] = ACTIONS(5764), - [anon_sym_DOT] = ACTIONS(5769), - [anon_sym_switch] = ACTIONS(5764), - [anon_sym_DOT_DOT] = ACTIONS(5764), - [anon_sym_and] = ACTIONS(5764), - [anon_sym_or] = ACTIONS(5769), - [anon_sym_AMP_AMP] = ACTIONS(5764), - [anon_sym_PIPE_PIPE] = ACTIONS(5764), - [sym_op_coalescing] = ACTIONS(5764), - [anon_sym_from] = ACTIONS(5764), - [anon_sym_into] = ACTIONS(5764), - [anon_sym_join] = ACTIONS(5764), - [anon_sym_let] = ACTIONS(5764), - [anon_sym_orderby] = ACTIONS(5764), - [anon_sym_ascending] = ACTIONS(5764), - [anon_sym_descending] = ACTIONS(5764), - [anon_sym_group] = ACTIONS(5764), - [anon_sym_select] = ACTIONS(5764), - [anon_sym_as] = ACTIONS(5769), - [anon_sym_is] = ACTIONS(5764), - [anon_sym_DASH_GT] = ACTIONS(5764), - [anon_sym_with] = ACTIONS(5764), + [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), @@ -648769,25 +640403,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5143] = { - [sym__name] = STATE(6718), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5629), - [sym_implicit_type] = STATE(7432), - [sym_array_type] = STATE(6936), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(6941), - [sym_pointer_type] = STATE(6941), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(6941), - [sym_ref_type] = STATE(7554), - [sym__ref_base_type] = STATE(7757), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6904), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -648797,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(7459), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_readonly] = ACTIONS(7461), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(6988), - [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), + [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), @@ -648838,6 +640472,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5144] = { + [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), @@ -648847,54 +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), - [anon_sym_EQ] = ACTIONS(7463), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7465), - [anon_sym_DASH_EQ] = ACTIONS(7465), - [anon_sym_STAR_EQ] = ACTIONS(7465), - [anon_sym_SLASH_EQ] = ACTIONS(7465), - [anon_sym_PERCENT_EQ] = ACTIONS(7465), - [anon_sym_AMP_EQ] = ACTIONS(7465), - [anon_sym_CARET_EQ] = ACTIONS(7465), - [anon_sym_PIPE_EQ] = ACTIONS(7465), - [anon_sym_LT_LT_EQ] = ACTIONS(7465), - [anon_sym_GT_GT_EQ] = ACTIONS(7465), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7465), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7465), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_equals] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -648907,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), @@ -648916,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(7188), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(7467), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7190), - [anon_sym_DASH_EQ] = ACTIONS(7190), - [anon_sym_STAR_EQ] = ACTIONS(7190), - [anon_sym_SLASH_EQ] = ACTIONS(7190), - [anon_sym_PERCENT_EQ] = ACTIONS(7190), - [anon_sym_AMP_EQ] = ACTIONS(7190), - [anon_sym_CARET_EQ] = ACTIONS(7190), - [anon_sym_PIPE_EQ] = ACTIONS(7190), - [anon_sym_LT_LT_EQ] = ACTIONS(7190), - [anon_sym_GT_GT_EQ] = ACTIONS(7190), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7190), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7190), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -648976,24 +640610,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5146] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5629), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5146), [sym_preproc_endregion] = STATE(5146), [sym_preproc_line] = STATE(5146), @@ -649003,36 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_struct] = ACTIONS(4264), - [anon_sym_delegate] = ACTIONS(3709), - [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(4080), + [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), @@ -649045,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), @@ -649054,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(7188), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(7469), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7190), - [anon_sym_DASH_EQ] = ACTIONS(7190), - [anon_sym_STAR_EQ] = ACTIONS(7190), - [anon_sym_SLASH_EQ] = ACTIONS(7190), - [anon_sym_PERCENT_EQ] = ACTIONS(7190), - [anon_sym_AMP_EQ] = ACTIONS(7190), - [anon_sym_CARET_EQ] = ACTIONS(7190), - [anon_sym_PIPE_EQ] = ACTIONS(7190), - [anon_sym_LT_LT_EQ] = ACTIONS(7190), - [anon_sym_GT_GT_EQ] = ACTIONS(7190), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7190), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7190), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -649123,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(7471), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7473), - [anon_sym_DASH_EQ] = ACTIONS(7473), - [anon_sym_STAR_EQ] = ACTIONS(7473), - [anon_sym_SLASH_EQ] = ACTIONS(7473), - [anon_sym_PERCENT_EQ] = ACTIONS(7473), - [anon_sym_AMP_EQ] = ACTIONS(7473), - [anon_sym_CARET_EQ] = ACTIONS(7473), - [anon_sym_PIPE_EQ] = ACTIONS(7473), - [anon_sym_LT_LT_EQ] = ACTIONS(7473), - [anon_sym_GT_GT_EQ] = ACTIONS(7473), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7473), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7473), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_on] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -649183,24 +640817,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5149] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5629), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5149), [sym_preproc_endregion] = STATE(5149), [sym_preproc_line] = STATE(5149), @@ -649210,36 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_struct] = ACTIONS(7475), - [anon_sym_delegate] = ACTIONS(3709), - [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(4080), + [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), @@ -649261,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_EQ] = ACTIONS(7477), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_EQ_GT] = ACTIONS(5752), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7479), - [anon_sym_DASH_EQ] = ACTIONS(7479), - [anon_sym_STAR_EQ] = ACTIONS(7479), - [anon_sym_SLASH_EQ] = ACTIONS(7479), - [anon_sym_PERCENT_EQ] = ACTIONS(7479), - [anon_sym_AMP_EQ] = ACTIONS(7479), - [anon_sym_CARET_EQ] = ACTIONS(7479), - [anon_sym_PIPE_EQ] = ACTIONS(7479), - [anon_sym_LT_LT_EQ] = ACTIONS(7479), - [anon_sym_GT_GT_EQ] = ACTIONS(7479), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7479), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7479), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -649321,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), @@ -649330,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_EQ] = ACTIONS(7481), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_in] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7483), - [anon_sym_DASH_EQ] = ACTIONS(7483), - [anon_sym_STAR_EQ] = ACTIONS(7483), - [anon_sym_SLASH_EQ] = ACTIONS(7483), - [anon_sym_PERCENT_EQ] = ACTIONS(7483), - [anon_sym_AMP_EQ] = ACTIONS(7483), - [anon_sym_CARET_EQ] = ACTIONS(7483), - [anon_sym_PIPE_EQ] = ACTIONS(7483), - [anon_sym_LT_LT_EQ] = ACTIONS(7483), - [anon_sym_GT_GT_EQ] = ACTIONS(7483), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7483), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7483), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -649399,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), - [anon_sym_EQ] = ACTIONS(7188), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(7485), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7190), - [anon_sym_DASH_EQ] = ACTIONS(7190), - [anon_sym_STAR_EQ] = ACTIONS(7190), - [anon_sym_SLASH_EQ] = ACTIONS(7190), - [anon_sym_PERCENT_EQ] = ACTIONS(7190), - [anon_sym_AMP_EQ] = ACTIONS(7190), - [anon_sym_CARET_EQ] = ACTIONS(7190), - [anon_sym_PIPE_EQ] = ACTIONS(7190), - [anon_sym_LT_LT_EQ] = ACTIONS(7190), - [anon_sym_GT_GT_EQ] = ACTIONS(7190), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7190), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7190), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -649460,23 +641094,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5153] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5629), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -649490,10 +641124,10 @@ 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(3707), - [anon_sym_struct] = ACTIONS(2995), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_readonly] = ACTIONS(2997), + [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), @@ -649537,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(7188), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_RPAREN] = ACTIONS(7487), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7190), - [anon_sym_DASH_EQ] = ACTIONS(7190), - [anon_sym_STAR_EQ] = ACTIONS(7190), - [anon_sym_SLASH_EQ] = ACTIONS(7190), - [anon_sym_PERCENT_EQ] = ACTIONS(7190), - [anon_sym_AMP_EQ] = ACTIONS(7190), - [anon_sym_CARET_EQ] = ACTIONS(7190), - [anon_sym_PIPE_EQ] = ACTIONS(7190), - [anon_sym_LT_LT_EQ] = ACTIONS(7190), - [anon_sym_GT_GT_EQ] = ACTIONS(7190), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7190), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7190), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -649597,25 +641231,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5155] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6240), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7438), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5155), [sym_preproc_endregion] = STATE(5155), [sym_preproc_line] = STATE(5155), @@ -649625,34 +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), - [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(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7286), - [anon_sym_var] = ACTIONS(5500), - [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), + [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), @@ -649665,25 +641300,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5156] = { - [sym_variable_declaration] = STATE(7786), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6219), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5156), [sym_preproc_endregion] = STATE(5156), [sym_preproc_line] = STATE(5156), @@ -649693,34 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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), + [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), @@ -649733,25 +641369,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5157] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6240), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7434), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5157), [sym_preproc_endregion] = STATE(5157), [sym_preproc_line] = STATE(5157), @@ -649761,34 +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), - [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(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7489), - [anon_sym_var] = ACTIONS(7491), - [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), + [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), @@ -649801,25 +641438,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5158] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6240), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7537), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5158), [sym_preproc_endregion] = STATE(5158), [sym_preproc_line] = STATE(5158), @@ -649829,34 +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), - [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(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7286), - [anon_sym_var] = ACTIONS(5500), - [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), + [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), @@ -649869,25 +641507,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5159] = { - [sym_variable_declaration] = STATE(7752), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6219), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -649897,34 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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), + [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), @@ -649937,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), @@ -649946,53 +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), - [anon_sym_LBRACK] = ACTIONS(5934), - [anon_sym_COMMA] = ACTIONS(5934), - [anon_sym_LPAREN] = ACTIONS(5934), - [anon_sym_LT] = ACTIONS(5936), - [anon_sym_GT] = ACTIONS(5936), - [anon_sym_where] = ACTIONS(5934), - [anon_sym_QMARK] = ACTIONS(5936), - [anon_sym_BANG] = ACTIONS(5936), - [anon_sym_PLUS_PLUS] = ACTIONS(5934), - [anon_sym_DASH_DASH] = ACTIONS(5934), - [anon_sym_PLUS] = ACTIONS(5936), - [anon_sym_DASH] = ACTIONS(5936), - [anon_sym_STAR] = ACTIONS(5934), - [anon_sym_SLASH] = ACTIONS(5936), - [anon_sym_PERCENT] = ACTIONS(5934), - [anon_sym_CARET] = ACTIONS(5934), - [anon_sym_PIPE] = ACTIONS(5936), - [anon_sym_AMP] = ACTIONS(5936), - [anon_sym_LT_LT] = ACTIONS(5934), - [anon_sym_GT_GT] = ACTIONS(5936), - [anon_sym_GT_GT_GT] = ACTIONS(5934), - [anon_sym_EQ_EQ] = ACTIONS(5934), - [anon_sym_BANG_EQ] = ACTIONS(5934), - [anon_sym_GT_EQ] = ACTIONS(5934), - [anon_sym_LT_EQ] = ACTIONS(5934), - [anon_sym_DOT] = ACTIONS(5936), - [anon_sym_switch] = ACTIONS(5934), - [anon_sym_DOT_DOT] = ACTIONS(5934), - [anon_sym_and] = ACTIONS(5934), - [anon_sym_or] = ACTIONS(5936), - [anon_sym_AMP_AMP] = ACTIONS(5934), - [anon_sym_PIPE_PIPE] = ACTIONS(5934), - [sym_op_coalescing] = ACTIONS(5934), - [anon_sym_from] = ACTIONS(5934), - [anon_sym_into] = ACTIONS(5934), - [anon_sym_join] = ACTIONS(5934), - [anon_sym_let] = ACTIONS(5934), - [anon_sym_orderby] = ACTIONS(5934), - [anon_sym_ascending] = ACTIONS(5934), - [anon_sym_descending] = ACTIONS(5934), - [anon_sym_group] = ACTIONS(5934), - [anon_sym_select] = ACTIONS(5934), - [anon_sym_as] = ACTIONS(5936), - [anon_sym_is] = ACTIONS(5934), - [anon_sym_DASH_GT] = ACTIONS(5934), - [anon_sym_with] = ACTIONS(5934), - [sym_string_literal_encoding] = ACTIONS(7493), + [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), @@ -650014,53 +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), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_COMMA] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4163), - [anon_sym_LT] = ACTIONS(6996), - [anon_sym_GT] = ACTIONS(6996), - [anon_sym_where] = ACTIONS(4163), - [anon_sym_QMARK] = ACTIONS(6996), - [anon_sym_BANG] = ACTIONS(6996), - [anon_sym_PLUS_PLUS] = ACTIONS(4163), - [anon_sym_DASH_DASH] = ACTIONS(4163), - [anon_sym_PLUS] = ACTIONS(6996), - [anon_sym_DASH] = ACTIONS(6996), - [anon_sym_STAR] = ACTIONS(4163), - [anon_sym_SLASH] = ACTIONS(6996), - [anon_sym_PERCENT] = ACTIONS(4163), - [anon_sym_CARET] = ACTIONS(4163), - [anon_sym_PIPE] = ACTIONS(6996), - [anon_sym_AMP] = ACTIONS(6996), - [anon_sym_LT_LT] = ACTIONS(4163), - [anon_sym_GT_GT] = ACTIONS(6996), - [anon_sym_GT_GT_GT] = ACTIONS(4163), - [anon_sym_EQ_EQ] = ACTIONS(4163), - [anon_sym_BANG_EQ] = ACTIONS(4163), - [anon_sym_GT_EQ] = ACTIONS(4163), - [anon_sym_LT_EQ] = ACTIONS(4163), - [anon_sym_DOT] = ACTIONS(6996), - [anon_sym_EQ_GT] = ACTIONS(3958), - [anon_sym_switch] = ACTIONS(4163), - [anon_sym_DOT_DOT] = ACTIONS(4163), - [anon_sym_and] = ACTIONS(4163), - [anon_sym_or] = ACTIONS(6996), - [anon_sym_AMP_AMP] = ACTIONS(4163), - [anon_sym_PIPE_PIPE] = ACTIONS(4163), - [sym_op_coalescing] = ACTIONS(4163), - [anon_sym_from] = ACTIONS(4163), - [anon_sym_into] = ACTIONS(4163), - [anon_sym_join] = ACTIONS(4163), - [anon_sym_let] = ACTIONS(4163), - [anon_sym_orderby] = ACTIONS(4163), - [anon_sym_ascending] = ACTIONS(4163), - [anon_sym_descending] = ACTIONS(4163), - [anon_sym_group] = ACTIONS(4163), - [anon_sym_select] = ACTIONS(4163), - [anon_sym_as] = ACTIONS(6996), - [anon_sym_is] = ACTIONS(4163), - [anon_sym_DASH_GT] = ACTIONS(4163), - [anon_sym_with] = ACTIONS(4163), + [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), @@ -650073,24 +641713,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5162] = { - [sym__name] = STATE(2471), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2445), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2433), - [sym_type] = STATE(2404), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_identifier] = STATE(2399), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(5162), [sym_preproc_endregion] = STATE(5162), [sym_preproc_line] = STATE(5162), @@ -650100,35 +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(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LPAREN] = ACTIONS(7495), - [anon_sym_ref] = ACTIONS(4452), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_readonly] = ACTIONS(7497), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_where] = ACTIONS(4432), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_scoped] = ACTIONS(7363), - [anon_sym_var] = ACTIONS(7365), - [sym_predefined_type] = ACTIONS(7367), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_when] = ACTIONS(4432), - [anon_sym_from] = ACTIONS(4432), - [anon_sym_into] = ACTIONS(4432), - [anon_sym_join] = ACTIONS(4432), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4432), - [anon_sym_orderby] = ACTIONS(4432), - [anon_sym_ascending] = ACTIONS(4432), - [anon_sym_descending] = ACTIONS(4432), - [anon_sym_group] = ACTIONS(4432), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4432), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -650141,24 +641781,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5163] = { - [sym__name] = STATE(6025), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5629), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5902), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5163), [sym_preproc_endregion] = STATE(5163), [sym_preproc_line] = STATE(5163), @@ -650168,35 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3966), - [anon_sym_delegate] = ACTIONS(3709), - [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(7499), - [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), + [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), @@ -650218,53 +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), - [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(6941), - [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(5942), + [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), @@ -650277,25 +641917,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5165] = { - [sym_variable_declaration] = STATE(7760), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6219), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5165), [sym_preproc_endregion] = STATE(5165), [sym_preproc_line] = STATE(5165), @@ -650305,34 +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(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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), + [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), @@ -650345,25 +641985,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5166] = { - [sym_variable_declaration] = STATE(8011), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6219), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -650373,34 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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), + [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), @@ -650413,24 +642053,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5167] = { - [sym__name] = STATE(6588), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5629), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6559), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5167), [sym_preproc_endregion] = STATE(5167), [sym_preproc_line] = STATE(5167), @@ -650440,35 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7501), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_readonly] = ACTIONS(7503), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7505), - [anon_sym_var] = ACTIONS(7507), - [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), + [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), @@ -650481,24 +642121,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5168] = { - [sym__name] = STATE(5909), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4924), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4842), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(5757), - [sym__reserved_identifier] = STATE(4715), [sym_preproc_region] = STATE(5168), [sym_preproc_endregion] = STATE(5168), [sym_preproc_line] = STATE(5168), @@ -650508,35 +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), - [sym__identifier_token] = ACTIONS(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(7509), - [anon_sym_ref] = ACTIONS(4428), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_readonly] = ACTIONS(7511), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7392), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -650549,24 +642189,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5169] = { - [sym__name] = STATE(5081), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3653), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(3463), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), [sym_preproc_region] = STATE(5169), [sym_preproc_endregion] = STATE(5169), [sym_preproc_line] = STATE(5169), @@ -650576,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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(7513), - [anon_sym_ref] = ACTIONS(4570), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_readonly] = ACTIONS(7515), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7371), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -650617,24 +642257,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5170] = { - [sym__name] = STATE(5487), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3653), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(3463), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(5284), - [sym__reserved_identifier] = STATE(3393), + [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), @@ -650644,35 +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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(7513), - [anon_sym_ref] = ACTIONS(4518), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_readonly] = ACTIONS(7517), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7276), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -650685,24 +642325,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5171] = { - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4687), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4699), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), [sym_preproc_region] = STATE(5171), [sym_preproc_endregion] = STATE(5171), [sym_preproc_line] = STATE(5171), @@ -650712,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(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7519), - [anon_sym_ref] = ACTIONS(4389), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_readonly] = ACTIONS(7521), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7378), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), - [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(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), @@ -650753,25 +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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6240), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7576), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5172), [sym_preproc_endregion] = STATE(5172), [sym_preproc_line] = STATE(5172), @@ -650781,34 +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(3900), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7286), - [anon_sym_var] = ACTIONS(5500), - [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), + [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), @@ -650821,25 +642461,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5173] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6240), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7542), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5173), [sym_preproc_endregion] = STATE(5173), [sym_preproc_line] = STATE(5173), @@ -650849,34 +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(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(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7286), - [anon_sym_var] = ACTIONS(5500), - [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), + [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), @@ -650889,24 +642529,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5174] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5629), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5174), [sym_preproc_endregion] = STATE(5174), [sym_preproc_line] = STATE(5174), @@ -650916,35 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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(4080), + [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), @@ -650957,24 +642597,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5175] = { - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4687), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4699), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), [sym_preproc_region] = STATE(5175), [sym_preproc_endregion] = STATE(5175), [sym_preproc_line] = STATE(5175), @@ -650984,35 +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(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7519), - [anon_sym_ref] = ACTIONS(4480), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_readonly] = ACTIONS(7523), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7341), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), - [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(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), @@ -651025,24 +642665,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5176] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5629), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5176), [sym_preproc_endregion] = STATE(5176), [sym_preproc_line] = STATE(5176), @@ -651052,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(7459), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_readonly] = ACTIONS(7461), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(6986), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(5897), - [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), + [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), @@ -651102,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), - [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(5942), - [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(5942), + [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), @@ -651170,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), - [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(5942), - [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(5942), + [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), @@ -651229,24 +642869,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5179] = { - [sym__name] = STATE(2471), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2445), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2433), - [sym_type] = STATE(2404), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_identifier] = STATE(2399), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(5179), [sym_preproc_endregion] = STATE(5179), [sym_preproc_line] = STATE(5179), @@ -651256,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(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LPAREN] = ACTIONS(7495), - [anon_sym_ref] = ACTIONS(3886), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_readonly] = ACTIONS(3119), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_where] = ACTIONS(4432), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_scoped] = ACTIONS(7525), - [anon_sym_var] = ACTIONS(7365), - [sym_predefined_type] = ACTIONS(7367), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_when] = ACTIONS(4432), - [anon_sym_from] = ACTIONS(4432), - [anon_sym_into] = ACTIONS(4432), - [anon_sym_join] = ACTIONS(4432), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4432), - [anon_sym_orderby] = ACTIONS(4432), - [anon_sym_ascending] = ACTIONS(4432), - [anon_sym_descending] = ACTIONS(4432), - [anon_sym_group] = ACTIONS(4432), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4432), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -651306,53 +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(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(7527), - [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(5942), + [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), @@ -651365,15 +643005,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5181] = { - [sym__name] = STATE(5810), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_ref_type] = STATE(2386), - [sym__scoped_base_type] = STATE(2366), - [sym_identifier] = STATE(5575), - [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(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), @@ -651383,44 +643032,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5181), [sym_preproc_define] = STATE(5181), [sym_preproc_undef] = STATE(5181), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3894), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_global] = ACTIONS(3894), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_file] = ACTIONS(3894), - [anon_sym_LT] = ACTIONS(3700), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3894), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_notnull] = ACTIONS(3894), - [anon_sym_unmanaged] = ACTIONS(3894), - [anon_sym_operator] = ACTIONS(3702), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_this] = ACTIONS(3702), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_scoped] = ACTIONS(3894), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [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), + [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_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), @@ -651433,6 +643073,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5182] = { + [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(5182), [sym_preproc_endregion] = STATE(5182), [sym_preproc_line] = STATE(5182), @@ -651442,105 +643100,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5182), [sym_preproc_define] = STATE(5182), [sym_preproc_undef] = STATE(5182), - [anon_sym_EQ] = ACTIONS(7529), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_in] = ACTIONS(5752), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7531), - [anon_sym_DASH_EQ] = ACTIONS(7531), - [anon_sym_STAR_EQ] = ACTIONS(7531), - [anon_sym_SLASH_EQ] = ACTIONS(7531), - [anon_sym_PERCENT_EQ] = ACTIONS(7531), - [anon_sym_AMP_EQ] = ACTIONS(7531), - [anon_sym_CARET_EQ] = ACTIONS(7531), - [anon_sym_PIPE_EQ] = ACTIONS(7531), - [anon_sym_LT_LT_EQ] = ACTIONS(7531), - [anon_sym_GT_GT_EQ] = ACTIONS(7531), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7531), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7531), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5183] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6394), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(5183), - [sym_preproc_endregion] = STATE(5183), - [sym_preproc_line] = STATE(5183), - [sym_preproc_pragma] = STATE(5183), - [sym_preproc_nullable] = STATE(5183), - [sym_preproc_error] = STATE(5183), - [sym_preproc_warning] = STATE(5183), - [sym_preproc_define] = STATE(5183), - [sym_preproc_undef] = STATE(5183), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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_STAR] = ACTIONS(7210), - [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), @@ -651568,25 +643140,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [5183] = { + [sym_preproc_region] = STATE(5183), + [sym_preproc_endregion] = STATE(5183), + [sym_preproc_line] = STATE(5183), + [sym_preproc_pragma] = STATE(5183), + [sym_preproc_nullable] = STATE(5183), + [sym_preproc_error] = STATE(5183), + [sym_preproc_warning] = STATE(5183), + [sym_preproc_define] = STATE(5183), + [sym_preproc_undef] = STATE(5183), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [5184] = { - [sym__name] = STATE(2784), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2445), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2433), - [sym_type] = STATE(2404), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_identifier] = STATE(2636), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(5184), [sym_preproc_endregion] = STATE(5184), [sym_preproc_line] = STATE(5184), @@ -651596,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(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LPAREN] = ACTIONS(7495), - [anon_sym_ref] = ACTIONS(3928), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_readonly] = ACTIONS(3133), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_where] = ACTIONS(4432), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_scoped] = ACTIONS(7533), - [anon_sym_var] = ACTIONS(7365), - [sym_predefined_type] = ACTIONS(7367), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_when] = ACTIONS(4432), - [anon_sym_from] = ACTIONS(4432), - [anon_sym_into] = ACTIONS(4432), - [anon_sym_join] = ACTIONS(4432), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4432), - [anon_sym_orderby] = ACTIONS(4432), - [anon_sym_ascending] = ACTIONS(4432), - [anon_sym_descending] = ACTIONS(4432), - [anon_sym_group] = ACTIONS(4432), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4432), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -651637,24 +643277,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5185] = { - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4045), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(4046), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), [sym_preproc_region] = STATE(5185), [sym_preproc_endregion] = STATE(5185), [sym_preproc_line] = STATE(5185), @@ -651664,35 +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), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_ref] = ACTIONS(4513), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_readonly] = ACTIONS(7537), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7260), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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(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), @@ -651705,6 +643345,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5186] = { + [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), @@ -651714,53 +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(6531), - [anon_sym_extern] = ACTIONS(6531), - [anon_sym_alias] = ACTIONS(6531), - [anon_sym_global] = ACTIONS(6531), - [anon_sym_unsafe] = ACTIONS(6531), - [anon_sym_static] = ACTIONS(6531), - [anon_sym_LPAREN] = ACTIONS(6533), - [anon_sym_ref] = ACTIONS(6531), - [anon_sym_delegate] = ACTIONS(6531), - [anon_sym_public] = ACTIONS(6531), - [anon_sym_private] = ACTIONS(6531), - [anon_sym_readonly] = ACTIONS(6531), - [anon_sym_abstract] = ACTIONS(6531), - [anon_sym_async] = ACTIONS(6531), - [anon_sym_const] = ACTIONS(6531), - [anon_sym_file] = ACTIONS(6531), - [anon_sym_fixed] = ACTIONS(6531), - [anon_sym_internal] = ACTIONS(6531), - [anon_sym_new] = ACTIONS(6531), - [anon_sym_override] = ACTIONS(6531), - [anon_sym_partial] = ACTIONS(6531), - [anon_sym_protected] = ACTIONS(6531), - [anon_sym_required] = ACTIONS(6531), - [anon_sym_sealed] = ACTIONS(6531), - [anon_sym_virtual] = ACTIONS(6531), - [anon_sym_volatile] = ACTIONS(6531), - [anon_sym_where] = ACTIONS(6531), - [anon_sym_notnull] = ACTIONS(6531), - [anon_sym_unmanaged] = ACTIONS(6531), - [anon_sym_scoped] = ACTIONS(6531), - [anon_sym_var] = ACTIONS(6531), - [sym_predefined_type] = ACTIONS(6531), - [anon_sym_yield] = ACTIONS(6531), - [anon_sym_when] = ACTIONS(6531), - [anon_sym_from] = ACTIONS(6531), - [anon_sym_into] = ACTIONS(6531), - [anon_sym_join] = ACTIONS(6531), - [anon_sym_on] = ACTIONS(6531), - [anon_sym_equals] = ACTIONS(6531), - [anon_sym_let] = ACTIONS(6531), - [anon_sym_orderby] = ACTIONS(6531), - [anon_sym_ascending] = ACTIONS(6531), - [anon_sym_descending] = ACTIONS(6531), - [anon_sym_group] = ACTIONS(6531), - [anon_sym_by] = ACTIONS(6531), - [anon_sym_select] = ACTIONS(6531), - [sym_grit_metavariable] = ACTIONS(6533), + [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), @@ -651773,24 +643413,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5187] = { - [sym__name] = STATE(5608), - [sym_alias_qualified_name] = STATE(5627), - [sym__simple_name] = STATE(5627), - [sym_qualified_name] = STATE(5627), - [sym_generic_name] = STATE(5585), - [sym_type] = STATE(5587), - [sym_implicit_type] = STATE(5637), - [sym_array_type] = STATE(5625), - [sym__array_base_type] = STATE(7380), - [sym_nullable_type] = STATE(5581), - [sym_pointer_type] = STATE(5581), - [sym__pointer_base_type] = STATE(8140), - [sym_function_pointer_type] = STATE(5581), - [sym_ref_type] = STATE(5637), - [sym_scoped_type] = STATE(5637), - [sym_tuple_type] = STATE(5609), - [sym_identifier] = STATE(5530), - [sym__reserved_identifier] = STATE(5560), [sym_preproc_region] = STATE(5187), [sym_preproc_endregion] = STATE(5187), [sym_preproc_line] = STATE(5187), @@ -651800,35 +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(4328), - [anon_sym_alias] = ACTIONS(4330), - [anon_sym_global] = ACTIONS(4330), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4332), - [anon_sym_delegate] = ACTIONS(7250), - [anon_sym_readonly] = ACTIONS(7541), - [anon_sym_file] = ACTIONS(4330), - [anon_sym_where] = ACTIONS(4330), - [anon_sym_notnull] = ACTIONS(4330), - [anon_sym_unmanaged] = ACTIONS(4330), - [anon_sym_scoped] = ACTIONS(7252), - [anon_sym_var] = ACTIONS(7254), - [sym_predefined_type] = ACTIONS(7256), - [anon_sym_yield] = ACTIONS(4330), - [anon_sym_when] = ACTIONS(4330), - [anon_sym_from] = ACTIONS(4330), - [anon_sym_into] = ACTIONS(4330), - [anon_sym_join] = ACTIONS(4330), - [anon_sym_on] = ACTIONS(4330), - [anon_sym_equals] = ACTIONS(4330), - [anon_sym_let] = ACTIONS(4330), - [anon_sym_orderby] = ACTIONS(4330), - [anon_sym_ascending] = ACTIONS(4330), - [anon_sym_descending] = ACTIONS(4330), - [anon_sym_group] = ACTIONS(4330), - [anon_sym_by] = ACTIONS(4330), - [anon_sym_select] = ACTIONS(4330), - [sym_grit_metavariable] = ACTIONS(4334), + [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), @@ -651841,24 +643481,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5188] = { - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4045), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(4046), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), [sym_preproc_region] = STATE(5188), [sym_preproc_endregion] = STATE(5188), [sym_preproc_line] = STATE(5188), @@ -651868,35 +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), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_ref] = ACTIONS(4230), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_readonly] = ACTIONS(7543), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(4383), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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(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), @@ -651909,24 +643549,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5189] = { - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4687), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4699), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), [sym_preproc_region] = STATE(5189), [sym_preproc_endregion] = STATE(5189), [sym_preproc_line] = STATE(5189), @@ -651936,35 +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(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7519), - [anon_sym_ref] = ACTIONS(4476), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_readonly] = ACTIONS(7545), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7234), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), - [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(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), @@ -651986,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), - [aux_sym__query_body_repeat2] = STATE(5191), - [anon_sym_LBRACK] = ACTIONS(7547), - [anon_sym_COMMA] = ACTIONS(7547), - [anon_sym_LPAREN] = ACTIONS(7547), - [anon_sym_LT] = ACTIONS(7549), - [anon_sym_GT] = ACTIONS(7549), - [anon_sym_where] = ACTIONS(7547), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_BANG] = ACTIONS(7549), - [anon_sym_PLUS_PLUS] = ACTIONS(7547), - [anon_sym_DASH_DASH] = ACTIONS(7547), - [anon_sym_PLUS] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7549), - [anon_sym_STAR] = ACTIONS(7547), - [anon_sym_SLASH] = ACTIONS(7549), - [anon_sym_PERCENT] = ACTIONS(7547), - [anon_sym_CARET] = ACTIONS(7547), - [anon_sym_PIPE] = ACTIONS(7549), - [anon_sym_AMP] = ACTIONS(7549), - [anon_sym_LT_LT] = ACTIONS(7547), - [anon_sym_GT_GT] = ACTIONS(7549), - [anon_sym_GT_GT_GT] = ACTIONS(7547), - [anon_sym_EQ_EQ] = ACTIONS(7547), - [anon_sym_BANG_EQ] = ACTIONS(7547), - [anon_sym_GT_EQ] = ACTIONS(7547), - [anon_sym_LT_EQ] = ACTIONS(7547), - [anon_sym_DOT] = ACTIONS(7549), - [anon_sym_switch] = ACTIONS(7547), - [anon_sym_DOT_DOT] = ACTIONS(7547), - [anon_sym_and] = ACTIONS(7547), - [anon_sym_or] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7547), - [anon_sym_PIPE_PIPE] = ACTIONS(7547), - [sym_op_coalescing] = ACTIONS(7547), - [anon_sym_from] = ACTIONS(7547), - [anon_sym_into] = ACTIONS(7551), - [anon_sym_join] = ACTIONS(7547), - [anon_sym_let] = ACTIONS(7547), - [anon_sym_orderby] = ACTIONS(7547), - [anon_sym_ascending] = ACTIONS(7547), - [anon_sym_descending] = ACTIONS(7547), - [anon_sym_group] = ACTIONS(7547), - [anon_sym_select] = ACTIONS(7547), - [anon_sym_as] = ACTIONS(7549), - [anon_sym_is] = ACTIONS(7547), - [anon_sym_DASH_GT] = ACTIONS(7547), - [anon_sym_with] = ACTIONS(7547), + [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), @@ -652054,53 +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), - [aux_sym__query_body_repeat2] = STATE(5191), - [anon_sym_LBRACK] = ACTIONS(7553), - [anon_sym_COMMA] = ACTIONS(7553), - [anon_sym_LPAREN] = ACTIONS(7553), - [anon_sym_LT] = ACTIONS(7555), - [anon_sym_GT] = ACTIONS(7555), - [anon_sym_where] = ACTIONS(7553), - [anon_sym_QMARK] = ACTIONS(7555), - [anon_sym_BANG] = ACTIONS(7555), - [anon_sym_PLUS_PLUS] = ACTIONS(7553), - [anon_sym_DASH_DASH] = ACTIONS(7553), - [anon_sym_PLUS] = ACTIONS(7555), - [anon_sym_DASH] = ACTIONS(7555), - [anon_sym_STAR] = ACTIONS(7553), - [anon_sym_SLASH] = ACTIONS(7555), - [anon_sym_PERCENT] = ACTIONS(7553), - [anon_sym_CARET] = ACTIONS(7553), - [anon_sym_PIPE] = ACTIONS(7555), - [anon_sym_AMP] = ACTIONS(7555), - [anon_sym_LT_LT] = ACTIONS(7553), - [anon_sym_GT_GT] = ACTIONS(7555), - [anon_sym_GT_GT_GT] = ACTIONS(7553), - [anon_sym_EQ_EQ] = ACTIONS(7553), - [anon_sym_BANG_EQ] = ACTIONS(7553), - [anon_sym_GT_EQ] = ACTIONS(7553), - [anon_sym_LT_EQ] = ACTIONS(7553), - [anon_sym_DOT] = ACTIONS(7555), - [anon_sym_switch] = ACTIONS(7553), - [anon_sym_DOT_DOT] = ACTIONS(7553), - [anon_sym_and] = ACTIONS(7553), - [anon_sym_or] = ACTIONS(7555), - [anon_sym_AMP_AMP] = ACTIONS(7553), - [anon_sym_PIPE_PIPE] = ACTIONS(7553), - [sym_op_coalescing] = ACTIONS(7553), - [anon_sym_from] = ACTIONS(7553), - [anon_sym_into] = ACTIONS(7557), - [anon_sym_join] = ACTIONS(7553), - [anon_sym_let] = ACTIONS(7553), - [anon_sym_orderby] = ACTIONS(7553), - [anon_sym_ascending] = ACTIONS(7553), - [anon_sym_descending] = ACTIONS(7553), - [anon_sym_group] = ACTIONS(7553), - [anon_sym_select] = ACTIONS(7553), - [anon_sym_as] = ACTIONS(7555), - [anon_sym_is] = ACTIONS(7553), - [anon_sym_DASH_GT] = ACTIONS(7553), - [anon_sym_with] = ACTIONS(7553), + [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), @@ -652113,25 +643753,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5192] = { - [sym_variable_declaration] = STATE(7737), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6007), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5192), [sym_preproc_endregion] = STATE(5192), [sym_preproc_line] = STATE(5192), @@ -652141,34 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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), + [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), @@ -652181,24 +643821,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5193] = { - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4924), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4842), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), [sym_preproc_region] = STATE(5193), [sym_preproc_endregion] = STATE(5193), [sym_preproc_line] = STATE(5193), @@ -652208,35 +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), - [sym__identifier_token] = ACTIONS(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(7509), - [anon_sym_ref] = ACTIONS(4490), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_readonly] = ACTIONS(7560), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7321), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -652249,25 +643889,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5194] = { - [sym_variable_declaration] = STATE(7653), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5997), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5194), [sym_preproc_endregion] = STATE(5194), [sym_preproc_line] = STATE(5194), @@ -652277,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(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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), + [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), @@ -652326,53 +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), - [aux_sym__query_body_repeat2] = STATE(5190), - [anon_sym_LBRACK] = ACTIONS(7562), - [anon_sym_COMMA] = ACTIONS(7562), - [anon_sym_LPAREN] = ACTIONS(7562), - [anon_sym_LT] = ACTIONS(7564), - [anon_sym_GT] = ACTIONS(7564), - [anon_sym_where] = ACTIONS(7562), - [anon_sym_QMARK] = ACTIONS(7564), - [anon_sym_BANG] = ACTIONS(7564), - [anon_sym_PLUS_PLUS] = ACTIONS(7562), - [anon_sym_DASH_DASH] = ACTIONS(7562), - [anon_sym_PLUS] = ACTIONS(7564), - [anon_sym_DASH] = ACTIONS(7564), - [anon_sym_STAR] = ACTIONS(7562), - [anon_sym_SLASH] = ACTIONS(7564), - [anon_sym_PERCENT] = ACTIONS(7562), - [anon_sym_CARET] = ACTIONS(7562), - [anon_sym_PIPE] = ACTIONS(7564), - [anon_sym_AMP] = ACTIONS(7564), - [anon_sym_LT_LT] = ACTIONS(7562), - [anon_sym_GT_GT] = ACTIONS(7564), - [anon_sym_GT_GT_GT] = ACTIONS(7562), - [anon_sym_EQ_EQ] = ACTIONS(7562), - [anon_sym_BANG_EQ] = ACTIONS(7562), - [anon_sym_GT_EQ] = ACTIONS(7562), - [anon_sym_LT_EQ] = ACTIONS(7562), - [anon_sym_DOT] = ACTIONS(7564), - [anon_sym_switch] = ACTIONS(7562), - [anon_sym_DOT_DOT] = ACTIONS(7562), - [anon_sym_and] = ACTIONS(7562), - [anon_sym_or] = ACTIONS(7564), - [anon_sym_AMP_AMP] = ACTIONS(7562), - [anon_sym_PIPE_PIPE] = ACTIONS(7562), - [sym_op_coalescing] = ACTIONS(7562), - [anon_sym_from] = ACTIONS(7562), - [anon_sym_into] = ACTIONS(7551), - [anon_sym_join] = ACTIONS(7562), - [anon_sym_let] = ACTIONS(7562), - [anon_sym_orderby] = ACTIONS(7562), - [anon_sym_ascending] = ACTIONS(7562), - [anon_sym_descending] = ACTIONS(7562), - [anon_sym_group] = ACTIONS(7562), - [anon_sym_select] = ACTIONS(7562), - [anon_sym_as] = ACTIONS(7564), - [anon_sym_is] = ACTIONS(7562), - [anon_sym_DASH_GT] = ACTIONS(7562), - [anon_sym_with] = ACTIONS(7562), + [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), @@ -652385,24 +644025,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5196] = { - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4687), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4699), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), [sym_preproc_region] = STATE(5196), [sym_preproc_endregion] = STATE(5196), [sym_preproc_line] = STATE(5196), @@ -652412,20 +644034,106 @@ 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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(5197), + [sym_preproc_nullable] = STATE(5197), + [sym_preproc_error] = STATE(5197), + [sym_preproc_warning] = STATE(5197), + [sym_preproc_define] = STATE(5197), + [sym_preproc_undef] = STATE(5197), [sym__identifier_token] = ACTIONS(4088), [anon_sym_alias] = ACTIONS(4090), [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7519), - [anon_sym_ref] = ACTIONS(4478), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_readonly] = ACTIONS(7566), + [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(7347), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), + [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), @@ -652452,74 +644160,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [5197] = { - [sym_preproc_region] = STATE(5197), - [sym_preproc_endregion] = STATE(5197), - [sym_preproc_line] = STATE(5197), - [sym_preproc_pragma] = STATE(5197), - [sym_preproc_nullable] = STATE(5197), - [sym_preproc_error] = STATE(5197), - [sym_preproc_warning] = STATE(5197), - [sym_preproc_define] = STATE(5197), - [sym_preproc_undef] = STATE(5197), - [aux_sym__query_body_repeat2] = STATE(5191), - [anon_sym_LBRACK] = ACTIONS(7568), - [anon_sym_COMMA] = ACTIONS(7568), - [anon_sym_LPAREN] = ACTIONS(7568), - [anon_sym_LT] = ACTIONS(7570), - [anon_sym_GT] = ACTIONS(7570), - [anon_sym_where] = ACTIONS(7568), - [anon_sym_QMARK] = ACTIONS(7570), - [anon_sym_BANG] = ACTIONS(7570), - [anon_sym_PLUS_PLUS] = ACTIONS(7568), - [anon_sym_DASH_DASH] = ACTIONS(7568), - [anon_sym_PLUS] = ACTIONS(7570), - [anon_sym_DASH] = ACTIONS(7570), - [anon_sym_STAR] = ACTIONS(7568), - [anon_sym_SLASH] = ACTIONS(7570), - [anon_sym_PERCENT] = ACTIONS(7568), - [anon_sym_CARET] = ACTIONS(7568), - [anon_sym_PIPE] = ACTIONS(7570), - [anon_sym_AMP] = ACTIONS(7570), - [anon_sym_LT_LT] = ACTIONS(7568), - [anon_sym_GT_GT] = ACTIONS(7570), - [anon_sym_GT_GT_GT] = ACTIONS(7568), - [anon_sym_EQ_EQ] = ACTIONS(7568), - [anon_sym_BANG_EQ] = ACTIONS(7568), - [anon_sym_GT_EQ] = ACTIONS(7568), - [anon_sym_LT_EQ] = ACTIONS(7568), - [anon_sym_DOT] = ACTIONS(7570), - [anon_sym_switch] = ACTIONS(7568), - [anon_sym_DOT_DOT] = ACTIONS(7568), - [anon_sym_and] = ACTIONS(7568), - [anon_sym_or] = ACTIONS(7570), - [anon_sym_AMP_AMP] = ACTIONS(7568), - [anon_sym_PIPE_PIPE] = ACTIONS(7568), - [sym_op_coalescing] = ACTIONS(7568), - [anon_sym_from] = ACTIONS(7568), - [anon_sym_into] = ACTIONS(7551), - [anon_sym_join] = ACTIONS(7568), - [anon_sym_let] = ACTIONS(7568), - [anon_sym_orderby] = ACTIONS(7568), - [anon_sym_ascending] = ACTIONS(7568), - [anon_sym_descending] = ACTIONS(7568), - [anon_sym_group] = ACTIONS(7568), - [anon_sym_select] = ACTIONS(7568), - [anon_sym_as] = ACTIONS(7570), - [anon_sym_is] = ACTIONS(7568), - [anon_sym_DASH_GT] = ACTIONS(7568), - [anon_sym_with] = ACTIONS(7568), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [5198] = { [sym_preproc_region] = STATE(5198), [sym_preproc_endregion] = STATE(5198), @@ -652536,7 +644176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_global] = ACTIONS(3738), [anon_sym_unsafe] = ACTIONS(3738), [anon_sym_static] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(6954), + [anon_sym_LPAREN] = ACTIONS(6589), [anon_sym_ref] = ACTIONS(3738), [anon_sym_delegate] = ACTIONS(3738), [anon_sym_public] = ACTIONS(3738), @@ -652576,7 +644216,7 @@ 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(5942), + [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), @@ -652589,6 +644229,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5199] = { + [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), @@ -652598,53 +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), - [aux_sym__query_body_repeat2] = STATE(5197), - [anon_sym_LBRACK] = ACTIONS(7572), - [anon_sym_COMMA] = ACTIONS(7572), - [anon_sym_LPAREN] = ACTIONS(7572), - [anon_sym_LT] = ACTIONS(7574), - [anon_sym_GT] = ACTIONS(7574), - [anon_sym_where] = ACTIONS(7572), - [anon_sym_QMARK] = ACTIONS(7574), - [anon_sym_BANG] = ACTIONS(7574), - [anon_sym_PLUS_PLUS] = ACTIONS(7572), - [anon_sym_DASH_DASH] = ACTIONS(7572), - [anon_sym_PLUS] = ACTIONS(7574), - [anon_sym_DASH] = ACTIONS(7574), - [anon_sym_STAR] = ACTIONS(7572), - [anon_sym_SLASH] = ACTIONS(7574), - [anon_sym_PERCENT] = ACTIONS(7572), - [anon_sym_CARET] = ACTIONS(7572), - [anon_sym_PIPE] = ACTIONS(7574), - [anon_sym_AMP] = ACTIONS(7574), - [anon_sym_LT_LT] = ACTIONS(7572), - [anon_sym_GT_GT] = ACTIONS(7574), - [anon_sym_GT_GT_GT] = ACTIONS(7572), - [anon_sym_EQ_EQ] = ACTIONS(7572), - [anon_sym_BANG_EQ] = ACTIONS(7572), - [anon_sym_GT_EQ] = ACTIONS(7572), - [anon_sym_LT_EQ] = ACTIONS(7572), - [anon_sym_DOT] = ACTIONS(7574), - [anon_sym_switch] = ACTIONS(7572), - [anon_sym_DOT_DOT] = ACTIONS(7572), - [anon_sym_and] = ACTIONS(7572), - [anon_sym_or] = ACTIONS(7574), - [anon_sym_AMP_AMP] = ACTIONS(7572), - [anon_sym_PIPE_PIPE] = ACTIONS(7572), - [sym_op_coalescing] = ACTIONS(7572), - [anon_sym_from] = ACTIONS(7572), - [anon_sym_into] = ACTIONS(7551), - [anon_sym_join] = ACTIONS(7572), - [anon_sym_let] = ACTIONS(7572), - [anon_sym_orderby] = ACTIONS(7572), - [anon_sym_ascending] = ACTIONS(7572), - [anon_sym_descending] = ACTIONS(7572), - [anon_sym_group] = ACTIONS(7572), - [anon_sym_select] = ACTIONS(7572), - [anon_sym_as] = ACTIONS(7574), - [anon_sym_is] = ACTIONS(7572), - [anon_sym_DASH_GT] = ACTIONS(7572), - [anon_sym_with] = ACTIONS(7572), + [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), @@ -652657,24 +644297,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5200] = { - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4924), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4842), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), + [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(5200), [sym_preproc_endregion] = STATE(5200), [sym_preproc_line] = STATE(5200), @@ -652684,35 +644324,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5200), [sym_preproc_define] = STATE(5200), [sym_preproc_undef] = STATE(5200), - [sym__identifier_token] = ACTIONS(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(7509), - [anon_sym_ref] = ACTIONS(4494), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_readonly] = ACTIONS(7576), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7349), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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_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(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), @@ -652725,24 +644365,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5201] = { - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4924), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4842), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), [sym_preproc_region] = STATE(5201), [sym_preproc_endregion] = STATE(5201), [sym_preproc_line] = STATE(5201), @@ -652752,35 +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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(7509), - [anon_sym_ref] = ACTIONS(4107), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_readonly] = ACTIONS(7578), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7369), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -652793,25 +644433,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5202] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6240), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7378), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5202), [sym_preproc_endregion] = STATE(5202), [sym_preproc_line] = STATE(5202), @@ -652821,18 +644442,105 @@ 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), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [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), + [sym_preproc_pragma] = STATE(5203), + [sym_preproc_nullable] = STATE(5203), + [sym_preproc_error] = STATE(5203), + [sym_preproc_warning] = STATE(5203), + [sym_preproc_define] = STATE(5203), + [sym_preproc_undef] = STATE(5203), [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(3709), + [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(7286), - [anon_sym_var] = ACTIONS(5500), + [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), @@ -652860,74 +644568,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [5203] = { - [sym__name] = STATE(5801), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4045), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(4046), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(5616), - [sym__reserved_identifier] = STATE(3741), - [sym_preproc_region] = STATE(5203), - [sym_preproc_endregion] = STATE(5203), - [sym_preproc_line] = STATE(5203), - [sym_preproc_pragma] = STATE(5203), - [sym_preproc_nullable] = STATE(5203), - [sym_preproc_error] = STATE(5203), - [sym_preproc_warning] = STATE(5203), - [sym_preproc_define] = STATE(5203), - [sym_preproc_undef] = STATE(5203), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_ref] = ACTIONS(4368), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_readonly] = ACTIONS(7580), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7264), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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), - }, [5204] = { [sym_preproc_region] = STATE(5204), [sym_preproc_endregion] = STATE(5204), @@ -652938,53 +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), - [anon_sym_LBRACK] = ACTIONS(5964), - [anon_sym_COMMA] = ACTIONS(5964), - [anon_sym_LPAREN] = ACTIONS(5964), - [anon_sym_LT] = ACTIONS(5966), - [anon_sym_GT] = ACTIONS(5966), - [anon_sym_where] = ACTIONS(5964), - [anon_sym_QMARK] = ACTIONS(5966), - [anon_sym_BANG] = ACTIONS(5966), - [anon_sym_PLUS_PLUS] = ACTIONS(5964), - [anon_sym_DASH_DASH] = ACTIONS(5964), - [anon_sym_PLUS] = ACTIONS(5966), - [anon_sym_DASH] = ACTIONS(5966), - [anon_sym_STAR] = ACTIONS(5964), - [anon_sym_SLASH] = ACTIONS(5966), - [anon_sym_PERCENT] = ACTIONS(5964), - [anon_sym_CARET] = ACTIONS(5964), - [anon_sym_PIPE] = ACTIONS(5966), - [anon_sym_AMP] = ACTIONS(5966), - [anon_sym_LT_LT] = ACTIONS(5964), - [anon_sym_GT_GT] = ACTIONS(5966), - [anon_sym_GT_GT_GT] = ACTIONS(5964), - [anon_sym_EQ_EQ] = ACTIONS(5964), - [anon_sym_BANG_EQ] = ACTIONS(5964), - [anon_sym_GT_EQ] = ACTIONS(5964), - [anon_sym_LT_EQ] = ACTIONS(5964), - [anon_sym_DOT] = ACTIONS(5966), - [anon_sym_switch] = ACTIONS(5964), - [anon_sym_DOT_DOT] = ACTIONS(5964), - [anon_sym_and] = ACTIONS(5964), - [anon_sym_or] = ACTIONS(5966), - [anon_sym_AMP_AMP] = ACTIONS(5964), - [anon_sym_PIPE_PIPE] = ACTIONS(5964), - [sym_op_coalescing] = ACTIONS(5964), - [anon_sym_from] = ACTIONS(5964), - [anon_sym_into] = ACTIONS(5964), - [anon_sym_join] = ACTIONS(5964), - [anon_sym_let] = ACTIONS(5964), - [anon_sym_orderby] = ACTIONS(5964), - [anon_sym_ascending] = ACTIONS(5964), - [anon_sym_descending] = ACTIONS(5964), - [anon_sym_group] = ACTIONS(5964), - [anon_sym_select] = ACTIONS(5964), - [anon_sym_as] = ACTIONS(5966), - [anon_sym_is] = ACTIONS(5964), - [anon_sym_DASH_GT] = ACTIONS(5964), - [anon_sym_with] = ACTIONS(5964), - [aux_sym_raw_string_literal_token1] = ACTIONS(7582), + [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), @@ -652998,24 +644638,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5205] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6431), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym__join_header] = STATE(7388), - [sym_identifier] = STATE(6082), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -653029,14 +644668,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(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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), @@ -653066,23 +644706,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5206] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6391), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -653096,13 +644737,12 @@ 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(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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_STAR] = ACTIONS(7210), [anon_sym_scoped] = ACTIONS(3237), [anon_sym_var] = ACTIONS(3239), [sym_predefined_type] = ACTIONS(3241), @@ -653133,24 +644773,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5207] = { - [sym__name] = STATE(3024), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(3005), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(3044), - [sym_type] = STATE(2845), - [sym_implicit_type] = STATE(3029), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7584), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7785), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(3029), - [sym_scoped_type] = STATE(3029), - [sym_tuple_type] = STATE(3011), - [sym_identifier] = STATE(2652), - [sym__reserved_identifier] = STATE(2755), [sym_preproc_region] = STATE(5207), [sym_preproc_endregion] = STATE(5207), [sym_preproc_line] = STATE(5207), @@ -653160,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(7584), - [anon_sym_alias] = ACTIONS(7586), - [anon_sym_global] = ACTIONS(7586), - [anon_sym_LPAREN] = ACTIONS(7588), - [anon_sym_ref] = ACTIONS(3946), - [anon_sym_delegate] = ACTIONS(7590), - [anon_sym_readonly] = ACTIONS(3083), - [anon_sym_file] = ACTIONS(7586), - [anon_sym_where] = ACTIONS(7586), - [anon_sym_notnull] = ACTIONS(7586), - [anon_sym_unmanaged] = ACTIONS(7586), - [anon_sym_scoped] = ACTIONS(7592), - [anon_sym_var] = ACTIONS(7594), - [sym_predefined_type] = ACTIONS(7596), - [anon_sym_yield] = ACTIONS(7586), - [anon_sym_when] = ACTIONS(7586), - [anon_sym_from] = ACTIONS(7586), - [anon_sym_into] = ACTIONS(7586), - [anon_sym_join] = ACTIONS(7586), - [anon_sym_on] = ACTIONS(7586), - [anon_sym_equals] = ACTIONS(7586), - [anon_sym_let] = ACTIONS(7586), - [anon_sym_orderby] = ACTIONS(7586), - [anon_sym_ascending] = ACTIONS(7586), - [anon_sym_descending] = ACTIONS(7586), - [anon_sym_group] = ACTIONS(7586), - [anon_sym_by] = ACTIONS(7586), - [anon_sym_select] = ACTIONS(7586), - [sym_grit_metavariable] = ACTIONS(7598), + [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), @@ -653201,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), @@ -653210,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(5989), - [anon_sym_COMMA] = ACTIONS(5989), - [anon_sym_LPAREN] = ACTIONS(5989), - [anon_sym_LBRACE] = ACTIONS(5989), - [anon_sym_LT] = ACTIONS(5991), - [anon_sym_GT] = ACTIONS(5991), - [anon_sym_where] = ACTIONS(5989), - [anon_sym_QMARK] = ACTIONS(5991), - [anon_sym_BANG] = ACTIONS(5991), - [anon_sym_PLUS_PLUS] = ACTIONS(5989), - [anon_sym_DASH_DASH] = ACTIONS(5989), - [anon_sym_PLUS] = ACTIONS(5991), - [anon_sym_DASH] = ACTIONS(5991), - [anon_sym_STAR] = ACTIONS(5989), - [anon_sym_SLASH] = ACTIONS(5991), - [anon_sym_PERCENT] = ACTIONS(5989), - [anon_sym_CARET] = ACTIONS(5989), - [anon_sym_PIPE] = ACTIONS(5991), - [anon_sym_AMP] = ACTIONS(5991), - [anon_sym_LT_LT] = ACTIONS(5989), - [anon_sym_GT_GT] = ACTIONS(5991), - [anon_sym_GT_GT_GT] = ACTIONS(5989), - [anon_sym_EQ_EQ] = ACTIONS(5989), - [anon_sym_BANG_EQ] = ACTIONS(5989), - [anon_sym_GT_EQ] = ACTIONS(5989), - [anon_sym_LT_EQ] = ACTIONS(5989), - [anon_sym_DOT] = ACTIONS(5991), - [anon_sym_switch] = ACTIONS(5989), - [anon_sym_DOT_DOT] = ACTIONS(5989), - [anon_sym_and] = ACTIONS(5989), - [anon_sym_or] = ACTIONS(5991), - [anon_sym_AMP_AMP] = ACTIONS(5989), - [anon_sym_PIPE_PIPE] = ACTIONS(5989), - [sym_op_coalescing] = ACTIONS(5989), - [anon_sym_from] = ACTIONS(5989), - [anon_sym_into] = ACTIONS(5989), - [anon_sym_join] = ACTIONS(5989), - [anon_sym_let] = ACTIONS(5989), - [anon_sym_orderby] = ACTIONS(5989), - [anon_sym_ascending] = ACTIONS(5989), - [anon_sym_descending] = ACTIONS(5989), - [anon_sym_group] = ACTIONS(5989), - [anon_sym_select] = ACTIONS(5989), - [anon_sym_as] = ACTIONS(5991), - [anon_sym_is] = ACTIONS(5989), - [anon_sym_DASH_GT] = ACTIONS(5989), - [anon_sym_with] = ACTIONS(5989), + [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), @@ -653269,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), @@ -653278,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), - [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(7600), - [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(5942), + [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), @@ -653337,24 +644977,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5210] = { - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4045), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(4046), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -653364,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(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_ref] = ACTIONS(4590), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_readonly] = ACTIONS(7602), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7353), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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_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), @@ -653405,24 +645045,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5211] = { - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4924), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4842), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), [sym_preproc_region] = STATE(5211), [sym_preproc_endregion] = STATE(5211), [sym_preproc_line] = STATE(5211), @@ -653432,35 +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), - [sym__identifier_token] = ACTIONS(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(7509), - [anon_sym_ref] = ACTIONS(4370), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_readonly] = ACTIONS(7604), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7408), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -653473,24 +645113,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5212] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5629), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5212), [sym_preproc_endregion] = STATE(5212), [sym_preproc_line] = STATE(5212), @@ -653500,35 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7606), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_readonly] = ACTIONS(7608), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7610), - [anon_sym_var] = ACTIONS(5500), - [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), + [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), @@ -653541,24 +645181,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5213] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5629), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5213), [sym_preproc_endregion] = STATE(5213), [sym_preproc_line] = STATE(5213), @@ -653568,35 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7612), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_readonly] = ACTIONS(7614), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7616), - [anon_sym_var] = ACTIONS(7491), - [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), + [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), @@ -653609,24 +645249,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5214] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5629), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5214), [sym_preproc_endregion] = STATE(5214), [sym_preproc_line] = STATE(5214), @@ -653636,35 +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), - [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(3709), - [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(7286), - [anon_sym_var] = ACTIONS(5500), - [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), + [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), @@ -653677,24 +645317,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5215] = { - [sym__name] = STATE(5081), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3653), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(3463), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), [sym_preproc_region] = STATE(5215), [sym_preproc_endregion] = STATE(5215), [sym_preproc_line] = STATE(5215), @@ -653704,35 +645326,53 @@ 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), - [sym__identifier_token] = ACTIONS(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(7513), - [anon_sym_ref] = ACTIONS(4153), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_readonly] = ACTIONS(7618), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7384), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -653745,6 +645385,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -653754,105 +645413,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5216), [sym_preproc_define] = STATE(5216), [sym_preproc_undef] = STATE(5216), - [anon_sym_EQ] = ACTIONS(7620), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_COLON] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7622), - [anon_sym_DASH_EQ] = ACTIONS(7622), - [anon_sym_STAR_EQ] = ACTIONS(7622), - [anon_sym_SLASH_EQ] = ACTIONS(7622), - [anon_sym_PERCENT_EQ] = ACTIONS(7622), - [anon_sym_AMP_EQ] = ACTIONS(7622), - [anon_sym_CARET_EQ] = ACTIONS(7622), - [anon_sym_PIPE_EQ] = ACTIONS(7622), - [anon_sym_LT_LT_EQ] = ACTIONS(7622), - [anon_sym_GT_GT_EQ] = ACTIONS(7622), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7622), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7622), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5217] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6240), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7443), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(5217), - [sym_preproc_endregion] = STATE(5217), - [sym_preproc_line] = STATE(5217), - [sym_preproc_pragma] = STATE(5217), - [sym_preproc_nullable] = STATE(5217), - [sym_preproc_error] = STATE(5217), - [sym_preproc_warning] = STATE(5217), - [sym_preproc_define] = STATE(5217), - [sym_preproc_undef] = STATE(5217), [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(3709), + [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(7286), - [anon_sym_var] = ACTIONS(5500), + [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), @@ -653880,25 +645452,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [5217] = { + [sym_preproc_region] = STATE(5217), + [sym_preproc_endregion] = STATE(5217), + [sym_preproc_line] = STATE(5217), + [sym_preproc_pragma] = STATE(5217), + [sym_preproc_nullable] = STATE(5217), + [sym_preproc_error] = STATE(5217), + [sym_preproc_warning] = STATE(5217), + [sym_preproc_define] = STATE(5217), + [sym_preproc_undef] = STATE(5217), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [5218] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5629), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5218), [sym_preproc_endregion] = STATE(5218), [sym_preproc_line] = STATE(5218), @@ -653908,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(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7168), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_readonly] = ACTIONS(7624), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7172), - [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), + [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), @@ -653949,6 +645589,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5219] = { + [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), @@ -653958,53 +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), - [anon_sym_EQ] = ACTIONS(7626), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7628), - [anon_sym_DASH_EQ] = ACTIONS(7628), - [anon_sym_STAR_EQ] = ACTIONS(7628), - [anon_sym_SLASH_EQ] = ACTIONS(7628), - [anon_sym_PERCENT_EQ] = ACTIONS(7628), - [anon_sym_AMP_EQ] = ACTIONS(7628), - [anon_sym_CARET_EQ] = ACTIONS(7628), - [anon_sym_PIPE_EQ] = ACTIONS(7628), - [anon_sym_LT_LT_EQ] = ACTIONS(7628), - [anon_sym_GT_GT_EQ] = ACTIONS(7628), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7628), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7628), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_by] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -654017,25 +645657,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5220] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6240), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7497), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5220), [sym_preproc_endregion] = STATE(5220), [sym_preproc_line] = STATE(5220), @@ -654045,18 +645666,105 @@ 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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [5221] = { + [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), + [sym_preproc_pragma] = STATE(5221), + [sym_preproc_nullable] = STATE(5221), + [sym_preproc_error] = STATE(5221), + [sym_preproc_warning] = STATE(5221), + [sym_preproc_define] = STATE(5221), + [sym_preproc_undef] = STATE(5221), [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(3709), + [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(7286), - [anon_sym_var] = ACTIONS(5500), + [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), @@ -654084,93 +645792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [5221] = { - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4045), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(4046), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), - [sym_preproc_region] = STATE(5221), - [sym_preproc_endregion] = STATE(5221), - [sym_preproc_line] = STATE(5221), - [sym_preproc_pragma] = STATE(5221), - [sym_preproc_nullable] = STATE(5221), - [sym_preproc_error] = STATE(5221), - [sym_preproc_warning] = STATE(5221), - [sym_preproc_define] = STATE(5221), - [sym_preproc_undef] = STATE(5221), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_ref] = ACTIONS(4626), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_readonly] = ACTIONS(7630), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7266), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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), - }, [5222] = { - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4687), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4699), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), [sym_preproc_region] = STATE(5222), [sym_preproc_endregion] = STATE(5222), [sym_preproc_line] = STATE(5222), @@ -654180,35 +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), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7519), - [anon_sym_ref] = ACTIONS(4092), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_readonly] = ACTIONS(7632), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7382), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), - [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(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), @@ -654230,53 +645870,53 @@ 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(5960), - [anon_sym_COMMA] = ACTIONS(5960), - [anon_sym_LPAREN] = ACTIONS(5960), - [anon_sym_LBRACE] = ACTIONS(5960), - [anon_sym_LT] = ACTIONS(5962), - [anon_sym_GT] = ACTIONS(5962), - [anon_sym_where] = ACTIONS(5960), - [anon_sym_QMARK] = ACTIONS(5962), - [anon_sym_BANG] = ACTIONS(5962), - [anon_sym_PLUS_PLUS] = ACTIONS(5960), - [anon_sym_DASH_DASH] = ACTIONS(5960), - [anon_sym_PLUS] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_STAR] = ACTIONS(5960), - [anon_sym_SLASH] = ACTIONS(5962), - [anon_sym_PERCENT] = ACTIONS(5960), - [anon_sym_CARET] = ACTIONS(5960), - [anon_sym_PIPE] = ACTIONS(5962), - [anon_sym_AMP] = ACTIONS(5962), - [anon_sym_LT_LT] = ACTIONS(5960), - [anon_sym_GT_GT] = ACTIONS(5962), - [anon_sym_GT_GT_GT] = ACTIONS(5960), - [anon_sym_EQ_EQ] = ACTIONS(5960), - [anon_sym_BANG_EQ] = ACTIONS(5960), - [anon_sym_GT_EQ] = ACTIONS(5960), - [anon_sym_LT_EQ] = ACTIONS(5960), - [anon_sym_DOT] = ACTIONS(5962), - [anon_sym_switch] = ACTIONS(5960), - [anon_sym_DOT_DOT] = ACTIONS(5960), - [anon_sym_and] = ACTIONS(5960), - [anon_sym_or] = ACTIONS(5962), - [anon_sym_AMP_AMP] = ACTIONS(5960), - [anon_sym_PIPE_PIPE] = ACTIONS(5960), - [sym_op_coalescing] = ACTIONS(5960), - [anon_sym_from] = ACTIONS(5960), - [anon_sym_into] = ACTIONS(5960), - [anon_sym_join] = ACTIONS(5960), - [anon_sym_let] = ACTIONS(5960), - [anon_sym_orderby] = ACTIONS(5960), - [anon_sym_ascending] = ACTIONS(5960), - [anon_sym_descending] = ACTIONS(5960), - [anon_sym_group] = ACTIONS(5960), - [anon_sym_select] = ACTIONS(5960), - [anon_sym_as] = ACTIONS(5962), - [anon_sym_is] = ACTIONS(5960), - [anon_sym_DASH_GT] = ACTIONS(5960), - [anon_sym_with] = ACTIONS(5960), + [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), @@ -654289,6 +645929,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -654298,105 +645956,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5224), [sym_preproc_define] = STATE(5224), [sym_preproc_undef] = STATE(5224), - [anon_sym_LBRACK] = ACTIONS(5920), - [anon_sym_COMMA] = ACTIONS(5920), - [anon_sym_LPAREN] = ACTIONS(5920), - [anon_sym_LT] = ACTIONS(5922), - [anon_sym_GT] = ACTIONS(5922), - [anon_sym_where] = ACTIONS(5920), - [anon_sym_QMARK] = ACTIONS(5922), - [anon_sym_BANG] = ACTIONS(5922), - [anon_sym_PLUS_PLUS] = ACTIONS(5920), - [anon_sym_DASH_DASH] = ACTIONS(5920), - [anon_sym_PLUS] = ACTIONS(5922), - [anon_sym_DASH] = ACTIONS(5922), - [anon_sym_STAR] = ACTIONS(5920), - [anon_sym_SLASH] = ACTIONS(5922), - [anon_sym_PERCENT] = ACTIONS(5920), - [anon_sym_CARET] = ACTIONS(5920), - [anon_sym_PIPE] = ACTIONS(5922), - [anon_sym_AMP] = ACTIONS(5922), - [anon_sym_LT_LT] = ACTIONS(5920), - [anon_sym_GT_GT] = ACTIONS(5922), - [anon_sym_GT_GT_GT] = ACTIONS(5920), - [anon_sym_EQ_EQ] = ACTIONS(5920), - [anon_sym_BANG_EQ] = ACTIONS(5920), - [anon_sym_GT_EQ] = ACTIONS(5920), - [anon_sym_LT_EQ] = ACTIONS(5920), - [anon_sym_DOT] = ACTIONS(5922), - [anon_sym_switch] = ACTIONS(5920), - [anon_sym_DOT_DOT] = ACTIONS(5920), - [anon_sym_and] = ACTIONS(5920), - [anon_sym_or] = ACTIONS(5922), - [anon_sym_AMP_AMP] = ACTIONS(5920), - [anon_sym_PIPE_PIPE] = ACTIONS(5920), - [sym_op_coalescing] = ACTIONS(5920), - [anon_sym_from] = ACTIONS(5920), - [anon_sym_into] = ACTIONS(5920), - [anon_sym_join] = ACTIONS(5920), - [anon_sym_let] = ACTIONS(5920), - [anon_sym_orderby] = ACTIONS(5920), - [anon_sym_ascending] = ACTIONS(5920), - [anon_sym_descending] = ACTIONS(5920), - [anon_sym_group] = ACTIONS(5920), - [anon_sym_select] = ACTIONS(5920), - [anon_sym_as] = ACTIONS(5922), - [anon_sym_is] = ACTIONS(5920), - [anon_sym_DASH_GT] = ACTIONS(5920), - [anon_sym_with] = ACTIONS(5920), - [sym_string_literal_encoding] = ACTIONS(7634), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5225] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5629), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(5225), - [sym_preproc_endregion] = STATE(5225), - [sym_preproc_line] = STATE(5225), - [sym_preproc_pragma] = STATE(5225), - [sym_preproc_nullable] = STATE(5225), - [sym_preproc_error] = STATE(5225), - [sym_preproc_warning] = STATE(5225), - [sym_preproc_define] = STATE(5225), - [sym_preproc_undef] = STATE(5225), [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(3709), - [anon_sym_readonly] = ACTIONS(3105), + [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(7489), - [anon_sym_var] = ACTIONS(7491), + [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), @@ -654424,25 +645996,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [5225] = { + [sym_preproc_region] = STATE(5225), + [sym_preproc_endregion] = STATE(5225), + [sym_preproc_line] = STATE(5225), + [sym_preproc_pragma] = STATE(5225), + [sym_preproc_nullable] = STATE(5225), + [sym_preproc_error] = STATE(5225), + [sym_preproc_warning] = STATE(5225), + [sym_preproc_define] = STATE(5225), + [sym_preproc_undef] = STATE(5225), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [5226] = { - [sym__name] = STATE(2471), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2445), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2433), - [sym_type] = STATE(2404), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_identifier] = STATE(2399), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(5226), [sym_preproc_endregion] = STATE(5226), [sym_preproc_line] = STATE(5226), @@ -654452,35 +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), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LPAREN] = ACTIONS(7495), - [anon_sym_ref] = ACTIONS(4434), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_readonly] = ACTIONS(7636), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_where] = ACTIONS(4432), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_scoped] = ACTIONS(7390), - [anon_sym_var] = ACTIONS(7365), - [sym_predefined_type] = ACTIONS(7367), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_when] = ACTIONS(4432), - [anon_sym_from] = ACTIONS(4432), - [anon_sym_into] = ACTIONS(4432), - [anon_sym_join] = ACTIONS(4432), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4432), - [anon_sym_orderby] = ACTIONS(4432), - [anon_sym_ascending] = ACTIONS(4432), - [anon_sym_descending] = ACTIONS(4432), - [anon_sym_group] = ACTIONS(4432), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4432), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -654502,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(5956), - [anon_sym_COMMA] = ACTIONS(5956), - [anon_sym_LPAREN] = ACTIONS(5956), - [anon_sym_LBRACE] = ACTIONS(5956), - [anon_sym_LT] = ACTIONS(5958), - [anon_sym_GT] = ACTIONS(5958), - [anon_sym_where] = ACTIONS(5956), - [anon_sym_QMARK] = ACTIONS(5958), - [anon_sym_BANG] = ACTIONS(5958), - [anon_sym_PLUS_PLUS] = ACTIONS(5956), - [anon_sym_DASH_DASH] = ACTIONS(5956), - [anon_sym_PLUS] = ACTIONS(5958), - [anon_sym_DASH] = ACTIONS(5958), - [anon_sym_STAR] = ACTIONS(5956), - [anon_sym_SLASH] = ACTIONS(5958), - [anon_sym_PERCENT] = ACTIONS(5956), - [anon_sym_CARET] = ACTIONS(5956), - [anon_sym_PIPE] = ACTIONS(5958), - [anon_sym_AMP] = ACTIONS(5958), - [anon_sym_LT_LT] = ACTIONS(5956), - [anon_sym_GT_GT] = ACTIONS(5958), - [anon_sym_GT_GT_GT] = ACTIONS(5956), - [anon_sym_EQ_EQ] = ACTIONS(5956), - [anon_sym_BANG_EQ] = ACTIONS(5956), - [anon_sym_GT_EQ] = ACTIONS(5956), - [anon_sym_LT_EQ] = ACTIONS(5956), - [anon_sym_DOT] = ACTIONS(5958), - [anon_sym_switch] = ACTIONS(5956), - [anon_sym_DOT_DOT] = ACTIONS(5956), - [anon_sym_and] = ACTIONS(5956), - [anon_sym_or] = ACTIONS(5958), - [anon_sym_AMP_AMP] = ACTIONS(5956), - [anon_sym_PIPE_PIPE] = ACTIONS(5956), - [sym_op_coalescing] = ACTIONS(5956), - [anon_sym_from] = ACTIONS(5956), - [anon_sym_into] = ACTIONS(5956), - [anon_sym_join] = ACTIONS(5956), - [anon_sym_let] = ACTIONS(5956), - [anon_sym_orderby] = ACTIONS(5956), - [anon_sym_ascending] = ACTIONS(5956), - [anon_sym_descending] = ACTIONS(5956), - [anon_sym_group] = ACTIONS(5956), - [anon_sym_select] = ACTIONS(5956), - [anon_sym_as] = ACTIONS(5958), - [anon_sym_is] = ACTIONS(5956), - [anon_sym_DASH_GT] = ACTIONS(5956), - [anon_sym_with] = ACTIONS(5956), + [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), @@ -654561,25 +646201,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5228] = { - [sym_variable_declaration] = STATE(8008), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6000), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -654589,34 +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(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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), + [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), @@ -654638,53 +646278,53 @@ 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), - [sym__identifier_token] = ACTIONS(7304), - [anon_sym_extern] = ACTIONS(3738), - [anon_sym_alias] = ACTIONS(7304), - [anon_sym_global] = ACTIONS(7304), - [anon_sym_unsafe] = ACTIONS(7304), - [anon_sym_static] = ACTIONS(7304), - [anon_sym_LPAREN] = ACTIONS(5942), - [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(7304), - [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(7304), - [anon_sym_notnull] = ACTIONS(7304), - [anon_sym_unmanaged] = ACTIONS(7304), - [anon_sym_scoped] = ACTIONS(7304), - [anon_sym_var] = ACTIONS(7304), - [sym_predefined_type] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(7304), - [anon_sym_when] = ACTIONS(7304), - [anon_sym_from] = ACTIONS(7304), - [anon_sym_into] = ACTIONS(7304), - [anon_sym_join] = ACTIONS(7304), - [anon_sym_on] = ACTIONS(7304), - [anon_sym_equals] = ACTIONS(7304), - [anon_sym_let] = ACTIONS(7304), - [anon_sym_orderby] = ACTIONS(7304), - [anon_sym_ascending] = ACTIONS(7304), - [anon_sym_descending] = ACTIONS(7304), - [anon_sym_group] = ACTIONS(7304), - [anon_sym_by] = ACTIONS(7304), - [anon_sym_select] = ACTIONS(7304), - [sym_grit_metavariable] = ACTIONS(7638), + [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), @@ -654697,24 +646337,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5230] = { - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4045), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(4046), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -654724,35 +646364,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5230), [sym_preproc_define] = STATE(5230), [sym_preproc_undef] = STATE(5230), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_ref] = ACTIONS(4596), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_readonly] = ACTIONS(7641), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7262), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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_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(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), @@ -654765,24 +646405,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5231] = { - [sym__name] = STATE(5081), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3653), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(3463), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), [sym_preproc_region] = STATE(5231), [sym_preproc_endregion] = STATE(5231), [sym_preproc_line] = STATE(5231), @@ -654792,35 +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), - [sym__identifier_token] = ACTIONS(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(7513), - [anon_sym_ref] = ACTIONS(4632), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_readonly] = ACTIONS(7643), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7373), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -654833,24 +646473,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5232] = { - [sym__name] = STATE(5608), - [sym_alias_qualified_name] = STATE(5627), - [sym__simple_name] = STATE(5627), - [sym_qualified_name] = STATE(5627), - [sym_generic_name] = STATE(5585), - [sym_type] = STATE(5587), - [sym_implicit_type] = STATE(5637), - [sym_array_type] = STATE(5625), - [sym__array_base_type] = STATE(7380), - [sym_nullable_type] = STATE(5581), - [sym_pointer_type] = STATE(5581), - [sym__pointer_base_type] = STATE(8140), - [sym_function_pointer_type] = STATE(5581), - [sym_ref_type] = STATE(5637), - [sym_scoped_type] = STATE(5637), - [sym_tuple_type] = STATE(5609), - [sym_identifier] = STATE(5530), - [sym__reserved_identifier] = STATE(5560), [sym_preproc_region] = STATE(5232), [sym_preproc_endregion] = STATE(5232), [sym_preproc_line] = STATE(5232), @@ -654860,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(4328), - [anon_sym_alias] = ACTIONS(4330), - [anon_sym_global] = ACTIONS(4330), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4348), - [anon_sym_delegate] = ACTIONS(7250), - [anon_sym_readonly] = ACTIONS(7645), - [anon_sym_file] = ACTIONS(4330), - [anon_sym_where] = ACTIONS(4330), - [anon_sym_notnull] = ACTIONS(4330), - [anon_sym_unmanaged] = ACTIONS(4330), - [anon_sym_scoped] = ACTIONS(7388), - [anon_sym_var] = ACTIONS(7254), - [sym_predefined_type] = ACTIONS(7256), - [anon_sym_yield] = ACTIONS(4330), - [anon_sym_when] = ACTIONS(4330), - [anon_sym_from] = ACTIONS(4330), - [anon_sym_into] = ACTIONS(4330), - [anon_sym_join] = ACTIONS(4330), - [anon_sym_on] = ACTIONS(4330), - [anon_sym_equals] = ACTIONS(4330), - [anon_sym_let] = ACTIONS(4330), - [anon_sym_orderby] = ACTIONS(4330), - [anon_sym_ascending] = ACTIONS(4330), - [anon_sym_descending] = ACTIONS(4330), - [anon_sym_group] = ACTIONS(4330), - [anon_sym_by] = ACTIONS(4330), - [anon_sym_select] = ACTIONS(4330), - [sym_grit_metavariable] = ACTIONS(4334), + [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), @@ -654901,24 +646541,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5233] = { - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4924), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4842), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -654928,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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(7509), - [anon_sym_ref] = ACTIONS(4524), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_readonly] = ACTIONS(7647), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7380), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -654978,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_EQ] = ACTIONS(7649), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_EQ_GT] = ACTIONS(5752), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7651), - [anon_sym_DASH_EQ] = ACTIONS(7651), - [anon_sym_STAR_EQ] = ACTIONS(7651), - [anon_sym_SLASH_EQ] = ACTIONS(7651), - [anon_sym_PERCENT_EQ] = ACTIONS(7651), - [anon_sym_AMP_EQ] = ACTIONS(7651), - [anon_sym_CARET_EQ] = ACTIONS(7651), - [anon_sym_PIPE_EQ] = ACTIONS(7651), - [anon_sym_LT_LT_EQ] = ACTIONS(7651), - [anon_sym_GT_GT_EQ] = ACTIONS(7651), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7651), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7651), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -655037,24 +646677,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5235] = { - [sym__name] = STATE(5081), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3653), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(3463), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), [sym_preproc_region] = STATE(5235), [sym_preproc_endregion] = STATE(5235), [sym_preproc_line] = STATE(5235), @@ -655064,35 +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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(7513), - [anon_sym_ref] = ACTIONS(4576), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_readonly] = ACTIONS(7653), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7416), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -655114,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_EQ] = ACTIONS(7655), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7657), - [anon_sym_DASH_EQ] = ACTIONS(7657), - [anon_sym_STAR_EQ] = ACTIONS(7657), - [anon_sym_SLASH_EQ] = ACTIONS(7657), - [anon_sym_PERCENT_EQ] = ACTIONS(7657), - [anon_sym_AMP_EQ] = ACTIONS(7657), - [anon_sym_CARET_EQ] = ACTIONS(7657), - [anon_sym_PIPE_EQ] = ACTIONS(7657), - [anon_sym_LT_LT_EQ] = ACTIONS(7657), - [anon_sym_GT_GT_EQ] = ACTIONS(7657), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7657), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7657), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_equals] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -655173,25 +646813,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5237] = { - [sym_variable_declaration] = STATE(8068), - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5998), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -655201,34 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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), + [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), @@ -655241,24 +646881,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5238] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5629), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5238), [sym_preproc_endregion] = STATE(5238), [sym_preproc_line] = STATE(5238), @@ -655268,35 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5887), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_readonly] = ACTIONS(7659), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5895), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(5897), - [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), + [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), @@ -655309,24 +646949,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5239] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6385), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5239), [sym_preproc_endregion] = STATE(5239), [sym_preproc_line] = STATE(5239), @@ -655336,35 +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(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(7210), - [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), + [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), @@ -655377,24 +647017,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5240] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(5629), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5240), [sym_preproc_endregion] = STATE(5240), [sym_preproc_line] = STATE(5240), @@ -655404,35 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7006), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_readonly] = ACTIONS(7661), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7014), - [anon_sym_var] = ACTIONS(5500), - [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), + [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), @@ -655445,15 +647085,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5241] = { - [sym__name] = STATE(5810), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_ref_type] = STATE(2386), - [sym__scoped_base_type] = STATE(2366), - [sym_identifier] = STATE(5575), - [sym__reserved_identifier] = STATE(2206), [sym_preproc_region] = STATE(5241), [sym_preproc_endregion] = STATE(5241), [sym_preproc_line] = STATE(5241), @@ -655463,44 +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), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3894), - [anon_sym_global] = ACTIONS(3894), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(3938), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3894), - [anon_sym_LT] = ACTIONS(3700), - [anon_sym_where] = ACTIONS(3894), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_notnull] = ACTIONS(3894), - [anon_sym_unmanaged] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_scoped] = ACTIONS(3894), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3894), - [anon_sym_yield] = ACTIONS(3894), - [anon_sym_when] = ACTIONS(3894), - [sym_discard] = ACTIONS(3702), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [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(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), @@ -655513,25 +647153,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5242] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6240), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_tuple_element] = STATE(7534), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5242), [sym_preproc_endregion] = STATE(5242), [sym_preproc_line] = STATE(5242), @@ -655541,34 +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), - [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(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7286), - [anon_sym_var] = ACTIONS(5500), - [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), + [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), @@ -655590,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_EQ] = ACTIONS(7663), - [anon_sym_LBRACK] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5754), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5754), - [anon_sym_CARET] = ACTIONS(5754), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5754), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5754), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_PLUS_EQ] = ACTIONS(7665), - [anon_sym_DASH_EQ] = ACTIONS(7665), - [anon_sym_STAR_EQ] = ACTIONS(7665), - [anon_sym_SLASH_EQ] = ACTIONS(7665), - [anon_sym_PERCENT_EQ] = ACTIONS(7665), - [anon_sym_AMP_EQ] = ACTIONS(7665), - [anon_sym_CARET_EQ] = ACTIONS(7665), - [anon_sym_PIPE_EQ] = ACTIONS(7665), - [anon_sym_LT_LT_EQ] = ACTIONS(7665), - [anon_sym_GT_GT_EQ] = ACTIONS(7665), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(7665), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(7665), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5754), - [anon_sym_on] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5752), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -655649,6 +647289,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5244] = { + [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), @@ -655658,52 +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), - [anon_sym_LBRACK] = ACTIONS(7074), - [anon_sym_COMMA] = ACTIONS(7074), - [anon_sym_LPAREN] = ACTIONS(7074), - [anon_sym_LT] = ACTIONS(7076), - [anon_sym_GT] = ACTIONS(7076), - [anon_sym_where] = ACTIONS(7074), - [anon_sym_QMARK] = ACTIONS(7076), - [anon_sym_BANG] = ACTIONS(7076), - [anon_sym_PLUS_PLUS] = ACTIONS(7074), - [anon_sym_DASH_DASH] = ACTIONS(7074), - [anon_sym_PLUS] = ACTIONS(7076), - [anon_sym_DASH] = ACTIONS(7076), - [anon_sym_STAR] = ACTIONS(7074), - [anon_sym_SLASH] = ACTIONS(7076), - [anon_sym_PERCENT] = ACTIONS(7074), - [anon_sym_CARET] = ACTIONS(7074), - [anon_sym_PIPE] = ACTIONS(7076), - [anon_sym_AMP] = ACTIONS(7076), - [anon_sym_LT_LT] = ACTIONS(7074), - [anon_sym_GT_GT] = ACTIONS(7076), - [anon_sym_GT_GT_GT] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7074), - [anon_sym_BANG_EQ] = ACTIONS(7074), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_DOT] = ACTIONS(7076), - [anon_sym_switch] = ACTIONS(7074), - [anon_sym_DOT_DOT] = ACTIONS(7074), - [anon_sym_and] = ACTIONS(7074), - [anon_sym_or] = ACTIONS(7076), - [anon_sym_AMP_AMP] = ACTIONS(7074), - [anon_sym_PIPE_PIPE] = ACTIONS(7074), - [sym_op_coalescing] = ACTIONS(7074), - [anon_sym_from] = ACTIONS(7074), - [anon_sym_into] = ACTIONS(7074), - [anon_sym_join] = ACTIONS(7074), - [anon_sym_let] = ACTIONS(7074), - [anon_sym_orderby] = ACTIONS(7074), - [anon_sym_ascending] = ACTIONS(7074), - [anon_sym_descending] = ACTIONS(7074), - [anon_sym_group] = ACTIONS(7074), - [anon_sym_select] = ACTIONS(7074), - [anon_sym_as] = ACTIONS(7076), - [anon_sym_is] = ACTIONS(7074), - [anon_sym_DASH_GT] = ACTIONS(7074), - [anon_sym_with] = ACTIONS(7074), + [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), @@ -655716,24 +647357,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5245] = { - [sym__name] = STATE(5081), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3672), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(3463), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), [sym_preproc_region] = STATE(5245), [sym_preproc_endregion] = STATE(5245), [sym_preproc_line] = STATE(5245), @@ -655743,34 +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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(7513), - [anon_sym_ref] = ACTIONS(4570), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7371), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -655783,6 +647425,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5246] = { + [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), @@ -655792,52 +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), - [anon_sym_LBRACK] = ACTIONS(4163), - [anon_sym_COMMA] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4163), - [anon_sym_LT] = ACTIONS(6996), - [anon_sym_GT] = ACTIONS(6996), - [anon_sym_where] = ACTIONS(4163), - [anon_sym_QMARK] = ACTIONS(6996), - [anon_sym_BANG] = ACTIONS(6996), - [anon_sym_PLUS_PLUS] = ACTIONS(4163), - [anon_sym_DASH_DASH] = ACTIONS(4163), - [anon_sym_PLUS] = ACTIONS(6996), - [anon_sym_DASH] = ACTIONS(6996), - [anon_sym_STAR] = ACTIONS(4163), - [anon_sym_SLASH] = ACTIONS(6996), - [anon_sym_PERCENT] = ACTIONS(4163), - [anon_sym_CARET] = ACTIONS(4163), - [anon_sym_PIPE] = ACTIONS(6996), - [anon_sym_AMP] = ACTIONS(6996), - [anon_sym_LT_LT] = ACTIONS(4163), - [anon_sym_GT_GT] = ACTIONS(6996), - [anon_sym_GT_GT_GT] = ACTIONS(4163), - [anon_sym_EQ_EQ] = ACTIONS(4163), - [anon_sym_BANG_EQ] = ACTIONS(4163), - [anon_sym_GT_EQ] = ACTIONS(4163), - [anon_sym_LT_EQ] = ACTIONS(4163), - [anon_sym_DOT] = ACTIONS(6996), - [anon_sym_switch] = ACTIONS(4163), - [anon_sym_DOT_DOT] = ACTIONS(4163), - [anon_sym_and] = ACTIONS(4163), - [anon_sym_or] = ACTIONS(6996), - [anon_sym_AMP_AMP] = ACTIONS(4163), - [anon_sym_PIPE_PIPE] = ACTIONS(4163), - [sym_op_coalescing] = ACTIONS(4163), - [anon_sym_from] = ACTIONS(4163), - [anon_sym_into] = ACTIONS(4163), - [anon_sym_join] = ACTIONS(4163), - [anon_sym_let] = ACTIONS(4163), - [anon_sym_orderby] = ACTIONS(4163), - [anon_sym_ascending] = ACTIONS(4163), - [anon_sym_descending] = ACTIONS(4163), - [anon_sym_group] = ACTIONS(4163), - [anon_sym_select] = ACTIONS(4163), - [anon_sym_as] = ACTIONS(6996), - [anon_sym_is] = ACTIONS(4163), - [anon_sym_DASH_GT] = ACTIONS(4163), - [anon_sym_with] = ACTIONS(4163), + [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), @@ -655859,52 +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), - [anon_sym_LBRACK] = ACTIONS(6151), - [anon_sym_COMMA] = ACTIONS(6151), - [anon_sym_LPAREN] = ACTIONS(6151), - [anon_sym_LT] = ACTIONS(6153), - [anon_sym_GT] = ACTIONS(6153), - [anon_sym_where] = ACTIONS(6151), - [anon_sym_QMARK] = ACTIONS(6153), - [anon_sym_BANG] = ACTIONS(6153), - [anon_sym_PLUS_PLUS] = ACTIONS(6151), - [anon_sym_DASH_DASH] = ACTIONS(6151), - [anon_sym_PLUS] = ACTIONS(6153), - [anon_sym_DASH] = ACTIONS(6153), - [anon_sym_STAR] = ACTIONS(6151), - [anon_sym_SLASH] = ACTIONS(6153), - [anon_sym_PERCENT] = ACTIONS(6151), - [anon_sym_CARET] = ACTIONS(6151), - [anon_sym_PIPE] = ACTIONS(6153), - [anon_sym_AMP] = ACTIONS(6153), - [anon_sym_LT_LT] = ACTIONS(6151), - [anon_sym_GT_GT] = ACTIONS(6153), - [anon_sym_GT_GT_GT] = ACTIONS(6151), - [anon_sym_EQ_EQ] = ACTIONS(6151), - [anon_sym_BANG_EQ] = ACTIONS(6151), - [anon_sym_GT_EQ] = ACTIONS(6151), - [anon_sym_LT_EQ] = ACTIONS(6151), - [anon_sym_DOT] = ACTIONS(6153), - [anon_sym_switch] = ACTIONS(6151), - [anon_sym_DOT_DOT] = ACTIONS(6151), - [anon_sym_and] = ACTIONS(6151), - [anon_sym_or] = ACTIONS(6153), - [anon_sym_AMP_AMP] = ACTIONS(6151), - [anon_sym_PIPE_PIPE] = ACTIONS(6151), - [sym_op_coalescing] = ACTIONS(6151), - [anon_sym_from] = ACTIONS(6151), - [anon_sym_into] = ACTIONS(6151), - [anon_sym_join] = ACTIONS(6151), - [anon_sym_let] = ACTIONS(6151), - [anon_sym_orderby] = ACTIONS(6151), - [anon_sym_ascending] = ACTIONS(6151), - [anon_sym_descending] = ACTIONS(6151), - [anon_sym_group] = ACTIONS(6151), - [anon_sym_select] = ACTIONS(6151), - [anon_sym_as] = ACTIONS(6153), - [anon_sym_is] = ACTIONS(6151), - [anon_sym_DASH_GT] = ACTIONS(6151), - [anon_sym_with] = ACTIONS(6151), + [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), @@ -655926,52 +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), - [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), + [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), @@ -655984,24 +647629,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5249] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7897), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5249), [sym_preproc_endregion] = STATE(5249), [sym_preproc_line] = STATE(5249), @@ -656011,34 +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(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7606), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7610), - [anon_sym_var] = ACTIONS(5500), - [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), + [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), @@ -656051,24 +647697,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5250] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7695), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5250), [sym_preproc_endregion] = STATE(5250), [sym_preproc_line] = STATE(5250), @@ -656078,34 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7612), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7616), - [anon_sym_var] = ACTIONS(7491), - [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), + [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), @@ -656118,24 +647765,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5251] = { - [sym__name] = STATE(2471), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2445), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2433), - [sym_type] = STATE(2385), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_identifier] = STATE(2399), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(5251), [sym_preproc_endregion] = STATE(5251), [sym_preproc_line] = STATE(5251), @@ -656145,34 +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), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LPAREN] = ACTIONS(7495), - [anon_sym_ref] = ACTIONS(3886), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_where] = ACTIONS(4432), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_scoped] = ACTIONS(7525), - [anon_sym_var] = ACTIONS(7365), - [sym_predefined_type] = ACTIONS(7367), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_when] = ACTIONS(4432), - [anon_sym_from] = ACTIONS(4432), - [anon_sym_into] = ACTIONS(4432), - [anon_sym_join] = ACTIONS(4432), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4432), - [anon_sym_orderby] = ACTIONS(4432), - [anon_sym_ascending] = ACTIONS(4432), - [anon_sym_descending] = ACTIONS(4432), - [anon_sym_group] = ACTIONS(4432), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4432), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -656185,24 +647833,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5252] = { - [sym__name] = STATE(5608), - [sym_alias_qualified_name] = STATE(5627), - [sym__simple_name] = STATE(5627), - [sym_qualified_name] = STATE(5627), - [sym_generic_name] = STATE(5585), - [sym_type] = STATE(5583), - [sym_implicit_type] = STATE(5637), - [sym_array_type] = STATE(5625), - [sym__array_base_type] = STATE(7380), - [sym_nullable_type] = STATE(5581), - [sym_pointer_type] = STATE(5581), - [sym__pointer_base_type] = STATE(8140), - [sym_function_pointer_type] = STATE(5581), - [sym_ref_type] = STATE(5637), - [sym_scoped_type] = STATE(5637), - [sym_tuple_type] = STATE(5609), - [sym_identifier] = STATE(5530), - [sym__reserved_identifier] = STATE(5560), + [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), @@ -656212,34 +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), - [sym__identifier_token] = ACTIONS(4328), - [anon_sym_alias] = ACTIONS(4330), - [anon_sym_global] = ACTIONS(4330), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4332), - [anon_sym_delegate] = ACTIONS(7250), - [anon_sym_file] = ACTIONS(4330), - [anon_sym_where] = ACTIONS(4330), - [anon_sym_notnull] = ACTIONS(4330), - [anon_sym_unmanaged] = ACTIONS(4330), - [anon_sym_scoped] = ACTIONS(7252), - [anon_sym_var] = ACTIONS(7254), - [sym_predefined_type] = ACTIONS(7256), - [anon_sym_yield] = ACTIONS(4330), - [anon_sym_when] = ACTIONS(4330), - [anon_sym_from] = ACTIONS(4330), - [anon_sym_into] = ACTIONS(4330), - [anon_sym_join] = ACTIONS(4330), - [anon_sym_on] = ACTIONS(4330), - [anon_sym_equals] = ACTIONS(4330), - [anon_sym_let] = ACTIONS(4330), - [anon_sym_orderby] = ACTIONS(4330), - [anon_sym_ascending] = ACTIONS(4330), - [anon_sym_descending] = ACTIONS(4330), - [anon_sym_group] = ACTIONS(4330), - [anon_sym_by] = ACTIONS(4330), - [anon_sym_select] = ACTIONS(4330), - [sym_grit_metavariable] = ACTIONS(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(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), @@ -656261,52 +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), - [anon_sym_LBRACK] = ACTIONS(7667), - [anon_sym_COMMA] = ACTIONS(7667), - [anon_sym_LPAREN] = ACTIONS(7667), - [anon_sym_LT] = ACTIONS(7669), - [anon_sym_GT] = ACTIONS(7669), - [anon_sym_where] = ACTIONS(7667), - [anon_sym_QMARK] = ACTIONS(7669), - [anon_sym_BANG] = ACTIONS(7669), - [anon_sym_PLUS_PLUS] = ACTIONS(7667), - [anon_sym_DASH_DASH] = ACTIONS(7667), - [anon_sym_PLUS] = ACTIONS(7669), - [anon_sym_DASH] = ACTIONS(7669), - [anon_sym_STAR] = ACTIONS(7667), - [anon_sym_SLASH] = ACTIONS(7669), - [anon_sym_PERCENT] = ACTIONS(7667), - [anon_sym_CARET] = ACTIONS(7667), - [anon_sym_PIPE] = ACTIONS(7669), - [anon_sym_AMP] = ACTIONS(7669), - [anon_sym_LT_LT] = ACTIONS(7667), - [anon_sym_GT_GT] = ACTIONS(7669), - [anon_sym_GT_GT_GT] = ACTIONS(7667), - [anon_sym_EQ_EQ] = ACTIONS(7667), - [anon_sym_BANG_EQ] = ACTIONS(7667), - [anon_sym_GT_EQ] = ACTIONS(7667), - [anon_sym_LT_EQ] = ACTIONS(7667), - [anon_sym_DOT] = ACTIONS(7669), - [anon_sym_switch] = ACTIONS(7667), - [anon_sym_DOT_DOT] = ACTIONS(7667), - [anon_sym_and] = ACTIONS(7671), - [anon_sym_or] = ACTIONS(7673), - [anon_sym_AMP_AMP] = ACTIONS(7667), - [anon_sym_PIPE_PIPE] = ACTIONS(7667), - [sym_op_coalescing] = ACTIONS(7667), - [anon_sym_from] = ACTIONS(7667), - [anon_sym_into] = ACTIONS(7667), - [anon_sym_join] = ACTIONS(7667), - [anon_sym_let] = ACTIONS(7667), - [anon_sym_orderby] = ACTIONS(7667), - [anon_sym_ascending] = ACTIONS(7667), - [anon_sym_descending] = ACTIONS(7667), - [anon_sym_group] = ACTIONS(7667), - [anon_sym_select] = ACTIONS(7667), - [anon_sym_as] = ACTIONS(7669), - [anon_sym_is] = ACTIONS(7667), - [anon_sym_DASH_GT] = ACTIONS(7667), - [anon_sym_with] = ACTIONS(7667), + [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), @@ -656319,24 +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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7823), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -656350,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(7612), - [anon_sym_delegate] = ACTIONS(3709), + [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(7616), - [anon_sym_var] = ACTIONS(7491), - [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), @@ -656386,24 +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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7824), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -656417,14 +648069,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(7612), - [anon_sym_delegate] = ACTIONS(3709), + [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(7616), - [anon_sym_var] = ACTIONS(7491), + [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), @@ -656454,23 +648106,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5256] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(2385), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -656484,14 +648137,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(7168), - [anon_sym_delegate] = ACTIONS(3709), + [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(7172), - [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), @@ -656520,24 +648173,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5257] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7894), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5257), [sym_preproc_endregion] = STATE(5257), [sym_preproc_line] = STATE(5257), @@ -656547,34 +648182,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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(7612), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7616), - [anon_sym_var] = ACTIONS(7491), - [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), + [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), @@ -656587,24 +648241,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5258] = { - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4992), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4842), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), [sym_preproc_region] = STATE(5258), [sym_preproc_endregion] = STATE(5258), [sym_preproc_line] = STATE(5258), @@ -656614,34 +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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(7509), - [anon_sym_ref] = ACTIONS(4107), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7369), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -656663,52 +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(6273), - [anon_sym_COMMA] = ACTIONS(6273), - [anon_sym_LPAREN] = ACTIONS(6273), - [anon_sym_LT] = ACTIONS(6275), - [anon_sym_GT] = ACTIONS(6275), - [anon_sym_where] = ACTIONS(6273), - [anon_sym_QMARK] = ACTIONS(6275), - [anon_sym_BANG] = ACTIONS(6275), - [anon_sym_PLUS_PLUS] = ACTIONS(6273), - [anon_sym_DASH_DASH] = ACTIONS(6273), - [anon_sym_PLUS] = ACTIONS(6275), - [anon_sym_DASH] = ACTIONS(6275), - [anon_sym_STAR] = ACTIONS(6273), - [anon_sym_SLASH] = ACTIONS(6275), - [anon_sym_PERCENT] = ACTIONS(6273), - [anon_sym_CARET] = ACTIONS(6273), - [anon_sym_PIPE] = ACTIONS(6275), - [anon_sym_AMP] = ACTIONS(6275), - [anon_sym_LT_LT] = ACTIONS(6273), - [anon_sym_GT_GT] = ACTIONS(6275), - [anon_sym_GT_GT_GT] = ACTIONS(6273), - [anon_sym_EQ_EQ] = ACTIONS(6273), - [anon_sym_BANG_EQ] = ACTIONS(6273), - [anon_sym_GT_EQ] = ACTIONS(6273), - [anon_sym_LT_EQ] = ACTIONS(6273), - [anon_sym_DOT] = ACTIONS(6275), - [anon_sym_switch] = ACTIONS(6273), - [anon_sym_DOT_DOT] = ACTIONS(6273), - [anon_sym_and] = ACTIONS(6273), - [anon_sym_or] = ACTIONS(6275), - [anon_sym_AMP_AMP] = ACTIONS(6273), - [anon_sym_PIPE_PIPE] = ACTIONS(6273), - [sym_op_coalescing] = ACTIONS(6273), - [anon_sym_from] = ACTIONS(6273), - [anon_sym_into] = ACTIONS(6273), - [anon_sym_join] = ACTIONS(6273), - [anon_sym_let] = ACTIONS(6273), - [anon_sym_orderby] = ACTIONS(6273), - [anon_sym_ascending] = ACTIONS(6273), - [anon_sym_descending] = ACTIONS(6273), - [anon_sym_group] = ACTIONS(6273), - [anon_sym_select] = ACTIONS(6273), - [anon_sym_as] = ACTIONS(6275), - [anon_sym_is] = ACTIONS(6273), - [anon_sym_DASH_GT] = ACTIONS(6273), - [anon_sym_with] = ACTIONS(6273), + [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), @@ -656730,52 +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), - [anon_sym_LBRACK] = ACTIONS(6253), - [anon_sym_COMMA] = ACTIONS(6253), - [anon_sym_LPAREN] = ACTIONS(6253), - [anon_sym_LT] = ACTIONS(6255), - [anon_sym_GT] = ACTIONS(6255), - [anon_sym_where] = ACTIONS(6253), - [anon_sym_QMARK] = ACTIONS(6255), - [anon_sym_BANG] = ACTIONS(6255), - [anon_sym_PLUS_PLUS] = ACTIONS(6253), - [anon_sym_DASH_DASH] = ACTIONS(6253), - [anon_sym_PLUS] = ACTIONS(6255), - [anon_sym_DASH] = ACTIONS(6255), - [anon_sym_STAR] = ACTIONS(6253), - [anon_sym_SLASH] = ACTIONS(6255), - [anon_sym_PERCENT] = ACTIONS(6253), - [anon_sym_CARET] = ACTIONS(6253), - [anon_sym_PIPE] = ACTIONS(6255), - [anon_sym_AMP] = ACTIONS(6255), - [anon_sym_LT_LT] = ACTIONS(6253), - [anon_sym_GT_GT] = ACTIONS(6255), - [anon_sym_GT_GT_GT] = ACTIONS(6253), - [anon_sym_EQ_EQ] = ACTIONS(6253), - [anon_sym_BANG_EQ] = ACTIONS(6253), - [anon_sym_GT_EQ] = ACTIONS(6253), - [anon_sym_LT_EQ] = ACTIONS(6253), - [anon_sym_DOT] = ACTIONS(6255), - [anon_sym_switch] = ACTIONS(6253), - [anon_sym_DOT_DOT] = ACTIONS(6253), - [anon_sym_and] = ACTIONS(6253), - [anon_sym_or] = ACTIONS(6255), - [anon_sym_AMP_AMP] = ACTIONS(6253), - [anon_sym_PIPE_PIPE] = ACTIONS(6253), - [sym_op_coalescing] = ACTIONS(6253), - [anon_sym_from] = ACTIONS(6253), - [anon_sym_into] = ACTIONS(6253), - [anon_sym_join] = ACTIONS(6253), - [anon_sym_let] = ACTIONS(6253), - [anon_sym_orderby] = ACTIONS(6253), - [anon_sym_ascending] = ACTIONS(6253), - [anon_sym_descending] = ACTIONS(6253), - [anon_sym_group] = ACTIONS(6253), - [anon_sym_select] = ACTIONS(6253), - [anon_sym_as] = ACTIONS(6255), - [anon_sym_is] = ACTIONS(6253), - [anon_sym_DASH_GT] = ACTIONS(6253), - [anon_sym_with] = ACTIONS(6253), + [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), @@ -656788,24 +648445,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5261] = { - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4145), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(4046), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), [sym_preproc_region] = STATE(5261), [sym_preproc_endregion] = STATE(5261), [sym_preproc_line] = STATE(5261), @@ -656815,34 +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(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_ref] = ACTIONS(4590), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7353), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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(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), @@ -656855,24 +648513,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5262] = { - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4145), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(4046), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), [sym_preproc_region] = STATE(5262), [sym_preproc_endregion] = STATE(5262), [sym_preproc_line] = STATE(5262), @@ -656882,34 +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), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_ref] = ACTIONS(4626), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7266), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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(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), @@ -656931,52 +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(6113), - [anon_sym_COMMA] = ACTIONS(6113), - [anon_sym_LPAREN] = ACTIONS(6113), - [anon_sym_LT] = ACTIONS(6115), - [anon_sym_GT] = ACTIONS(6115), - [anon_sym_where] = ACTIONS(6113), - [anon_sym_QMARK] = ACTIONS(6115), - [anon_sym_BANG] = ACTIONS(6115), - [anon_sym_PLUS_PLUS] = ACTIONS(6113), - [anon_sym_DASH_DASH] = ACTIONS(6113), - [anon_sym_PLUS] = ACTIONS(6115), - [anon_sym_DASH] = ACTIONS(6115), - [anon_sym_STAR] = ACTIONS(6113), - [anon_sym_SLASH] = ACTIONS(6115), - [anon_sym_PERCENT] = ACTIONS(6113), - [anon_sym_CARET] = ACTIONS(6113), - [anon_sym_PIPE] = ACTIONS(6115), - [anon_sym_AMP] = ACTIONS(6115), - [anon_sym_LT_LT] = ACTIONS(6113), - [anon_sym_GT_GT] = ACTIONS(6115), - [anon_sym_GT_GT_GT] = ACTIONS(6113), - [anon_sym_EQ_EQ] = ACTIONS(6113), - [anon_sym_BANG_EQ] = ACTIONS(6113), - [anon_sym_GT_EQ] = ACTIONS(6113), - [anon_sym_LT_EQ] = ACTIONS(6113), - [anon_sym_DOT] = ACTIONS(6115), - [anon_sym_switch] = ACTIONS(6113), - [anon_sym_DOT_DOT] = ACTIONS(6113), - [anon_sym_and] = ACTIONS(6113), - [anon_sym_or] = ACTIONS(6115), - [anon_sym_AMP_AMP] = ACTIONS(6113), - [anon_sym_PIPE_PIPE] = ACTIONS(6113), - [sym_op_coalescing] = ACTIONS(6113), - [anon_sym_from] = ACTIONS(6113), - [anon_sym_into] = ACTIONS(6113), - [anon_sym_join] = ACTIONS(6113), - [anon_sym_let] = ACTIONS(6113), - [anon_sym_orderby] = ACTIONS(6113), - [anon_sym_ascending] = ACTIONS(6113), - [anon_sym_descending] = ACTIONS(6113), - [anon_sym_group] = ACTIONS(6113), - [anon_sym_select] = ACTIONS(6113), - [anon_sym_as] = ACTIONS(6115), - [anon_sym_is] = ACTIONS(6113), - [anon_sym_DASH_GT] = ACTIONS(6113), - [anon_sym_with] = ACTIONS(6113), + [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), @@ -656998,52 +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), - [anon_sym_LBRACK] = ACTIONS(6121), - [anon_sym_COMMA] = ACTIONS(6121), - [anon_sym_LPAREN] = ACTIONS(6121), - [anon_sym_LT] = ACTIONS(6123), - [anon_sym_GT] = ACTIONS(6123), - [anon_sym_where] = ACTIONS(6121), - [anon_sym_QMARK] = ACTIONS(6123), - [anon_sym_BANG] = ACTIONS(6123), - [anon_sym_PLUS_PLUS] = ACTIONS(6121), - [anon_sym_DASH_DASH] = ACTIONS(6121), - [anon_sym_PLUS] = ACTIONS(6123), - [anon_sym_DASH] = ACTIONS(6123), - [anon_sym_STAR] = ACTIONS(6121), - [anon_sym_SLASH] = ACTIONS(6123), - [anon_sym_PERCENT] = ACTIONS(6121), - [anon_sym_CARET] = ACTIONS(6121), - [anon_sym_PIPE] = ACTIONS(6123), - [anon_sym_AMP] = ACTIONS(6123), - [anon_sym_LT_LT] = ACTIONS(6121), - [anon_sym_GT_GT] = ACTIONS(6123), - [anon_sym_GT_GT_GT] = ACTIONS(6121), - [anon_sym_EQ_EQ] = ACTIONS(6121), - [anon_sym_BANG_EQ] = ACTIONS(6121), - [anon_sym_GT_EQ] = ACTIONS(6121), - [anon_sym_LT_EQ] = ACTIONS(6121), - [anon_sym_DOT] = ACTIONS(6123), - [anon_sym_switch] = ACTIONS(6121), - [anon_sym_DOT_DOT] = ACTIONS(6121), - [anon_sym_and] = ACTIONS(6121), - [anon_sym_or] = ACTIONS(6123), - [anon_sym_AMP_AMP] = ACTIONS(6121), - [anon_sym_PIPE_PIPE] = ACTIONS(6121), - [sym_op_coalescing] = ACTIONS(6121), - [anon_sym_from] = ACTIONS(6121), - [anon_sym_into] = ACTIONS(6121), - [anon_sym_join] = ACTIONS(6121), - [anon_sym_let] = ACTIONS(6121), - [anon_sym_orderby] = ACTIONS(6121), - [anon_sym_ascending] = ACTIONS(6121), - [anon_sym_descending] = ACTIONS(6121), - [anon_sym_group] = ACTIONS(6121), - [anon_sym_select] = ACTIONS(6121), - [anon_sym_as] = ACTIONS(6123), - [anon_sym_is] = ACTIONS(6121), - [anon_sym_DASH_GT] = ACTIONS(6121), - [anon_sym_with] = ACTIONS(6121), + [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), @@ -657056,24 +648717,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5265] = { - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4686), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4699), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), [sym_preproc_region] = STATE(5265), [sym_preproc_endregion] = STATE(5265), [sym_preproc_line] = STATE(5265), @@ -657083,34 +648726,53 @@ 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), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7519), - [anon_sym_ref] = ACTIONS(4389), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7378), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), - [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(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), @@ -657123,6 +648785,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -657132,52 +648812,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5266), [sym_preproc_define] = STATE(5266), [sym_preproc_undef] = STATE(5266), - [anon_sym_LBRACK] = ACTIONS(6005), - [anon_sym_COMMA] = ACTIONS(6005), - [anon_sym_LPAREN] = ACTIONS(6005), - [anon_sym_LT] = ACTIONS(6007), - [anon_sym_GT] = ACTIONS(6007), - [anon_sym_where] = ACTIONS(6005), - [anon_sym_QMARK] = ACTIONS(6007), - [anon_sym_BANG] = ACTIONS(6007), - [anon_sym_PLUS_PLUS] = ACTIONS(6005), - [anon_sym_DASH_DASH] = ACTIONS(6005), - [anon_sym_PLUS] = ACTIONS(6007), - [anon_sym_DASH] = ACTIONS(6007), - [anon_sym_STAR] = ACTIONS(6005), - [anon_sym_SLASH] = ACTIONS(6007), - [anon_sym_PERCENT] = ACTIONS(6005), - [anon_sym_CARET] = ACTIONS(6005), - [anon_sym_PIPE] = ACTIONS(6007), - [anon_sym_AMP] = ACTIONS(6007), - [anon_sym_LT_LT] = ACTIONS(6005), - [anon_sym_GT_GT] = ACTIONS(6007), - [anon_sym_GT_GT_GT] = ACTIONS(6005), - [anon_sym_EQ_EQ] = ACTIONS(6005), - [anon_sym_BANG_EQ] = ACTIONS(6005), - [anon_sym_GT_EQ] = ACTIONS(6005), - [anon_sym_LT_EQ] = ACTIONS(6005), - [anon_sym_DOT] = ACTIONS(6007), - [anon_sym_switch] = ACTIONS(6005), - [anon_sym_DOT_DOT] = ACTIONS(6005), - [anon_sym_and] = ACTIONS(6005), - [anon_sym_or] = ACTIONS(6007), - [anon_sym_AMP_AMP] = ACTIONS(6005), - [anon_sym_PIPE_PIPE] = ACTIONS(6005), - [sym_op_coalescing] = ACTIONS(6005), - [anon_sym_from] = ACTIONS(6005), - [anon_sym_into] = ACTIONS(6005), - [anon_sym_join] = ACTIONS(6005), - [anon_sym_let] = ACTIONS(6005), - [anon_sym_orderby] = ACTIONS(6005), - [anon_sym_ascending] = ACTIONS(6005), - [anon_sym_descending] = ACTIONS(6005), - [anon_sym_group] = ACTIONS(6005), - [anon_sym_select] = ACTIONS(6005), - [anon_sym_as] = ACTIONS(6007), - [anon_sym_is] = ACTIONS(6005), - [anon_sym_DASH_GT] = ACTIONS(6005), - [anon_sym_with] = ACTIONS(6005), + [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_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(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), @@ -657199,52 +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(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), + [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), @@ -657257,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), @@ -657266,103 +648949,18 @@ 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(5993), - [anon_sym_COMMA] = ACTIONS(5993), - [anon_sym_LPAREN] = ACTIONS(5993), - [anon_sym_LT] = ACTIONS(5995), - [anon_sym_GT] = ACTIONS(5995), - [anon_sym_where] = ACTIONS(5993), - [anon_sym_QMARK] = ACTIONS(5995), - [anon_sym_BANG] = ACTIONS(5995), - [anon_sym_PLUS_PLUS] = ACTIONS(5993), - [anon_sym_DASH_DASH] = ACTIONS(5993), - [anon_sym_PLUS] = ACTIONS(5995), - [anon_sym_DASH] = ACTIONS(5995), - [anon_sym_STAR] = ACTIONS(5993), - [anon_sym_SLASH] = ACTIONS(5995), - [anon_sym_PERCENT] = ACTIONS(5993), - [anon_sym_CARET] = ACTIONS(5993), - [anon_sym_PIPE] = ACTIONS(5995), - [anon_sym_AMP] = ACTIONS(5995), - [anon_sym_LT_LT] = ACTIONS(5993), - [anon_sym_GT_GT] = ACTIONS(5995), - [anon_sym_GT_GT_GT] = ACTIONS(5993), - [anon_sym_EQ_EQ] = ACTIONS(5993), - [anon_sym_BANG_EQ] = ACTIONS(5993), - [anon_sym_GT_EQ] = ACTIONS(5993), - [anon_sym_LT_EQ] = ACTIONS(5993), - [anon_sym_DOT] = ACTIONS(5995), - [anon_sym_switch] = ACTIONS(5993), - [anon_sym_DOT_DOT] = ACTIONS(5993), - [anon_sym_and] = ACTIONS(5993), - [anon_sym_or] = ACTIONS(5995), - [anon_sym_AMP_AMP] = ACTIONS(5993), - [anon_sym_PIPE_PIPE] = ACTIONS(5993), - [sym_op_coalescing] = ACTIONS(5993), - [anon_sym_from] = ACTIONS(5993), - [anon_sym_into] = ACTIONS(5993), - [anon_sym_join] = ACTIONS(5993), - [anon_sym_let] = ACTIONS(5993), - [anon_sym_orderby] = ACTIONS(5993), - [anon_sym_ascending] = ACTIONS(5993), - [anon_sym_descending] = ACTIONS(5993), - [anon_sym_group] = ACTIONS(5993), - [anon_sym_select] = ACTIONS(5993), - [anon_sym_as] = ACTIONS(5995), - [anon_sym_is] = ACTIONS(5993), - [anon_sym_DASH_GT] = ACTIONS(5993), - [anon_sym_with] = ACTIONS(5993), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5269] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7816), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(5269), - [sym_preproc_endregion] = STATE(5269), - [sym_preproc_line] = STATE(5269), - [sym_preproc_pragma] = STATE(5269), - [sym_preproc_nullable] = STATE(5269), - [sym_preproc_error] = STATE(5269), - [sym_preproc_warning] = STATE(5269), - [sym_preproc_define] = STATE(5269), - [sym_preproc_undef] = STATE(5269), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7606), - [anon_sym_delegate] = ACTIONS(3709), + [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(7610), - [anon_sym_var] = ACTIONS(5500), + [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), @@ -657390,25 +648988,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [5269] = { + [sym_preproc_region] = STATE(5269), + [sym_preproc_endregion] = STATE(5269), + [sym_preproc_line] = STATE(5269), + [sym_preproc_pragma] = STATE(5269), + [sym_preproc_nullable] = STATE(5269), + [sym_preproc_error] = STATE(5269), + [sym_preproc_warning] = STATE(5269), + [sym_preproc_define] = STATE(5269), + [sym_preproc_undef] = STATE(5269), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [5270] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7384), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5270), [sym_preproc_endregion] = STATE(5270), [sym_preproc_line] = STATE(5270), @@ -657418,34 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(5887), - [anon_sym_delegate] = ACTIONS(5889), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(5895), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(5897), - [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), + [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), @@ -657458,24 +649125,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5271] = { - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4035), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(4046), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), [sym_preproc_region] = STATE(5271), [sym_preproc_endregion] = STATE(5271), [sym_preproc_line] = STATE(5271), @@ -657485,34 +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), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_ref] = ACTIONS(4230), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(4383), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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(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), @@ -657525,24 +649193,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5272] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(8006), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5272), [sym_preproc_endregion] = STATE(5272), [sym_preproc_line] = STATE(5272), @@ -657552,34 +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(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7612), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7616), - [anon_sym_var] = ACTIONS(7491), - [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), + [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), @@ -657592,24 +649261,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5273] = { - [sym__name] = STATE(6588), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(2385), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6559), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -657623,14 +649293,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(7501), - [anon_sym_delegate] = ACTIONS(3709), + [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(7505), - [anon_sym_var] = ACTIONS(7507), + [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), @@ -657659,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), @@ -657668,52 +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(6045), - [anon_sym_COMMA] = ACTIONS(6045), - [anon_sym_LPAREN] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6047), - [anon_sym_GT] = ACTIONS(6047), - [anon_sym_where] = ACTIONS(6045), - [anon_sym_QMARK] = ACTIONS(6047), - [anon_sym_BANG] = ACTIONS(6047), - [anon_sym_PLUS_PLUS] = ACTIONS(6045), - [anon_sym_DASH_DASH] = ACTIONS(6045), - [anon_sym_PLUS] = ACTIONS(6047), - [anon_sym_DASH] = ACTIONS(6047), - [anon_sym_STAR] = ACTIONS(6045), - [anon_sym_SLASH] = ACTIONS(6047), - [anon_sym_PERCENT] = ACTIONS(6045), - [anon_sym_CARET] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6047), - [anon_sym_AMP] = ACTIONS(6047), - [anon_sym_LT_LT] = ACTIONS(6045), - [anon_sym_GT_GT] = ACTIONS(6047), - [anon_sym_GT_GT_GT] = ACTIONS(6045), - [anon_sym_EQ_EQ] = ACTIONS(6045), - [anon_sym_BANG_EQ] = ACTIONS(6045), - [anon_sym_GT_EQ] = ACTIONS(6045), - [anon_sym_LT_EQ] = ACTIONS(6045), - [anon_sym_DOT] = ACTIONS(6047), - [anon_sym_switch] = ACTIONS(6045), - [anon_sym_DOT_DOT] = ACTIONS(6045), - [anon_sym_and] = ACTIONS(6045), - [anon_sym_or] = ACTIONS(6047), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [sym_op_coalescing] = ACTIONS(6045), - [anon_sym_from] = ACTIONS(6045), - [anon_sym_into] = ACTIONS(6045), - [anon_sym_join] = ACTIONS(6045), - [anon_sym_let] = ACTIONS(6045), - [anon_sym_orderby] = ACTIONS(6045), - [anon_sym_ascending] = ACTIONS(6045), - [anon_sym_descending] = ACTIONS(6045), - [anon_sym_group] = ACTIONS(6045), - [anon_sym_select] = ACTIONS(6045), - [anon_sym_as] = ACTIONS(6047), - [anon_sym_is] = ACTIONS(6045), - [anon_sym_DASH_GT] = ACTIONS(6045), - [anon_sym_with] = ACTIONS(6045), + [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), @@ -657726,24 +649397,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5275] = { - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4145), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(4046), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -657753,85 +649425,18 @@ 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), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_ref] = ACTIONS(4230), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(4383), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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), - }, - [5276] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7871), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(5276), - [sym_preproc_endregion] = STATE(5276), - [sym_preproc_line] = STATE(5276), - [sym_preproc_pragma] = STATE(5276), - [sym_preproc_nullable] = STATE(5276), - [sym_preproc_error] = STATE(5276), - [sym_preproc_warning] = STATE(5276), - [sym_preproc_define] = STATE(5276), - [sym_preproc_undef] = STATE(5276), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7606), - [anon_sym_delegate] = ACTIONS(3709), + [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(7610), - [anon_sym_var] = ACTIONS(5500), + [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), @@ -657859,6 +649464,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [5276] = { + [sym_preproc_region] = STATE(5276), + [sym_preproc_endregion] = STATE(5276), + [sym_preproc_line] = STATE(5276), + [sym_preproc_pragma] = STATE(5276), + [sym_preproc_nullable] = STATE(5276), + [sym_preproc_error] = STATE(5276), + [sym_preproc_warning] = STATE(5276), + [sym_preproc_define] = STATE(5276), + [sym_preproc_undef] = STATE(5276), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [5277] = { [sym_preproc_region] = STATE(5277), [sym_preproc_endregion] = STATE(5277), @@ -657869,52 +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(5752), - [anon_sym_COMMA] = ACTIONS(5752), - [anon_sym_LPAREN] = ACTIONS(5752), - [anon_sym_LT] = ACTIONS(5754), - [anon_sym_GT] = ACTIONS(5754), - [anon_sym_where] = ACTIONS(5752), - [anon_sym_QMARK] = ACTIONS(5754), - [anon_sym_BANG] = ACTIONS(5754), - [anon_sym_PLUS_PLUS] = ACTIONS(5752), - [anon_sym_DASH_DASH] = ACTIONS(5752), - [anon_sym_PLUS] = ACTIONS(5754), - [anon_sym_DASH] = ACTIONS(5754), - [anon_sym_STAR] = ACTIONS(5752), - [anon_sym_SLASH] = ACTIONS(5754), - [anon_sym_PERCENT] = ACTIONS(5752), - [anon_sym_CARET] = ACTIONS(5752), - [anon_sym_PIPE] = ACTIONS(5754), - [anon_sym_AMP] = ACTIONS(5754), - [anon_sym_LT_LT] = ACTIONS(5752), - [anon_sym_GT_GT] = ACTIONS(5754), - [anon_sym_GT_GT_GT] = ACTIONS(5752), - [anon_sym_EQ_EQ] = ACTIONS(5752), - [anon_sym_BANG_EQ] = ACTIONS(5752), - [anon_sym_GT_EQ] = ACTIONS(5752), - [anon_sym_LT_EQ] = ACTIONS(5752), - [anon_sym_DOT] = ACTIONS(5754), - [anon_sym_switch] = ACTIONS(5752), - [anon_sym_DOT_DOT] = ACTIONS(5752), - [anon_sym_and] = ACTIONS(5752), - [anon_sym_or] = ACTIONS(5754), - [anon_sym_AMP_AMP] = ACTIONS(5752), - [anon_sym_PIPE_PIPE] = ACTIONS(5752), - [sym_op_coalescing] = ACTIONS(5752), - [anon_sym_from] = ACTIONS(5752), - [anon_sym_into] = ACTIONS(5752), - [anon_sym_join] = ACTIONS(5752), - [anon_sym_let] = ACTIONS(5752), - [anon_sym_orderby] = ACTIONS(5752), - [anon_sym_ascending] = ACTIONS(5752), - [anon_sym_descending] = ACTIONS(5752), - [anon_sym_group] = ACTIONS(5752), - [anon_sym_select] = ACTIONS(5752), - [anon_sym_as] = ACTIONS(5754), - [anon_sym_is] = ACTIONS(5752), - [anon_sym_DASH_GT] = ACTIONS(5752), - [anon_sym_with] = ACTIONS(5752), + [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), @@ -657927,24 +649601,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5278] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6360), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5278), [sym_preproc_endregion] = STATE(5278), [sym_preproc_line] = STATE(5278), @@ -657954,34 +649610,53 @@ 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), - [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(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7489), - [anon_sym_var] = ACTIONS(7491), - [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), + [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), @@ -658003,52 +649678,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5279), [sym_preproc_define] = STATE(5279), [sym_preproc_undef] = STATE(5279), - [anon_sym_LBRACK] = ACTIONS(6125), - [anon_sym_COMMA] = ACTIONS(6125), - [anon_sym_LPAREN] = ACTIONS(6125), - [anon_sym_LT] = ACTIONS(6127), - [anon_sym_GT] = ACTIONS(6127), - [anon_sym_where] = ACTIONS(6125), - [anon_sym_QMARK] = ACTIONS(6127), - [anon_sym_BANG] = ACTIONS(6127), - [anon_sym_PLUS_PLUS] = ACTIONS(6125), - [anon_sym_DASH_DASH] = ACTIONS(6125), - [anon_sym_PLUS] = ACTIONS(6127), - [anon_sym_DASH] = ACTIONS(6127), - [anon_sym_STAR] = ACTIONS(6125), - [anon_sym_SLASH] = ACTIONS(6127), - [anon_sym_PERCENT] = ACTIONS(6125), - [anon_sym_CARET] = ACTIONS(6125), - [anon_sym_PIPE] = ACTIONS(6127), - [anon_sym_AMP] = ACTIONS(6127), - [anon_sym_LT_LT] = ACTIONS(6125), - [anon_sym_GT_GT] = ACTIONS(6127), - [anon_sym_GT_GT_GT] = ACTIONS(6125), - [anon_sym_EQ_EQ] = ACTIONS(6125), - [anon_sym_BANG_EQ] = ACTIONS(6125), - [anon_sym_GT_EQ] = ACTIONS(6125), - [anon_sym_LT_EQ] = ACTIONS(6125), - [anon_sym_DOT] = ACTIONS(6127), - [anon_sym_switch] = ACTIONS(6125), - [anon_sym_DOT_DOT] = ACTIONS(6125), - [anon_sym_and] = ACTIONS(6125), - [anon_sym_or] = ACTIONS(6127), - [anon_sym_AMP_AMP] = ACTIONS(6125), - [anon_sym_PIPE_PIPE] = ACTIONS(6125), - [sym_op_coalescing] = ACTIONS(6125), - [anon_sym_from] = ACTIONS(6125), - [anon_sym_into] = ACTIONS(6125), - [anon_sym_join] = ACTIONS(6125), - [anon_sym_let] = ACTIONS(6125), - [anon_sym_orderby] = ACTIONS(6125), - [anon_sym_ascending] = ACTIONS(6125), - [anon_sym_descending] = ACTIONS(6125), - [anon_sym_group] = ACTIONS(6125), - [anon_sym_select] = ACTIONS(6125), - [anon_sym_as] = ACTIONS(6127), - [anon_sym_is] = ACTIONS(6125), - [anon_sym_DASH_GT] = ACTIONS(6125), - [anon_sym_with] = ACTIONS(6125), + [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), @@ -658061,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), @@ -658070,52 +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(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__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), @@ -658128,24 +649805,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5281] = { - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4805), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4699), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), + [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), @@ -658155,34 +649833,34 @@ 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), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7519), - [anon_sym_ref] = ACTIONS(4389), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7378), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), - [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(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), @@ -658195,6 +649873,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -658204,52 +649900,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5282), [sym_preproc_define] = STATE(5282), [sym_preproc_undef] = STATE(5282), - [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__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), @@ -658262,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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7712), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5283), [sym_preproc_endregion] = STATE(5283), [sym_preproc_line] = STATE(5283), @@ -658289,34 +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(7612), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7616), - [anon_sym_var] = ACTIONS(7491), - [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), + [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), @@ -658329,7 +650009,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5284] = { - [sym_type_argument_list] = STATE(3621), [sym_preproc_region] = STATE(5284), [sym_preproc_endregion] = STATE(5284), [sym_preproc_line] = STATE(5284), @@ -658339,51 +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), - [anon_sym_LBRACK] = ACTIONS(3953), - [anon_sym_LPAREN] = ACTIONS(3953), - [anon_sym_LBRACE] = ACTIONS(3953), - [anon_sym_LT] = ACTIONS(5777), - [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(7675), - [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), + [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), @@ -658396,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), @@ -658405,52 +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(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__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), @@ -658463,6 +650145,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5286] = { + [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), @@ -658472,52 +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), - [anon_sym_LBRACK] = ACTIONS(7138), - [anon_sym_COMMA] = ACTIONS(7138), - [anon_sym_LPAREN] = ACTIONS(7138), - [anon_sym_LT] = ACTIONS(7140), - [anon_sym_GT] = ACTIONS(7140), - [anon_sym_where] = ACTIONS(7138), - [anon_sym_QMARK] = ACTIONS(7140), - [anon_sym_BANG] = ACTIONS(7140), - [anon_sym_PLUS_PLUS] = ACTIONS(7138), - [anon_sym_DASH_DASH] = ACTIONS(7138), - [anon_sym_PLUS] = ACTIONS(7140), - [anon_sym_DASH] = ACTIONS(7140), - [anon_sym_STAR] = ACTIONS(7138), - [anon_sym_SLASH] = ACTIONS(7140), - [anon_sym_PERCENT] = ACTIONS(7138), - [anon_sym_CARET] = ACTIONS(7138), - [anon_sym_PIPE] = ACTIONS(7140), - [anon_sym_AMP] = ACTIONS(7140), - [anon_sym_LT_LT] = ACTIONS(7138), - [anon_sym_GT_GT] = ACTIONS(7140), - [anon_sym_GT_GT_GT] = ACTIONS(7138), - [anon_sym_EQ_EQ] = ACTIONS(7138), - [anon_sym_BANG_EQ] = ACTIONS(7138), - [anon_sym_GT_EQ] = ACTIONS(7138), - [anon_sym_LT_EQ] = ACTIONS(7138), - [anon_sym_DOT] = ACTIONS(7140), - [anon_sym_switch] = ACTIONS(7138), - [anon_sym_DOT_DOT] = ACTIONS(7138), - [anon_sym_and] = ACTIONS(7138), - [anon_sym_or] = ACTIONS(7140), - [anon_sym_AMP_AMP] = ACTIONS(7138), - [anon_sym_PIPE_PIPE] = ACTIONS(7138), - [sym_op_coalescing] = ACTIONS(7138), - [anon_sym_from] = ACTIONS(7138), - [anon_sym_into] = ACTIONS(7138), - [anon_sym_join] = ACTIONS(7138), - [anon_sym_let] = ACTIONS(7138), - [anon_sym_orderby] = ACTIONS(7138), - [anon_sym_ascending] = ACTIONS(7138), - [anon_sym_descending] = ACTIONS(7138), - [anon_sym_group] = ACTIONS(7138), - [anon_sym_select] = ACTIONS(7138), - [anon_sym_as] = ACTIONS(7140), - [anon_sym_is] = ACTIONS(7138), - [anon_sym_DASH_GT] = ACTIONS(7138), - [anon_sym_with] = ACTIONS(7138), + [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), @@ -658539,52 +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), - [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), + [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), @@ -658597,24 +650281,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5288] = { - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4992), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4842), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -658624,34 +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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(7509), - [anon_sym_ref] = ACTIONS(4524), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7380), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -658664,24 +650349,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5289] = { - [sym__name] = STATE(5081), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3770), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(3463), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), + [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), @@ -658691,34 +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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(7513), - [anon_sym_ref] = ACTIONS(4153), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7384), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -658740,52 +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(7126), - [anon_sym_COMMA] = ACTIONS(7126), - [anon_sym_LPAREN] = ACTIONS(7126), - [anon_sym_LT] = ACTIONS(7128), - [anon_sym_GT] = ACTIONS(7128), - [anon_sym_where] = ACTIONS(7126), - [anon_sym_QMARK] = ACTIONS(7128), - [anon_sym_BANG] = ACTIONS(7128), - [anon_sym_PLUS_PLUS] = ACTIONS(7126), - [anon_sym_DASH_DASH] = ACTIONS(7126), - [anon_sym_PLUS] = ACTIONS(7128), - [anon_sym_DASH] = ACTIONS(7128), - [anon_sym_STAR] = ACTIONS(7126), - [anon_sym_SLASH] = ACTIONS(7128), - [anon_sym_PERCENT] = ACTIONS(7126), - [anon_sym_CARET] = ACTIONS(7126), - [anon_sym_PIPE] = ACTIONS(7128), - [anon_sym_AMP] = ACTIONS(7128), - [anon_sym_LT_LT] = ACTIONS(7126), - [anon_sym_GT_GT] = ACTIONS(7128), - [anon_sym_GT_GT_GT] = ACTIONS(7126), - [anon_sym_EQ_EQ] = ACTIONS(7126), - [anon_sym_BANG_EQ] = ACTIONS(7126), - [anon_sym_GT_EQ] = ACTIONS(7126), - [anon_sym_LT_EQ] = ACTIONS(7126), - [anon_sym_DOT] = ACTIONS(7128), - [anon_sym_switch] = ACTIONS(7126), - [anon_sym_DOT_DOT] = ACTIONS(7126), - [anon_sym_and] = ACTIONS(7126), - [anon_sym_or] = ACTIONS(7128), - [anon_sym_AMP_AMP] = ACTIONS(7126), - [anon_sym_PIPE_PIPE] = ACTIONS(7126), - [sym_op_coalescing] = ACTIONS(7126), - [anon_sym_from] = ACTIONS(7126), - [anon_sym_into] = ACTIONS(7126), - [anon_sym_join] = ACTIONS(7126), - [anon_sym_let] = ACTIONS(7126), - [anon_sym_orderby] = ACTIONS(7126), - [anon_sym_ascending] = ACTIONS(7126), - [anon_sym_descending] = ACTIONS(7126), - [anon_sym_group] = ACTIONS(7126), - [anon_sym_select] = ACTIONS(7126), - [anon_sym_as] = ACTIONS(7128), - [anon_sym_is] = ACTIONS(7126), - [anon_sym_DASH_GT] = ACTIONS(7126), - [anon_sym_with] = ACTIONS(7126), + [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), @@ -658798,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), @@ -658807,52 +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(6285), - [anon_sym_COMMA] = ACTIONS(6285), - [anon_sym_LPAREN] = ACTIONS(6285), - [anon_sym_LT] = ACTIONS(6287), - [anon_sym_GT] = ACTIONS(6287), - [anon_sym_where] = ACTIONS(6285), - [anon_sym_QMARK] = ACTIONS(6287), - [anon_sym_BANG] = ACTIONS(6287), - [anon_sym_PLUS_PLUS] = ACTIONS(6285), - [anon_sym_DASH_DASH] = ACTIONS(6285), - [anon_sym_PLUS] = ACTIONS(6287), - [anon_sym_DASH] = ACTIONS(6287), - [anon_sym_STAR] = ACTIONS(6285), - [anon_sym_SLASH] = ACTIONS(6287), - [anon_sym_PERCENT] = ACTIONS(6285), - [anon_sym_CARET] = ACTIONS(6285), - [anon_sym_PIPE] = ACTIONS(6287), - [anon_sym_AMP] = ACTIONS(6287), - [anon_sym_LT_LT] = ACTIONS(6285), - [anon_sym_GT_GT] = ACTIONS(6287), - [anon_sym_GT_GT_GT] = ACTIONS(6285), - [anon_sym_EQ_EQ] = ACTIONS(6285), - [anon_sym_BANG_EQ] = ACTIONS(6285), - [anon_sym_GT_EQ] = ACTIONS(6285), - [anon_sym_LT_EQ] = ACTIONS(6285), - [anon_sym_DOT] = ACTIONS(6287), - [anon_sym_switch] = ACTIONS(6285), - [anon_sym_DOT_DOT] = ACTIONS(6285), - [anon_sym_and] = ACTIONS(6285), - [anon_sym_or] = ACTIONS(6287), - [anon_sym_AMP_AMP] = ACTIONS(6285), - [anon_sym_PIPE_PIPE] = ACTIONS(6285), - [sym_op_coalescing] = ACTIONS(6285), - [anon_sym_from] = ACTIONS(6285), - [anon_sym_into] = ACTIONS(6285), - [anon_sym_join] = ACTIONS(6285), - [anon_sym_let] = ACTIONS(6285), - [anon_sym_orderby] = ACTIONS(6285), - [anon_sym_ascending] = ACTIONS(6285), - [anon_sym_descending] = ACTIONS(6285), - [anon_sym_group] = ACTIONS(6285), - [anon_sym_select] = ACTIONS(6285), - [anon_sym_as] = ACTIONS(6287), - [anon_sym_is] = ACTIONS(6285), - [anon_sym_DASH_GT] = ACTIONS(6285), - [anon_sym_with] = ACTIONS(6285), + [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), @@ -658874,52 +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(7142), - [anon_sym_COMMA] = ACTIONS(7142), - [anon_sym_LPAREN] = ACTIONS(7142), - [anon_sym_LT] = ACTIONS(7144), - [anon_sym_GT] = ACTIONS(7144), - [anon_sym_where] = ACTIONS(7142), - [anon_sym_QMARK] = ACTIONS(7144), - [anon_sym_BANG] = ACTIONS(7144), - [anon_sym_PLUS_PLUS] = ACTIONS(7142), - [anon_sym_DASH_DASH] = ACTIONS(7142), - [anon_sym_PLUS] = ACTIONS(7144), - [anon_sym_DASH] = ACTIONS(7144), - [anon_sym_STAR] = ACTIONS(7142), - [anon_sym_SLASH] = ACTIONS(7144), - [anon_sym_PERCENT] = ACTIONS(7142), - [anon_sym_CARET] = ACTIONS(7142), - [anon_sym_PIPE] = ACTIONS(7144), - [anon_sym_AMP] = ACTIONS(7144), - [anon_sym_LT_LT] = ACTIONS(7142), - [anon_sym_GT_GT] = ACTIONS(7144), - [anon_sym_GT_GT_GT] = ACTIONS(7142), - [anon_sym_EQ_EQ] = ACTIONS(7142), - [anon_sym_BANG_EQ] = ACTIONS(7142), - [anon_sym_GT_EQ] = ACTIONS(7142), - [anon_sym_LT_EQ] = ACTIONS(7142), - [anon_sym_DOT] = ACTIONS(7144), - [anon_sym_switch] = ACTIONS(7142), - [anon_sym_DOT_DOT] = ACTIONS(7142), - [anon_sym_and] = ACTIONS(7142), - [anon_sym_or] = ACTIONS(7144), - [anon_sym_AMP_AMP] = ACTIONS(7142), - [anon_sym_PIPE_PIPE] = ACTIONS(7142), - [sym_op_coalescing] = ACTIONS(7142), - [anon_sym_from] = ACTIONS(7142), - [anon_sym_into] = ACTIONS(7142), - [anon_sym_join] = ACTIONS(7142), - [anon_sym_let] = ACTIONS(7142), - [anon_sym_orderby] = ACTIONS(7142), - [anon_sym_ascending] = ACTIONS(7142), - [anon_sym_descending] = ACTIONS(7142), - [anon_sym_group] = ACTIONS(7142), - [anon_sym_select] = ACTIONS(7142), - [anon_sym_as] = ACTIONS(7144), - [anon_sym_is] = ACTIONS(7142), - [anon_sym_DASH_GT] = ACTIONS(7142), - [anon_sym_with] = ACTIONS(7142), + [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), @@ -658932,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), @@ -658941,52 +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(3381), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_where] = ACTIONS(3381), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3381), - [anon_sym_CARET] = ACTIONS(3381), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LT_LT] = ACTIONS(3381), - [anon_sym_GT_GT] = ACTIONS(3379), - [anon_sym_GT_GT_GT] = ACTIONS(3381), - [anon_sym_EQ_EQ] = ACTIONS(3381), - [anon_sym_BANG_EQ] = ACTIONS(3381), - [anon_sym_GT_EQ] = ACTIONS(3381), - [anon_sym_LT_EQ] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_switch] = ACTIONS(3381), - [anon_sym_DOT_DOT] = ACTIONS(3381), - [anon_sym_and] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [sym_op_coalescing] = ACTIONS(3381), - [anon_sym_from] = ACTIONS(3381), - [anon_sym_into] = ACTIONS(3381), - [anon_sym_join] = ACTIONS(3381), - [anon_sym_let] = ACTIONS(3381), - [anon_sym_orderby] = ACTIONS(3381), - [anon_sym_ascending] = ACTIONS(3381), - [anon_sym_descending] = ACTIONS(3381), - [anon_sym_group] = ACTIONS(3381), - [anon_sym_select] = ACTIONS(3381), - [anon_sym_as] = ACTIONS(3379), - [anon_sym_is] = ACTIONS(3381), - [anon_sym_DASH_GT] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3381), + [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), @@ -658999,24 +650689,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5294] = { - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4737), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4842), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), [sym_preproc_region] = STATE(5294), [sym_preproc_endregion] = STATE(5294), [sym_preproc_line] = STATE(5294), @@ -659026,34 +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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(7509), - [anon_sym_ref] = ACTIONS(4370), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7408), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -659075,52 +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), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_COMMA] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(7677), - [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), + [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), @@ -659133,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), @@ -659142,52 +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), - [sym__identifier_token] = ACTIONS(3913), - [anon_sym_alias] = ACTIONS(3913), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_global] = ACTIONS(3913), - [anon_sym_EQ] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3913), - [anon_sym_COMMA] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3910), - [anon_sym_RPAREN] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3910), - [anon_sym_file] = ACTIONS(3913), - [anon_sym_LT] = ACTIONS(3700), - [anon_sym_GT] = ACTIONS(3910), - [anon_sym_in] = ACTIONS(3702), - [anon_sym_where] = ACTIONS(3913), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_notnull] = ACTIONS(3913), - [anon_sym_unmanaged] = ACTIONS(3913), - [anon_sym_operator] = ACTIONS(3913), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_this] = ACTIONS(3913), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_scoped] = ACTIONS(3913), - [anon_sym_EQ_GT] = ACTIONS(3700), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3913), - [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), + [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), @@ -659209,52 +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(6163), - [anon_sym_COMMA] = ACTIONS(6163), - [anon_sym_LPAREN] = ACTIONS(6163), - [anon_sym_LT] = ACTIONS(6165), - [anon_sym_GT] = ACTIONS(6165), - [anon_sym_where] = ACTIONS(6163), - [anon_sym_QMARK] = ACTIONS(6165), - [anon_sym_BANG] = ACTIONS(6165), - [anon_sym_PLUS_PLUS] = ACTIONS(6163), - [anon_sym_DASH_DASH] = ACTIONS(6163), - [anon_sym_PLUS] = ACTIONS(6165), - [anon_sym_DASH] = ACTIONS(6165), - [anon_sym_STAR] = ACTIONS(6163), - [anon_sym_SLASH] = ACTIONS(6165), - [anon_sym_PERCENT] = ACTIONS(6163), - [anon_sym_CARET] = ACTIONS(6163), - [anon_sym_PIPE] = ACTIONS(6165), - [anon_sym_AMP] = ACTIONS(6165), - [anon_sym_LT_LT] = ACTIONS(6163), - [anon_sym_GT_GT] = ACTIONS(6165), - [anon_sym_GT_GT_GT] = ACTIONS(6163), - [anon_sym_EQ_EQ] = ACTIONS(6163), - [anon_sym_BANG_EQ] = ACTIONS(6163), - [anon_sym_GT_EQ] = ACTIONS(6163), - [anon_sym_LT_EQ] = ACTIONS(6163), - [anon_sym_DOT] = ACTIONS(6165), - [anon_sym_switch] = ACTIONS(6163), - [anon_sym_DOT_DOT] = ACTIONS(6163), - [anon_sym_and] = ACTIONS(6163), - [anon_sym_or] = ACTIONS(6165), - [anon_sym_AMP_AMP] = ACTIONS(6163), - [anon_sym_PIPE_PIPE] = ACTIONS(6163), - [sym_op_coalescing] = ACTIONS(6163), - [anon_sym_from] = ACTIONS(6163), - [anon_sym_into] = ACTIONS(6163), - [anon_sym_join] = ACTIONS(6163), - [anon_sym_let] = ACTIONS(6163), - [anon_sym_orderby] = ACTIONS(6163), - [anon_sym_ascending] = ACTIONS(6163), - [anon_sym_descending] = ACTIONS(6163), - [anon_sym_group] = ACTIONS(6163), - [anon_sym_select] = ACTIONS(6163), - [anon_sym_as] = ACTIONS(6165), - [anon_sym_is] = ACTIONS(6163), - [anon_sym_DASH_GT] = ACTIONS(6163), - [anon_sym_with] = ACTIONS(6163), + [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), @@ -659276,52 +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(7142), - [anon_sym_COMMA] = ACTIONS(7142), - [anon_sym_LPAREN] = ACTIONS(7142), - [anon_sym_LT] = ACTIONS(7144), - [anon_sym_GT] = ACTIONS(7144), - [anon_sym_where] = ACTIONS(7142), - [anon_sym_QMARK] = ACTIONS(7144), - [anon_sym_BANG] = ACTIONS(7144), - [anon_sym_PLUS_PLUS] = ACTIONS(7142), - [anon_sym_DASH_DASH] = ACTIONS(7142), - [anon_sym_PLUS] = ACTIONS(7144), - [anon_sym_DASH] = ACTIONS(7144), - [anon_sym_STAR] = ACTIONS(7142), - [anon_sym_SLASH] = ACTIONS(7144), - [anon_sym_PERCENT] = ACTIONS(7142), - [anon_sym_CARET] = ACTIONS(7142), - [anon_sym_PIPE] = ACTIONS(7144), - [anon_sym_AMP] = ACTIONS(7144), - [anon_sym_LT_LT] = ACTIONS(7142), - [anon_sym_GT_GT] = ACTIONS(7144), - [anon_sym_GT_GT_GT] = ACTIONS(7142), - [anon_sym_EQ_EQ] = ACTIONS(7142), - [anon_sym_BANG_EQ] = ACTIONS(7142), - [anon_sym_GT_EQ] = ACTIONS(7142), - [anon_sym_LT_EQ] = ACTIONS(7142), - [anon_sym_DOT] = ACTIONS(7144), - [anon_sym_switch] = ACTIONS(7142), - [anon_sym_DOT_DOT] = ACTIONS(7142), - [anon_sym_and] = ACTIONS(7142), - [anon_sym_or] = ACTIONS(7144), - [anon_sym_AMP_AMP] = ACTIONS(7142), - [anon_sym_PIPE_PIPE] = ACTIONS(7142), - [sym_op_coalescing] = ACTIONS(7142), - [anon_sym_from] = ACTIONS(7142), - [anon_sym_into] = ACTIONS(7142), - [anon_sym_join] = ACTIONS(7142), - [anon_sym_let] = ACTIONS(7142), - [anon_sym_orderby] = ACTIONS(7142), - [anon_sym_ascending] = ACTIONS(7142), - [anon_sym_descending] = ACTIONS(7142), - [anon_sym_group] = ACTIONS(7142), - [anon_sym_select] = ACTIONS(7142), - [anon_sym_as] = ACTIONS(7144), - [anon_sym_is] = ACTIONS(7142), - [anon_sym_DASH_GT] = ACTIONS(7142), - [anon_sym_with] = ACTIONS(7142), + [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), @@ -659334,24 +651029,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5299] = { - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4035), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(4046), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -659361,34 +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), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_ref] = ACTIONS(4590), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7353), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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(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), @@ -659401,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), @@ -659410,52 +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(6167), - [anon_sym_COMMA] = ACTIONS(6167), - [anon_sym_LPAREN] = ACTIONS(6167), - [anon_sym_LT] = ACTIONS(6169), - [anon_sym_GT] = ACTIONS(6169), - [anon_sym_where] = ACTIONS(6167), - [anon_sym_QMARK] = ACTIONS(6169), - [anon_sym_BANG] = ACTIONS(6169), - [anon_sym_PLUS_PLUS] = ACTIONS(6167), - [anon_sym_DASH_DASH] = ACTIONS(6167), - [anon_sym_PLUS] = ACTIONS(6169), - [anon_sym_DASH] = ACTIONS(6169), - [anon_sym_STAR] = ACTIONS(6167), - [anon_sym_SLASH] = ACTIONS(6169), - [anon_sym_PERCENT] = ACTIONS(6167), - [anon_sym_CARET] = ACTIONS(6167), - [anon_sym_PIPE] = ACTIONS(6169), - [anon_sym_AMP] = ACTIONS(6169), - [anon_sym_LT_LT] = ACTIONS(6167), - [anon_sym_GT_GT] = ACTIONS(6169), - [anon_sym_GT_GT_GT] = ACTIONS(6167), - [anon_sym_EQ_EQ] = ACTIONS(6167), - [anon_sym_BANG_EQ] = ACTIONS(6167), - [anon_sym_GT_EQ] = ACTIONS(6167), - [anon_sym_LT_EQ] = ACTIONS(6167), - [anon_sym_DOT] = ACTIONS(6169), - [anon_sym_switch] = ACTIONS(6167), - [anon_sym_DOT_DOT] = ACTIONS(6167), - [anon_sym_and] = ACTIONS(6167), - [anon_sym_or] = ACTIONS(6169), - [anon_sym_AMP_AMP] = ACTIONS(6167), - [anon_sym_PIPE_PIPE] = ACTIONS(6167), - [sym_op_coalescing] = ACTIONS(6167), - [anon_sym_from] = ACTIONS(6167), - [anon_sym_into] = ACTIONS(6167), - [anon_sym_join] = ACTIONS(6167), - [anon_sym_let] = ACTIONS(6167), - [anon_sym_orderby] = ACTIONS(6167), - [anon_sym_ascending] = ACTIONS(6167), - [anon_sym_descending] = ACTIONS(6167), - [anon_sym_group] = ACTIONS(6167), - [anon_sym_select] = ACTIONS(6167), - [anon_sym_as] = ACTIONS(6169), - [anon_sym_is] = ACTIONS(6167), - [anon_sym_DASH_GT] = ACTIONS(6167), - [anon_sym_with] = ACTIONS(6167), + [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), @@ -659466,63 +651163,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_define_token1] = ACTIONS(17), [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), - }, - [5301] = { - [sym__name] = STATE(6115), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(2211), - [sym_ref_type] = STATE(2386), - [sym__scoped_base_type] = STATE(2366), - [sym_identifier] = STATE(6042), - [sym__reserved_identifier] = STATE(2206), - [sym_preproc_region] = STATE(5301), - [sym_preproc_endregion] = STATE(5301), - [sym_preproc_line] = STATE(5301), - [sym_preproc_pragma] = STATE(5301), - [sym_preproc_nullable] = STATE(5301), - [sym_preproc_error] = STATE(5301), - [sym_preproc_warning] = STATE(5301), - [sym_preproc_define] = STATE(5301), - [sym_preproc_undef] = STATE(5301), - [sym__identifier_token] = ACTIONS(3891), - [anon_sym_alias] = ACTIONS(3894), - [anon_sym_global] = ACTIONS(3894), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_COLON] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_ref] = ACTIONS(3966), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_file] = ACTIONS(3894), - [anon_sym_LT] = ACTIONS(3700), - [anon_sym_where] = ACTIONS(3894), - [anon_sym_QMARK] = ACTIONS(3700), - [anon_sym_notnull] = ACTIONS(3894), - [anon_sym_unmanaged] = ACTIONS(3894), - [anon_sym_STAR] = ACTIONS(3700), - [anon_sym_DOT] = ACTIONS(3700), - [anon_sym_scoped] = ACTIONS(3894), - [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3894), - [anon_sym_yield] = ACTIONS(3894), - [anon_sym_when] = ACTIONS(3894), - [sym_discard] = ACTIONS(3702), - [anon_sym_and] = ACTIONS(3702), - [anon_sym_or] = ACTIONS(3702), - [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), + }, + [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), + [sym_preproc_pragma] = STATE(5301), + [sym_preproc_nullable] = STATE(5301), + [sym_preproc_error] = STATE(5301), + [sym_preproc_warning] = STATE(5301), + [sym_preproc_define] = STATE(5301), + [sym_preproc_undef] = STATE(5301), + [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), @@ -659544,52 +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(6057), - [anon_sym_COMMA] = ACTIONS(6057), - [anon_sym_LPAREN] = ACTIONS(6057), - [anon_sym_LT] = ACTIONS(6059), - [anon_sym_GT] = ACTIONS(6059), - [anon_sym_where] = ACTIONS(6057), - [anon_sym_QMARK] = ACTIONS(6059), - [anon_sym_BANG] = ACTIONS(6059), - [anon_sym_PLUS_PLUS] = ACTIONS(6057), - [anon_sym_DASH_DASH] = ACTIONS(6057), - [anon_sym_PLUS] = ACTIONS(6059), - [anon_sym_DASH] = ACTIONS(6059), - [anon_sym_STAR] = ACTIONS(6057), - [anon_sym_SLASH] = ACTIONS(6059), - [anon_sym_PERCENT] = ACTIONS(6057), - [anon_sym_CARET] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6059), - [anon_sym_AMP] = ACTIONS(6059), - [anon_sym_LT_LT] = ACTIONS(6057), - [anon_sym_GT_GT] = ACTIONS(6059), - [anon_sym_GT_GT_GT] = ACTIONS(6057), - [anon_sym_EQ_EQ] = ACTIONS(6057), - [anon_sym_BANG_EQ] = ACTIONS(6057), - [anon_sym_GT_EQ] = ACTIONS(6057), - [anon_sym_LT_EQ] = ACTIONS(6057), - [anon_sym_DOT] = ACTIONS(6059), - [anon_sym_switch] = ACTIONS(6057), - [anon_sym_DOT_DOT] = ACTIONS(6057), - [anon_sym_and] = ACTIONS(6057), - [anon_sym_or] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [sym_op_coalescing] = ACTIONS(6057), - [anon_sym_from] = ACTIONS(6057), - [anon_sym_into] = ACTIONS(6057), - [anon_sym_join] = ACTIONS(6057), - [anon_sym_let] = ACTIONS(6057), - [anon_sym_orderby] = ACTIONS(6057), - [anon_sym_ascending] = ACTIONS(6057), - [anon_sym_descending] = ACTIONS(6057), - [anon_sym_group] = ACTIONS(6057), - [anon_sym_select] = ACTIONS(6057), - [anon_sym_as] = ACTIONS(6059), - [anon_sym_is] = ACTIONS(6057), - [anon_sym_DASH_GT] = ACTIONS(6057), - [anon_sym_with] = ACTIONS(6057), + [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), @@ -659602,24 +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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(2385), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -659633,14 +651333,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(3709), + [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(7286), - [anon_sym_var] = ACTIONS(5500), + [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), @@ -659678,52 +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), - [anon_sym_LBRACK] = ACTIONS(7130), - [anon_sym_COMMA] = ACTIONS(7130), - [anon_sym_LPAREN] = ACTIONS(7130), - [anon_sym_LT] = ACTIONS(7132), - [anon_sym_GT] = ACTIONS(7132), - [anon_sym_where] = ACTIONS(7130), - [anon_sym_QMARK] = ACTIONS(7132), - [anon_sym_BANG] = ACTIONS(7132), - [anon_sym_PLUS_PLUS] = ACTIONS(7130), - [anon_sym_DASH_DASH] = ACTIONS(7130), - [anon_sym_PLUS] = ACTIONS(7132), - [anon_sym_DASH] = ACTIONS(7132), - [anon_sym_STAR] = ACTIONS(7130), - [anon_sym_SLASH] = ACTIONS(7132), - [anon_sym_PERCENT] = ACTIONS(7130), - [anon_sym_CARET] = ACTIONS(7130), - [anon_sym_PIPE] = ACTIONS(7132), - [anon_sym_AMP] = ACTIONS(7132), - [anon_sym_LT_LT] = ACTIONS(7130), - [anon_sym_GT_GT] = ACTIONS(7132), - [anon_sym_GT_GT_GT] = ACTIONS(7130), - [anon_sym_EQ_EQ] = ACTIONS(7130), - [anon_sym_BANG_EQ] = ACTIONS(7130), - [anon_sym_GT_EQ] = ACTIONS(7130), - [anon_sym_LT_EQ] = ACTIONS(7130), - [anon_sym_DOT] = ACTIONS(7132), - [anon_sym_switch] = ACTIONS(7130), - [anon_sym_DOT_DOT] = ACTIONS(7130), - [anon_sym_and] = ACTIONS(7130), - [anon_sym_or] = ACTIONS(7132), - [anon_sym_AMP_AMP] = ACTIONS(7130), - [anon_sym_PIPE_PIPE] = ACTIONS(7130), - [sym_op_coalescing] = ACTIONS(7130), - [anon_sym_from] = ACTIONS(7130), - [anon_sym_into] = ACTIONS(7130), - [anon_sym_join] = ACTIONS(7130), - [anon_sym_let] = ACTIONS(7130), - [anon_sym_orderby] = ACTIONS(7130), - [anon_sym_ascending] = ACTIONS(7130), - [anon_sym_descending] = ACTIONS(7130), - [anon_sym_group] = ACTIONS(7130), - [anon_sym_select] = ACTIONS(7130), - [anon_sym_as] = ACTIONS(7132), - [anon_sym_is] = ACTIONS(7130), - [anon_sym_DASH_GT] = ACTIONS(7130), - [anon_sym_with] = ACTIONS(7130), + [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), @@ -659736,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), @@ -659745,52 +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(6269), - [anon_sym_COMMA] = ACTIONS(6269), - [anon_sym_LPAREN] = ACTIONS(6269), - [anon_sym_LT] = ACTIONS(6271), - [anon_sym_GT] = ACTIONS(6271), - [anon_sym_where] = ACTIONS(6269), - [anon_sym_QMARK] = ACTIONS(6271), - [anon_sym_BANG] = ACTIONS(6271), - [anon_sym_PLUS_PLUS] = ACTIONS(6269), - [anon_sym_DASH_DASH] = ACTIONS(6269), - [anon_sym_PLUS] = ACTIONS(6271), - [anon_sym_DASH] = ACTIONS(6271), - [anon_sym_STAR] = ACTIONS(6269), - [anon_sym_SLASH] = ACTIONS(6271), - [anon_sym_PERCENT] = ACTIONS(6269), - [anon_sym_CARET] = ACTIONS(6269), - [anon_sym_PIPE] = ACTIONS(6271), - [anon_sym_AMP] = ACTIONS(6271), - [anon_sym_LT_LT] = ACTIONS(6269), - [anon_sym_GT_GT] = ACTIONS(6271), - [anon_sym_GT_GT_GT] = ACTIONS(6269), - [anon_sym_EQ_EQ] = ACTIONS(6269), - [anon_sym_BANG_EQ] = ACTIONS(6269), - [anon_sym_GT_EQ] = ACTIONS(6269), - [anon_sym_LT_EQ] = ACTIONS(6269), - [anon_sym_DOT] = ACTIONS(6271), - [anon_sym_switch] = ACTIONS(6269), - [anon_sym_DOT_DOT] = ACTIONS(6269), - [anon_sym_and] = ACTIONS(6269), - [anon_sym_or] = ACTIONS(6271), - [anon_sym_AMP_AMP] = ACTIONS(6269), - [anon_sym_PIPE_PIPE] = ACTIONS(6269), - [sym_op_coalescing] = ACTIONS(6269), - [anon_sym_from] = ACTIONS(6269), - [anon_sym_into] = ACTIONS(6269), - [anon_sym_join] = ACTIONS(6269), - [anon_sym_let] = ACTIONS(6269), - [anon_sym_orderby] = ACTIONS(6269), - [anon_sym_ascending] = ACTIONS(6269), - [anon_sym_descending] = ACTIONS(6269), - [anon_sym_group] = ACTIONS(6269), - [anon_sym_select] = ACTIONS(6269), - [anon_sym_as] = ACTIONS(6271), - [anon_sym_is] = ACTIONS(6269), - [anon_sym_DASH_GT] = ACTIONS(6269), - [anon_sym_with] = ACTIONS(6269), + [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), @@ -659812,52 +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(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), + [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), @@ -659870,24 +651573,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5307] = { - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4686), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4699), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), + [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), @@ -659897,34 +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(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7519), - [anon_sym_ref] = ACTIONS(4476), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7234), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), - [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(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), @@ -659937,24 +651641,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5308] = { - [sym__name] = STATE(5909), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4737), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4842), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(5757), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -659964,34 +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), - [sym__identifier_token] = ACTIONS(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(7509), - [anon_sym_ref] = ACTIONS(4428), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7392), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -660004,24 +651709,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5309] = { - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4035), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(4046), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), [sym_preproc_region] = STATE(5309), [sym_preproc_endregion] = STATE(5309), [sym_preproc_line] = STATE(5309), @@ -660031,34 +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(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_ref] = ACTIONS(4626), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7266), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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(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), @@ -660071,24 +651777,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5310] = { - [sym__name] = STATE(6025), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(2385), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5902), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5310), [sym_preproc_endregion] = STATE(5310), [sym_preproc_line] = STATE(5310), @@ -660098,34 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3966), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7499), - [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), + [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), @@ -660138,24 +651845,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5311] = { - [sym__name] = STATE(5801), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4035), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(4046), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(5616), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -660165,34 +651872,35 @@ 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(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_ref] = ACTIONS(4368), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7264), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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(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), @@ -660205,24 +651913,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5312] = { - [sym__name] = STATE(5608), - [sym_alias_qualified_name] = STATE(5627), - [sym__simple_name] = STATE(5627), - [sym_qualified_name] = STATE(5627), - [sym_generic_name] = STATE(5585), - [sym_type] = STATE(5583), - [sym_implicit_type] = STATE(5637), - [sym_array_type] = STATE(5625), - [sym__array_base_type] = STATE(7380), - [sym_nullable_type] = STATE(5581), - [sym_pointer_type] = STATE(5581), - [sym__pointer_base_type] = STATE(8140), - [sym_function_pointer_type] = STATE(5581), - [sym_ref_type] = STATE(5637), - [sym_scoped_type] = STATE(5637), - [sym_tuple_type] = STATE(5609), - [sym_identifier] = STATE(5530), - [sym__reserved_identifier] = STATE(5560), [sym_preproc_region] = STATE(5312), [sym_preproc_endregion] = STATE(5312), [sym_preproc_line] = STATE(5312), @@ -660232,34 +651922,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5312), [sym_preproc_define] = STATE(5312), [sym_preproc_undef] = STATE(5312), - [sym__identifier_token] = ACTIONS(4328), - [anon_sym_alias] = ACTIONS(4330), - [anon_sym_global] = ACTIONS(4330), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4348), - [anon_sym_delegate] = ACTIONS(7250), - [anon_sym_file] = ACTIONS(4330), - [anon_sym_where] = ACTIONS(4330), - [anon_sym_notnull] = ACTIONS(4330), - [anon_sym_unmanaged] = ACTIONS(4330), - [anon_sym_scoped] = ACTIONS(7388), - [anon_sym_var] = ACTIONS(7254), - [sym_predefined_type] = ACTIONS(7256), - [anon_sym_yield] = ACTIONS(4330), - [anon_sym_when] = ACTIONS(4330), - [anon_sym_from] = ACTIONS(4330), - [anon_sym_into] = ACTIONS(4330), - [anon_sym_join] = ACTIONS(4330), - [anon_sym_on] = ACTIONS(4330), - [anon_sym_equals] = ACTIONS(4330), - [anon_sym_let] = ACTIONS(4330), - [anon_sym_orderby] = ACTIONS(4330), - [anon_sym_ascending] = ACTIONS(4330), - [anon_sym_descending] = ACTIONS(4330), - [anon_sym_group] = ACTIONS(4330), - [anon_sym_by] = ACTIONS(4330), - [anon_sym_select] = ACTIONS(4330), - [sym_grit_metavariable] = ACTIONS(4334), + [anon_sym_LBRACK] = ACTIONS(5995), + [anon_sym_COMMA] = ACTIONS(5995), + [anon_sym_LPAREN] = ACTIONS(5995), + [anon_sym_LT] = ACTIONS(5997), + [anon_sym_GT] = ACTIONS(5997), + [anon_sym_where] = ACTIONS(5995), + [anon_sym_QMARK] = ACTIONS(5997), + [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), + [anon_sym_let] = ACTIONS(5995), + [anon_sym_orderby] = ACTIONS(5995), + [anon_sym_ascending] = ACTIONS(5995), + [anon_sym_descending] = ACTIONS(5995), + [anon_sym_group] = ACTIONS(5995), + [anon_sym_select] = ACTIONS(5995), + [anon_sym_as] = ACTIONS(5997), + [anon_sym_is] = ACTIONS(5995), + [anon_sym_DASH_GT] = ACTIONS(5995), + [anon_sym_with] = ACTIONS(5995), + [sym_grit_metavariable] = ACTIONS(5995), [aux_sym_preproc_region_token1] = ACTIONS(3), [aux_sym_preproc_endregion_token1] = ACTIONS(5), [aux_sym_preproc_line_token1] = ACTIONS(7), @@ -660272,6 +651981,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -660281,52 +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(7016), - [anon_sym_COMMA] = ACTIONS(7016), - [anon_sym_LPAREN] = ACTIONS(7016), - [anon_sym_LT] = ACTIONS(7018), - [anon_sym_GT] = ACTIONS(7018), - [anon_sym_where] = ACTIONS(7016), - [anon_sym_QMARK] = ACTIONS(7018), - [anon_sym_BANG] = ACTIONS(7018), - [anon_sym_PLUS_PLUS] = ACTIONS(7016), - [anon_sym_DASH_DASH] = ACTIONS(7016), - [anon_sym_PLUS] = ACTIONS(7018), - [anon_sym_DASH] = ACTIONS(7018), - [anon_sym_STAR] = ACTIONS(7016), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7016), - [anon_sym_CARET] = ACTIONS(7016), - [anon_sym_PIPE] = ACTIONS(7018), - [anon_sym_AMP] = ACTIONS(7018), - [anon_sym_LT_LT] = ACTIONS(7016), - [anon_sym_GT_GT] = ACTIONS(7018), - [anon_sym_GT_GT_GT] = ACTIONS(7016), - [anon_sym_EQ_EQ] = ACTIONS(7016), - [anon_sym_BANG_EQ] = ACTIONS(7016), - [anon_sym_GT_EQ] = ACTIONS(7016), - [anon_sym_LT_EQ] = ACTIONS(7016), - [anon_sym_DOT] = ACTIONS(7018), - [anon_sym_switch] = ACTIONS(7016), - [anon_sym_DOT_DOT] = ACTIONS(7016), - [anon_sym_and] = ACTIONS(7016), - [anon_sym_or] = ACTIONS(7018), - [anon_sym_AMP_AMP] = ACTIONS(7016), - [anon_sym_PIPE_PIPE] = ACTIONS(7016), - [sym_op_coalescing] = ACTIONS(7016), - [anon_sym_from] = ACTIONS(7016), - [anon_sym_into] = ACTIONS(7016), - [anon_sym_join] = ACTIONS(7016), - [anon_sym_let] = ACTIONS(7016), - [anon_sym_orderby] = ACTIONS(7016), - [anon_sym_ascending] = ACTIONS(7016), - [anon_sym_descending] = ACTIONS(7016), - [anon_sym_group] = ACTIONS(7016), - [anon_sym_select] = ACTIONS(7016), - [anon_sym_as] = ACTIONS(7018), - [anon_sym_is] = ACTIONS(7016), - [anon_sym_DASH_GT] = ACTIONS(7016), - [anon_sym_with] = ACTIONS(7016), + [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), @@ -660339,24 +652049,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5314] = { - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4737), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4842), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -660366,34 +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), - [sym__identifier_token] = ACTIONS(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(7509), - [anon_sym_ref] = ACTIONS(4107), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7369), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -660406,24 +652117,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5315] = { - [sym__name] = STATE(2471), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2445), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2433), - [sym_type] = STATE(2385), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_identifier] = STATE(2399), - [sym__reserved_identifier] = STATE(2400), [sym_preproc_region] = STATE(5315), [sym_preproc_endregion] = STATE(5315), [sym_preproc_line] = STATE(5315), @@ -660433,34 +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(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LPAREN] = ACTIONS(7495), - [anon_sym_ref] = ACTIONS(4434), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_where] = ACTIONS(4432), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_scoped] = ACTIONS(7390), - [anon_sym_var] = ACTIONS(7365), - [sym_predefined_type] = ACTIONS(7367), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_when] = ACTIONS(4432), - [anon_sym_from] = ACTIONS(4432), - [anon_sym_into] = ACTIONS(4432), - [anon_sym_join] = ACTIONS(4432), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4432), - [anon_sym_orderby] = ACTIONS(4432), - [anon_sym_ascending] = ACTIONS(4432), - [anon_sym_descending] = ACTIONS(4432), - [anon_sym_group] = ACTIONS(4432), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4432), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -660473,24 +652185,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5316] = { - [sym__name] = STATE(2471), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2445), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2433), - [sym_type] = STATE(2385), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_identifier] = STATE(2399), - [sym__reserved_identifier] = STATE(2400), + [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), @@ -660500,34 +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), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LPAREN] = ACTIONS(7495), - [anon_sym_ref] = ACTIONS(4452), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_where] = ACTIONS(4432), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_scoped] = ACTIONS(7363), - [anon_sym_var] = ACTIONS(7365), - [sym_predefined_type] = ACTIONS(7367), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_when] = ACTIONS(4432), - [anon_sym_from] = ACTIONS(4432), - [anon_sym_into] = ACTIONS(4432), - [anon_sym_join] = ACTIONS(4432), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4432), - [anon_sym_orderby] = ACTIONS(4432), - [anon_sym_ascending] = ACTIONS(4432), - [anon_sym_descending] = ACTIONS(4432), - [anon_sym_group] = ACTIONS(4432), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4432), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -660540,24 +652253,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5317] = { - [sym__name] = STATE(3024), - [sym_alias_qualified_name] = STATE(3005), - [sym__simple_name] = STATE(3005), - [sym_qualified_name] = STATE(3005), - [sym_generic_name] = STATE(3044), - [sym_type] = STATE(2793), - [sym_implicit_type] = STATE(3029), - [sym_array_type] = STATE(3009), - [sym__array_base_type] = STATE(7584), - [sym_nullable_type] = STATE(3010), - [sym_pointer_type] = STATE(3010), - [sym__pointer_base_type] = STATE(7785), - [sym_function_pointer_type] = STATE(3010), - [sym_ref_type] = STATE(3029), - [sym_scoped_type] = STATE(3029), - [sym_tuple_type] = STATE(3011), - [sym_identifier] = STATE(2652), - [sym__reserved_identifier] = STATE(2755), + [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), @@ -660567,34 +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), - [sym__identifier_token] = ACTIONS(7584), - [anon_sym_alias] = ACTIONS(7586), - [anon_sym_global] = ACTIONS(7586), - [anon_sym_LPAREN] = ACTIONS(7588), - [anon_sym_ref] = ACTIONS(3946), - [anon_sym_delegate] = ACTIONS(7590), - [anon_sym_file] = ACTIONS(7586), - [anon_sym_where] = ACTIONS(7586), - [anon_sym_notnull] = ACTIONS(7586), - [anon_sym_unmanaged] = ACTIONS(7586), - [anon_sym_scoped] = ACTIONS(7592), - [anon_sym_var] = ACTIONS(7594), - [sym_predefined_type] = ACTIONS(7596), - [anon_sym_yield] = ACTIONS(7586), - [anon_sym_when] = ACTIONS(7586), - [anon_sym_from] = ACTIONS(7586), - [anon_sym_into] = ACTIONS(7586), - [anon_sym_join] = ACTIONS(7586), - [anon_sym_on] = ACTIONS(7586), - [anon_sym_equals] = ACTIONS(7586), - [anon_sym_let] = ACTIONS(7586), - [anon_sym_orderby] = ACTIONS(7586), - [anon_sym_ascending] = ACTIONS(7586), - [anon_sym_descending] = ACTIONS(7586), - [anon_sym_group] = ACTIONS(7586), - [anon_sym_by] = ACTIONS(7586), - [anon_sym_select] = ACTIONS(7586), - [sym_grit_metavariable] = ACTIONS(7598), + [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), @@ -660607,24 +652321,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5318] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(2385), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5318), [sym_preproc_endregion] = STATE(5318), [sym_preproc_line] = STATE(5318), @@ -660634,34 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(3707), - [anon_sym_delegate] = ACTIONS(3709), - [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), + [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), @@ -660674,24 +652389,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5319] = { - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4035), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(4046), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -660701,34 +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), - [sym__identifier_token] = ACTIONS(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_ref] = ACTIONS(4513), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7260), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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(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), @@ -660750,52 +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(6171), - [anon_sym_COMMA] = ACTIONS(6171), - [anon_sym_LPAREN] = ACTIONS(6171), - [anon_sym_LT] = ACTIONS(6173), - [anon_sym_GT] = ACTIONS(6173), - [anon_sym_where] = ACTIONS(6171), - [anon_sym_QMARK] = ACTIONS(6173), - [anon_sym_BANG] = ACTIONS(6173), - [anon_sym_PLUS_PLUS] = ACTIONS(6171), - [anon_sym_DASH_DASH] = ACTIONS(6171), - [anon_sym_PLUS] = ACTIONS(6173), - [anon_sym_DASH] = ACTIONS(6173), - [anon_sym_STAR] = ACTIONS(6171), - [anon_sym_SLASH] = ACTIONS(6173), - [anon_sym_PERCENT] = ACTIONS(6171), - [anon_sym_CARET] = ACTIONS(6171), - [anon_sym_PIPE] = ACTIONS(6173), - [anon_sym_AMP] = ACTIONS(6173), - [anon_sym_LT_LT] = ACTIONS(6171), - [anon_sym_GT_GT] = ACTIONS(6173), - [anon_sym_GT_GT_GT] = ACTIONS(6171), - [anon_sym_EQ_EQ] = ACTIONS(6171), - [anon_sym_BANG_EQ] = ACTIONS(6171), - [anon_sym_GT_EQ] = ACTIONS(6171), - [anon_sym_LT_EQ] = ACTIONS(6171), - [anon_sym_DOT] = ACTIONS(6173), - [anon_sym_switch] = ACTIONS(6171), - [anon_sym_DOT_DOT] = ACTIONS(6171), - [anon_sym_and] = ACTIONS(6171), - [anon_sym_or] = ACTIONS(6173), - [anon_sym_AMP_AMP] = ACTIONS(6171), - [anon_sym_PIPE_PIPE] = ACTIONS(6171), - [sym_op_coalescing] = ACTIONS(6171), - [anon_sym_from] = ACTIONS(6171), - [anon_sym_into] = ACTIONS(6171), - [anon_sym_join] = ACTIONS(6171), - [anon_sym_let] = ACTIONS(6171), - [anon_sym_orderby] = ACTIONS(6171), - [anon_sym_ascending] = ACTIONS(6171), - [anon_sym_descending] = ACTIONS(6171), - [anon_sym_group] = ACTIONS(6171), - [anon_sym_select] = ACTIONS(6171), - [anon_sym_as] = ACTIONS(6173), - [anon_sym_is] = ACTIONS(6171), - [anon_sym_DASH_GT] = ACTIONS(6171), - [anon_sym_with] = ACTIONS(6171), + [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), @@ -660808,24 +652525,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5321] = { - [sym__name] = STATE(5909), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4992), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4842), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(5757), - [sym__reserved_identifier] = STATE(4715), [sym_preproc_region] = STATE(5321), [sym_preproc_endregion] = STATE(5321), [sym_preproc_line] = STATE(5321), @@ -660835,34 +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), - [sym__identifier_token] = ACTIONS(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(7509), - [anon_sym_ref] = ACTIONS(4428), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7392), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -660884,52 +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(6097), - [anon_sym_COMMA] = ACTIONS(6097), - [anon_sym_LPAREN] = ACTIONS(6097), - [anon_sym_LT] = ACTIONS(6099), - [anon_sym_GT] = ACTIONS(6099), - [anon_sym_where] = ACTIONS(6097), - [anon_sym_QMARK] = ACTIONS(6099), - [anon_sym_BANG] = ACTIONS(6099), - [anon_sym_PLUS_PLUS] = ACTIONS(6097), - [anon_sym_DASH_DASH] = ACTIONS(6097), - [anon_sym_PLUS] = ACTIONS(6099), - [anon_sym_DASH] = ACTIONS(6099), - [anon_sym_STAR] = ACTIONS(6097), - [anon_sym_SLASH] = ACTIONS(6099), - [anon_sym_PERCENT] = ACTIONS(6097), - [anon_sym_CARET] = ACTIONS(6097), - [anon_sym_PIPE] = ACTIONS(6099), - [anon_sym_AMP] = ACTIONS(6099), - [anon_sym_LT_LT] = ACTIONS(6097), - [anon_sym_GT_GT] = ACTIONS(6099), - [anon_sym_GT_GT_GT] = ACTIONS(6097), - [anon_sym_EQ_EQ] = ACTIONS(6097), - [anon_sym_BANG_EQ] = ACTIONS(6097), - [anon_sym_GT_EQ] = ACTIONS(6097), - [anon_sym_LT_EQ] = ACTIONS(6097), - [anon_sym_DOT] = ACTIONS(6099), - [anon_sym_switch] = ACTIONS(6097), - [anon_sym_DOT_DOT] = ACTIONS(6097), - [anon_sym_and] = ACTIONS(6097), - [anon_sym_or] = ACTIONS(6099), - [anon_sym_AMP_AMP] = ACTIONS(6097), - [anon_sym_PIPE_PIPE] = ACTIONS(6097), - [sym_op_coalescing] = ACTIONS(6097), - [anon_sym_from] = ACTIONS(6097), - [anon_sym_into] = ACTIONS(6097), - [anon_sym_join] = ACTIONS(6097), - [anon_sym_let] = ACTIONS(6097), - [anon_sym_orderby] = ACTIONS(6097), - [anon_sym_ascending] = ACTIONS(6097), - [anon_sym_descending] = ACTIONS(6097), - [anon_sym_group] = ACTIONS(6097), - [anon_sym_select] = ACTIONS(6097), - [anon_sym_as] = ACTIONS(6099), - [anon_sym_is] = ACTIONS(6097), - [anon_sym_DASH_GT] = ACTIONS(6097), - [anon_sym_with] = ACTIONS(6097), + [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), @@ -660951,52 +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(6093), - [anon_sym_COMMA] = ACTIONS(6093), - [anon_sym_LPAREN] = ACTIONS(6093), - [anon_sym_LT] = ACTIONS(6095), - [anon_sym_GT] = ACTIONS(6095), - [anon_sym_where] = ACTIONS(6093), - [anon_sym_QMARK] = ACTIONS(6095), - [anon_sym_BANG] = ACTIONS(6095), - [anon_sym_PLUS_PLUS] = ACTIONS(6093), - [anon_sym_DASH_DASH] = ACTIONS(6093), - [anon_sym_PLUS] = ACTIONS(6095), - [anon_sym_DASH] = ACTIONS(6095), - [anon_sym_STAR] = ACTIONS(6093), - [anon_sym_SLASH] = ACTIONS(6095), - [anon_sym_PERCENT] = ACTIONS(6093), - [anon_sym_CARET] = ACTIONS(6093), - [anon_sym_PIPE] = ACTIONS(6095), - [anon_sym_AMP] = ACTIONS(6095), - [anon_sym_LT_LT] = ACTIONS(6093), - [anon_sym_GT_GT] = ACTIONS(6095), - [anon_sym_GT_GT_GT] = ACTIONS(6093), - [anon_sym_EQ_EQ] = ACTIONS(6093), - [anon_sym_BANG_EQ] = ACTIONS(6093), - [anon_sym_GT_EQ] = ACTIONS(6093), - [anon_sym_LT_EQ] = ACTIONS(6093), - [anon_sym_DOT] = ACTIONS(6095), - [anon_sym_switch] = ACTIONS(6093), - [anon_sym_DOT_DOT] = ACTIONS(6093), - [anon_sym_and] = ACTIONS(6093), - [anon_sym_or] = ACTIONS(6095), - [anon_sym_AMP_AMP] = ACTIONS(6093), - [anon_sym_PIPE_PIPE] = ACTIONS(6093), - [sym_op_coalescing] = ACTIONS(6093), - [anon_sym_from] = ACTIONS(6093), - [anon_sym_into] = ACTIONS(6093), - [anon_sym_join] = ACTIONS(6093), - [anon_sym_let] = ACTIONS(6093), - [anon_sym_orderby] = ACTIONS(6093), - [anon_sym_ascending] = ACTIONS(6093), - [anon_sym_descending] = ACTIONS(6093), - [anon_sym_group] = ACTIONS(6093), - [anon_sym_select] = ACTIONS(6093), - [anon_sym_as] = ACTIONS(6095), - [anon_sym_is] = ACTIONS(6093), - [anon_sym_DASH_GT] = ACTIONS(6093), - [anon_sym_with] = ACTIONS(6093), + [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), @@ -661009,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), @@ -661018,52 +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(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__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), @@ -661076,24 +652797,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5325] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7796), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5325), [sym_preproc_endregion] = STATE(5325), [sym_preproc_line] = STATE(5325), @@ -661103,34 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7606), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7610), - [anon_sym_var] = ACTIONS(5500), - [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), + [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), @@ -661152,52 +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(6175), - [anon_sym_COMMA] = ACTIONS(6175), - [anon_sym_LPAREN] = ACTIONS(6175), - [anon_sym_LT] = ACTIONS(6177), - [anon_sym_GT] = ACTIONS(6177), - [anon_sym_where] = ACTIONS(6175), - [anon_sym_QMARK] = ACTIONS(6177), - [anon_sym_BANG] = ACTIONS(6177), - [anon_sym_PLUS_PLUS] = ACTIONS(6175), - [anon_sym_DASH_DASH] = ACTIONS(6175), - [anon_sym_PLUS] = ACTIONS(6177), - [anon_sym_DASH] = ACTIONS(6177), - [anon_sym_STAR] = ACTIONS(6175), - [anon_sym_SLASH] = ACTIONS(6177), - [anon_sym_PERCENT] = ACTIONS(6175), - [anon_sym_CARET] = ACTIONS(6175), - [anon_sym_PIPE] = ACTIONS(6177), - [anon_sym_AMP] = ACTIONS(6177), - [anon_sym_LT_LT] = ACTIONS(6175), - [anon_sym_GT_GT] = ACTIONS(6177), - [anon_sym_GT_GT_GT] = ACTIONS(6175), - [anon_sym_EQ_EQ] = ACTIONS(6175), - [anon_sym_BANG_EQ] = ACTIONS(6175), - [anon_sym_GT_EQ] = ACTIONS(6175), - [anon_sym_LT_EQ] = ACTIONS(6175), - [anon_sym_DOT] = ACTIONS(6177), - [anon_sym_switch] = ACTIONS(6175), - [anon_sym_DOT_DOT] = ACTIONS(6175), - [anon_sym_and] = ACTIONS(6175), - [anon_sym_or] = ACTIONS(6177), - [anon_sym_AMP_AMP] = ACTIONS(6175), - [anon_sym_PIPE_PIPE] = ACTIONS(6175), - [sym_op_coalescing] = ACTIONS(6175), - [anon_sym_from] = ACTIONS(6175), - [anon_sym_into] = ACTIONS(6175), - [anon_sym_join] = ACTIONS(6175), - [anon_sym_let] = ACTIONS(6175), - [anon_sym_orderby] = ACTIONS(6175), - [anon_sym_ascending] = ACTIONS(6175), - [anon_sym_descending] = ACTIONS(6175), - [anon_sym_group] = ACTIONS(6175), - [anon_sym_select] = ACTIONS(6175), - [anon_sym_as] = ACTIONS(6177), - [anon_sym_is] = ACTIONS(6175), - [anon_sym_DASH_GT] = ACTIONS(6175), - [anon_sym_with] = ACTIONS(6175), + [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), @@ -661210,24 +652933,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5327] = { - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4686), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4699), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), [sym_preproc_region] = STATE(5327), [sym_preproc_endregion] = STATE(5327), [sym_preproc_line] = STATE(5327), @@ -661237,34 +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), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7519), - [anon_sym_ref] = ACTIONS(4092), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7382), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), - [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(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), @@ -661286,52 +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(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), + [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), @@ -661345,23 +653070,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5329] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7748), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -661375,14 +653101,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(7612), - [anon_sym_delegate] = ACTIONS(3709), + [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(7616), - [anon_sym_var] = ACTIONS(7491), + [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), @@ -661412,23 +653138,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5330] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7742), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -661442,14 +653168,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(7612), - [anon_sym_delegate] = ACTIONS(3709), + [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(7616), - [anon_sym_var] = ACTIONS(7491), + [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), @@ -661487,52 +653214,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5331), [sym_preproc_define] = STATE(5331), [sym_preproc_undef] = STATE(5331), - [anon_sym_LBRACK] = ACTIONS(6277), - [anon_sym_COMMA] = ACTIONS(6277), - [anon_sym_LPAREN] = ACTIONS(6277), - [anon_sym_LT] = ACTIONS(6279), - [anon_sym_GT] = ACTIONS(6279), - [anon_sym_where] = ACTIONS(6277), - [anon_sym_QMARK] = ACTIONS(6279), - [anon_sym_BANG] = ACTIONS(6279), - [anon_sym_PLUS_PLUS] = ACTIONS(6277), - [anon_sym_DASH_DASH] = ACTIONS(6277), - [anon_sym_PLUS] = ACTIONS(6279), - [anon_sym_DASH] = ACTIONS(6279), - [anon_sym_STAR] = ACTIONS(6277), - [anon_sym_SLASH] = ACTIONS(6279), - [anon_sym_PERCENT] = ACTIONS(6277), - [anon_sym_CARET] = ACTIONS(6277), - [anon_sym_PIPE] = ACTIONS(6279), - [anon_sym_AMP] = ACTIONS(6279), - [anon_sym_LT_LT] = ACTIONS(6277), - [anon_sym_GT_GT] = ACTIONS(6279), - [anon_sym_GT_GT_GT] = ACTIONS(6277), - [anon_sym_EQ_EQ] = ACTIONS(6277), - [anon_sym_BANG_EQ] = ACTIONS(6277), - [anon_sym_GT_EQ] = ACTIONS(6277), - [anon_sym_LT_EQ] = ACTIONS(6277), - [anon_sym_DOT] = ACTIONS(6279), - [anon_sym_switch] = ACTIONS(6277), - [anon_sym_DOT_DOT] = ACTIONS(6277), - [anon_sym_and] = ACTIONS(6277), - [anon_sym_or] = ACTIONS(6279), - [anon_sym_AMP_AMP] = ACTIONS(6277), - [anon_sym_PIPE_PIPE] = ACTIONS(6277), - [sym_op_coalescing] = ACTIONS(6277), - [anon_sym_from] = ACTIONS(6277), - [anon_sym_into] = ACTIONS(6277), - [anon_sym_join] = ACTIONS(6277), - [anon_sym_let] = ACTIONS(6277), - [anon_sym_orderby] = ACTIONS(6277), - [anon_sym_ascending] = ACTIONS(6277), - [anon_sym_descending] = ACTIONS(6277), - [anon_sym_group] = ACTIONS(6277), - [anon_sym_select] = ACTIONS(6277), - [anon_sym_as] = ACTIONS(6279), - [anon_sym_is] = ACTIONS(6277), - [anon_sym_DASH_GT] = ACTIONS(6277), - [anon_sym_with] = ACTIONS(6277), + [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), @@ -661545,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), @@ -661554,52 +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(6265), - [anon_sym_COMMA] = ACTIONS(6265), - [anon_sym_LPAREN] = ACTIONS(6265), - [anon_sym_LT] = ACTIONS(6267), - [anon_sym_GT] = ACTIONS(6267), - [anon_sym_where] = ACTIONS(6265), - [anon_sym_QMARK] = ACTIONS(6267), - [anon_sym_BANG] = ACTIONS(6267), - [anon_sym_PLUS_PLUS] = ACTIONS(6265), - [anon_sym_DASH_DASH] = ACTIONS(6265), - [anon_sym_PLUS] = ACTIONS(6267), - [anon_sym_DASH] = ACTIONS(6267), - [anon_sym_STAR] = ACTIONS(6265), - [anon_sym_SLASH] = ACTIONS(6267), - [anon_sym_PERCENT] = ACTIONS(6265), - [anon_sym_CARET] = ACTIONS(6265), - [anon_sym_PIPE] = ACTIONS(6267), - [anon_sym_AMP] = ACTIONS(6267), - [anon_sym_LT_LT] = ACTIONS(6265), - [anon_sym_GT_GT] = ACTIONS(6267), - [anon_sym_GT_GT_GT] = ACTIONS(6265), - [anon_sym_EQ_EQ] = ACTIONS(6265), - [anon_sym_BANG_EQ] = ACTIONS(6265), - [anon_sym_GT_EQ] = ACTIONS(6265), - [anon_sym_LT_EQ] = ACTIONS(6265), - [anon_sym_DOT] = ACTIONS(6267), - [anon_sym_switch] = ACTIONS(6265), - [anon_sym_DOT_DOT] = ACTIONS(6265), - [anon_sym_and] = ACTIONS(6265), - [anon_sym_or] = ACTIONS(6267), - [anon_sym_AMP_AMP] = ACTIONS(6265), - [anon_sym_PIPE_PIPE] = ACTIONS(6265), - [sym_op_coalescing] = ACTIONS(6265), - [anon_sym_from] = ACTIONS(6265), - [anon_sym_into] = ACTIONS(6265), - [anon_sym_join] = ACTIONS(6265), - [anon_sym_let] = ACTIONS(6265), - [anon_sym_orderby] = ACTIONS(6265), - [anon_sym_ascending] = ACTIONS(6265), - [anon_sym_descending] = ACTIONS(6265), - [anon_sym_group] = ACTIONS(6265), - [anon_sym_select] = ACTIONS(6265), - [anon_sym_as] = ACTIONS(6267), - [anon_sym_is] = ACTIONS(6265), - [anon_sym_DASH_GT] = ACTIONS(6265), - [anon_sym_with] = ACTIONS(6265), + [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), @@ -661612,24 +653341,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5333] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6874), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5333), [sym_preproc_endregion] = STATE(5333), [sym_preproc_line] = STATE(5333), @@ -661639,34 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7606), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7610), - [anon_sym_var] = ACTIONS(5500), - [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), + [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), @@ -661679,24 +653409,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5334] = { - [sym__name] = STATE(2471), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2445), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2433), - [sym_type] = STATE(5389), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_identifier] = STATE(2399), - [sym__reserved_identifier] = STATE(2400), + [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), @@ -661706,34 +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), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LPAREN] = ACTIONS(7495), - [anon_sym_ref] = ACTIONS(4452), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_where] = ACTIONS(4432), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_scoped] = ACTIONS(7363), - [anon_sym_var] = ACTIONS(7365), - [sym_predefined_type] = ACTIONS(7367), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_when] = ACTIONS(4432), - [anon_sym_from] = ACTIONS(4432), - [anon_sym_into] = ACTIONS(4432), - [anon_sym_join] = ACTIONS(4432), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4432), - [anon_sym_orderby] = ACTIONS(4432), - [anon_sym_ascending] = ACTIONS(4432), - [anon_sym_descending] = ACTIONS(4432), - [anon_sym_group] = ACTIONS(4432), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4432), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -661746,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), @@ -661755,52 +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(6259), - [anon_sym_COMMA] = ACTIONS(6259), - [anon_sym_LPAREN] = ACTIONS(6259), - [anon_sym_LT] = ACTIONS(6261), - [anon_sym_GT] = ACTIONS(6261), - [anon_sym_where] = ACTIONS(6259), - [anon_sym_QMARK] = ACTIONS(6261), - [anon_sym_BANG] = ACTIONS(6261), - [anon_sym_PLUS_PLUS] = ACTIONS(6259), - [anon_sym_DASH_DASH] = ACTIONS(6259), - [anon_sym_PLUS] = ACTIONS(6261), - [anon_sym_DASH] = ACTIONS(6261), - [anon_sym_STAR] = ACTIONS(6259), - [anon_sym_SLASH] = ACTIONS(6261), - [anon_sym_PERCENT] = ACTIONS(6259), - [anon_sym_CARET] = ACTIONS(6259), - [anon_sym_PIPE] = ACTIONS(6261), - [anon_sym_AMP] = ACTIONS(6261), - [anon_sym_LT_LT] = ACTIONS(6259), - [anon_sym_GT_GT] = ACTIONS(6261), - [anon_sym_GT_GT_GT] = ACTIONS(6259), - [anon_sym_EQ_EQ] = ACTIONS(6259), - [anon_sym_BANG_EQ] = ACTIONS(6259), - [anon_sym_GT_EQ] = ACTIONS(6259), - [anon_sym_LT_EQ] = ACTIONS(6259), - [anon_sym_DOT] = ACTIONS(6261), - [anon_sym_switch] = ACTIONS(6259), - [anon_sym_DOT_DOT] = ACTIONS(6259), - [anon_sym_and] = ACTIONS(6259), - [anon_sym_or] = ACTIONS(6261), - [anon_sym_AMP_AMP] = ACTIONS(6259), - [anon_sym_PIPE_PIPE] = ACTIONS(6259), - [sym_op_coalescing] = ACTIONS(6259), - [anon_sym_from] = ACTIONS(6259), - [anon_sym_into] = ACTIONS(6259), - [anon_sym_join] = ACTIONS(6259), - [anon_sym_let] = ACTIONS(6259), - [anon_sym_orderby] = ACTIONS(6259), - [anon_sym_ascending] = ACTIONS(6259), - [anon_sym_descending] = ACTIONS(6259), - [anon_sym_group] = ACTIONS(6259), - [anon_sym_select] = ACTIONS(6259), - [anon_sym_as] = ACTIONS(6261), - [anon_sym_is] = ACTIONS(6259), - [anon_sym_DASH_GT] = ACTIONS(6259), - [anon_sym_with] = ACTIONS(6259), + [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), @@ -661813,24 +653545,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5336] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7719), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -661840,34 +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), - [sym__identifier_token] = ACTIONS(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7612), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7616), - [anon_sym_var] = ACTIONS(7491), - [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), + [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), @@ -661880,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), @@ -661889,52 +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(7679), - [anon_sym_COMMA] = ACTIONS(7679), - [anon_sym_LPAREN] = ACTIONS(7679), - [anon_sym_LT] = ACTIONS(7681), - [anon_sym_GT] = ACTIONS(7681), - [anon_sym_where] = ACTIONS(7679), - [anon_sym_QMARK] = ACTIONS(7681), - [anon_sym_BANG] = ACTIONS(7681), - [anon_sym_PLUS_PLUS] = ACTIONS(7679), - [anon_sym_DASH_DASH] = ACTIONS(7679), - [anon_sym_PLUS] = ACTIONS(7681), - [anon_sym_DASH] = ACTIONS(7681), - [anon_sym_STAR] = ACTIONS(7679), - [anon_sym_SLASH] = ACTIONS(7681), - [anon_sym_PERCENT] = ACTIONS(7679), - [anon_sym_CARET] = ACTIONS(7679), - [anon_sym_PIPE] = ACTIONS(7681), - [anon_sym_AMP] = ACTIONS(7681), - [anon_sym_LT_LT] = ACTIONS(7679), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym_GT_GT_GT] = ACTIONS(7679), - [anon_sym_EQ_EQ] = ACTIONS(7679), - [anon_sym_BANG_EQ] = ACTIONS(7679), - [anon_sym_GT_EQ] = ACTIONS(7679), - [anon_sym_LT_EQ] = ACTIONS(7679), - [anon_sym_DOT] = ACTIONS(7681), - [anon_sym_switch] = ACTIONS(7679), - [anon_sym_DOT_DOT] = ACTIONS(7679), - [anon_sym_and] = ACTIONS(7671), - [anon_sym_or] = ACTIONS(7681), - [anon_sym_AMP_AMP] = ACTIONS(7679), - [anon_sym_PIPE_PIPE] = ACTIONS(7679), - [sym_op_coalescing] = ACTIONS(7679), - [anon_sym_from] = ACTIONS(7679), - [anon_sym_into] = ACTIONS(7679), - [anon_sym_join] = ACTIONS(7679), - [anon_sym_let] = ACTIONS(7679), - [anon_sym_orderby] = ACTIONS(7679), - [anon_sym_ascending] = ACTIONS(7679), - [anon_sym_descending] = ACTIONS(7679), - [anon_sym_group] = ACTIONS(7679), - [anon_sym_select] = ACTIONS(7679), - [anon_sym_as] = ACTIONS(7681), - [anon_sym_is] = ACTIONS(7679), - [anon_sym_DASH_GT] = ACTIONS(7679), - [anon_sym_with] = ACTIONS(7679), + [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), @@ -661956,52 +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(4815), - [anon_sym_COMMA] = ACTIONS(4815), - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_LT] = ACTIONS(4817), - [anon_sym_GT] = ACTIONS(4817), - [anon_sym_where] = ACTIONS(4815), - [anon_sym_QMARK] = ACTIONS(4817), - [anon_sym_BANG] = ACTIONS(4817), - [anon_sym_PLUS_PLUS] = ACTIONS(4815), - [anon_sym_DASH_DASH] = ACTIONS(4815), - [anon_sym_PLUS] = ACTIONS(4817), - [anon_sym_DASH] = ACTIONS(4817), - [anon_sym_STAR] = ACTIONS(4815), - [anon_sym_SLASH] = ACTIONS(4817), - [anon_sym_PERCENT] = ACTIONS(4815), - [anon_sym_CARET] = ACTIONS(4815), - [anon_sym_PIPE] = ACTIONS(4817), - [anon_sym_AMP] = ACTIONS(4817), - [anon_sym_LT_LT] = ACTIONS(4815), - [anon_sym_GT_GT] = ACTIONS(4817), - [anon_sym_GT_GT_GT] = ACTIONS(4815), - [anon_sym_EQ_EQ] = ACTIONS(4815), - [anon_sym_BANG_EQ] = ACTIONS(4815), - [anon_sym_GT_EQ] = ACTIONS(4815), - [anon_sym_LT_EQ] = ACTIONS(4815), - [anon_sym_DOT] = ACTIONS(4817), - [anon_sym_switch] = ACTIONS(4815), - [anon_sym_DOT_DOT] = ACTIONS(4815), - [anon_sym_and] = ACTIONS(4815), - [anon_sym_or] = ACTIONS(4817), - [anon_sym_AMP_AMP] = ACTIONS(4815), - [anon_sym_PIPE_PIPE] = ACTIONS(4815), - [sym_op_coalescing] = ACTIONS(4815), - [anon_sym_from] = ACTIONS(4815), - [anon_sym_into] = ACTIONS(4815), - [anon_sym_join] = ACTIONS(4815), - [anon_sym_let] = ACTIONS(4815), - [anon_sym_orderby] = ACTIONS(4815), - [anon_sym_ascending] = ACTIONS(4815), - [anon_sym_descending] = ACTIONS(4815), - [anon_sym_group] = ACTIONS(4815), - [anon_sym_select] = ACTIONS(4815), - [anon_sym_as] = ACTIONS(4817), - [anon_sym_is] = ACTIONS(4815), - [anon_sym_DASH_GT] = ACTIONS(4815), - [anon_sym_with] = ACTIONS(4815), + [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), @@ -662015,23 +653748,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5339] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7735), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -662045,14 +653778,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(7606), - [anon_sym_delegate] = ACTIONS(3709), + [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(7610), - [anon_sym_var] = ACTIONS(5500), + [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), @@ -662081,24 +653814,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5340] = { - [sym__name] = STATE(5487), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3770), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(3463), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(5284), - [sym__reserved_identifier] = STATE(3393), + [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), @@ -662108,34 +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), - [sym__identifier_token] = ACTIONS(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(7513), - [anon_sym_ref] = ACTIONS(4518), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7276), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -662148,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), @@ -662157,52 +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(6179), - [anon_sym_COMMA] = ACTIONS(6179), - [anon_sym_LPAREN] = ACTIONS(6179), - [anon_sym_LT] = ACTIONS(6181), - [anon_sym_GT] = ACTIONS(6181), - [anon_sym_where] = ACTIONS(6179), - [anon_sym_QMARK] = ACTIONS(6181), - [anon_sym_BANG] = ACTIONS(6181), - [anon_sym_PLUS_PLUS] = ACTIONS(6179), - [anon_sym_DASH_DASH] = ACTIONS(6179), - [anon_sym_PLUS] = ACTIONS(6181), - [anon_sym_DASH] = ACTIONS(6181), - [anon_sym_STAR] = ACTIONS(6179), - [anon_sym_SLASH] = ACTIONS(6181), - [anon_sym_PERCENT] = ACTIONS(6179), - [anon_sym_CARET] = ACTIONS(6179), - [anon_sym_PIPE] = ACTIONS(6181), - [anon_sym_AMP] = ACTIONS(6181), - [anon_sym_LT_LT] = ACTIONS(6179), - [anon_sym_GT_GT] = ACTIONS(6181), - [anon_sym_GT_GT_GT] = ACTIONS(6179), - [anon_sym_EQ_EQ] = ACTIONS(6179), - [anon_sym_BANG_EQ] = ACTIONS(6179), - [anon_sym_GT_EQ] = ACTIONS(6179), - [anon_sym_LT_EQ] = ACTIONS(6179), - [anon_sym_DOT] = ACTIONS(6181), - [anon_sym_switch] = ACTIONS(6179), - [anon_sym_DOT_DOT] = ACTIONS(6179), - [anon_sym_and] = ACTIONS(6179), - [anon_sym_or] = ACTIONS(6181), - [anon_sym_AMP_AMP] = ACTIONS(6179), - [anon_sym_PIPE_PIPE] = ACTIONS(6179), - [sym_op_coalescing] = ACTIONS(6179), - [anon_sym_from] = ACTIONS(6179), - [anon_sym_into] = ACTIONS(6179), - [anon_sym_join] = ACTIONS(6179), - [anon_sym_let] = ACTIONS(6179), - [anon_sym_orderby] = ACTIONS(6179), - [anon_sym_ascending] = ACTIONS(6179), - [anon_sym_descending] = ACTIONS(6179), - [anon_sym_group] = ACTIONS(6179), - [anon_sym_select] = ACTIONS(6179), - [anon_sym_as] = ACTIONS(6181), - [anon_sym_is] = ACTIONS(6179), - [anon_sym_DASH_GT] = ACTIONS(6179), - [anon_sym_with] = ACTIONS(6179), + [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), @@ -662216,23 +653949,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5342] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7993), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -662246,14 +653979,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(7612), - [anon_sym_delegate] = ACTIONS(3709), + [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(7616), - [anon_sym_var] = ACTIONS(7491), + [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), @@ -662282,6 +654015,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -662291,52 +654042,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5343), [sym_preproc_define] = STATE(5343), [sym_preproc_undef] = STATE(5343), - [anon_sym_LBRACK] = ACTIONS(6075), - [anon_sym_COMMA] = ACTIONS(6075), - [anon_sym_LPAREN] = ACTIONS(6075), - [anon_sym_LT] = ACTIONS(6077), - [anon_sym_GT] = ACTIONS(6077), - [anon_sym_where] = ACTIONS(6075), - [anon_sym_QMARK] = ACTIONS(6077), - [anon_sym_BANG] = ACTIONS(6077), - [anon_sym_PLUS_PLUS] = ACTIONS(6075), - [anon_sym_DASH_DASH] = ACTIONS(6075), - [anon_sym_PLUS] = ACTIONS(6077), - [anon_sym_DASH] = ACTIONS(6077), - [anon_sym_STAR] = ACTIONS(6075), - [anon_sym_SLASH] = ACTIONS(6077), - [anon_sym_PERCENT] = ACTIONS(6075), - [anon_sym_CARET] = ACTIONS(6075), - [anon_sym_PIPE] = ACTIONS(6077), - [anon_sym_AMP] = ACTIONS(6077), - [anon_sym_LT_LT] = ACTIONS(6075), - [anon_sym_GT_GT] = ACTIONS(6077), - [anon_sym_GT_GT_GT] = ACTIONS(6075), - [anon_sym_EQ_EQ] = ACTIONS(6075), - [anon_sym_BANG_EQ] = ACTIONS(6075), - [anon_sym_GT_EQ] = ACTIONS(6075), - [anon_sym_LT_EQ] = ACTIONS(6075), - [anon_sym_DOT] = ACTIONS(6077), - [anon_sym_switch] = ACTIONS(6075), - [anon_sym_DOT_DOT] = ACTIONS(6075), - [anon_sym_and] = ACTIONS(6075), - [anon_sym_or] = ACTIONS(6077), - [anon_sym_AMP_AMP] = ACTIONS(6075), - [anon_sym_PIPE_PIPE] = ACTIONS(6075), - [sym_op_coalescing] = ACTIONS(6075), - [anon_sym_from] = ACTIONS(6075), - [anon_sym_into] = ACTIONS(6075), - [anon_sym_join] = ACTIONS(6075), - [anon_sym_let] = ACTIONS(6075), - [anon_sym_orderby] = ACTIONS(6075), - [anon_sym_ascending] = ACTIONS(6075), - [anon_sym_descending] = ACTIONS(6075), - [anon_sym_group] = ACTIONS(6075), - [anon_sym_select] = ACTIONS(6075), - [anon_sym_as] = ACTIONS(6077), - [anon_sym_is] = ACTIONS(6075), - [anon_sym_DASH_GT] = ACTIONS(6075), - [anon_sym_with] = ACTIONS(6075), + [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), @@ -662349,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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7676), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5344), [sym_preproc_endregion] = STATE(5344), [sym_preproc_line] = STATE(5344), @@ -662376,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(7606), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7610), - [anon_sym_var] = ACTIONS(5500), - [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), + [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), @@ -662416,6 +654149,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5345] = { + [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), @@ -662425,103 +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), - [anon_sym_LBRACK] = ACTIONS(6071), - [anon_sym_COMMA] = ACTIONS(6071), - [anon_sym_LPAREN] = ACTIONS(6071), - [anon_sym_LT] = ACTIONS(6073), - [anon_sym_GT] = ACTIONS(6073), - [anon_sym_where] = ACTIONS(6071), - [anon_sym_QMARK] = ACTIONS(6073), - [anon_sym_BANG] = ACTIONS(6073), - [anon_sym_PLUS_PLUS] = ACTIONS(6071), - [anon_sym_DASH_DASH] = ACTIONS(6071), - [anon_sym_PLUS] = ACTIONS(6073), - [anon_sym_DASH] = ACTIONS(6073), - [anon_sym_STAR] = ACTIONS(6071), - [anon_sym_SLASH] = ACTIONS(6073), - [anon_sym_PERCENT] = ACTIONS(6071), - [anon_sym_CARET] = ACTIONS(6071), - [anon_sym_PIPE] = ACTIONS(6073), - [anon_sym_AMP] = ACTIONS(6073), - [anon_sym_LT_LT] = ACTIONS(6071), - [anon_sym_GT_GT] = ACTIONS(6073), - [anon_sym_GT_GT_GT] = ACTIONS(6071), - [anon_sym_EQ_EQ] = ACTIONS(6071), - [anon_sym_BANG_EQ] = ACTIONS(6071), - [anon_sym_GT_EQ] = ACTIONS(6071), - [anon_sym_LT_EQ] = ACTIONS(6071), - [anon_sym_DOT] = ACTIONS(6073), - [anon_sym_switch] = ACTIONS(6071), - [anon_sym_DOT_DOT] = ACTIONS(6071), - [anon_sym_and] = ACTIONS(6071), - [anon_sym_or] = ACTIONS(6073), - [anon_sym_AMP_AMP] = ACTIONS(6071), - [anon_sym_PIPE_PIPE] = ACTIONS(6071), - [sym_op_coalescing] = ACTIONS(6071), - [anon_sym_from] = ACTIONS(6071), - [anon_sym_into] = ACTIONS(6071), - [anon_sym_join] = ACTIONS(6071), - [anon_sym_let] = ACTIONS(6071), - [anon_sym_orderby] = ACTIONS(6071), - [anon_sym_ascending] = ACTIONS(6071), - [anon_sym_descending] = ACTIONS(6071), - [anon_sym_group] = ACTIONS(6071), - [anon_sym_select] = ACTIONS(6071), - [anon_sym_as] = ACTIONS(6073), - [anon_sym_is] = ACTIONS(6071), - [anon_sym_DASH_GT] = ACTIONS(6071), - [anon_sym_with] = ACTIONS(6071), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7714), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [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(7612), - [anon_sym_delegate] = ACTIONS(3709), + [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(7616), - [anon_sym_var] = ACTIONS(7491), + [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), @@ -662549,25 +654215,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [5347] = { - [sym__name] = STATE(5608), - [sym_alias_qualified_name] = STATE(5627), - [sym__simple_name] = STATE(5627), - [sym_qualified_name] = STATE(5627), - [sym_generic_name] = STATE(5585), - [sym_type] = STATE(5675), - [sym_implicit_type] = STATE(5637), - [sym_array_type] = STATE(5625), - [sym__array_base_type] = STATE(7380), - [sym_nullable_type] = STATE(5581), - [sym_pointer_type] = STATE(5581), - [sym__pointer_base_type] = STATE(8140), - [sym_function_pointer_type] = STATE(5581), - [sym_ref_type] = STATE(5637), - [sym_scoped_type] = STATE(5637), - [sym_tuple_type] = STATE(5609), - [sym_identifier] = STATE(5530), - [sym__reserved_identifier] = STATE(5560), + [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), @@ -662577,34 +654310,34 @@ 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(4328), - [anon_sym_alias] = ACTIONS(4330), - [anon_sym_global] = ACTIONS(4330), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4332), - [anon_sym_delegate] = ACTIONS(7250), - [anon_sym_file] = ACTIONS(4330), - [anon_sym_where] = ACTIONS(4330), - [anon_sym_notnull] = ACTIONS(4330), - [anon_sym_unmanaged] = ACTIONS(4330), - [anon_sym_scoped] = ACTIONS(7252), - [anon_sym_var] = ACTIONS(7254), - [sym_predefined_type] = ACTIONS(7256), - [anon_sym_yield] = ACTIONS(4330), - [anon_sym_when] = ACTIONS(4330), - [anon_sym_from] = ACTIONS(4330), - [anon_sym_into] = ACTIONS(4330), - [anon_sym_join] = ACTIONS(4330), - [anon_sym_on] = ACTIONS(4330), - [anon_sym_equals] = ACTIONS(4330), - [anon_sym_let] = ACTIONS(4330), - [anon_sym_orderby] = ACTIONS(4330), - [anon_sym_ascending] = ACTIONS(4330), - [anon_sym_descending] = ACTIONS(4330), - [anon_sym_group] = ACTIONS(4330), - [anon_sym_by] = ACTIONS(4330), - [anon_sym_select] = ACTIONS(4330), - [sym_grit_metavariable] = ACTIONS(4334), + [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), @@ -662617,6 +654350,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -662626,52 +654377,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5348), [sym_preproc_define] = STATE(5348), [sym_preproc_undef] = STATE(5348), - [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__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), @@ -662684,6 +654417,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5349] = { + [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), @@ -662693,52 +654444,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5349), [sym_preproc_define] = STATE(5349), [sym_preproc_undef] = STATE(5349), - [anon_sym_LBRACK] = ACTIONS(7016), - [anon_sym_COMMA] = ACTIONS(7016), - [anon_sym_LPAREN] = ACTIONS(7016), - [anon_sym_LT] = ACTIONS(7018), - [anon_sym_GT] = ACTIONS(7018), - [anon_sym_where] = ACTIONS(7016), - [anon_sym_QMARK] = ACTIONS(7018), - [anon_sym_BANG] = ACTIONS(7018), - [anon_sym_PLUS_PLUS] = ACTIONS(7016), - [anon_sym_DASH_DASH] = ACTIONS(7016), - [anon_sym_PLUS] = ACTIONS(7018), - [anon_sym_DASH] = ACTIONS(7018), - [anon_sym_STAR] = ACTIONS(7016), - [anon_sym_SLASH] = ACTIONS(7018), - [anon_sym_PERCENT] = ACTIONS(7016), - [anon_sym_CARET] = ACTIONS(7016), - [anon_sym_PIPE] = ACTIONS(7018), - [anon_sym_AMP] = ACTIONS(7018), - [anon_sym_LT_LT] = ACTIONS(7016), - [anon_sym_GT_GT] = ACTIONS(7018), - [anon_sym_GT_GT_GT] = ACTIONS(7016), - [anon_sym_EQ_EQ] = ACTIONS(7016), - [anon_sym_BANG_EQ] = ACTIONS(7016), - [anon_sym_GT_EQ] = ACTIONS(7016), - [anon_sym_LT_EQ] = ACTIONS(7016), - [anon_sym_DOT] = ACTIONS(7018), - [anon_sym_switch] = ACTIONS(7016), - [anon_sym_DOT_DOT] = ACTIONS(7016), - [anon_sym_and] = ACTIONS(7671), - [anon_sym_or] = ACTIONS(7673), - [anon_sym_AMP_AMP] = ACTIONS(7016), - [anon_sym_PIPE_PIPE] = ACTIONS(7016), - [sym_op_coalescing] = ACTIONS(7016), - [anon_sym_from] = ACTIONS(7016), - [anon_sym_into] = ACTIONS(7016), - [anon_sym_join] = ACTIONS(7016), - [anon_sym_let] = ACTIONS(7016), - [anon_sym_orderby] = ACTIONS(7016), - [anon_sym_ascending] = ACTIONS(7016), - [anon_sym_descending] = ACTIONS(7016), - [anon_sym_group] = ACTIONS(7016), - [anon_sym_select] = ACTIONS(7016), - [anon_sym_as] = ACTIONS(7018), - [anon_sym_is] = ACTIONS(7016), - [anon_sym_DASH_GT] = ACTIONS(7016), - [anon_sym_with] = ACTIONS(7016), + [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_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), @@ -662751,6 +654484,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5350] = { + [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), @@ -662760,52 +654511,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5350), [sym_preproc_define] = STATE(5350), [sym_preproc_undef] = STATE(5350), - [anon_sym_LBRACK] = ACTIONS(6041), - [anon_sym_COMMA] = ACTIONS(6041), - [anon_sym_LPAREN] = ACTIONS(6041), - [anon_sym_LT] = ACTIONS(6043), - [anon_sym_GT] = ACTIONS(6043), - [anon_sym_where] = ACTIONS(6041), - [anon_sym_QMARK] = ACTIONS(6043), - [anon_sym_BANG] = ACTIONS(6043), - [anon_sym_PLUS_PLUS] = ACTIONS(6041), - [anon_sym_DASH_DASH] = ACTIONS(6041), - [anon_sym_PLUS] = ACTIONS(6043), - [anon_sym_DASH] = ACTIONS(6043), - [anon_sym_STAR] = ACTIONS(6041), - [anon_sym_SLASH] = ACTIONS(6043), - [anon_sym_PERCENT] = ACTIONS(6041), - [anon_sym_CARET] = ACTIONS(6041), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_AMP] = ACTIONS(6043), - [anon_sym_LT_LT] = ACTIONS(6041), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_GT_GT_GT] = ACTIONS(6041), - [anon_sym_EQ_EQ] = ACTIONS(6041), - [anon_sym_BANG_EQ] = ACTIONS(6041), - [anon_sym_GT_EQ] = ACTIONS(6041), - [anon_sym_LT_EQ] = ACTIONS(6041), - [anon_sym_DOT] = ACTIONS(6043), - [anon_sym_switch] = ACTIONS(6041), - [anon_sym_DOT_DOT] = ACTIONS(6041), - [anon_sym_and] = ACTIONS(6041), - [anon_sym_or] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6041), - [anon_sym_PIPE_PIPE] = ACTIONS(6041), - [sym_op_coalescing] = ACTIONS(6041), - [anon_sym_from] = ACTIONS(6041), - [anon_sym_into] = ACTIONS(6041), - [anon_sym_join] = ACTIONS(6041), - [anon_sym_let] = ACTIONS(6041), - [anon_sym_orderby] = ACTIONS(6041), - [anon_sym_ascending] = ACTIONS(6041), - [anon_sym_descending] = ACTIONS(6041), - [anon_sym_group] = ACTIONS(6041), - [anon_sym_select] = ACTIONS(6041), - [anon_sym_as] = ACTIONS(6043), - [anon_sym_is] = ACTIONS(6041), - [anon_sym_DASH_GT] = ACTIONS(6041), - [anon_sym_with] = ACTIONS(6041), + [sym__identifier_token] = ACTIONS(3207), + [anon_sym_alias] = ACTIONS(3211), + [anon_sym_global] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3219), + [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(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), + [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), @@ -662818,24 +654551,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5351] = { - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4686), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4699), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), + [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), @@ -662845,34 +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(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7519), - [anon_sym_ref] = ACTIONS(4478), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7347), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), - [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(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), @@ -662885,24 +654618,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5352] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7384), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -662916,15 +654649,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(7459), - [anon_sym_delegate] = ACTIONS(5889), + [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(6986), - [anon_sym_var] = ACTIONS(3239), - [sym_predefined_type] = ACTIONS(5897), + [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), @@ -662952,6 +654685,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -662961,52 +654712,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5353), [sym_preproc_define] = STATE(5353), [sym_preproc_undef] = STATE(5353), - [anon_sym_LBRACK] = ACTIONS(6031), - [anon_sym_COMMA] = ACTIONS(6031), - [anon_sym_LPAREN] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6033), - [anon_sym_GT] = ACTIONS(6033), - [anon_sym_where] = ACTIONS(6031), - [anon_sym_QMARK] = ACTIONS(6033), - [anon_sym_BANG] = ACTIONS(6033), - [anon_sym_PLUS_PLUS] = ACTIONS(6031), - [anon_sym_DASH_DASH] = ACTIONS(6031), - [anon_sym_PLUS] = ACTIONS(6033), - [anon_sym_DASH] = ACTIONS(6033), - [anon_sym_STAR] = ACTIONS(6031), - [anon_sym_SLASH] = ACTIONS(6033), - [anon_sym_PERCENT] = ACTIONS(6031), - [anon_sym_CARET] = ACTIONS(6031), - [anon_sym_PIPE] = ACTIONS(6033), - [anon_sym_AMP] = ACTIONS(6033), - [anon_sym_LT_LT] = ACTIONS(6031), - [anon_sym_GT_GT] = ACTIONS(6033), - [anon_sym_GT_GT_GT] = ACTIONS(6031), - [anon_sym_EQ_EQ] = ACTIONS(6031), - [anon_sym_BANG_EQ] = ACTIONS(6031), - [anon_sym_GT_EQ] = ACTIONS(6031), - [anon_sym_LT_EQ] = ACTIONS(6031), - [anon_sym_DOT] = ACTIONS(6033), - [anon_sym_switch] = ACTIONS(6031), - [anon_sym_DOT_DOT] = ACTIONS(6031), - [anon_sym_and] = ACTIONS(6031), - [anon_sym_or] = ACTIONS(6033), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [sym_op_coalescing] = ACTIONS(6031), - [anon_sym_from] = ACTIONS(6031), - [anon_sym_into] = ACTIONS(6031), - [anon_sym_join] = ACTIONS(6031), - [anon_sym_let] = ACTIONS(6031), - [anon_sym_orderby] = ACTIONS(6031), - [anon_sym_ascending] = ACTIONS(6031), - [anon_sym_descending] = ACTIONS(6031), - [anon_sym_group] = ACTIONS(6031), - [anon_sym_select] = ACTIONS(6031), - [anon_sym_as] = ACTIONS(6033), - [anon_sym_is] = ACTIONS(6031), - [anon_sym_DASH_GT] = ACTIONS(6031), - [anon_sym_with] = ACTIONS(6031), + [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), @@ -663019,6 +654752,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5354] = { + [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), @@ -663028,52 +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), - [anon_sym_LBRACK] = ACTIONS(7020), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(7020), - [anon_sym_LT] = ACTIONS(7023), - [anon_sym_GT] = ACTIONS(7023), - [anon_sym_where] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(7023), - [anon_sym_BANG] = ACTIONS(7023), - [anon_sym_PLUS_PLUS] = ACTIONS(7020), - [anon_sym_DASH_DASH] = ACTIONS(7020), - [anon_sym_PLUS] = ACTIONS(7023), - [anon_sym_DASH] = ACTIONS(7023), - [anon_sym_STAR] = ACTIONS(7020), - [anon_sym_SLASH] = ACTIONS(7023), - [anon_sym_PERCENT] = ACTIONS(7020), - [anon_sym_CARET] = ACTIONS(7020), - [anon_sym_PIPE] = ACTIONS(7023), - [anon_sym_AMP] = ACTIONS(7023), - [anon_sym_LT_LT] = ACTIONS(7020), - [anon_sym_GT_GT] = ACTIONS(7023), - [anon_sym_GT_GT_GT] = ACTIONS(7020), - [anon_sym_EQ_EQ] = ACTIONS(7020), - [anon_sym_BANG_EQ] = ACTIONS(7020), - [anon_sym_GT_EQ] = ACTIONS(7020), - [anon_sym_LT_EQ] = ACTIONS(7020), - [anon_sym_DOT] = ACTIONS(7023), - [anon_sym_switch] = ACTIONS(7020), - [anon_sym_DOT_DOT] = ACTIONS(7020), - [anon_sym_and] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(5011), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [sym_op_coalescing] = ACTIONS(7020), - [anon_sym_from] = ACTIONS(5003), - [anon_sym_into] = ACTIONS(5003), - [anon_sym_join] = ACTIONS(5003), - [anon_sym_let] = ACTIONS(5003), - [anon_sym_orderby] = ACTIONS(5003), - [anon_sym_ascending] = ACTIONS(5003), - [anon_sym_descending] = ACTIONS(5003), - [anon_sym_group] = ACTIONS(5003), - [anon_sym_select] = ACTIONS(5003), - [anon_sym_as] = ACTIONS(7023), - [anon_sym_is] = ACTIONS(7020), - [anon_sym_DASH_GT] = ACTIONS(7020), - [anon_sym_with] = ACTIONS(7020), + [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), @@ -663086,112 +654819,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5355] = { + [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(5355), [sym_preproc_endregion] = STATE(5355), - [sym_preproc_line] = STATE(5355), - [sym_preproc_pragma] = STATE(5355), - [sym_preproc_nullable] = STATE(5355), - [sym_preproc_error] = STATE(5355), - [sym_preproc_warning] = STATE(5355), - [sym_preproc_define] = STATE(5355), - [sym_preproc_undef] = STATE(5355), - [anon_sym_LBRACK] = ACTIONS(7038), - [anon_sym_COMMA] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(7038), - [anon_sym_LT] = ACTIONS(7041), - [anon_sym_GT] = ACTIONS(7041), - [anon_sym_where] = ACTIONS(5003), - [anon_sym_QMARK] = ACTIONS(7041), - [anon_sym_BANG] = ACTIONS(7041), - [anon_sym_PLUS_PLUS] = ACTIONS(7038), - [anon_sym_DASH_DASH] = ACTIONS(7038), - [anon_sym_PLUS] = ACTIONS(7041), - [anon_sym_DASH] = ACTIONS(7041), - [anon_sym_STAR] = ACTIONS(7038), - [anon_sym_SLASH] = ACTIONS(7041), - [anon_sym_PERCENT] = ACTIONS(7038), - [anon_sym_CARET] = ACTIONS(7038), - [anon_sym_PIPE] = ACTIONS(7041), - [anon_sym_AMP] = ACTIONS(7041), - [anon_sym_LT_LT] = ACTIONS(7038), - [anon_sym_GT_GT] = ACTIONS(7041), - [anon_sym_GT_GT_GT] = ACTIONS(7038), - [anon_sym_EQ_EQ] = ACTIONS(7038), - [anon_sym_BANG_EQ] = ACTIONS(7038), - [anon_sym_GT_EQ] = ACTIONS(7038), - [anon_sym_LT_EQ] = ACTIONS(7038), - [anon_sym_DOT] = ACTIONS(7041), - [anon_sym_switch] = ACTIONS(7038), - [anon_sym_DOT_DOT] = ACTIONS(7038), - [anon_sym_and] = ACTIONS(5003), - [anon_sym_or] = ACTIONS(5011), - [anon_sym_AMP_AMP] = ACTIONS(7038), - [anon_sym_PIPE_PIPE] = ACTIONS(7038), - [sym_op_coalescing] = ACTIONS(7038), - [anon_sym_from] = ACTIONS(5003), - [anon_sym_into] = ACTIONS(5003), - [anon_sym_join] = ACTIONS(5003), - [anon_sym_let] = ACTIONS(5003), - [anon_sym_orderby] = ACTIONS(5003), - [anon_sym_ascending] = ACTIONS(5003), - [anon_sym_descending] = ACTIONS(5003), - [anon_sym_group] = ACTIONS(5003), - [anon_sym_select] = ACTIONS(5003), - [anon_sym_as] = ACTIONS(7041), - [anon_sym_is] = ACTIONS(7038), - [anon_sym_DASH_GT] = ACTIONS(7038), - [anon_sym_with] = ACTIONS(7038), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5356] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7673), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(5356), - [sym_preproc_endregion] = STATE(5356), - [sym_preproc_line] = STATE(5356), - [sym_preproc_pragma] = STATE(5356), - [sym_preproc_nullable] = STATE(5356), - [sym_preproc_error] = STATE(5356), - [sym_preproc_warning] = STATE(5356), - [sym_preproc_define] = STATE(5356), - [sym_preproc_undef] = STATE(5356), + [sym_preproc_line] = STATE(5355), + [sym_preproc_pragma] = STATE(5355), + [sym_preproc_nullable] = STATE(5355), + [sym_preproc_error] = STATE(5355), + [sym_preproc_warning] = STATE(5355), + [sym_preproc_define] = STATE(5355), + [sym_preproc_undef] = STATE(5355), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7606), - [anon_sym_delegate] = ACTIONS(3709), + [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(7610), - [anon_sym_var] = ACTIONS(5500), + [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), @@ -663219,7 +654885,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [5356] = { + [sym_type_argument_list] = STATE(5456), + [sym_preproc_region] = STATE(5356), + [sym_preproc_endregion] = STATE(5356), + [sym_preproc_line] = STATE(5356), + [sym_preproc_pragma] = STATE(5356), + [sym_preproc_nullable] = STATE(5356), + [sym_preproc_error] = STATE(5356), + [sym_preproc_warning] = STATE(5356), + [sym_preproc_define] = STATE(5356), + [sym_preproc_undef] = STATE(5356), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [5357] = { + [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), @@ -663229,52 +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), - [anon_sym_LBRACK] = ACTIONS(6117), - [anon_sym_COMMA] = ACTIONS(6117), - [anon_sym_LPAREN] = ACTIONS(6117), - [anon_sym_LT] = ACTIONS(6119), - [anon_sym_GT] = ACTIONS(6119), - [anon_sym_where] = ACTIONS(6117), - [anon_sym_QMARK] = ACTIONS(6119), - [anon_sym_BANG] = ACTIONS(6119), - [anon_sym_PLUS_PLUS] = ACTIONS(6117), - [anon_sym_DASH_DASH] = ACTIONS(6117), - [anon_sym_PLUS] = ACTIONS(6119), - [anon_sym_DASH] = ACTIONS(6119), - [anon_sym_STAR] = ACTIONS(6117), - [anon_sym_SLASH] = ACTIONS(6119), - [anon_sym_PERCENT] = ACTIONS(6117), - [anon_sym_CARET] = ACTIONS(6117), - [anon_sym_PIPE] = ACTIONS(6119), - [anon_sym_AMP] = ACTIONS(6119), - [anon_sym_LT_LT] = ACTIONS(6117), - [anon_sym_GT_GT] = ACTIONS(6119), - [anon_sym_GT_GT_GT] = ACTIONS(6117), - [anon_sym_EQ_EQ] = ACTIONS(6117), - [anon_sym_BANG_EQ] = ACTIONS(6117), - [anon_sym_GT_EQ] = ACTIONS(6117), - [anon_sym_LT_EQ] = ACTIONS(6117), - [anon_sym_DOT] = ACTIONS(6119), - [anon_sym_switch] = ACTIONS(6117), - [anon_sym_DOT_DOT] = ACTIONS(6117), - [anon_sym_and] = ACTIONS(6117), - [anon_sym_or] = ACTIONS(6119), - [anon_sym_AMP_AMP] = ACTIONS(6117), - [anon_sym_PIPE_PIPE] = ACTIONS(6117), - [sym_op_coalescing] = ACTIONS(6117), - [anon_sym_from] = ACTIONS(6117), - [anon_sym_into] = ACTIONS(6117), - [anon_sym_join] = ACTIONS(6117), - [anon_sym_let] = ACTIONS(6117), - [anon_sym_orderby] = ACTIONS(6117), - [anon_sym_ascending] = ACTIONS(6117), - [anon_sym_descending] = ACTIONS(6117), - [anon_sym_group] = ACTIONS(6117), - [anon_sym_select] = ACTIONS(6117), - [anon_sym_as] = ACTIONS(6119), - [anon_sym_is] = ACTIONS(6117), - [anon_sym_DASH_GT] = ACTIONS(6117), - [anon_sym_with] = ACTIONS(6117), + [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), @@ -663287,24 +655020,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5358] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6785), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5358), [sym_preproc_endregion] = STATE(5358), [sym_preproc_line] = STATE(5358), @@ -663314,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(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7606), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7610), - [anon_sym_var] = ACTIONS(5500), - [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_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), @@ -663354,7 +655087,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5359] = { - [sym_type_argument_list] = STATE(5462), [sym_preproc_region] = STATE(5359), [sym_preproc_endregion] = STATE(5359), [sym_preproc_line] = STATE(5359), @@ -663364,51 +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(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(7683), - [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), + [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), @@ -663421,24 +655154,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5360] = { - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4805), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4699), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), + [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(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), @@ -663448,34 +655181,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5360), [sym_preproc_define] = STATE(5360), [sym_preproc_undef] = STATE(5360), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7519), - [anon_sym_ref] = ACTIONS(4092), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7382), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), - [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(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), @@ -663488,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), @@ -663497,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), - [anon_sym_LBRACK] = ACTIONS(6375), - [anon_sym_COMMA] = ACTIONS(6375), - [anon_sym_LPAREN] = ACTIONS(6375), - [anon_sym_LT] = ACTIONS(6377), - [anon_sym_GT] = ACTIONS(6377), - [anon_sym_where] = ACTIONS(6375), - [anon_sym_QMARK] = ACTIONS(6377), - [anon_sym_BANG] = ACTIONS(6377), - [anon_sym_PLUS_PLUS] = ACTIONS(6375), - [anon_sym_DASH_DASH] = ACTIONS(6375), - [anon_sym_PLUS] = ACTIONS(6377), - [anon_sym_DASH] = ACTIONS(6377), - [anon_sym_STAR] = ACTIONS(6375), - [anon_sym_SLASH] = ACTIONS(6377), - [anon_sym_PERCENT] = ACTIONS(6375), - [anon_sym_CARET] = ACTIONS(6375), - [anon_sym_PIPE] = ACTIONS(6377), - [anon_sym_AMP] = ACTIONS(6377), - [anon_sym_LT_LT] = ACTIONS(6375), - [anon_sym_GT_GT] = ACTIONS(6377), - [anon_sym_GT_GT_GT] = ACTIONS(6375), - [anon_sym_EQ_EQ] = ACTIONS(6375), - [anon_sym_BANG_EQ] = ACTIONS(6375), - [anon_sym_GT_EQ] = ACTIONS(6375), - [anon_sym_LT_EQ] = ACTIONS(6375), - [anon_sym_DOT] = ACTIONS(6377), - [anon_sym_switch] = ACTIONS(6375), - [anon_sym_DOT_DOT] = ACTIONS(6375), - [anon_sym_and] = ACTIONS(6375), - [anon_sym_or] = ACTIONS(6377), - [anon_sym_AMP_AMP] = ACTIONS(6375), - [anon_sym_PIPE_PIPE] = ACTIONS(6375), - [sym_op_coalescing] = ACTIONS(6375), - [anon_sym_from] = ACTIONS(6375), - [anon_sym_into] = ACTIONS(6375), - [anon_sym_join] = ACTIONS(6375), - [anon_sym_let] = ACTIONS(6375), - [anon_sym_orderby] = ACTIONS(6375), - [anon_sym_ascending] = ACTIONS(6375), - [anon_sym_descending] = ACTIONS(6375), - [anon_sym_group] = ACTIONS(6375), - [anon_sym_select] = ACTIONS(6375), - [anon_sym_as] = ACTIONS(6377), - [anon_sym_is] = ACTIONS(6375), - [anon_sym_DASH_GT] = ACTIONS(6375), - [anon_sym_with] = ACTIONS(6375), + [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), @@ -663556,23 +655289,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5362] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(2385), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -663586,14 +655319,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(7606), - [anon_sym_delegate] = ACTIONS(3709), + [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(7610), - [anon_sym_var] = ACTIONS(5500), + [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), @@ -663631,52 +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), - [anon_sym_LBRACK] = ACTIONS(6379), - [anon_sym_COMMA] = ACTIONS(6379), - [anon_sym_LPAREN] = ACTIONS(6379), - [anon_sym_LT] = ACTIONS(6381), - [anon_sym_GT] = ACTIONS(6381), - [anon_sym_where] = ACTIONS(6379), - [anon_sym_QMARK] = ACTIONS(6381), - [anon_sym_BANG] = ACTIONS(6381), - [anon_sym_PLUS_PLUS] = ACTIONS(6379), - [anon_sym_DASH_DASH] = ACTIONS(6379), - [anon_sym_PLUS] = ACTIONS(6381), - [anon_sym_DASH] = ACTIONS(6381), - [anon_sym_STAR] = ACTIONS(6379), - [anon_sym_SLASH] = ACTIONS(6381), - [anon_sym_PERCENT] = ACTIONS(6379), - [anon_sym_CARET] = ACTIONS(6379), - [anon_sym_PIPE] = ACTIONS(6381), - [anon_sym_AMP] = ACTIONS(6381), - [anon_sym_LT_LT] = ACTIONS(6379), - [anon_sym_GT_GT] = ACTIONS(6381), - [anon_sym_GT_GT_GT] = ACTIONS(6379), - [anon_sym_EQ_EQ] = ACTIONS(6379), - [anon_sym_BANG_EQ] = ACTIONS(6379), - [anon_sym_GT_EQ] = ACTIONS(6379), - [anon_sym_LT_EQ] = ACTIONS(6379), - [anon_sym_DOT] = ACTIONS(6381), - [anon_sym_switch] = ACTIONS(6379), - [anon_sym_DOT_DOT] = ACTIONS(6379), - [anon_sym_and] = ACTIONS(6379), - [anon_sym_or] = ACTIONS(6381), - [anon_sym_AMP_AMP] = ACTIONS(6379), - [anon_sym_PIPE_PIPE] = ACTIONS(6379), - [sym_op_coalescing] = ACTIONS(6379), - [anon_sym_from] = ACTIONS(6379), - [anon_sym_into] = ACTIONS(6379), - [anon_sym_join] = ACTIONS(6379), - [anon_sym_let] = ACTIONS(6379), - [anon_sym_orderby] = ACTIONS(6379), - [anon_sym_ascending] = ACTIONS(6379), - [anon_sym_descending] = ACTIONS(6379), - [anon_sym_group] = ACTIONS(6379), - [anon_sym_select] = ACTIONS(6379), - [anon_sym_as] = ACTIONS(6381), - [anon_sym_is] = ACTIONS(6379), - [anon_sym_DASH_GT] = ACTIONS(6379), - [anon_sym_with] = ACTIONS(6379), + [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), @@ -663689,6 +655422,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5364] = { + [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), @@ -663698,103 +655449,18 @@ 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), - [anon_sym_LBRACK] = ACTIONS(7134), - [anon_sym_COMMA] = ACTIONS(7134), - [anon_sym_LPAREN] = ACTIONS(7134), - [anon_sym_LT] = ACTIONS(7136), - [anon_sym_GT] = ACTIONS(7136), - [anon_sym_where] = ACTIONS(7134), - [anon_sym_QMARK] = ACTIONS(7136), - [anon_sym_BANG] = ACTIONS(7136), - [anon_sym_PLUS_PLUS] = ACTIONS(7134), - [anon_sym_DASH_DASH] = ACTIONS(7134), - [anon_sym_PLUS] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(7136), - [anon_sym_STAR] = ACTIONS(7134), - [anon_sym_SLASH] = ACTIONS(7136), - [anon_sym_PERCENT] = ACTIONS(7134), - [anon_sym_CARET] = ACTIONS(7134), - [anon_sym_PIPE] = ACTIONS(7136), - [anon_sym_AMP] = ACTIONS(7136), - [anon_sym_LT_LT] = ACTIONS(7134), - [anon_sym_GT_GT] = ACTIONS(7136), - [anon_sym_GT_GT_GT] = ACTIONS(7134), - [anon_sym_EQ_EQ] = ACTIONS(7134), - [anon_sym_BANG_EQ] = ACTIONS(7134), - [anon_sym_GT_EQ] = ACTIONS(7134), - [anon_sym_LT_EQ] = ACTIONS(7134), - [anon_sym_DOT] = ACTIONS(7136), - [anon_sym_switch] = ACTIONS(7134), - [anon_sym_DOT_DOT] = ACTIONS(7134), - [anon_sym_and] = ACTIONS(7134), - [anon_sym_or] = ACTIONS(7136), - [anon_sym_AMP_AMP] = ACTIONS(7134), - [anon_sym_PIPE_PIPE] = ACTIONS(7134), - [sym_op_coalescing] = ACTIONS(7134), - [anon_sym_from] = ACTIONS(7134), - [anon_sym_into] = ACTIONS(7134), - [anon_sym_join] = ACTIONS(7134), - [anon_sym_let] = ACTIONS(7134), - [anon_sym_orderby] = ACTIONS(7134), - [anon_sym_ascending] = ACTIONS(7134), - [anon_sym_descending] = ACTIONS(7134), - [anon_sym_group] = ACTIONS(7134), - [anon_sym_select] = ACTIONS(7134), - [anon_sym_as] = ACTIONS(7136), - [anon_sym_is] = ACTIONS(7134), - [anon_sym_DASH_GT] = ACTIONS(7134), - [anon_sym_with] = ACTIONS(7134), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5365] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7957), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(5365), - [sym_preproc_endregion] = STATE(5365), - [sym_preproc_line] = STATE(5365), - [sym_preproc_pragma] = STATE(5365), - [sym_preproc_nullable] = STATE(5365), - [sym_preproc_error] = STATE(5365), - [sym_preproc_warning] = STATE(5365), - [sym_preproc_define] = STATE(5365), - [sym_preproc_undef] = STATE(5365), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7606), - [anon_sym_delegate] = ACTIONS(3709), + [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(7610), - [anon_sym_var] = ACTIONS(5500), + [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), @@ -663822,62 +655488,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [5366] = { - [sym_preproc_region] = STATE(5366), - [sym_preproc_endregion] = STATE(5366), - [sym_preproc_line] = STATE(5366), - [sym_preproc_pragma] = STATE(5366), - [sym_preproc_nullable] = STATE(5366), - [sym_preproc_error] = STATE(5366), - [sym_preproc_warning] = STATE(5366), - [sym_preproc_define] = STATE(5366), - [sym_preproc_undef] = STATE(5366), - [anon_sym_LBRACK] = ACTIONS(7084), - [anon_sym_COMMA] = ACTIONS(7084), - [anon_sym_LPAREN] = ACTIONS(7084), - [anon_sym_LT] = ACTIONS(7086), - [anon_sym_GT] = ACTIONS(7086), - [anon_sym_where] = ACTIONS(7084), - [anon_sym_QMARK] = ACTIONS(7086), - [anon_sym_BANG] = ACTIONS(7086), - [anon_sym_PLUS_PLUS] = ACTIONS(7084), - [anon_sym_DASH_DASH] = ACTIONS(7084), - [anon_sym_PLUS] = ACTIONS(7086), - [anon_sym_DASH] = ACTIONS(7086), - [anon_sym_STAR] = ACTIONS(7084), - [anon_sym_SLASH] = ACTIONS(7086), - [anon_sym_PERCENT] = ACTIONS(7084), - [anon_sym_CARET] = ACTIONS(7084), - [anon_sym_PIPE] = ACTIONS(7086), - [anon_sym_AMP] = ACTIONS(7086), - [anon_sym_LT_LT] = ACTIONS(7084), - [anon_sym_GT_GT] = ACTIONS(7086), - [anon_sym_GT_GT_GT] = ACTIONS(7084), - [anon_sym_EQ_EQ] = ACTIONS(7084), - [anon_sym_BANG_EQ] = ACTIONS(7084), - [anon_sym_GT_EQ] = ACTIONS(7084), - [anon_sym_LT_EQ] = ACTIONS(7084), - [anon_sym_DOT] = ACTIONS(7086), - [anon_sym_switch] = ACTIONS(7084), - [anon_sym_DOT_DOT] = ACTIONS(7084), - [anon_sym_and] = ACTIONS(7084), - [anon_sym_or] = ACTIONS(7086), - [anon_sym_AMP_AMP] = ACTIONS(7084), - [anon_sym_PIPE_PIPE] = ACTIONS(7084), - [sym_op_coalescing] = ACTIONS(7084), - [anon_sym_from] = ACTIONS(7084), - [anon_sym_into] = ACTIONS(7084), - [anon_sym_join] = ACTIONS(7084), - [anon_sym_let] = ACTIONS(7084), - [anon_sym_orderby] = ACTIONS(7084), - [anon_sym_ascending] = ACTIONS(7084), - [anon_sym_descending] = ACTIONS(7084), - [anon_sym_group] = ACTIONS(7084), - [anon_sym_select] = ACTIONS(7084), - [anon_sym_as] = ACTIONS(7086), - [anon_sym_is] = ACTIONS(7084), - [anon_sym_DASH_GT] = ACTIONS(7084), - [anon_sym_with] = ACTIONS(7084), + [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), + [sym_preproc_pragma] = STATE(5365), + [sym_preproc_nullable] = STATE(5365), + [sym_preproc_error] = STATE(5365), + [sym_preproc_warning] = STATE(5365), + [sym_preproc_define] = STATE(5365), + [sym_preproc_undef] = STATE(5365), + [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), @@ -663889,46 +655555,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [5367] = { - [sym__name] = STATE(6588), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6650), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6559), - [sym__reserved_identifier] = STATE(5132), - [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), + [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), + [sym_preproc_pragma] = STATE(5366), + [sym_preproc_nullable] = STATE(5366), + [sym_preproc_error] = STATE(5366), + [sym_preproc_warning] = STATE(5366), + [sym_preproc_define] = STATE(5366), + [sym_preproc_undef] = STATE(5366), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7501), - [anon_sym_delegate] = ACTIONS(3709), + [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(7505), - [anon_sym_var] = ACTIONS(7507), + [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), @@ -663956,25 +655622,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [5368] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6785), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -663984,18 +655717,85 @@ 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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [5369] = { + [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), + [sym_preproc_pragma] = STATE(5369), + [sym_preproc_nullable] = STATE(5369), + [sym_preproc_error] = STATE(5369), + [sym_preproc_warning] = STATE(5369), + [sym_preproc_define] = STATE(5369), + [sym_preproc_undef] = STATE(5369), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7006), - [anon_sym_delegate] = ACTIONS(3709), + [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(7014), - [anon_sym_var] = ACTIONS(5500), + [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), @@ -664023,74 +655823,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [5369] = { - [sym_preproc_region] = STATE(5369), - [sym_preproc_endregion] = STATE(5369), - [sym_preproc_line] = STATE(5369), - [sym_preproc_pragma] = STATE(5369), - [sym_preproc_nullable] = STATE(5369), - [sym_preproc_error] = STATE(5369), - [sym_preproc_warning] = STATE(5369), - [sym_preproc_define] = STATE(5369), - [sym_preproc_undef] = STATE(5369), - [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), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [5370] = { + [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), @@ -664100,52 +655851,34 @@ 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), - [anon_sym_LBRACK] = ACTIONS(6183), - [anon_sym_COMMA] = ACTIONS(6183), - [anon_sym_LPAREN] = ACTIONS(6183), - [anon_sym_LT] = ACTIONS(6185), - [anon_sym_GT] = ACTIONS(6185), - [anon_sym_where] = ACTIONS(6183), - [anon_sym_QMARK] = ACTIONS(6185), - [anon_sym_BANG] = ACTIONS(6185), - [anon_sym_PLUS_PLUS] = ACTIONS(6183), - [anon_sym_DASH_DASH] = ACTIONS(6183), - [anon_sym_PLUS] = ACTIONS(6185), - [anon_sym_DASH] = ACTIONS(6185), - [anon_sym_STAR] = ACTIONS(6183), - [anon_sym_SLASH] = ACTIONS(6185), - [anon_sym_PERCENT] = ACTIONS(6183), - [anon_sym_CARET] = ACTIONS(6183), - [anon_sym_PIPE] = ACTIONS(6185), - [anon_sym_AMP] = ACTIONS(6185), - [anon_sym_LT_LT] = ACTIONS(6183), - [anon_sym_GT_GT] = ACTIONS(6185), - [anon_sym_GT_GT_GT] = ACTIONS(6183), - [anon_sym_EQ_EQ] = ACTIONS(6183), - [anon_sym_BANG_EQ] = ACTIONS(6183), - [anon_sym_GT_EQ] = ACTIONS(6183), - [anon_sym_LT_EQ] = ACTIONS(6183), - [anon_sym_DOT] = ACTIONS(6185), - [anon_sym_switch] = ACTIONS(6183), - [anon_sym_DOT_DOT] = ACTIONS(6183), - [anon_sym_and] = ACTIONS(6183), - [anon_sym_or] = ACTIONS(6185), - [anon_sym_AMP_AMP] = ACTIONS(6183), - [anon_sym_PIPE_PIPE] = ACTIONS(6183), - [sym_op_coalescing] = ACTIONS(6183), - [anon_sym_from] = ACTIONS(6183), - [anon_sym_into] = ACTIONS(6183), - [anon_sym_join] = ACTIONS(6183), - [anon_sym_let] = ACTIONS(6183), - [anon_sym_orderby] = ACTIONS(6183), - [anon_sym_ascending] = ACTIONS(6183), - [anon_sym_descending] = ACTIONS(6183), - [anon_sym_group] = ACTIONS(6183), - [anon_sym_select] = ACTIONS(6183), - [anon_sym_as] = ACTIONS(6185), - [anon_sym_is] = ACTIONS(6183), - [anon_sym_DASH_GT] = ACTIONS(6183), - [anon_sym_with] = ACTIONS(6183), + [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), @@ -664158,24 +655891,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5371] = { - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4992), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4842), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -664185,34 +655918,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5371), [sym_preproc_define] = STATE(5371), [sym_preproc_undef] = STATE(5371), - [sym__identifier_token] = ACTIONS(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(7509), - [anon_sym_ref] = ACTIONS(4370), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7408), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -664225,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), @@ -664234,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), - [anon_sym_LBRACK] = ACTIONS(6187), - [anon_sym_COMMA] = ACTIONS(6187), - [anon_sym_LPAREN] = ACTIONS(6187), - [anon_sym_LT] = ACTIONS(6189), - [anon_sym_GT] = ACTIONS(6189), - [anon_sym_where] = ACTIONS(6187), - [anon_sym_QMARK] = ACTIONS(6189), - [anon_sym_BANG] = ACTIONS(6189), - [anon_sym_PLUS_PLUS] = ACTIONS(6187), - [anon_sym_DASH_DASH] = ACTIONS(6187), - [anon_sym_PLUS] = ACTIONS(6189), - [anon_sym_DASH] = ACTIONS(6189), - [anon_sym_STAR] = ACTIONS(6187), - [anon_sym_SLASH] = ACTIONS(6189), - [anon_sym_PERCENT] = ACTIONS(6187), - [anon_sym_CARET] = ACTIONS(6187), - [anon_sym_PIPE] = ACTIONS(6189), - [anon_sym_AMP] = ACTIONS(6189), - [anon_sym_LT_LT] = ACTIONS(6187), - [anon_sym_GT_GT] = ACTIONS(6189), - [anon_sym_GT_GT_GT] = ACTIONS(6187), - [anon_sym_EQ_EQ] = ACTIONS(6187), - [anon_sym_BANG_EQ] = ACTIONS(6187), - [anon_sym_GT_EQ] = ACTIONS(6187), - [anon_sym_LT_EQ] = ACTIONS(6187), - [anon_sym_DOT] = ACTIONS(6189), - [anon_sym_switch] = ACTIONS(6187), - [anon_sym_DOT_DOT] = ACTIONS(6187), - [anon_sym_and] = ACTIONS(6187), - [anon_sym_or] = ACTIONS(6189), - [anon_sym_AMP_AMP] = ACTIONS(6187), - [anon_sym_PIPE_PIPE] = ACTIONS(6187), - [sym_op_coalescing] = ACTIONS(6187), - [anon_sym_from] = ACTIONS(6187), - [anon_sym_into] = ACTIONS(6187), - [anon_sym_join] = ACTIONS(6187), - [anon_sym_let] = ACTIONS(6187), - [anon_sym_orderby] = ACTIONS(6187), - [anon_sym_ascending] = ACTIONS(6187), - [anon_sym_descending] = ACTIONS(6187), - [anon_sym_group] = ACTIONS(6187), - [anon_sym_select] = ACTIONS(6187), - [anon_sym_as] = ACTIONS(6189), - [anon_sym_is] = ACTIONS(6187), - [anon_sym_DASH_GT] = ACTIONS(6187), - [anon_sym_with] = ACTIONS(6187), + [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), @@ -664292,6 +656025,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5373] = { + [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), @@ -664301,52 +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), - [anon_sym_LBRACK] = ACTIONS(7057), - [anon_sym_COMMA] = ACTIONS(7057), - [anon_sym_LPAREN] = ACTIONS(7057), - [anon_sym_LT] = ACTIONS(7059), - [anon_sym_GT] = ACTIONS(7059), - [anon_sym_where] = ACTIONS(7057), - [anon_sym_QMARK] = ACTIONS(7059), - [anon_sym_BANG] = ACTIONS(7059), - [anon_sym_PLUS_PLUS] = ACTIONS(7057), - [anon_sym_DASH_DASH] = ACTIONS(7057), - [anon_sym_PLUS] = ACTIONS(7059), - [anon_sym_DASH] = ACTIONS(7059), - [anon_sym_STAR] = ACTIONS(7057), - [anon_sym_SLASH] = ACTIONS(7059), - [anon_sym_PERCENT] = ACTIONS(7057), - [anon_sym_CARET] = ACTIONS(7057), - [anon_sym_PIPE] = ACTIONS(7059), - [anon_sym_AMP] = ACTIONS(7059), - [anon_sym_LT_LT] = ACTIONS(7057), - [anon_sym_GT_GT] = ACTIONS(7059), - [anon_sym_GT_GT_GT] = ACTIONS(7057), - [anon_sym_EQ_EQ] = ACTIONS(7057), - [anon_sym_BANG_EQ] = ACTIONS(7057), - [anon_sym_GT_EQ] = ACTIONS(7057), - [anon_sym_LT_EQ] = ACTIONS(7057), - [anon_sym_DOT] = ACTIONS(7059), - [anon_sym_switch] = ACTIONS(7057), - [anon_sym_DOT_DOT] = ACTIONS(7057), - [anon_sym_and] = ACTIONS(7057), - [anon_sym_or] = ACTIONS(7059), - [anon_sym_AMP_AMP] = ACTIONS(7057), - [anon_sym_PIPE_PIPE] = ACTIONS(7057), - [sym_op_coalescing] = ACTIONS(7057), - [anon_sym_from] = ACTIONS(7057), - [anon_sym_into] = ACTIONS(7057), - [anon_sym_join] = ACTIONS(7057), - [anon_sym_let] = ACTIONS(7057), - [anon_sym_orderby] = ACTIONS(7057), - [anon_sym_ascending] = ACTIONS(7057), - [anon_sym_descending] = ACTIONS(7057), - [anon_sym_group] = ACTIONS(7057), - [anon_sym_select] = ACTIONS(7057), - [anon_sym_as] = ACTIONS(7059), - [anon_sym_is] = ACTIONS(7057), - [anon_sym_DASH_GT] = ACTIONS(7057), - [anon_sym_with] = ACTIONS(7057), + [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), @@ -664359,6 +656092,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5374] = { + [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), @@ -664368,52 +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), - [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_BANG] = ACTIONS(6029), - [anon_sym_PLUS_PLUS] = ACTIONS(6027), - [anon_sym_DASH_DASH] = ACTIONS(6027), - [anon_sym_PLUS] = ACTIONS(6029), - [anon_sym_DASH] = ACTIONS(6029), - [anon_sym_STAR] = ACTIONS(6027), - [anon_sym_SLASH] = ACTIONS(6029), - [anon_sym_PERCENT] = ACTIONS(6027), - [anon_sym_CARET] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_AMP] = ACTIONS(6029), - [anon_sym_LT_LT] = ACTIONS(6027), - [anon_sym_GT_GT] = ACTIONS(6029), - [anon_sym_GT_GT_GT] = ACTIONS(6027), - [anon_sym_EQ_EQ] = ACTIONS(6027), - [anon_sym_BANG_EQ] = ACTIONS(6027), - [anon_sym_GT_EQ] = ACTIONS(6027), - [anon_sym_LT_EQ] = ACTIONS(6027), - [anon_sym_DOT] = ACTIONS(6029), - [anon_sym_switch] = ACTIONS(6027), - [anon_sym_DOT_DOT] = ACTIONS(6027), - [anon_sym_and] = ACTIONS(6027), - [anon_sym_or] = ACTIONS(6029), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [sym_op_coalescing] = 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__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), @@ -664426,6 +656159,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5375] = { + [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), @@ -664435,52 +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), - [anon_sym_LBRACK] = ACTIONS(6195), - [anon_sym_COMMA] = ACTIONS(6195), - [anon_sym_LPAREN] = ACTIONS(6195), - [anon_sym_LT] = ACTIONS(6197), - [anon_sym_GT] = ACTIONS(6197), - [anon_sym_where] = ACTIONS(6195), - [anon_sym_QMARK] = ACTIONS(6197), - [anon_sym_BANG] = ACTIONS(6197), - [anon_sym_PLUS_PLUS] = ACTIONS(6195), - [anon_sym_DASH_DASH] = ACTIONS(6195), - [anon_sym_PLUS] = ACTIONS(6197), - [anon_sym_DASH] = ACTIONS(6197), - [anon_sym_STAR] = ACTIONS(6195), - [anon_sym_SLASH] = ACTIONS(6197), - [anon_sym_PERCENT] = ACTIONS(6195), - [anon_sym_CARET] = ACTIONS(6195), - [anon_sym_PIPE] = ACTIONS(6197), - [anon_sym_AMP] = ACTIONS(6197), - [anon_sym_LT_LT] = ACTIONS(6195), - [anon_sym_GT_GT] = ACTIONS(6197), - [anon_sym_GT_GT_GT] = ACTIONS(6195), - [anon_sym_EQ_EQ] = ACTIONS(6195), - [anon_sym_BANG_EQ] = ACTIONS(6195), - [anon_sym_GT_EQ] = ACTIONS(6195), - [anon_sym_LT_EQ] = ACTIONS(6195), - [anon_sym_DOT] = ACTIONS(6197), - [anon_sym_switch] = ACTIONS(6195), - [anon_sym_DOT_DOT] = ACTIONS(6195), - [anon_sym_and] = ACTIONS(6195), - [anon_sym_or] = ACTIONS(6197), - [anon_sym_AMP_AMP] = ACTIONS(6195), - [anon_sym_PIPE_PIPE] = ACTIONS(6195), - [sym_op_coalescing] = ACTIONS(6195), - [anon_sym_from] = ACTIONS(6195), - [anon_sym_into] = ACTIONS(6195), - [anon_sym_join] = ACTIONS(6195), - [anon_sym_let] = ACTIONS(6195), - [anon_sym_orderby] = ACTIONS(6195), - [anon_sym_ascending] = ACTIONS(6195), - [anon_sym_descending] = ACTIONS(6195), - [anon_sym_group] = ACTIONS(6195), - [anon_sym_select] = ACTIONS(6195), - [anon_sym_as] = ACTIONS(6197), - [anon_sym_is] = ACTIONS(6195), - [anon_sym_DASH_GT] = ACTIONS(6195), - [anon_sym_with] = ACTIONS(6195), + [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), @@ -664493,24 +656226,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5376] = { - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4805), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4699), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), + [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), @@ -664520,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(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7519), - [anon_sym_ref] = ACTIONS(4478), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7347), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), - [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(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), @@ -664560,6 +656293,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5377] = { + [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), @@ -664569,52 +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), - [anon_sym_LBRACK] = ACTIONS(6159), - [anon_sym_COMMA] = ACTIONS(6159), - [anon_sym_LPAREN] = ACTIONS(6159), - [anon_sym_LT] = ACTIONS(6161), - [anon_sym_GT] = ACTIONS(6161), - [anon_sym_where] = ACTIONS(6159), - [anon_sym_QMARK] = ACTIONS(6161), - [anon_sym_BANG] = ACTIONS(6161), - [anon_sym_PLUS_PLUS] = ACTIONS(6159), - [anon_sym_DASH_DASH] = ACTIONS(6159), - [anon_sym_PLUS] = ACTIONS(6161), - [anon_sym_DASH] = ACTIONS(6161), - [anon_sym_STAR] = ACTIONS(6159), - [anon_sym_SLASH] = ACTIONS(6161), - [anon_sym_PERCENT] = ACTIONS(6159), - [anon_sym_CARET] = ACTIONS(6159), - [anon_sym_PIPE] = ACTIONS(6161), - [anon_sym_AMP] = ACTIONS(6161), - [anon_sym_LT_LT] = ACTIONS(6159), - [anon_sym_GT_GT] = ACTIONS(6161), - [anon_sym_GT_GT_GT] = ACTIONS(6159), - [anon_sym_EQ_EQ] = ACTIONS(6159), - [anon_sym_BANG_EQ] = ACTIONS(6159), - [anon_sym_GT_EQ] = ACTIONS(6159), - [anon_sym_LT_EQ] = ACTIONS(6159), - [anon_sym_DOT] = ACTIONS(6161), - [anon_sym_switch] = ACTIONS(6159), - [anon_sym_DOT_DOT] = ACTIONS(6159), - [anon_sym_and] = ACTIONS(6159), - [anon_sym_or] = ACTIONS(6161), - [anon_sym_AMP_AMP] = ACTIONS(6159), - [anon_sym_PIPE_PIPE] = ACTIONS(6159), - [sym_op_coalescing] = ACTIONS(6159), - [anon_sym_from] = ACTIONS(6159), - [anon_sym_into] = ACTIONS(6159), - [anon_sym_join] = ACTIONS(6159), - [anon_sym_let] = ACTIONS(6159), - [anon_sym_orderby] = ACTIONS(6159), - [anon_sym_ascending] = ACTIONS(6159), - [anon_sym_descending] = ACTIONS(6159), - [anon_sym_group] = ACTIONS(6159), - [anon_sym_select] = ACTIONS(6159), - [anon_sym_as] = ACTIONS(6161), - [anon_sym_is] = ACTIONS(6159), - [anon_sym_DASH_GT] = ACTIONS(6159), - [anon_sym_with] = ACTIONS(6159), + [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), @@ -664627,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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7994), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -664654,18 +656387,85 @@ 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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [5379] = { + [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(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), + [sym_preproc_pragma] = STATE(5379), + [sym_preproc_nullable] = STATE(5379), + [sym_preproc_error] = STATE(5379), + [sym_preproc_warning] = STATE(5379), + [sym_preproc_define] = STATE(5379), + [sym_preproc_undef] = STATE(5379), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7612), - [anon_sym_delegate] = ACTIONS(3709), + [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(7616), - [anon_sym_var] = ACTIONS(7491), + [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), @@ -664693,74 +656493,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [5379] = { - [sym__name] = STATE(5081), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3672), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(3463), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), - [sym_preproc_region] = STATE(5379), - [sym_preproc_endregion] = STATE(5379), - [sym_preproc_line] = STATE(5379), - [sym_preproc_pragma] = STATE(5379), - [sym_preproc_nullable] = STATE(5379), - [sym_preproc_error] = STATE(5379), - [sym_preproc_warning] = STATE(5379), - [sym_preproc_define] = STATE(5379), - [sym_preproc_undef] = STATE(5379), - [sym__identifier_token] = ACTIONS(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(7513), - [anon_sym_ref] = ACTIONS(4153), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7384), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [5380] = { + [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), @@ -664770,52 +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), - [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__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), @@ -664828,6 +656561,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5381] = { + [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), @@ -664837,52 +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), - [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__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), @@ -664895,6 +656628,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5382] = { + [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), @@ -664904,52 +656655,34 @@ 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), - [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_BANG] = ACTIONS(6025), - [anon_sym_PLUS_PLUS] = ACTIONS(6023), - [anon_sym_DASH_DASH] = ACTIONS(6023), - [anon_sym_PLUS] = ACTIONS(6025), - [anon_sym_DASH] = ACTIONS(6025), - [anon_sym_STAR] = ACTIONS(6023), - [anon_sym_SLASH] = ACTIONS(6025), - [anon_sym_PERCENT] = ACTIONS(6023), - [anon_sym_CARET] = ACTIONS(6023), - [anon_sym_PIPE] = ACTIONS(6025), - [anon_sym_AMP] = ACTIONS(6025), - [anon_sym_LT_LT] = ACTIONS(6023), - [anon_sym_GT_GT] = ACTIONS(6025), - [anon_sym_GT_GT_GT] = ACTIONS(6023), - [anon_sym_EQ_EQ] = ACTIONS(6023), - [anon_sym_BANG_EQ] = ACTIONS(6023), - [anon_sym_GT_EQ] = ACTIONS(6023), - [anon_sym_LT_EQ] = ACTIONS(6023), - [anon_sym_DOT] = ACTIONS(6025), - [anon_sym_switch] = ACTIONS(6023), - [anon_sym_DOT_DOT] = ACTIONS(6023), - [anon_sym_and] = ACTIONS(6023), - [anon_sym_or] = ACTIONS(6025), - [anon_sym_AMP_AMP] = ACTIONS(6023), - [anon_sym_PIPE_PIPE] = ACTIONS(6023), - [sym_op_coalescing] = 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__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), @@ -664962,6 +656695,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -664971,103 +656722,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5383), [sym_preproc_define] = STATE(5383), [sym_preproc_undef] = STATE(5383), - [anon_sym_LBRACK] = ACTIONS(6233), - [anon_sym_COMMA] = ACTIONS(6233), - [anon_sym_LPAREN] = ACTIONS(6233), - [anon_sym_LT] = ACTIONS(6235), - [anon_sym_GT] = ACTIONS(6235), - [anon_sym_where] = ACTIONS(6233), - [anon_sym_QMARK] = ACTIONS(6235), - [anon_sym_BANG] = ACTIONS(6235), - [anon_sym_PLUS_PLUS] = ACTIONS(6233), - [anon_sym_DASH_DASH] = ACTIONS(6233), - [anon_sym_PLUS] = ACTIONS(6235), - [anon_sym_DASH] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6233), - [anon_sym_SLASH] = ACTIONS(6235), - [anon_sym_PERCENT] = ACTIONS(6233), - [anon_sym_CARET] = ACTIONS(6233), - [anon_sym_PIPE] = ACTIONS(6235), - [anon_sym_AMP] = ACTIONS(6235), - [anon_sym_LT_LT] = ACTIONS(6233), - [anon_sym_GT_GT] = ACTIONS(6235), - [anon_sym_GT_GT_GT] = ACTIONS(6233), - [anon_sym_EQ_EQ] = ACTIONS(6233), - [anon_sym_BANG_EQ] = ACTIONS(6233), - [anon_sym_GT_EQ] = ACTIONS(6233), - [anon_sym_LT_EQ] = ACTIONS(6233), - [anon_sym_DOT] = ACTIONS(6235), - [anon_sym_switch] = ACTIONS(6233), - [anon_sym_DOT_DOT] = ACTIONS(6233), - [anon_sym_and] = ACTIONS(6233), - [anon_sym_or] = ACTIONS(6235), - [anon_sym_AMP_AMP] = ACTIONS(6233), - [anon_sym_PIPE_PIPE] = ACTIONS(6233), - [sym_op_coalescing] = ACTIONS(6233), - [anon_sym_from] = ACTIONS(6233), - [anon_sym_into] = ACTIONS(6233), - [anon_sym_join] = ACTIONS(6233), - [anon_sym_let] = ACTIONS(6233), - [anon_sym_orderby] = ACTIONS(6233), - [anon_sym_ascending] = ACTIONS(6233), - [anon_sym_descending] = ACTIONS(6233), - [anon_sym_group] = ACTIONS(6233), - [anon_sym_select] = ACTIONS(6233), - [anon_sym_as] = ACTIONS(6235), - [anon_sym_is] = ACTIONS(6233), - [anon_sym_DASH_GT] = ACTIONS(6233), - [anon_sym_with] = ACTIONS(6233), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5384] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7738), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(5384), - [sym_preproc_endregion] = STATE(5384), - [sym_preproc_line] = STATE(5384), - [sym_preproc_pragma] = STATE(5384), - [sym_preproc_nullable] = STATE(5384), - [sym_preproc_error] = STATE(5384), - [sym_preproc_warning] = STATE(5384), - [sym_preproc_define] = STATE(5384), - [sym_preproc_undef] = STATE(5384), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7612), - [anon_sym_delegate] = ACTIONS(3709), + [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(7616), - [anon_sym_var] = ACTIONS(7491), + [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), @@ -665095,7 +656761,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [5384] = { + [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), + [sym_preproc_pragma] = STATE(5384), + [sym_preproc_nullable] = STATE(5384), + [sym_preproc_error] = STATE(5384), + [sym_preproc_warning] = STATE(5384), + [sym_preproc_define] = STATE(5384), + [sym_preproc_undef] = STATE(5384), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [5385] = { + [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), @@ -665105,52 +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), - [anon_sym_LBRACK] = ACTIONS(6229), - [anon_sym_COMMA] = ACTIONS(6229), - [anon_sym_LPAREN] = ACTIONS(6229), - [anon_sym_LT] = ACTIONS(6231), - [anon_sym_GT] = ACTIONS(6231), - [anon_sym_where] = ACTIONS(6229), - [anon_sym_QMARK] = ACTIONS(6231), - [anon_sym_BANG] = ACTIONS(6231), - [anon_sym_PLUS_PLUS] = ACTIONS(6229), - [anon_sym_DASH_DASH] = ACTIONS(6229), - [anon_sym_PLUS] = ACTIONS(6231), - [anon_sym_DASH] = ACTIONS(6231), - [anon_sym_STAR] = ACTIONS(6229), - [anon_sym_SLASH] = ACTIONS(6231), - [anon_sym_PERCENT] = ACTIONS(6229), - [anon_sym_CARET] = ACTIONS(6229), - [anon_sym_PIPE] = ACTIONS(6231), - [anon_sym_AMP] = ACTIONS(6231), - [anon_sym_LT_LT] = ACTIONS(6229), - [anon_sym_GT_GT] = ACTIONS(6231), - [anon_sym_GT_GT_GT] = ACTIONS(6229), - [anon_sym_EQ_EQ] = ACTIONS(6229), - [anon_sym_BANG_EQ] = ACTIONS(6229), - [anon_sym_GT_EQ] = ACTIONS(6229), - [anon_sym_LT_EQ] = ACTIONS(6229), - [anon_sym_DOT] = ACTIONS(6231), - [anon_sym_switch] = ACTIONS(6229), - [anon_sym_DOT_DOT] = ACTIONS(6229), - [anon_sym_and] = ACTIONS(6229), - [anon_sym_or] = ACTIONS(6231), - [anon_sym_AMP_AMP] = ACTIONS(6229), - [anon_sym_PIPE_PIPE] = ACTIONS(6229), - [sym_op_coalescing] = ACTIONS(6229), - [anon_sym_from] = ACTIONS(6229), - [anon_sym_into] = ACTIONS(6229), - [anon_sym_join] = ACTIONS(6229), - [anon_sym_let] = ACTIONS(6229), - [anon_sym_orderby] = ACTIONS(6229), - [anon_sym_ascending] = ACTIONS(6229), - [anon_sym_descending] = ACTIONS(6229), - [anon_sym_group] = ACTIONS(6229), - [anon_sym_select] = ACTIONS(6229), - [anon_sym_as] = ACTIONS(6231), - [anon_sym_is] = ACTIONS(6229), - [anon_sym_DASH_GT] = ACTIONS(6229), - [anon_sym_with] = ACTIONS(6229), + [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), @@ -665164,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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7685), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -665194,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(7612), - [anon_sym_delegate] = ACTIONS(3709), + [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(7616), - [anon_sym_var] = ACTIONS(7491), + [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), @@ -665231,23 +656964,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5387] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7684), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -665261,14 +656994,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(7612), - [anon_sym_delegate] = ACTIONS(3709), + [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(7616), - [anon_sym_var] = ACTIONS(7491), + [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), @@ -665297,24 +657030,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5388] = { - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4805), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4699), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), + [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(5388), [sym_preproc_endregion] = STATE(5388), [sym_preproc_line] = STATE(5388), @@ -665324,34 +657057,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5388), [sym_preproc_define] = STATE(5388), [sym_preproc_undef] = STATE(5388), - [sym__identifier_token] = ACTIONS(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7519), - [anon_sym_ref] = ACTIONS(4476), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7234), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), - [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(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), @@ -665364,6 +657097,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5389] = { + [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), @@ -665373,104 +657124,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5389), [sym_preproc_define] = STATE(5389), [sym_preproc_undef] = STATE(5389), - [anon_sym_LBRACK] = ACTIONS(6009), - [anon_sym_COMMA] = ACTIONS(6009), - [anon_sym_LPAREN] = ACTIONS(6009), - [anon_sym_LT] = ACTIONS(6011), - [anon_sym_GT] = ACTIONS(6011), - [anon_sym_where] = ACTIONS(6009), - [anon_sym_QMARK] = ACTIONS(6011), - [anon_sym_BANG] = ACTIONS(6011), - [anon_sym_PLUS_PLUS] = ACTIONS(6009), - [anon_sym_DASH_DASH] = ACTIONS(6009), - [anon_sym_PLUS] = ACTIONS(6011), - [anon_sym_DASH] = ACTIONS(6011), - [anon_sym_STAR] = ACTIONS(6009), - [anon_sym_SLASH] = ACTIONS(6011), - [anon_sym_PERCENT] = ACTIONS(6009), - [anon_sym_CARET] = ACTIONS(6009), - [anon_sym_PIPE] = ACTIONS(6011), - [anon_sym_AMP] = ACTIONS(6011), - [anon_sym_LT_LT] = ACTIONS(6009), - [anon_sym_GT_GT] = ACTIONS(6011), - [anon_sym_GT_GT_GT] = ACTIONS(6009), - [anon_sym_EQ_EQ] = ACTIONS(6009), - [anon_sym_BANG_EQ] = ACTIONS(6009), - [anon_sym_GT_EQ] = ACTIONS(6009), - [anon_sym_LT_EQ] = ACTIONS(6009), - [anon_sym_DOT] = ACTIONS(6011), - [anon_sym_switch] = ACTIONS(6009), - [anon_sym_DOT_DOT] = ACTIONS(6009), - [anon_sym_and] = ACTIONS(6009), - [anon_sym_or] = ACTIONS(6011), - [anon_sym_AMP_AMP] = ACTIONS(6009), - [anon_sym_PIPE_PIPE] = ACTIONS(6009), - [sym_op_coalescing] = ACTIONS(6009), - [anon_sym_from] = ACTIONS(6009), - [anon_sym_into] = ACTIONS(6009), - [anon_sym_join] = ACTIONS(6009), - [anon_sym_let] = ACTIONS(6009), - [anon_sym_orderby] = ACTIONS(6009), - [anon_sym_ascending] = ACTIONS(6009), - [anon_sym_descending] = ACTIONS(6009), - [anon_sym_group] = ACTIONS(6009), - [anon_sym_select] = ACTIONS(6009), - [anon_sym_as] = ACTIONS(6011), - [anon_sym_is] = ACTIONS(6009), - [anon_sym_DASH_GT] = ACTIONS(6009), - [anon_sym_with] = ACTIONS(6009), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5390] = { - [sym__name] = STATE(6712), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7525), - [sym_implicit_type] = STATE(7554), - [sym_array_type] = STATE(7003), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7805), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(7554), - [sym_scoped_type] = STATE(7554), - [sym_tuple_type] = STATE(6836), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(5390), - [sym_preproc_endregion] = STATE(5390), - [sym_preproc_line] = STATE(5390), - [sym_preproc_pragma] = STATE(5390), - [sym_preproc_nullable] = STATE(5390), - [sym_preproc_error] = STATE(5390), - [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(5887), - [anon_sym_delegate] = ACTIONS(5889), + [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(5895), - [anon_sym_var] = ACTIONS(5500), - [sym_predefined_type] = ACTIONS(5897), + [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), @@ -665497,25 +657163,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [5390] = { + [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), + [sym_preproc_pragma] = STATE(5390), + [sym_preproc_nullable] = STATE(5390), + [sym_preproc_error] = STATE(5390), + [sym_preproc_warning] = STATE(5390), + [sym_preproc_define] = STATE(5390), + [sym_preproc_undef] = STATE(5390), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [5391] = { - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4805), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4699), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), + [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), @@ -665525,34 +657258,34 @@ 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(4088), - [anon_sym_alias] = ACTIONS(4090), - [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7519), - [anon_sym_ref] = ACTIONS(4480), - [anon_sym_delegate] = ACTIONS(7232), - [anon_sym_file] = ACTIONS(4090), - [anon_sym_where] = ACTIONS(4090), - [anon_sym_notnull] = ACTIONS(4090), - [anon_sym_unmanaged] = ACTIONS(4090), - [anon_sym_scoped] = ACTIONS(7341), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), - [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(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), @@ -665566,23 +657299,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5392] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7944), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -665596,14 +657329,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(7612), - [anon_sym_delegate] = ACTIONS(3709), + [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(7616), - [anon_sym_var] = ACTIONS(7491), + [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), @@ -665632,24 +657365,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5393] = { - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4992), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4842), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -665659,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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(7509), - [anon_sym_ref] = ACTIONS(4490), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7321), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -665699,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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7965), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -665726,18 +657459,85 @@ 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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [5395] = { + [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(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), + [sym_preproc_pragma] = STATE(5395), + [sym_preproc_nullable] = STATE(5395), + [sym_preproc_error] = STATE(5395), + [sym_preproc_warning] = STATE(5395), + [sym_preproc_define] = STATE(5395), + [sym_preproc_undef] = STATE(5395), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7606), - [anon_sym_delegate] = ACTIONS(3709), + [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(7610), - [anon_sym_var] = ACTIONS(5500), + [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), @@ -665765,74 +657565,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [5395] = { - [sym_preproc_region] = STATE(5395), - [sym_preproc_endregion] = STATE(5395), - [sym_preproc_line] = STATE(5395), - [sym_preproc_pragma] = STATE(5395), - [sym_preproc_nullable] = STATE(5395), - [sym_preproc_error] = STATE(5395), - [sym_preproc_warning] = STATE(5395), - [sym_preproc_define] = STATE(5395), - [sym_preproc_undef] = STATE(5395), - [anon_sym_LBRACK] = ACTIONS(7070), - [anon_sym_COMMA] = ACTIONS(7070), - [anon_sym_LPAREN] = ACTIONS(7070), - [anon_sym_LT] = ACTIONS(7072), - [anon_sym_GT] = ACTIONS(7072), - [anon_sym_where] = ACTIONS(7070), - [anon_sym_QMARK] = ACTIONS(7072), - [anon_sym_BANG] = ACTIONS(7072), - [anon_sym_PLUS_PLUS] = ACTIONS(7070), - [anon_sym_DASH_DASH] = ACTIONS(7070), - [anon_sym_PLUS] = ACTIONS(7072), - [anon_sym_DASH] = ACTIONS(7072), - [anon_sym_STAR] = ACTIONS(7070), - [anon_sym_SLASH] = ACTIONS(7072), - [anon_sym_PERCENT] = ACTIONS(7070), - [anon_sym_CARET] = ACTIONS(7070), - [anon_sym_PIPE] = ACTIONS(7072), - [anon_sym_AMP] = ACTIONS(7072), - [anon_sym_LT_LT] = ACTIONS(7070), - [anon_sym_GT_GT] = ACTIONS(7072), - [anon_sym_GT_GT_GT] = ACTIONS(7070), - [anon_sym_EQ_EQ] = ACTIONS(7070), - [anon_sym_BANG_EQ] = ACTIONS(7070), - [anon_sym_GT_EQ] = ACTIONS(7070), - [anon_sym_LT_EQ] = ACTIONS(7070), - [anon_sym_DOT] = ACTIONS(7072), - [anon_sym_switch] = ACTIONS(7070), - [anon_sym_DOT_DOT] = ACTIONS(7070), - [anon_sym_and] = ACTIONS(7070), - [anon_sym_or] = ACTIONS(7072), - [anon_sym_AMP_AMP] = ACTIONS(7070), - [anon_sym_PIPE_PIPE] = ACTIONS(7070), - [sym_op_coalescing] = ACTIONS(7070), - [anon_sym_from] = ACTIONS(7070), - [anon_sym_into] = ACTIONS(7070), - [anon_sym_join] = ACTIONS(7070), - [anon_sym_let] = ACTIONS(7070), - [anon_sym_orderby] = ACTIONS(7070), - [anon_sym_ascending] = ACTIONS(7070), - [anon_sym_descending] = ACTIONS(7070), - [anon_sym_group] = ACTIONS(7070), - [anon_sym_select] = ACTIONS(7070), - [anon_sym_as] = ACTIONS(7072), - [anon_sym_is] = ACTIONS(7070), - [anon_sym_DASH_GT] = ACTIONS(7070), - [anon_sym_with] = ACTIONS(7070), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, [5396] = { + [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(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), @@ -665842,52 +657593,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5396), [sym_preproc_define] = STATE(5396), [sym_preproc_undef] = STATE(5396), - [anon_sym_LBRACK] = ACTIONS(7074), - [anon_sym_COMMA] = ACTIONS(7074), - [anon_sym_LPAREN] = ACTIONS(7074), - [anon_sym_LT] = ACTIONS(7076), - [anon_sym_GT] = ACTIONS(7076), - [anon_sym_where] = ACTIONS(7074), - [anon_sym_QMARK] = ACTIONS(7076), - [anon_sym_BANG] = ACTIONS(7076), - [anon_sym_PLUS_PLUS] = ACTIONS(7074), - [anon_sym_DASH_DASH] = ACTIONS(7074), - [anon_sym_PLUS] = ACTIONS(7076), - [anon_sym_DASH] = ACTIONS(7076), - [anon_sym_STAR] = ACTIONS(7074), - [anon_sym_SLASH] = ACTIONS(7076), - [anon_sym_PERCENT] = ACTIONS(7074), - [anon_sym_CARET] = ACTIONS(7074), - [anon_sym_PIPE] = ACTIONS(7076), - [anon_sym_AMP] = ACTIONS(7076), - [anon_sym_LT_LT] = ACTIONS(7074), - [anon_sym_GT_GT] = ACTIONS(7076), - [anon_sym_GT_GT_GT] = ACTIONS(7074), - [anon_sym_EQ_EQ] = ACTIONS(7074), - [anon_sym_BANG_EQ] = ACTIONS(7074), - [anon_sym_GT_EQ] = ACTIONS(7074), - [anon_sym_LT_EQ] = ACTIONS(7074), - [anon_sym_DOT] = ACTIONS(7076), - [anon_sym_switch] = ACTIONS(7074), - [anon_sym_DOT_DOT] = ACTIONS(7074), - [anon_sym_and] = ACTIONS(7074), - [anon_sym_or] = ACTIONS(7076), - [anon_sym_AMP_AMP] = ACTIONS(7074), - [anon_sym_PIPE_PIPE] = ACTIONS(7074), - [sym_op_coalescing] = ACTIONS(7074), - [anon_sym_from] = ACTIONS(7074), - [anon_sym_into] = ACTIONS(7074), - [anon_sym_join] = ACTIONS(7074), - [anon_sym_let] = ACTIONS(7074), - [anon_sym_orderby] = ACTIONS(7074), - [anon_sym_ascending] = ACTIONS(7074), - [anon_sym_descending] = ACTIONS(7074), - [anon_sym_group] = ACTIONS(7074), - [anon_sym_select] = ACTIONS(7074), - [anon_sym_as] = ACTIONS(7076), - [anon_sym_is] = ACTIONS(7074), - [anon_sym_DASH_GT] = ACTIONS(7074), - [anon_sym_with] = ACTIONS(7074), + [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), @@ -665900,24 +657633,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5397] = { - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4145), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(4046), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -665927,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(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_ref] = ACTIONS(4596), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7262), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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(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), @@ -665967,6 +657700,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5398] = { + [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), @@ -665976,52 +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), - [anon_sym_LBRACK] = ACTIONS(6129), - [anon_sym_COMMA] = ACTIONS(6129), - [anon_sym_LPAREN] = ACTIONS(6129), - [anon_sym_LT] = ACTIONS(6131), - [anon_sym_GT] = ACTIONS(6131), - [anon_sym_where] = ACTIONS(6129), - [anon_sym_QMARK] = ACTIONS(6131), - [anon_sym_BANG] = ACTIONS(6131), - [anon_sym_PLUS_PLUS] = ACTIONS(6129), - [anon_sym_DASH_DASH] = ACTIONS(6129), - [anon_sym_PLUS] = ACTIONS(6131), - [anon_sym_DASH] = ACTIONS(6131), - [anon_sym_STAR] = ACTIONS(6129), - [anon_sym_SLASH] = ACTIONS(6131), - [anon_sym_PERCENT] = ACTIONS(6129), - [anon_sym_CARET] = ACTIONS(6129), - [anon_sym_PIPE] = ACTIONS(6131), - [anon_sym_AMP] = ACTIONS(6131), - [anon_sym_LT_LT] = ACTIONS(6129), - [anon_sym_GT_GT] = ACTIONS(6131), - [anon_sym_GT_GT_GT] = ACTIONS(6129), - [anon_sym_EQ_EQ] = ACTIONS(6129), - [anon_sym_BANG_EQ] = ACTIONS(6129), - [anon_sym_GT_EQ] = ACTIONS(6129), - [anon_sym_LT_EQ] = ACTIONS(6129), - [anon_sym_DOT] = ACTIONS(6131), - [anon_sym_switch] = ACTIONS(6129), - [anon_sym_DOT_DOT] = ACTIONS(6129), - [anon_sym_and] = ACTIONS(6129), - [anon_sym_or] = ACTIONS(6131), - [anon_sym_AMP_AMP] = ACTIONS(6129), - [anon_sym_PIPE_PIPE] = ACTIONS(6129), - [sym_op_coalescing] = ACTIONS(6129), - [anon_sym_from] = ACTIONS(6129), - [anon_sym_into] = ACTIONS(6129), - [anon_sym_join] = ACTIONS(6129), - [anon_sym_let] = ACTIONS(6129), - [anon_sym_orderby] = ACTIONS(6129), - [anon_sym_ascending] = ACTIONS(6129), - [anon_sym_descending] = ACTIONS(6129), - [anon_sym_group] = ACTIONS(6129), - [anon_sym_select] = ACTIONS(6129), - [anon_sym_as] = ACTIONS(6131), - [anon_sym_is] = ACTIONS(6129), - [anon_sym_DASH_GT] = ACTIONS(6129), - [anon_sym_with] = ACTIONS(6129), + [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), @@ -666034,6 +657767,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5399] = { + [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(5399), [sym_preproc_endregion] = STATE(5399), [sym_preproc_line] = STATE(5399), @@ -666043,103 +657794,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5399), [sym_preproc_define] = STATE(5399), [sym_preproc_undef] = STATE(5399), - [anon_sym_LBRACK] = ACTIONS(6199), - [anon_sym_COMMA] = ACTIONS(6199), - [anon_sym_LPAREN] = ACTIONS(6199), - [anon_sym_LT] = ACTIONS(6201), - [anon_sym_GT] = ACTIONS(6201), - [anon_sym_where] = ACTIONS(6199), - [anon_sym_QMARK] = ACTIONS(6201), - [anon_sym_BANG] = ACTIONS(6201), - [anon_sym_PLUS_PLUS] = ACTIONS(6199), - [anon_sym_DASH_DASH] = ACTIONS(6199), - [anon_sym_PLUS] = ACTIONS(6201), - [anon_sym_DASH] = ACTIONS(6201), - [anon_sym_STAR] = ACTIONS(6199), - [anon_sym_SLASH] = ACTIONS(6201), - [anon_sym_PERCENT] = ACTIONS(6199), - [anon_sym_CARET] = ACTIONS(6199), - [anon_sym_PIPE] = ACTIONS(6201), - [anon_sym_AMP] = ACTIONS(6201), - [anon_sym_LT_LT] = ACTIONS(6199), - [anon_sym_GT_GT] = ACTIONS(6201), - [anon_sym_GT_GT_GT] = ACTIONS(6199), - [anon_sym_EQ_EQ] = ACTIONS(6199), - [anon_sym_BANG_EQ] = ACTIONS(6199), - [anon_sym_GT_EQ] = ACTIONS(6199), - [anon_sym_LT_EQ] = ACTIONS(6199), - [anon_sym_DOT] = ACTIONS(6201), - [anon_sym_switch] = ACTIONS(6199), - [anon_sym_DOT_DOT] = ACTIONS(6199), - [anon_sym_and] = ACTIONS(6199), - [anon_sym_or] = ACTIONS(6201), - [anon_sym_AMP_AMP] = ACTIONS(6199), - [anon_sym_PIPE_PIPE] = ACTIONS(6199), - [sym_op_coalescing] = ACTIONS(6199), - [anon_sym_from] = ACTIONS(6199), - [anon_sym_into] = ACTIONS(6199), - [anon_sym_join] = ACTIONS(6199), - [anon_sym_let] = ACTIONS(6199), - [anon_sym_orderby] = ACTIONS(6199), - [anon_sym_ascending] = ACTIONS(6199), - [anon_sym_descending] = ACTIONS(6199), - [anon_sym_group] = ACTIONS(6199), - [anon_sym_select] = ACTIONS(6199), - [anon_sym_as] = ACTIONS(6201), - [anon_sym_is] = ACTIONS(6199), - [anon_sym_DASH_GT] = ACTIONS(6199), - [anon_sym_with] = ACTIONS(6199), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_sym_preproc_warning_token1] = ACTIONS(15), - [aux_sym_preproc_define_token1] = ACTIONS(17), - [aux_sym_preproc_undef_token1] = ACTIONS(19), - [sym_comment] = ACTIONS(21), - }, - [5400] = { - [sym__name] = STATE(6588), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6680), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6559), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(5400), - [sym_preproc_endregion] = STATE(5400), - [sym_preproc_line] = STATE(5400), - [sym_preproc_pragma] = STATE(5400), - [sym_preproc_nullable] = STATE(5400), - [sym_preproc_error] = STATE(5400), - [sym_preproc_warning] = STATE(5400), - [sym_preproc_define] = STATE(5400), - [sym_preproc_undef] = STATE(5400), [sym__identifier_token] = ACTIONS(3207), [anon_sym_alias] = ACTIONS(3211), [anon_sym_global] = ACTIONS(3211), [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7501), - [anon_sym_delegate] = ACTIONS(3709), + [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(7505), - [anon_sym_var] = ACTIONS(7507), + [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), @@ -666167,47 +657833,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [5401] = { - [sym__name] = STATE(4695), - [sym_alias_qualified_name] = STATE(4704), - [sym__simple_name] = STATE(4704), - [sym_qualified_name] = STATE(4704), - [sym_generic_name] = STATE(4666), - [sym_type] = STATE(4686), - [sym_implicit_type] = STATE(4700), - [sym_array_type] = STATE(4699), - [sym__array_base_type] = STATE(7374), - [sym_nullable_type] = STATE(4698), - [sym_pointer_type] = STATE(4698), - [sym__pointer_base_type] = STATE(7964), - [sym_function_pointer_type] = STATE(4698), - [sym_ref_type] = STATE(4700), - [sym_scoped_type] = STATE(4700), - [sym_tuple_type] = STATE(4657), - [sym_identifier] = STATE(4635), - [sym__reserved_identifier] = STATE(4647), - [sym_preproc_region] = STATE(5401), - [sym_preproc_endregion] = STATE(5401), - [sym_preproc_line] = STATE(5401), - [sym_preproc_pragma] = STATE(5401), - [sym_preproc_nullable] = STATE(5401), - [sym_preproc_error] = STATE(5401), - [sym_preproc_warning] = STATE(5401), - [sym_preproc_define] = STATE(5401), - [sym_preproc_undef] = STATE(5401), + [5400] = { + [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), + [sym_preproc_pragma] = STATE(5400), + [sym_preproc_nullable] = STATE(5400), + [sym_preproc_error] = STATE(5400), + [sym_preproc_warning] = STATE(5400), + [sym_preproc_define] = STATE(5400), + [sym_preproc_undef] = STATE(5400), [sym__identifier_token] = ACTIONS(4088), [anon_sym_alias] = ACTIONS(4090), [anon_sym_global] = ACTIONS(4090), - [anon_sym_LPAREN] = ACTIONS(7519), - [anon_sym_ref] = ACTIONS(4480), - [anon_sym_delegate] = ACTIONS(7232), + [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(7341), - [anon_sym_var] = ACTIONS(7236), - [sym_predefined_type] = ACTIONS(7238), + [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), @@ -666234,7 +657900,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [5401] = { + [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), + [sym_preproc_pragma] = STATE(5401), + [sym_preproc_nullable] = STATE(5401), + [sym_preproc_error] = STATE(5401), + [sym_preproc_warning] = STATE(5401), + [sym_preproc_define] = STATE(5401), + [sym_preproc_undef] = STATE(5401), + [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), + }, [5402] = { + [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), @@ -666244,52 +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), - [anon_sym_LBRACK] = ACTIONS(6225), - [anon_sym_COMMA] = ACTIONS(6225), - [anon_sym_LPAREN] = ACTIONS(6225), - [anon_sym_LT] = ACTIONS(6227), - [anon_sym_GT] = ACTIONS(6227), - [anon_sym_where] = ACTIONS(6225), - [anon_sym_QMARK] = ACTIONS(6227), - [anon_sym_BANG] = ACTIONS(6227), - [anon_sym_PLUS_PLUS] = ACTIONS(6225), - [anon_sym_DASH_DASH] = ACTIONS(6225), - [anon_sym_PLUS] = ACTIONS(6227), - [anon_sym_DASH] = ACTIONS(6227), - [anon_sym_STAR] = ACTIONS(6225), - [anon_sym_SLASH] = ACTIONS(6227), - [anon_sym_PERCENT] = ACTIONS(6225), - [anon_sym_CARET] = ACTIONS(6225), - [anon_sym_PIPE] = ACTIONS(6227), - [anon_sym_AMP] = ACTIONS(6227), - [anon_sym_LT_LT] = ACTIONS(6225), - [anon_sym_GT_GT] = ACTIONS(6227), - [anon_sym_GT_GT_GT] = ACTIONS(6225), - [anon_sym_EQ_EQ] = ACTIONS(6225), - [anon_sym_BANG_EQ] = ACTIONS(6225), - [anon_sym_GT_EQ] = ACTIONS(6225), - [anon_sym_LT_EQ] = ACTIONS(6225), - [anon_sym_DOT] = ACTIONS(6227), - [anon_sym_switch] = ACTIONS(6225), - [anon_sym_DOT_DOT] = ACTIONS(6225), - [anon_sym_and] = ACTIONS(6225), - [anon_sym_or] = ACTIONS(6227), - [anon_sym_AMP_AMP] = ACTIONS(6225), - [anon_sym_PIPE_PIPE] = ACTIONS(6225), - [sym_op_coalescing] = ACTIONS(6225), - [anon_sym_from] = ACTIONS(6225), - [anon_sym_into] = ACTIONS(6225), - [anon_sym_join] = ACTIONS(6225), - [anon_sym_let] = ACTIONS(6225), - [anon_sym_orderby] = ACTIONS(6225), - [anon_sym_ascending] = ACTIONS(6225), - [anon_sym_descending] = ACTIONS(6225), - [anon_sym_group] = ACTIONS(6225), - [anon_sym_select] = ACTIONS(6225), - [anon_sym_as] = ACTIONS(6227), - [anon_sym_is] = ACTIONS(6225), - [anon_sym_DASH_GT] = ACTIONS(6225), - [anon_sym_with] = ACTIONS(6225), + [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), @@ -666302,6 +658035,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5403] = { + [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), @@ -666311,52 +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), - [anon_sym_LBRACK] = ACTIONS(4764), - [anon_sym_COMMA] = ACTIONS(4764), - [anon_sym_LPAREN] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_where] = ACTIONS(4764), - [anon_sym_QMARK] = ACTIONS(4766), - [anon_sym_BANG] = ACTIONS(4766), - [anon_sym_PLUS_PLUS] = ACTIONS(4764), - [anon_sym_DASH_DASH] = ACTIONS(4764), - [anon_sym_PLUS] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_STAR] = ACTIONS(4764), - [anon_sym_SLASH] = ACTIONS(4766), - [anon_sym_PERCENT] = ACTIONS(4764), - [anon_sym_CARET] = ACTIONS(4764), - [anon_sym_PIPE] = ACTIONS(4766), - [anon_sym_AMP] = ACTIONS(4766), - [anon_sym_LT_LT] = ACTIONS(4764), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_GT_GT_GT] = ACTIONS(4764), - [anon_sym_EQ_EQ] = ACTIONS(4764), - [anon_sym_BANG_EQ] = ACTIONS(4764), - [anon_sym_GT_EQ] = ACTIONS(4764), - [anon_sym_LT_EQ] = ACTIONS(4764), - [anon_sym_DOT] = ACTIONS(4766), - [anon_sym_switch] = ACTIONS(4764), - [anon_sym_DOT_DOT] = ACTIONS(4764), - [anon_sym_and] = ACTIONS(4764), - [anon_sym_or] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4764), - [anon_sym_PIPE_PIPE] = ACTIONS(4764), - [sym_op_coalescing] = ACTIONS(4764), - [anon_sym_from] = ACTIONS(4764), - [anon_sym_into] = ACTIONS(4764), - [anon_sym_join] = ACTIONS(4764), - [anon_sym_let] = ACTIONS(4764), - [anon_sym_orderby] = ACTIONS(4764), - [anon_sym_ascending] = ACTIONS(4764), - [anon_sym_descending] = ACTIONS(4764), - [anon_sym_group] = ACTIONS(4764), - [anon_sym_select] = ACTIONS(4764), - [anon_sym_as] = ACTIONS(4766), - [anon_sym_is] = ACTIONS(4764), - [anon_sym_DASH_GT] = ACTIONS(4764), - [anon_sym_with] = ACTIONS(4764), + [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), @@ -666369,6 +658102,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5404] = { + [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), @@ -666378,52 +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), - [anon_sym_LBRACK] = ACTIONS(6203), - [anon_sym_COMMA] = ACTIONS(6203), - [anon_sym_LPAREN] = ACTIONS(6203), - [anon_sym_LT] = ACTIONS(6205), - [anon_sym_GT] = ACTIONS(6205), - [anon_sym_where] = ACTIONS(6203), - [anon_sym_QMARK] = ACTIONS(6205), - [anon_sym_BANG] = ACTIONS(6205), - [anon_sym_PLUS_PLUS] = ACTIONS(6203), - [anon_sym_DASH_DASH] = ACTIONS(6203), - [anon_sym_PLUS] = ACTIONS(6205), - [anon_sym_DASH] = ACTIONS(6205), - [anon_sym_STAR] = ACTIONS(6203), - [anon_sym_SLASH] = ACTIONS(6205), - [anon_sym_PERCENT] = ACTIONS(6203), - [anon_sym_CARET] = ACTIONS(6203), - [anon_sym_PIPE] = ACTIONS(6205), - [anon_sym_AMP] = ACTIONS(6205), - [anon_sym_LT_LT] = ACTIONS(6203), - [anon_sym_GT_GT] = ACTIONS(6205), - [anon_sym_GT_GT_GT] = ACTIONS(6203), - [anon_sym_EQ_EQ] = ACTIONS(6203), - [anon_sym_BANG_EQ] = ACTIONS(6203), - [anon_sym_GT_EQ] = ACTIONS(6203), - [anon_sym_LT_EQ] = ACTIONS(6203), - [anon_sym_DOT] = ACTIONS(6205), - [anon_sym_switch] = ACTIONS(6203), - [anon_sym_DOT_DOT] = ACTIONS(6203), - [anon_sym_and] = ACTIONS(6203), - [anon_sym_or] = ACTIONS(6205), - [anon_sym_AMP_AMP] = ACTIONS(6203), - [anon_sym_PIPE_PIPE] = ACTIONS(6203), - [sym_op_coalescing] = ACTIONS(6203), - [anon_sym_from] = ACTIONS(6203), - [anon_sym_into] = ACTIONS(6203), - [anon_sym_join] = ACTIONS(6203), - [anon_sym_let] = ACTIONS(6203), - [anon_sym_orderby] = ACTIONS(6203), - [anon_sym_ascending] = ACTIONS(6203), - [anon_sym_descending] = ACTIONS(6203), - [anon_sym_group] = ACTIONS(6203), - [anon_sym_select] = ACTIONS(6203), - [anon_sym_as] = ACTIONS(6205), - [anon_sym_is] = ACTIONS(6203), - [anon_sym_DASH_GT] = ACTIONS(6203), - [anon_sym_with] = ACTIONS(6203), + [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), @@ -666436,24 +658169,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5405] = { - [sym__name] = STATE(5608), - [sym_alias_qualified_name] = STATE(5627), - [sym__simple_name] = STATE(5627), - [sym_qualified_name] = STATE(5627), - [sym_generic_name] = STATE(5585), - [sym_type] = STATE(5675), - [sym_implicit_type] = STATE(5637), - [sym_array_type] = STATE(5625), - [sym__array_base_type] = STATE(7380), - [sym_nullable_type] = STATE(5581), - [sym_pointer_type] = STATE(5581), - [sym__pointer_base_type] = STATE(8140), - [sym_function_pointer_type] = STATE(5581), - [sym_ref_type] = STATE(5637), - [sym_scoped_type] = STATE(5637), - [sym_tuple_type] = STATE(5609), - [sym_identifier] = STATE(5530), - [sym__reserved_identifier] = STATE(5560), + [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(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), @@ -666463,34 +658196,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5405), [sym_preproc_define] = STATE(5405), [sym_preproc_undef] = STATE(5405), - [sym__identifier_token] = ACTIONS(4328), - [anon_sym_alias] = ACTIONS(4330), - [anon_sym_global] = ACTIONS(4330), - [anon_sym_LPAREN] = ACTIONS(7539), - [anon_sym_ref] = ACTIONS(4348), - [anon_sym_delegate] = ACTIONS(7250), - [anon_sym_file] = ACTIONS(4330), - [anon_sym_where] = ACTIONS(4330), - [anon_sym_notnull] = ACTIONS(4330), - [anon_sym_unmanaged] = ACTIONS(4330), - [anon_sym_scoped] = ACTIONS(7388), - [anon_sym_var] = ACTIONS(7254), - [sym_predefined_type] = ACTIONS(7256), - [anon_sym_yield] = ACTIONS(4330), - [anon_sym_when] = ACTIONS(4330), - [anon_sym_from] = ACTIONS(4330), - [anon_sym_into] = ACTIONS(4330), - [anon_sym_join] = ACTIONS(4330), - [anon_sym_on] = ACTIONS(4330), - [anon_sym_equals] = ACTIONS(4330), - [anon_sym_let] = ACTIONS(4330), - [anon_sym_orderby] = ACTIONS(4330), - [anon_sym_ascending] = ACTIONS(4330), - [anon_sym_descending] = ACTIONS(4330), - [anon_sym_group] = ACTIONS(4330), - [anon_sym_by] = ACTIONS(4330), - [anon_sym_select] = ACTIONS(4330), - [sym_grit_metavariable] = ACTIONS(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(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), @@ -666503,6 +658236,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5406] = { + [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), @@ -666512,52 +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), - [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__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), @@ -666579,52 +658312,52 @@ 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(6207), - [anon_sym_COMMA] = ACTIONS(6207), - [anon_sym_LPAREN] = ACTIONS(6207), - [anon_sym_LT] = ACTIONS(6209), - [anon_sym_GT] = ACTIONS(6209), - [anon_sym_where] = ACTIONS(6207), - [anon_sym_QMARK] = ACTIONS(6209), - [anon_sym_BANG] = ACTIONS(6209), - [anon_sym_PLUS_PLUS] = ACTIONS(6207), - [anon_sym_DASH_DASH] = ACTIONS(6207), - [anon_sym_PLUS] = ACTIONS(6209), - [anon_sym_DASH] = ACTIONS(6209), - [anon_sym_STAR] = ACTIONS(6207), - [anon_sym_SLASH] = ACTIONS(6209), - [anon_sym_PERCENT] = ACTIONS(6207), - [anon_sym_CARET] = ACTIONS(6207), - [anon_sym_PIPE] = ACTIONS(6209), - [anon_sym_AMP] = ACTIONS(6209), - [anon_sym_LT_LT] = ACTIONS(6207), - [anon_sym_GT_GT] = ACTIONS(6209), - [anon_sym_GT_GT_GT] = ACTIONS(6207), - [anon_sym_EQ_EQ] = ACTIONS(6207), - [anon_sym_BANG_EQ] = ACTIONS(6207), - [anon_sym_GT_EQ] = ACTIONS(6207), - [anon_sym_LT_EQ] = ACTIONS(6207), - [anon_sym_DOT] = ACTIONS(6209), - [anon_sym_switch] = ACTIONS(6207), - [anon_sym_DOT_DOT] = ACTIONS(6207), - [anon_sym_and] = ACTIONS(6207), - [anon_sym_or] = ACTIONS(6209), - [anon_sym_AMP_AMP] = ACTIONS(6207), - [anon_sym_PIPE_PIPE] = ACTIONS(6207), - [sym_op_coalescing] = ACTIONS(6207), - [anon_sym_from] = ACTIONS(6207), - [anon_sym_into] = ACTIONS(6207), - [anon_sym_join] = ACTIONS(6207), - [anon_sym_let] = ACTIONS(6207), - [anon_sym_orderby] = ACTIONS(6207), - [anon_sym_ascending] = ACTIONS(6207), - [anon_sym_descending] = ACTIONS(6207), - [anon_sym_group] = ACTIONS(6207), - [anon_sym_select] = ACTIONS(6207), - [anon_sym_as] = ACTIONS(6209), - [anon_sym_is] = ACTIONS(6207), - [anon_sym_DASH_GT] = ACTIONS(6207), - [anon_sym_with] = ACTIONS(6207), + [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), @@ -666637,24 +658370,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5408] = { - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4737), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4842), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -666664,34 +658397,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5408), [sym_preproc_define] = STATE(5408), [sym_preproc_undef] = STATE(5408), - [sym__identifier_token] = ACTIONS(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(7509), - [anon_sym_ref] = ACTIONS(4524), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7380), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -666704,6 +658437,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5409] = { + [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), @@ -666713,52 +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), - [anon_sym_LBRACK] = ACTIONS(6221), - [anon_sym_COMMA] = ACTIONS(6221), - [anon_sym_LPAREN] = ACTIONS(6221), - [anon_sym_LT] = ACTIONS(6223), - [anon_sym_GT] = ACTIONS(6223), - [anon_sym_where] = ACTIONS(6221), - [anon_sym_QMARK] = ACTIONS(6223), - [anon_sym_BANG] = ACTIONS(6223), - [anon_sym_PLUS_PLUS] = ACTIONS(6221), - [anon_sym_DASH_DASH] = ACTIONS(6221), - [anon_sym_PLUS] = ACTIONS(6223), - [anon_sym_DASH] = ACTIONS(6223), - [anon_sym_STAR] = ACTIONS(6221), - [anon_sym_SLASH] = ACTIONS(6223), - [anon_sym_PERCENT] = ACTIONS(6221), - [anon_sym_CARET] = ACTIONS(6221), - [anon_sym_PIPE] = ACTIONS(6223), - [anon_sym_AMP] = ACTIONS(6223), - [anon_sym_LT_LT] = ACTIONS(6221), - [anon_sym_GT_GT] = ACTIONS(6223), - [anon_sym_GT_GT_GT] = ACTIONS(6221), - [anon_sym_EQ_EQ] = ACTIONS(6221), - [anon_sym_BANG_EQ] = ACTIONS(6221), - [anon_sym_GT_EQ] = ACTIONS(6221), - [anon_sym_LT_EQ] = ACTIONS(6221), - [anon_sym_DOT] = ACTIONS(6223), - [anon_sym_switch] = ACTIONS(6221), - [anon_sym_DOT_DOT] = ACTIONS(6221), - [anon_sym_and] = ACTIONS(6221), - [anon_sym_or] = ACTIONS(6223), - [anon_sym_AMP_AMP] = ACTIONS(6221), - [anon_sym_PIPE_PIPE] = ACTIONS(6221), - [sym_op_coalescing] = ACTIONS(6221), - [anon_sym_from] = ACTIONS(6221), - [anon_sym_into] = ACTIONS(6221), - [anon_sym_join] = ACTIONS(6221), - [anon_sym_let] = ACTIONS(6221), - [anon_sym_orderby] = ACTIONS(6221), - [anon_sym_ascending] = ACTIONS(6221), - [anon_sym_descending] = ACTIONS(6221), - [anon_sym_group] = ACTIONS(6221), - [anon_sym_select] = ACTIONS(6221), - [anon_sym_as] = ACTIONS(6223), - [anon_sym_is] = ACTIONS(6221), - [anon_sym_DASH_GT] = ACTIONS(6221), - [anon_sym_with] = ACTIONS(6221), + [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), @@ -666771,24 +658504,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5410] = { - [sym__name] = STATE(2784), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2445), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2433), - [sym_type] = STATE(2385), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_identifier] = STATE(2636), - [sym__reserved_identifier] = STATE(2400), + [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), @@ -666798,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(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LPAREN] = ACTIONS(7495), - [anon_sym_ref] = ACTIONS(3928), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_where] = ACTIONS(4432), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_scoped] = ACTIONS(7533), - [anon_sym_var] = ACTIONS(7365), - [sym_predefined_type] = ACTIONS(7367), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_when] = ACTIONS(4432), - [anon_sym_from] = ACTIONS(4432), - [anon_sym_into] = ACTIONS(4432), - [anon_sym_join] = ACTIONS(4432), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4432), - [anon_sym_orderby] = ACTIONS(4432), - [anon_sym_ascending] = ACTIONS(4432), - [anon_sym_descending] = ACTIONS(4432), - [anon_sym_group] = ACTIONS(4432), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4432), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -666838,24 +658571,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5411] = { - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4737), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4842), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -666865,85 +658598,18 @@ 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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(7509), - [anon_sym_ref] = ACTIONS(4490), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7321), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [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), - }, - [5412] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(2385), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), - [sym_preproc_region] = STATE(5412), - [sym_preproc_endregion] = STATE(5412), - [sym_preproc_line] = STATE(5412), - [sym_preproc_pragma] = STATE(5412), - [sym_preproc_nullable] = STATE(5412), - [sym_preproc_error] = STATE(5412), - [sym_preproc_warning] = STATE(5412), - [sym_preproc_define] = STATE(5412), - [sym_preproc_undef] = STATE(5412), [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(3709), + [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(7489), - [anon_sym_var] = ACTIONS(7491), + [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), @@ -666971,25 +658637,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, + [5412] = { + [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), + [sym_preproc_pragma] = STATE(5412), + [sym_preproc_nullable] = STATE(5412), + [sym_preproc_error] = STATE(5412), + [sym_preproc_warning] = STATE(5412), + [sym_preproc_define] = STATE(5412), + [sym_preproc_undef] = STATE(5412), + [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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, [5413] = { - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4992), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4842), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -666999,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(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(7509), - [anon_sym_ref] = ACTIONS(4494), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7349), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -667040,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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6769), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -667070,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(7006), - [anon_sym_delegate] = ACTIONS(3709), + [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(7014), - [anon_sym_var] = ACTIONS(5500), + [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), @@ -667106,24 +658839,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5415] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7767), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -667133,18 +658866,85 @@ 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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_sym_preproc_warning_token1] = ACTIONS(15), + [aux_sym_preproc_define_token1] = ACTIONS(17), + [aux_sym_preproc_undef_token1] = ACTIONS(19), + [sym_comment] = ACTIONS(21), + }, + [5416] = { + [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), + [sym_preproc_pragma] = STATE(5416), + [sym_preproc_nullable] = STATE(5416), + [sym_preproc_error] = STATE(5416), + [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(7612), - [anon_sym_delegate] = ACTIONS(3709), + [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(7616), - [anon_sym_var] = ACTIONS(7491), + [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), @@ -667172,92 +658972,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_undef_token1] = ACTIONS(19), [sym_comment] = ACTIONS(21), }, - [5416] = { - [sym_preproc_region] = STATE(5416), - [sym_preproc_endregion] = STATE(5416), - [sym_preproc_line] = STATE(5416), - [sym_preproc_pragma] = STATE(5416), - [sym_preproc_nullable] = STATE(5416), - [sym_preproc_error] = STATE(5416), - [sym_preproc_warning] = STATE(5416), - [sym_preproc_define] = STATE(5416), - [sym_preproc_undef] = STATE(5416), - [anon_sym_LBRACK] = ACTIONS(7118), - [anon_sym_COMMA] = ACTIONS(7118), - [anon_sym_LPAREN] = ACTIONS(7118), - [anon_sym_LT] = ACTIONS(7120), - [anon_sym_GT] = ACTIONS(7120), - [anon_sym_where] = ACTIONS(7118), - [anon_sym_QMARK] = ACTIONS(7120), - [anon_sym_BANG] = ACTIONS(7120), - [anon_sym_PLUS_PLUS] = ACTIONS(7118), - [anon_sym_DASH_DASH] = ACTIONS(7118), - [anon_sym_PLUS] = ACTIONS(7120), - [anon_sym_DASH] = ACTIONS(7120), - [anon_sym_STAR] = ACTIONS(7118), - [anon_sym_SLASH] = ACTIONS(7120), - [anon_sym_PERCENT] = ACTIONS(7118), - [anon_sym_CARET] = ACTIONS(7118), - [anon_sym_PIPE] = ACTIONS(7120), - [anon_sym_AMP] = ACTIONS(7120), - [anon_sym_LT_LT] = ACTIONS(7118), - [anon_sym_GT_GT] = ACTIONS(7120), - [anon_sym_GT_GT_GT] = ACTIONS(7118), - [anon_sym_EQ_EQ] = ACTIONS(7118), - [anon_sym_BANG_EQ] = ACTIONS(7118), - [anon_sym_GT_EQ] = ACTIONS(7118), - [anon_sym_LT_EQ] = ACTIONS(7118), - [anon_sym_DOT] = ACTIONS(7120), - [anon_sym_switch] = ACTIONS(7118), - [anon_sym_DOT_DOT] = ACTIONS(7118), - [anon_sym_and] = ACTIONS(7118), - [anon_sym_or] = ACTIONS(7120), - [anon_sym_AMP_AMP] = ACTIONS(7118), - [anon_sym_PIPE_PIPE] = ACTIONS(7118), - [sym_op_coalescing] = ACTIONS(7118), - [anon_sym_from] = ACTIONS(7118), - [anon_sym_into] = ACTIONS(7118), - [anon_sym_join] = ACTIONS(7118), - [anon_sym_let] = ACTIONS(7118), - [anon_sym_orderby] = ACTIONS(7118), - [anon_sym_ascending] = ACTIONS(7118), - [anon_sym_descending] = ACTIONS(7118), - [anon_sym_group] = ACTIONS(7118), - [anon_sym_select] = ACTIONS(7118), - [anon_sym_as] = ACTIONS(7120), - [anon_sym_is] = ACTIONS(7118), - [anon_sym_DASH_GT] = ACTIONS(7118), - [anon_sym_with] = ACTIONS(7118), - [aux_sym_preproc_region_token1] = ACTIONS(3), - [aux_sym_preproc_endregion_token1] = ACTIONS(5), - [aux_sym_preproc_line_token1] = ACTIONS(7), - [aux_sym_preproc_pragma_token1] = ACTIONS(9), - [aux_sym_preproc_nullable_token1] = ACTIONS(11), - [aux_sym_preproc_error_token1] = ACTIONS(13), - [aux_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(5081), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3672), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(3463), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), + [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), @@ -667267,34 +659000,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5417), [sym_preproc_define] = STATE(5417), [sym_preproc_undef] = STATE(5417), - [sym__identifier_token] = ACTIONS(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(7513), - [anon_sym_ref] = ACTIONS(4632), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7373), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -667307,6 +659040,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5418] = { + [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(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), @@ -667316,52 +659067,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5418), [sym_preproc_define] = STATE(5418), [sym_preproc_undef] = STATE(5418), - [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__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), @@ -667374,24 +659107,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5419] = { - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4035), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(4046), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -667401,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(7535), - [anon_sym_ref] = ACTIONS(4596), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7262), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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), @@ -667450,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(6213), - [anon_sym_COMMA] = ACTIONS(6213), - [anon_sym_LPAREN] = ACTIONS(6213), - [anon_sym_LT] = ACTIONS(6215), - [anon_sym_GT] = ACTIONS(6215), - [anon_sym_where] = ACTIONS(6213), - [anon_sym_QMARK] = ACTIONS(6215), - [anon_sym_BANG] = ACTIONS(6215), - [anon_sym_PLUS_PLUS] = ACTIONS(6213), - [anon_sym_DASH_DASH] = ACTIONS(6213), - [anon_sym_PLUS] = ACTIONS(6215), - [anon_sym_DASH] = ACTIONS(6215), - [anon_sym_STAR] = ACTIONS(6213), - [anon_sym_SLASH] = ACTIONS(6215), - [anon_sym_PERCENT] = ACTIONS(6213), - [anon_sym_CARET] = ACTIONS(6213), - [anon_sym_PIPE] = ACTIONS(6215), - [anon_sym_AMP] = ACTIONS(6215), - [anon_sym_LT_LT] = ACTIONS(6213), - [anon_sym_GT_GT] = ACTIONS(6215), - [anon_sym_GT_GT_GT] = ACTIONS(6213), - [anon_sym_EQ_EQ] = ACTIONS(6213), - [anon_sym_BANG_EQ] = ACTIONS(6213), - [anon_sym_GT_EQ] = ACTIONS(6213), - [anon_sym_LT_EQ] = ACTIONS(6213), - [anon_sym_DOT] = ACTIONS(6215), - [anon_sym_switch] = ACTIONS(6213), - [anon_sym_DOT_DOT] = ACTIONS(6213), - [anon_sym_and] = ACTIONS(6213), - [anon_sym_or] = ACTIONS(6215), - [anon_sym_AMP_AMP] = ACTIONS(6213), - [anon_sym_PIPE_PIPE] = ACTIONS(6213), - [sym_op_coalescing] = ACTIONS(6213), - [anon_sym_from] = ACTIONS(6213), - [anon_sym_into] = ACTIONS(6213), - [anon_sym_join] = ACTIONS(6213), - [anon_sym_let] = ACTIONS(6213), - [anon_sym_orderby] = ACTIONS(6213), - [anon_sym_ascending] = ACTIONS(6213), - [anon_sym_descending] = ACTIONS(6213), - [anon_sym_group] = ACTIONS(6213), - [anon_sym_select] = ACTIONS(6213), - [anon_sym_as] = ACTIONS(6215), - [anon_sym_is] = ACTIONS(6213), - [anon_sym_DASH_GT] = ACTIONS(6213), - [anon_sym_with] = ACTIONS(6213), + [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), @@ -667508,6 +659241,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5421] = { + [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), @@ -667517,52 +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), - [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__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), @@ -667575,6 +659308,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5422] = { + [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(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), @@ -667584,52 +659335,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5422), [sym_preproc_define] = STATE(5422), [sym_preproc_undef] = STATE(5422), - [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__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), @@ -667642,6 +659375,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5423] = { + [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), @@ -667651,52 +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), - [anon_sym_LBRACK] = ACTIONS(6135), - [anon_sym_COMMA] = ACTIONS(6135), - [anon_sym_LPAREN] = ACTIONS(6135), - [anon_sym_LT] = ACTIONS(6137), - [anon_sym_GT] = ACTIONS(6137), - [anon_sym_where] = ACTIONS(6135), - [anon_sym_QMARK] = ACTIONS(6137), - [anon_sym_BANG] = ACTIONS(6137), - [anon_sym_PLUS_PLUS] = ACTIONS(6135), - [anon_sym_DASH_DASH] = ACTIONS(6135), - [anon_sym_PLUS] = ACTIONS(6137), - [anon_sym_DASH] = ACTIONS(6137), - [anon_sym_STAR] = ACTIONS(6135), - [anon_sym_SLASH] = ACTIONS(6137), - [anon_sym_PERCENT] = ACTIONS(6135), - [anon_sym_CARET] = ACTIONS(6135), - [anon_sym_PIPE] = ACTIONS(6137), - [anon_sym_AMP] = ACTIONS(6137), - [anon_sym_LT_LT] = ACTIONS(6135), - [anon_sym_GT_GT] = ACTIONS(6137), - [anon_sym_GT_GT_GT] = ACTIONS(6135), - [anon_sym_EQ_EQ] = ACTIONS(6135), - [anon_sym_BANG_EQ] = ACTIONS(6135), - [anon_sym_GT_EQ] = ACTIONS(6135), - [anon_sym_LT_EQ] = ACTIONS(6135), - [anon_sym_DOT] = ACTIONS(6137), - [anon_sym_switch] = ACTIONS(6135), - [anon_sym_DOT_DOT] = ACTIONS(6135), - [anon_sym_and] = ACTIONS(6135), - [anon_sym_or] = ACTIONS(6137), - [anon_sym_AMP_AMP] = ACTIONS(6135), - [anon_sym_PIPE_PIPE] = ACTIONS(6135), - [sym_op_coalescing] = ACTIONS(6135), - [anon_sym_from] = ACTIONS(6135), - [anon_sym_into] = ACTIONS(6135), - [anon_sym_join] = ACTIONS(6135), - [anon_sym_let] = ACTIONS(6135), - [anon_sym_orderby] = ACTIONS(6135), - [anon_sym_ascending] = ACTIONS(6135), - [anon_sym_descending] = ACTIONS(6135), - [anon_sym_group] = ACTIONS(6135), - [anon_sym_select] = ACTIONS(6135), - [anon_sym_as] = ACTIONS(6137), - [anon_sym_is] = ACTIONS(6135), - [anon_sym_DASH_GT] = ACTIONS(6135), - [anon_sym_with] = ACTIONS(6135), + [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), @@ -667709,24 +659442,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5424] = { - [sym__name] = STATE(5801), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4145), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(4046), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(5616), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -667736,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(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_ref] = ACTIONS(4368), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7264), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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), @@ -667776,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), @@ -667785,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), - [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__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), @@ -667843,24 +659576,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5426] = { - [sym__name] = STATE(2471), - [sym_alias_qualified_name] = STATE(2445), - [sym__simple_name] = STATE(2445), - [sym_qualified_name] = STATE(2445), - [sym_generic_name] = STATE(2433), - [sym_type] = STATE(5389), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(2447), - [sym__array_base_type] = STATE(7570), - [sym_nullable_type] = STATE(2451), - [sym_pointer_type] = STATE(2451), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(2451), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(2452), - [sym_identifier] = STATE(2399), - [sym__reserved_identifier] = STATE(2400), + [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(5426), [sym_preproc_endregion] = STATE(5426), [sym_preproc_line] = STATE(5426), @@ -667870,34 +659603,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5426), [sym_preproc_define] = STATE(5426), [sym_preproc_undef] = STATE(5426), - [sym__identifier_token] = ACTIONS(4430), - [anon_sym_alias] = ACTIONS(4432), - [anon_sym_global] = ACTIONS(4432), - [anon_sym_LPAREN] = ACTIONS(7495), - [anon_sym_ref] = ACTIONS(4434), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(4432), - [anon_sym_where] = ACTIONS(4432), - [anon_sym_notnull] = ACTIONS(4432), - [anon_sym_unmanaged] = ACTIONS(4432), - [anon_sym_scoped] = ACTIONS(7390), - [anon_sym_var] = ACTIONS(7365), - [sym_predefined_type] = ACTIONS(7367), - [anon_sym_yield] = ACTIONS(4432), - [anon_sym_when] = ACTIONS(4432), - [anon_sym_from] = ACTIONS(4432), - [anon_sym_into] = ACTIONS(4432), - [anon_sym_join] = ACTIONS(4432), - [anon_sym_on] = ACTIONS(4432), - [anon_sym_equals] = ACTIONS(4432), - [anon_sym_let] = ACTIONS(4432), - [anon_sym_orderby] = ACTIONS(4432), - [anon_sym_ascending] = ACTIONS(4432), - [anon_sym_descending] = ACTIONS(4432), - [anon_sym_group] = ACTIONS(4432), - [anon_sym_by] = ACTIONS(4432), - [anon_sym_select] = ACTIONS(4432), - [sym_grit_metavariable] = ACTIONS(4436), + [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), @@ -667910,24 +659643,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5427] = { - [sym__name] = STATE(5081), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3770), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(3463), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), + [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), @@ -667937,34 +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), - [sym__identifier_token] = ACTIONS(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(7513), - [anon_sym_ref] = ACTIONS(4632), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7373), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -667977,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), @@ -667986,52 +659737,34 @@ 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(6325), - [anon_sym_COMMA] = ACTIONS(6325), - [anon_sym_LPAREN] = ACTIONS(6325), - [anon_sym_LT] = ACTIONS(6327), - [anon_sym_GT] = ACTIONS(6327), - [anon_sym_where] = ACTIONS(6325), - [anon_sym_QMARK] = ACTIONS(6327), - [anon_sym_BANG] = ACTIONS(6327), - [anon_sym_PLUS_PLUS] = ACTIONS(6325), - [anon_sym_DASH_DASH] = ACTIONS(6325), - [anon_sym_PLUS] = ACTIONS(6327), - [anon_sym_DASH] = ACTIONS(6327), - [anon_sym_STAR] = ACTIONS(6325), - [anon_sym_SLASH] = ACTIONS(6327), - [anon_sym_PERCENT] = ACTIONS(6325), - [anon_sym_CARET] = ACTIONS(6325), - [anon_sym_PIPE] = ACTIONS(6327), - [anon_sym_AMP] = ACTIONS(6327), - [anon_sym_LT_LT] = ACTIONS(6325), - [anon_sym_GT_GT] = ACTIONS(6327), - [anon_sym_GT_GT_GT] = ACTIONS(6325), - [anon_sym_EQ_EQ] = ACTIONS(6325), - [anon_sym_BANG_EQ] = ACTIONS(6325), - [anon_sym_GT_EQ] = ACTIONS(6325), - [anon_sym_LT_EQ] = ACTIONS(6325), - [anon_sym_DOT] = ACTIONS(6327), - [anon_sym_switch] = ACTIONS(6325), - [anon_sym_DOT_DOT] = ACTIONS(6325), - [anon_sym_and] = ACTIONS(6325), - [anon_sym_or] = ACTIONS(6327), - [anon_sym_AMP_AMP] = ACTIONS(6325), - [anon_sym_PIPE_PIPE] = ACTIONS(6325), - [sym_op_coalescing] = ACTIONS(6325), - [anon_sym_from] = ACTIONS(6325), - [anon_sym_into] = ACTIONS(6325), - [anon_sym_join] = ACTIONS(6325), - [anon_sym_let] = ACTIONS(6325), - [anon_sym_orderby] = ACTIONS(6325), - [anon_sym_ascending] = ACTIONS(6325), - [anon_sym_descending] = ACTIONS(6325), - [anon_sym_group] = ACTIONS(6325), - [anon_sym_select] = ACTIONS(6325), - [anon_sym_as] = ACTIONS(6327), - [anon_sym_is] = ACTIONS(6325), - [anon_sym_DASH_GT] = ACTIONS(6325), - [anon_sym_with] = ACTIONS(6325), + [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), @@ -668044,6 +659777,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -668053,52 +659787,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5429), [sym_preproc_define] = STATE(5429), [sym_preproc_undef] = STATE(5429), - [anon_sym_LBRACK] = ACTIONS(6241), - [anon_sym_COMMA] = ACTIONS(6241), - [anon_sym_LPAREN] = ACTIONS(6241), - [anon_sym_LT] = ACTIONS(6243), - [anon_sym_GT] = ACTIONS(6243), - [anon_sym_where] = ACTIONS(6241), - [anon_sym_QMARK] = ACTIONS(6243), - [anon_sym_BANG] = ACTIONS(6243), - [anon_sym_PLUS_PLUS] = ACTIONS(6241), - [anon_sym_DASH_DASH] = ACTIONS(6241), - [anon_sym_PLUS] = ACTIONS(6243), - [anon_sym_DASH] = ACTIONS(6243), - [anon_sym_STAR] = ACTIONS(6241), - [anon_sym_SLASH] = ACTIONS(6243), - [anon_sym_PERCENT] = ACTIONS(6241), - [anon_sym_CARET] = ACTIONS(6241), - [anon_sym_PIPE] = ACTIONS(6243), - [anon_sym_AMP] = ACTIONS(6243), - [anon_sym_LT_LT] = ACTIONS(6241), - [anon_sym_GT_GT] = ACTIONS(6243), - [anon_sym_GT_GT_GT] = ACTIONS(6241), - [anon_sym_EQ_EQ] = ACTIONS(6241), - [anon_sym_BANG_EQ] = ACTIONS(6241), - [anon_sym_GT_EQ] = ACTIONS(6241), - [anon_sym_LT_EQ] = ACTIONS(6241), - [anon_sym_DOT] = ACTIONS(6243), - [anon_sym_switch] = ACTIONS(6241), - [anon_sym_DOT_DOT] = ACTIONS(6241), - [anon_sym_and] = ACTIONS(6241), - [anon_sym_or] = ACTIONS(6243), - [anon_sym_AMP_AMP] = ACTIONS(6241), - [anon_sym_PIPE_PIPE] = ACTIONS(6241), - [sym_op_coalescing] = ACTIONS(6241), - [anon_sym_from] = ACTIONS(6241), - [anon_sym_into] = ACTIONS(6241), - [anon_sym_join] = ACTIONS(6241), - [anon_sym_let] = ACTIONS(6241), - [anon_sym_orderby] = ACTIONS(6241), - [anon_sym_ascending] = ACTIONS(6241), - [anon_sym_descending] = ACTIONS(6241), - [anon_sym_group] = ACTIONS(6241), - [anon_sym_select] = ACTIONS(6241), - [anon_sym_as] = ACTIONS(6243), - [anon_sym_is] = ACTIONS(6241), - [anon_sym_DASH_GT] = ACTIONS(6241), - [anon_sym_with] = ACTIONS(6241), + [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), @@ -668111,24 +659844,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5430] = { - [sym__name] = STATE(5081), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3770), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(3463), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), + [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), @@ -668138,34 +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), - [sym__identifier_token] = ACTIONS(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(7513), - [anon_sym_ref] = ACTIONS(4570), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7371), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -668178,6 +659911,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5431] = { + [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), @@ -668187,52 +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), - [anon_sym_LBRACK] = ACTIONS(6139), - [anon_sym_COMMA] = ACTIONS(6139), - [anon_sym_LPAREN] = ACTIONS(6139), - [anon_sym_LT] = ACTIONS(6141), - [anon_sym_GT] = ACTIONS(6141), - [anon_sym_where] = ACTIONS(6139), - [anon_sym_QMARK] = ACTIONS(6141), - [anon_sym_BANG] = ACTIONS(6141), - [anon_sym_PLUS_PLUS] = ACTIONS(6139), - [anon_sym_DASH_DASH] = ACTIONS(6139), - [anon_sym_PLUS] = ACTIONS(6141), - [anon_sym_DASH] = ACTIONS(6141), - [anon_sym_STAR] = ACTIONS(6139), - [anon_sym_SLASH] = ACTIONS(6141), - [anon_sym_PERCENT] = ACTIONS(6139), - [anon_sym_CARET] = ACTIONS(6139), - [anon_sym_PIPE] = ACTIONS(6141), - [anon_sym_AMP] = ACTIONS(6141), - [anon_sym_LT_LT] = ACTIONS(6139), - [anon_sym_GT_GT] = ACTIONS(6141), - [anon_sym_GT_GT_GT] = ACTIONS(6139), - [anon_sym_EQ_EQ] = ACTIONS(6139), - [anon_sym_BANG_EQ] = ACTIONS(6139), - [anon_sym_GT_EQ] = ACTIONS(6139), - [anon_sym_LT_EQ] = ACTIONS(6139), - [anon_sym_DOT] = ACTIONS(6141), - [anon_sym_switch] = ACTIONS(6139), - [anon_sym_DOT_DOT] = ACTIONS(6139), - [anon_sym_and] = ACTIONS(6139), - [anon_sym_or] = ACTIONS(6141), - [anon_sym_AMP_AMP] = ACTIONS(6139), - [anon_sym_PIPE_PIPE] = ACTIONS(6139), - [sym_op_coalescing] = ACTIONS(6139), - [anon_sym_from] = ACTIONS(6139), - [anon_sym_into] = ACTIONS(6139), - [anon_sym_join] = ACTIONS(6139), - [anon_sym_let] = ACTIONS(6139), - [anon_sym_orderby] = ACTIONS(6139), - [anon_sym_ascending] = ACTIONS(6139), - [anon_sym_descending] = ACTIONS(6139), - [anon_sym_group] = ACTIONS(6139), - [anon_sym_select] = ACTIONS(6139), - [anon_sym_as] = ACTIONS(6141), - [anon_sym_is] = ACTIONS(6139), - [anon_sym_DASH_GT] = ACTIONS(6139), - [anon_sym_with] = ACTIONS(6139), + [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), @@ -668245,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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7788), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -668272,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(7612), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7616), - [anon_sym_var] = ACTIONS(7491), - [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), + [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), @@ -668312,24 +660045,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5433] = { - [sym__name] = STATE(4163), - [sym_alias_qualified_name] = STATE(4030), - [sym__simple_name] = STATE(4030), - [sym_qualified_name] = STATE(4030), - [sym_generic_name] = STATE(3957), - [sym_type] = STATE(4145), - [sym_implicit_type] = STATE(4041), - [sym_array_type] = STATE(4046), - [sym__array_base_type] = STATE(7393), - [sym_nullable_type] = STATE(4049), - [sym_pointer_type] = STATE(4049), - [sym__pointer_base_type] = STATE(8104), - [sym_function_pointer_type] = STATE(4049), - [sym_ref_type] = STATE(4041), - [sym_scoped_type] = STATE(4041), - [sym_tuple_type] = STATE(4077), - [sym_identifier] = STATE(3533), - [sym__reserved_identifier] = STATE(3741), + [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), @@ -668339,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(4226), - [anon_sym_alias] = ACTIONS(4228), - [anon_sym_global] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(7535), - [anon_sym_ref] = ACTIONS(4513), - [anon_sym_delegate] = ACTIONS(4381), - [anon_sym_file] = ACTIONS(4228), - [anon_sym_where] = ACTIONS(4228), - [anon_sym_notnull] = ACTIONS(4228), - [anon_sym_unmanaged] = ACTIONS(4228), - [anon_sym_scoped] = ACTIONS(7260), - [anon_sym_var] = ACTIONS(4385), - [sym_predefined_type] = ACTIONS(4387), - [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(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), @@ -668379,6 +660112,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5434] = { + [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), @@ -668388,52 +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), - [anon_sym_LBRACK] = ACTIONS(6143), - [anon_sym_COMMA] = ACTIONS(6143), - [anon_sym_LPAREN] = ACTIONS(6143), - [anon_sym_LT] = ACTIONS(6145), - [anon_sym_GT] = ACTIONS(6145), - [anon_sym_where] = ACTIONS(6143), - [anon_sym_QMARK] = ACTIONS(6145), - [anon_sym_BANG] = ACTIONS(6145), - [anon_sym_PLUS_PLUS] = ACTIONS(6143), - [anon_sym_DASH_DASH] = ACTIONS(6143), - [anon_sym_PLUS] = ACTIONS(6145), - [anon_sym_DASH] = ACTIONS(6145), - [anon_sym_STAR] = ACTIONS(6143), - [anon_sym_SLASH] = ACTIONS(6145), - [anon_sym_PERCENT] = ACTIONS(6143), - [anon_sym_CARET] = ACTIONS(6143), - [anon_sym_PIPE] = ACTIONS(6145), - [anon_sym_AMP] = ACTIONS(6145), - [anon_sym_LT_LT] = ACTIONS(6143), - [anon_sym_GT_GT] = ACTIONS(6145), - [anon_sym_GT_GT_GT] = ACTIONS(6143), - [anon_sym_EQ_EQ] = ACTIONS(6143), - [anon_sym_BANG_EQ] = ACTIONS(6143), - [anon_sym_GT_EQ] = ACTIONS(6143), - [anon_sym_LT_EQ] = ACTIONS(6143), - [anon_sym_DOT] = ACTIONS(6145), - [anon_sym_switch] = ACTIONS(6143), - [anon_sym_DOT_DOT] = ACTIONS(6143), - [anon_sym_and] = ACTIONS(6143), - [anon_sym_or] = ACTIONS(6145), - [anon_sym_AMP_AMP] = ACTIONS(6143), - [anon_sym_PIPE_PIPE] = ACTIONS(6143), - [sym_op_coalescing] = ACTIONS(6143), - [anon_sym_from] = ACTIONS(6143), - [anon_sym_into] = ACTIONS(6143), - [anon_sym_join] = ACTIONS(6143), - [anon_sym_let] = ACTIONS(6143), - [anon_sym_orderby] = ACTIONS(6143), - [anon_sym_ascending] = ACTIONS(6143), - [anon_sym_descending] = ACTIONS(6143), - [anon_sym_group] = ACTIONS(6143), - [anon_sym_select] = ACTIONS(6143), - [anon_sym_as] = ACTIONS(6145), - [anon_sym_is] = ACTIONS(6143), - [anon_sym_DASH_GT] = ACTIONS(6143), - [anon_sym_with] = ACTIONS(6143), + [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), @@ -668447,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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(2385), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -668477,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(7006), - [anon_sym_delegate] = ACTIONS(3709), + [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(7014), - [anon_sym_var] = ACTIONS(5500), + [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), @@ -668513,24 +660246,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5436] = { - [sym__name] = STATE(5081), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3672), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(3463), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), + [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), @@ -668540,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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(7513), - [anon_sym_ref] = ACTIONS(4576), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7416), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -668580,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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(2385), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -668607,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(7612), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7616), - [anon_sym_var] = ACTIONS(7491), - [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), + [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), @@ -668647,24 +660380,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5438] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(6381), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(6087), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -668678,15 +660411,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(3707), - [anon_sym_delegate] = ACTIONS(3709), + [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(3237), - [anon_sym_var] = ACTIONS(3239), - [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), @@ -668714,24 +660447,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5439] = { - [sym__name] = STATE(5029), - [sym_alias_qualified_name] = STATE(4839), - [sym__simple_name] = STATE(4839), - [sym_qualified_name] = STATE(4839), - [sym_generic_name] = STATE(4783), - [sym_type] = STATE(4737), - [sym_implicit_type] = STATE(4869), - [sym_array_type] = STATE(4842), - [sym__array_base_type] = STATE(7419), - [sym_nullable_type] = STATE(4849), - [sym_pointer_type] = STATE(4849), - [sym__pointer_base_type] = STATE(8044), - [sym_function_pointer_type] = STATE(4849), - [sym_ref_type] = STATE(4869), - [sym_scoped_type] = STATE(4869), - [sym_tuple_type] = STATE(4850), - [sym_identifier] = STATE(4736), - [sym__reserved_identifier] = STATE(4715), + [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), @@ -668741,34 +660474,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5439), [sym_preproc_define] = STATE(5439), [sym_preproc_undef] = STATE(5439), - [sym__identifier_token] = ACTIONS(4103), - [anon_sym_alias] = ACTIONS(4105), - [anon_sym_global] = ACTIONS(4105), - [anon_sym_LPAREN] = ACTIONS(7509), - [anon_sym_ref] = ACTIONS(4494), - [anon_sym_delegate] = ACTIONS(7319), - [anon_sym_file] = ACTIONS(4105), - [anon_sym_where] = ACTIONS(4105), - [anon_sym_notnull] = ACTIONS(4105), - [anon_sym_unmanaged] = ACTIONS(4105), - [anon_sym_scoped] = ACTIONS(7349), - [anon_sym_var] = ACTIONS(7323), - [sym_predefined_type] = ACTIONS(7325), - [anon_sym_yield] = ACTIONS(4105), - [anon_sym_when] = ACTIONS(4105), - [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), - [sym_grit_metavariable] = ACTIONS(4109), + [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), @@ -668781,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(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7992), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -668808,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(7612), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7616), - [anon_sym_var] = ACTIONS(7491), - [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), + [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), @@ -668848,24 +660581,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5441] = { - [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7990), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), [sym_preproc_region] = STATE(5441), [sym_preproc_endregion] = STATE(5441), [sym_preproc_line] = STATE(5441), @@ -668875,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(3207), - [anon_sym_alias] = ACTIONS(3211), - [anon_sym_global] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_ref] = ACTIONS(7612), - [anon_sym_delegate] = ACTIONS(3709), - [anon_sym_file] = ACTIONS(3211), - [anon_sym_where] = ACTIONS(3211), - [anon_sym_notnull] = ACTIONS(3211), - [anon_sym_unmanaged] = ACTIONS(3211), - [anon_sym_scoped] = ACTIONS(7616), - [anon_sym_var] = ACTIONS(7491), - [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_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), @@ -668916,23 +660649,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [5442] = { [sym__name] = STATE(5556), - [sym_alias_qualified_name] = STATE(5470), - [sym__simple_name] = STATE(5470), - [sym_qualified_name] = STATE(5470), - [sym_generic_name] = STATE(5473), - [sym_type] = STATE(7989), - [sym_implicit_type] = STATE(2358), - [sym_array_type] = STATE(5557), - [sym__array_base_type] = STATE(7639), - [sym_nullable_type] = STATE(5547), - [sym_pointer_type] = STATE(5547), - [sym__pointer_base_type] = STATE(7650), - [sym_function_pointer_type] = STATE(5547), - [sym_ref_type] = STATE(2358), - [sym_scoped_type] = STATE(2358), - [sym_tuple_type] = STATE(5549), - [sym_identifier] = STATE(5454), - [sym__reserved_identifier] = STATE(5132), + [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), @@ -668946,14 +660679,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(7612), - [anon_sym_delegate] = ACTIONS(3709), + [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(7616), - [anon_sym_var] = ACTIONS(7491), + [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), @@ -668982,6 +660715,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5443] = { + [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), @@ -668991,52 +660742,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5443), [sym_preproc_define] = STATE(5443), [sym_preproc_undef] = STATE(5443), - [anon_sym_LBRACK] = ACTIONS(7110), - [anon_sym_COMMA] = ACTIONS(7110), - [anon_sym_LPAREN] = ACTIONS(7110), - [anon_sym_LT] = ACTIONS(7112), - [anon_sym_GT] = ACTIONS(7112), - [anon_sym_where] = ACTIONS(7110), - [anon_sym_QMARK] = ACTIONS(7112), - [anon_sym_BANG] = ACTIONS(7112), - [anon_sym_PLUS_PLUS] = ACTIONS(7110), - [anon_sym_DASH_DASH] = ACTIONS(7110), - [anon_sym_PLUS] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(7112), - [anon_sym_STAR] = ACTIONS(7110), - [anon_sym_SLASH] = ACTIONS(7112), - [anon_sym_PERCENT] = ACTIONS(7110), - [anon_sym_CARET] = ACTIONS(7110), - [anon_sym_PIPE] = ACTIONS(7112), - [anon_sym_AMP] = ACTIONS(7112), - [anon_sym_LT_LT] = ACTIONS(7110), - [anon_sym_GT_GT] = ACTIONS(7112), - [anon_sym_GT_GT_GT] = ACTIONS(7110), - [anon_sym_EQ_EQ] = ACTIONS(7110), - [anon_sym_BANG_EQ] = ACTIONS(7110), - [anon_sym_GT_EQ] = ACTIONS(7110), - [anon_sym_LT_EQ] = ACTIONS(7110), - [anon_sym_DOT] = ACTIONS(7112), - [anon_sym_switch] = ACTIONS(7110), - [anon_sym_DOT_DOT] = ACTIONS(7110), - [anon_sym_and] = ACTIONS(7110), - [anon_sym_or] = ACTIONS(7112), - [anon_sym_AMP_AMP] = ACTIONS(7110), - [anon_sym_PIPE_PIPE] = ACTIONS(7110), - [sym_op_coalescing] = ACTIONS(7110), - [anon_sym_from] = ACTIONS(7110), - [anon_sym_into] = ACTIONS(7110), - [anon_sym_join] = ACTIONS(7110), - [anon_sym_let] = ACTIONS(7110), - [anon_sym_orderby] = ACTIONS(7110), - [anon_sym_ascending] = ACTIONS(7110), - [anon_sym_descending] = ACTIONS(7110), - [anon_sym_group] = ACTIONS(7110), - [anon_sym_select] = ACTIONS(7110), - [anon_sym_as] = ACTIONS(7112), - [anon_sym_is] = ACTIONS(7110), - [anon_sym_DASH_GT] = ACTIONS(7110), - [anon_sym_with] = ACTIONS(7110), + [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), @@ -669049,6 +660782,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5444] = { + [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(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), @@ -669058,52 +660809,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5444), [sym_preproc_define] = STATE(5444), [sym_preproc_undef] = STATE(5444), - [anon_sym_LBRACK] = ACTIONS(7114), - [anon_sym_COMMA] = ACTIONS(7114), - [anon_sym_LPAREN] = ACTIONS(7114), - [anon_sym_LT] = ACTIONS(7116), - [anon_sym_GT] = ACTIONS(7116), - [anon_sym_where] = ACTIONS(7114), - [anon_sym_QMARK] = ACTIONS(7116), - [anon_sym_BANG] = ACTIONS(7116), - [anon_sym_PLUS_PLUS] = ACTIONS(7114), - [anon_sym_DASH_DASH] = ACTIONS(7114), - [anon_sym_PLUS] = ACTIONS(7116), - [anon_sym_DASH] = ACTIONS(7116), - [anon_sym_STAR] = ACTIONS(7114), - [anon_sym_SLASH] = ACTIONS(7116), - [anon_sym_PERCENT] = ACTIONS(7114), - [anon_sym_CARET] = ACTIONS(7114), - [anon_sym_PIPE] = ACTIONS(7116), - [anon_sym_AMP] = ACTIONS(7116), - [anon_sym_LT_LT] = ACTIONS(7114), - [anon_sym_GT_GT] = ACTIONS(7116), - [anon_sym_GT_GT_GT] = ACTIONS(7114), - [anon_sym_EQ_EQ] = ACTIONS(7114), - [anon_sym_BANG_EQ] = ACTIONS(7114), - [anon_sym_GT_EQ] = ACTIONS(7114), - [anon_sym_LT_EQ] = ACTIONS(7114), - [anon_sym_DOT] = ACTIONS(7116), - [anon_sym_switch] = ACTIONS(7114), - [anon_sym_DOT_DOT] = ACTIONS(7114), - [anon_sym_and] = ACTIONS(7114), - [anon_sym_or] = ACTIONS(7116), - [anon_sym_AMP_AMP] = ACTIONS(7114), - [anon_sym_PIPE_PIPE] = ACTIONS(7114), - [sym_op_coalescing] = ACTIONS(7114), - [anon_sym_from] = ACTIONS(7114), - [anon_sym_into] = ACTIONS(7114), - [anon_sym_join] = ACTIONS(7114), - [anon_sym_let] = ACTIONS(7114), - [anon_sym_orderby] = ACTIONS(7114), - [anon_sym_ascending] = ACTIONS(7114), - [anon_sym_descending] = ACTIONS(7114), - [anon_sym_group] = ACTIONS(7114), - [anon_sym_select] = ACTIONS(7114), - [anon_sym_as] = ACTIONS(7116), - [anon_sym_is] = ACTIONS(7114), - [anon_sym_DASH_GT] = ACTIONS(7114), - [anon_sym_with] = ACTIONS(7114), + [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), @@ -669116,24 +660849,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5445] = { - [sym__name] = STATE(5081), - [sym_alias_qualified_name] = STATE(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3770), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(3463), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(4854), - [sym__reserved_identifier] = STATE(3393), + [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), @@ -669143,34 +660876,34 @@ 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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(7513), - [anon_sym_ref] = ACTIONS(4576), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7416), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -669183,6 +660916,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -669192,52 +660943,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5446), [sym_preproc_define] = STATE(5446), [sym_preproc_undef] = STATE(5446), - [anon_sym_LBRACK] = ACTIONS(7118), - [anon_sym_COMMA] = ACTIONS(7118), - [anon_sym_LPAREN] = ACTIONS(7118), - [anon_sym_LT] = ACTIONS(7120), - [anon_sym_GT] = ACTIONS(7120), - [anon_sym_where] = ACTIONS(7118), - [anon_sym_QMARK] = ACTIONS(7120), - [anon_sym_BANG] = ACTIONS(7120), - [anon_sym_PLUS_PLUS] = ACTIONS(7118), - [anon_sym_DASH_DASH] = ACTIONS(7118), - [anon_sym_PLUS] = ACTIONS(7120), - [anon_sym_DASH] = ACTIONS(7120), - [anon_sym_STAR] = ACTIONS(7118), - [anon_sym_SLASH] = ACTIONS(7120), - [anon_sym_PERCENT] = ACTIONS(7118), - [anon_sym_CARET] = ACTIONS(7118), - [anon_sym_PIPE] = ACTIONS(7120), - [anon_sym_AMP] = ACTIONS(7120), - [anon_sym_LT_LT] = ACTIONS(7118), - [anon_sym_GT_GT] = ACTIONS(7120), - [anon_sym_GT_GT_GT] = ACTIONS(7118), - [anon_sym_EQ_EQ] = ACTIONS(7118), - [anon_sym_BANG_EQ] = ACTIONS(7118), - [anon_sym_GT_EQ] = ACTIONS(7118), - [anon_sym_LT_EQ] = ACTIONS(7118), - [anon_sym_DOT] = ACTIONS(7120), - [anon_sym_switch] = ACTIONS(7118), - [anon_sym_DOT_DOT] = ACTIONS(7118), - [anon_sym_and] = ACTIONS(7118), - [anon_sym_or] = ACTIONS(7120), - [anon_sym_AMP_AMP] = ACTIONS(7118), - [anon_sym_PIPE_PIPE] = ACTIONS(7118), - [sym_op_coalescing] = ACTIONS(7118), - [anon_sym_from] = ACTIONS(7118), - [anon_sym_into] = ACTIONS(7118), - [anon_sym_join] = ACTIONS(7118), - [anon_sym_let] = ACTIONS(7118), - [anon_sym_orderby] = ACTIONS(7118), - [anon_sym_ascending] = ACTIONS(7118), - [anon_sym_descending] = ACTIONS(7118), - [anon_sym_group] = ACTIONS(7118), - [anon_sym_select] = ACTIONS(7118), - [anon_sym_as] = ACTIONS(7120), - [anon_sym_is] = ACTIONS(7118), - [anon_sym_DASH_GT] = ACTIONS(7118), - [anon_sym_with] = ACTIONS(7118), + [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), @@ -669250,6 +660983,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5447] = { + [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), @@ -669259,52 +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), - [anon_sym_LBRACK] = ACTIONS(7122), - [anon_sym_COMMA] = ACTIONS(7122), - [anon_sym_LPAREN] = ACTIONS(7122), - [anon_sym_LT] = ACTIONS(7124), - [anon_sym_GT] = ACTIONS(7124), - [anon_sym_where] = ACTIONS(7122), - [anon_sym_QMARK] = ACTIONS(7124), - [anon_sym_BANG] = ACTIONS(7124), - [anon_sym_PLUS_PLUS] = ACTIONS(7122), - [anon_sym_DASH_DASH] = ACTIONS(7122), - [anon_sym_PLUS] = ACTIONS(7124), - [anon_sym_DASH] = ACTIONS(7124), - [anon_sym_STAR] = ACTIONS(7122), - [anon_sym_SLASH] = ACTIONS(7124), - [anon_sym_PERCENT] = ACTIONS(7122), - [anon_sym_CARET] = ACTIONS(7122), - [anon_sym_PIPE] = ACTIONS(7124), - [anon_sym_AMP] = ACTIONS(7124), - [anon_sym_LT_LT] = ACTIONS(7122), - [anon_sym_GT_GT] = ACTIONS(7124), - [anon_sym_GT_GT_GT] = ACTIONS(7122), - [anon_sym_EQ_EQ] = ACTIONS(7122), - [anon_sym_BANG_EQ] = ACTIONS(7122), - [anon_sym_GT_EQ] = ACTIONS(7122), - [anon_sym_LT_EQ] = ACTIONS(7122), - [anon_sym_DOT] = ACTIONS(7124), - [anon_sym_switch] = ACTIONS(7122), - [anon_sym_DOT_DOT] = ACTIONS(7122), - [anon_sym_and] = ACTIONS(7122), - [anon_sym_or] = ACTIONS(7124), - [anon_sym_AMP_AMP] = ACTIONS(7122), - [anon_sym_PIPE_PIPE] = ACTIONS(7122), - [sym_op_coalescing] = ACTIONS(7122), - [anon_sym_from] = ACTIONS(7122), - [anon_sym_into] = ACTIONS(7122), - [anon_sym_join] = ACTIONS(7122), - [anon_sym_let] = ACTIONS(7122), - [anon_sym_orderby] = ACTIONS(7122), - [anon_sym_ascending] = ACTIONS(7122), - [anon_sym_descending] = ACTIONS(7122), - [anon_sym_group] = ACTIONS(7122), - [anon_sym_select] = ACTIONS(7122), - [anon_sym_as] = ACTIONS(7124), - [anon_sym_is] = ACTIONS(7122), - [anon_sym_DASH_GT] = ACTIONS(7122), - [anon_sym_with] = ACTIONS(7122), + [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), @@ -669317,6 +661050,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5448] = { + [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), @@ -669326,52 +661077,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_warning] = STATE(5448), [sym_preproc_define] = STATE(5448), [sym_preproc_undef] = STATE(5448), - [anon_sym_LBRACK] = ACTIONS(7146), - [anon_sym_COMMA] = ACTIONS(7146), - [anon_sym_LPAREN] = ACTIONS(7146), - [anon_sym_LT] = ACTIONS(7148), - [anon_sym_GT] = ACTIONS(7148), - [anon_sym_where] = ACTIONS(7146), - [anon_sym_QMARK] = ACTIONS(7148), - [anon_sym_BANG] = ACTIONS(7148), - [anon_sym_PLUS_PLUS] = ACTIONS(7146), - [anon_sym_DASH_DASH] = ACTIONS(7146), - [anon_sym_PLUS] = ACTIONS(7148), - [anon_sym_DASH] = ACTIONS(7148), - [anon_sym_STAR] = ACTIONS(7146), - [anon_sym_SLASH] = ACTIONS(7148), - [anon_sym_PERCENT] = ACTIONS(7146), - [anon_sym_CARET] = ACTIONS(7146), - [anon_sym_PIPE] = ACTIONS(7148), - [anon_sym_AMP] = ACTIONS(7148), - [anon_sym_LT_LT] = ACTIONS(7146), - [anon_sym_GT_GT] = ACTIONS(7148), - [anon_sym_GT_GT_GT] = ACTIONS(7146), - [anon_sym_EQ_EQ] = ACTIONS(7146), - [anon_sym_BANG_EQ] = ACTIONS(7146), - [anon_sym_GT_EQ] = ACTIONS(7146), - [anon_sym_LT_EQ] = ACTIONS(7146), - [anon_sym_DOT] = ACTIONS(7148), - [anon_sym_switch] = ACTIONS(7146), - [anon_sym_DOT_DOT] = ACTIONS(7146), - [anon_sym_and] = ACTIONS(7146), - [anon_sym_or] = ACTIONS(7148), - [anon_sym_AMP_AMP] = ACTIONS(7146), - [anon_sym_PIPE_PIPE] = ACTIONS(7146), - [sym_op_coalescing] = ACTIONS(7146), - [anon_sym_from] = ACTIONS(7146), - [anon_sym_into] = ACTIONS(7146), - [anon_sym_join] = ACTIONS(7146), - [anon_sym_let] = ACTIONS(7146), - [anon_sym_orderby] = ACTIONS(7146), - [anon_sym_ascending] = ACTIONS(7146), - [anon_sym_descending] = ACTIONS(7146), - [anon_sym_group] = ACTIONS(7146), - [anon_sym_select] = ACTIONS(7146), - [anon_sym_as] = ACTIONS(7148), - [anon_sym_is] = ACTIONS(7146), - [anon_sym_DASH_GT] = ACTIONS(7146), - [anon_sym_with] = ACTIONS(7146), + [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), @@ -669384,6 +661117,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5449] = { + [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), @@ -669393,52 +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), - [anon_sym_LBRACK] = ACTIONS(6147), - [anon_sym_COMMA] = ACTIONS(6147), - [anon_sym_LPAREN] = ACTIONS(6147), - [anon_sym_LT] = ACTIONS(6149), - [anon_sym_GT] = ACTIONS(6149), - [anon_sym_where] = ACTIONS(6147), - [anon_sym_QMARK] = ACTIONS(6149), - [anon_sym_BANG] = ACTIONS(6149), - [anon_sym_PLUS_PLUS] = ACTIONS(6147), - [anon_sym_DASH_DASH] = ACTIONS(6147), - [anon_sym_PLUS] = ACTIONS(6149), - [anon_sym_DASH] = ACTIONS(6149), - [anon_sym_STAR] = ACTIONS(6147), - [anon_sym_SLASH] = ACTIONS(6149), - [anon_sym_PERCENT] = ACTIONS(6147), - [anon_sym_CARET] = ACTIONS(6147), - [anon_sym_PIPE] = ACTIONS(6149), - [anon_sym_AMP] = ACTIONS(6149), - [anon_sym_LT_LT] = ACTIONS(6147), - [anon_sym_GT_GT] = ACTIONS(6149), - [anon_sym_GT_GT_GT] = ACTIONS(6147), - [anon_sym_EQ_EQ] = ACTIONS(6147), - [anon_sym_BANG_EQ] = ACTIONS(6147), - [anon_sym_GT_EQ] = ACTIONS(6147), - [anon_sym_LT_EQ] = ACTIONS(6147), - [anon_sym_DOT] = ACTIONS(6149), - [anon_sym_switch] = ACTIONS(6147), - [anon_sym_DOT_DOT] = ACTIONS(6147), - [anon_sym_and] = ACTIONS(6147), - [anon_sym_or] = ACTIONS(6149), - [anon_sym_AMP_AMP] = ACTIONS(6147), - [anon_sym_PIPE_PIPE] = ACTIONS(6147), - [sym_op_coalescing] = ACTIONS(6147), - [anon_sym_from] = ACTIONS(6147), - [anon_sym_into] = ACTIONS(6147), - [anon_sym_join] = ACTIONS(6147), - [anon_sym_let] = ACTIONS(6147), - [anon_sym_orderby] = ACTIONS(6147), - [anon_sym_ascending] = ACTIONS(6147), - [anon_sym_descending] = ACTIONS(6147), - [anon_sym_group] = ACTIONS(6147), - [anon_sym_select] = ACTIONS(6147), - [anon_sym_as] = ACTIONS(6149), - [anon_sym_is] = ACTIONS(6147), - [anon_sym_DASH_GT] = ACTIONS(6147), - [anon_sym_with] = ACTIONS(6147), + [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), @@ -669451,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(3465), - [sym__simple_name] = STATE(3465), - [sym_qualified_name] = STATE(3465), - [sym_generic_name] = STATE(3618), - [sym_type] = STATE(3672), - [sym_implicit_type] = STATE(3464), - [sym_array_type] = STATE(3463), - [sym__array_base_type] = STATE(7449), - [sym_nullable_type] = STATE(3738), - [sym_pointer_type] = STATE(3738), - [sym__pointer_base_type] = STATE(8013), - [sym_function_pointer_type] = STATE(3738), - [sym_ref_type] = STATE(3464), - [sym_scoped_type] = STATE(3464), - [sym_tuple_type] = STATE(3479), - [sym_identifier] = STATE(5284), - [sym__reserved_identifier] = STATE(3393), + [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(5450), [sym_preproc_endregion] = STATE(5450), [sym_preproc_line] = STATE(5450), @@ -669478,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(4149), - [anon_sym_alias] = ACTIONS(4151), - [anon_sym_global] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(7513), - [anon_sym_ref] = ACTIONS(4518), - [anon_sym_delegate] = ACTIONS(7274), - [anon_sym_file] = ACTIONS(4151), - [anon_sym_where] = ACTIONS(4151), - [anon_sym_notnull] = ACTIONS(4151), - [anon_sym_unmanaged] = ACTIONS(4151), - [anon_sym_scoped] = ACTIONS(7276), - [anon_sym_var] = ACTIONS(7278), - [sym_predefined_type] = ACTIONS(7280), - [anon_sym_yield] = ACTIONS(4151), - [anon_sym_when] = ACTIONS(4151), - [anon_sym_from] = ACTIONS(4151), - [anon_sym_into] = ACTIONS(4151), - [anon_sym_join] = ACTIONS(4151), - [anon_sym_on] = ACTIONS(4151), - [anon_sym_equals] = ACTIONS(4151), - [anon_sym_let] = ACTIONS(4151), - [anon_sym_orderby] = ACTIONS(4151), - [anon_sym_ascending] = ACTIONS(4151), - [anon_sym_descending] = ACTIONS(4151), - [anon_sym_group] = ACTIONS(4151), - [anon_sym_by] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [sym_grit_metavariable] = ACTIONS(4158), + [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), @@ -669518,6 +661251,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(21), }, [5451] = { + [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), @@ -669527,52 +661278,168 @@ 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), - [anon_sym_LBRACK] = ACTIONS(7150), - [anon_sym_COMMA] = ACTIONS(7150), - [anon_sym_LPAREN] = ACTIONS(7150), - [anon_sym_LT] = ACTIONS(7152), - [anon_sym_GT] = ACTIONS(7152), - [anon_sym_where] = ACTIONS(7150), - [anon_sym_QMARK] = ACTIONS(7152), - [anon_sym_BANG] = ACTIONS(7152), - [anon_sym_PLUS_PLUS] = ACTIONS(7150), - [anon_sym_DASH_DASH] = ACTIONS(7150), - [anon_sym_PLUS] = ACTIONS(7152), - [anon_sym_DASH] = ACTIONS(7152), - [anon_sym_STAR] = ACTIONS(7150), - [anon_sym_SLASH] = ACTIONS(7152), - [anon_sym_PERCENT] = ACTIONS(7150), - [anon_sym_CARET] = ACTIONS(7150), - [anon_sym_PIPE] = ACTIONS(7152), - [anon_sym_AMP] = ACTIONS(7152), - [anon_sym_LT_LT] = ACTIONS(7150), - [anon_sym_GT_GT] = ACTIONS(7152), - [anon_sym_GT_GT_GT] = ACTIONS(7150), - [anon_sym_EQ_EQ] = ACTIONS(7150), - [anon_sym_BANG_EQ] = ACTIONS(7150), - [anon_sym_GT_EQ] = ACTIONS(7150), - [anon_sym_LT_EQ] = ACTIONS(7150), - [anon_sym_DOT] = ACTIONS(7152), - [anon_sym_switch] = ACTIONS(7150), - [anon_sym_DOT_DOT] = ACTIONS(7150), - [anon_sym_and] = ACTIONS(7150), - [anon_sym_or] = ACTIONS(7152), - [anon_sym_AMP_AMP] = ACTIONS(7150), - [anon_sym_PIPE_PIPE] = ACTIONS(7150), - [sym_op_coalescing] = ACTIONS(7150), - [anon_sym_from] = ACTIONS(7150), - [anon_sym_into] = ACTIONS(7150), - [anon_sym_join] = ACTIONS(7150), - [anon_sym_let] = ACTIONS(7150), - [anon_sym_orderby] = ACTIONS(7150), - [anon_sym_ascending] = ACTIONS(7150), - [anon_sym_descending] = ACTIONS(7150), - [anon_sym_group] = ACTIONS(7150), - [anon_sym_select] = ACTIONS(7150), - [anon_sym_as] = ACTIONS(7152), - [anon_sym_is] = ACTIONS(7150), - [anon_sym_DASH_GT] = ACTIONS(7150), - [anon_sym_with] = ACTIONS(7150), + [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), + }, + [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(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), + [aux_sym_preproc_pragma_token1] = ACTIONS(9), + [aux_sym_preproc_nullable_token1] = ACTIONS(11), + [aux_sym_preproc_error_token1] = ACTIONS(13), + [aux_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(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), @@ -669587,7 +661454,799 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 15, + [0] = 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(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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + 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, + 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(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_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, @@ -669608,11 +662267,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7685), 1, + ACTIONS(8161), 1, anon_sym_into, - STATE(5460), 1, - aux_sym__query_body_repeat2, - STATE(5452), 9, + STATE(5454), 1, + aux_sym_query_body_repeat2, + STATE(5464), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669622,52 +662281,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 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_as, - ACTIONS(7572), 31, + 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_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_ascending, - anon_sym_descending, - 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, - [95] = 14, + 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, @@ -669688,9 +662347,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7687), 1, - anon_sym_and, - STATE(5453), 9, + 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, @@ -669700,53 +662365,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 13, + ACTIONS(5504), 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, - anon_sym_as, - ACTIONS(7679), 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(5500), 29, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_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_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, + anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [188] = 16, + [1128] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669767,13 +662429,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3960), 1, - anon_sym_COLON_COLON, - ACTIONS(7683), 1, - anon_sym_LT, - STATE(5462), 1, - sym_type_argument_list, - STATE(5454), 9, + STATE(5466), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669783,22 +662439,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3953), 14, + 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_STAR, anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_STAR, + anon_sym_DASH_GT, sym_grit_metavariable, - ACTIONS(3951), 28, + ACTIONS(3980), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -669827,7 +662486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [285] = 14, + [1219] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -669848,9 +662507,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7689), 1, + ACTIONS(8161), 1, anon_sym_into, - STATE(5455), 10, + STATE(5454), 1, + aux_sym_query_body_repeat2, + STATE(5467), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669860,53 +662521,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(7555), 12, + 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, - anon_sym_as, - ACTIONS(7553), 31, + 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_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_ascending, - anon_sym_descending, - 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, - [378] = 15, + 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, @@ -669927,11 +662587,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7685), 1, - anon_sym_into, - STATE(5455), 1, - aux_sym__query_body_repeat2, - STATE(5456), 9, + STATE(5468), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -669941,52 +662597,54 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 12, + 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_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, anon_sym_DOT, - anon_sym_as, - ACTIONS(7547), 31, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_where, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, + 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, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [473] = 13, + sym__identifier_token, + [1405] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670007,7 +662665,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5457), 9, + STATE(5469), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670017,7 +662675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3970), 17, + ACTIONS(3972), 17, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COLON, @@ -670030,12 +662688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_STAR, anon_sym_DASH_GT, sym_grit_metavariable, - ACTIONS(3968), 28, + ACTIONS(3970), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -670064,7 +662722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [564] = 13, + [1496] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670085,7 +662743,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5458), 9, + 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, @@ -670095,40 +662777,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3978), 17, + ACTIONS(3694), 11, 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(3976), 28, + anon_sym_COLON_COLON, + anon_sym_STAR, + ACTIONS(29), 21, anon_sym_alias, anon_sym_global, anon_sym_file, - anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -670141,8 +662811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [655] = 15, + [1609] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670163,11 +662832,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7685), 1, + ACTIONS(8163), 1, anon_sym_into, - STATE(5456), 1, - aux_sym__query_body_repeat2, - STATE(5459), 9, + STATE(5477), 1, + aux_sym_query_body_repeat2, + STATE(5471), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670177,52 +662846,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 12, + ACTIONS(7920), 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, - anon_sym_as, - ACTIONS(7562), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 30, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_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_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, + anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [750] = 15, + [1703] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670243,11 +662911,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7685), 1, - anon_sym_into, - STATE(5455), 1, - aux_sym__query_body_repeat2, - STATE(5460), 9, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + STATE(5472), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670257,52 +662923,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 12, + ACTIONS(6743), 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, - anon_sym_as, - ACTIONS(7568), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4152), 31, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, + anon_sym_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_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, + anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [845] = 15, + [1795] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670323,11 +662989,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7687), 1, + ACTIONS(8165), 1, anon_sym_and, - ACTIONS(7692), 1, + ACTIONS(8167), 1, anon_sym_or, - STATE(5461), 9, + STATE(5473), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670337,52 +663003,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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_as, - ACTIONS(7016), 31, + 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_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_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, 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_ascending, - anon_sym_descending, - 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, - [940] = 13, + 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, @@ -670403,7 +663068,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5462), 9, + ACTIONS(8165), 1, + anon_sym_and, + STATE(5474), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670413,40 +663080,128 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3982), 17, + 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_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_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(3980), 28, + 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_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, @@ -670459,8 +663214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [1031] = 15, + [2095] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670481,11 +663235,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7687), 1, + ACTIONS(8165), 1, anon_sym_and, - ACTIONS(7692), 1, + ACTIONS(8167), 1, anon_sym_or, - STATE(5463), 9, + STATE(5476), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670495,52 +663249,129 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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_as, - ACTIONS(7667), 31, + 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_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_switch, + 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, + 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_ascending, - anon_sym_descending, anon_sym_group, anon_sym_select, + anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [1126] = 13, + [2281] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670561,7 +663392,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5464), 9, + ACTIONS(8172), 1, + anon_sym_DOT, + STATE(5478), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670571,54 +663404,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3964), 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(4359), 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(3962), 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(4361), 32, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, 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, - [1217] = 24, + 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, @@ -670639,31 +663470,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(7006), 1, - anon_sym_ref, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2366), 1, - sym__scoped_base_type, - STATE(2386), 1, - sym_ref_type, - STATE(5575), 1, - sym_identifier, - STATE(5810), 1, - sym__name, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5465), 9, + STATE(5479), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670673,28 +663480,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3700), 11, + 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_STAR, anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_COLON_COLON, - ACTIONS(29), 21, + 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, @@ -670707,7 +663525,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [1330] = 15, + sym__identifier_token, + [2463] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670728,11 +663547,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7694), 1, + ACTIONS(8163), 1, anon_sym_into, - STATE(5476), 1, - aux_sym__query_body_repeat2, - STATE(5466), 9, + STATE(5471), 1, + aux_sym_query_body_repeat2, + STATE(5480), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670742,52 +663561,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 11, + ACTIONS(7909), 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(7547), 32, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 30, 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_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, - [1425] = 13, + [2557] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670808,7 +663626,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5467), 9, + 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, @@ -670818,54 +663644,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4460), 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(4329), 10, 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(4458), 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(4331), 30, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, + anon_sym_switch, + anon_sym_DOT_DOT, + anon_sym_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, - [1516] = 15, + 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, @@ -670886,11 +663707,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7694), 1, + ACTIONS(8163), 1, anon_sym_into, - STATE(5476), 1, - aux_sym__query_body_repeat2, - STATE(5468), 9, + STATE(5477), 1, + aux_sym_query_body_repeat2, + STATE(5482), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670900,52 +663721,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 11, + ACTIONS(7905), 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(7568), 32, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 30, 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_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, - [1611] = 15, + [2749] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -670966,11 +663786,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7694), 1, + ACTIONS(8163), 1, anon_sym_into, - STATE(5466), 1, - aux_sym__query_body_repeat2, - STATE(5469), 9, + STATE(5482), 1, + aux_sym_query_body_repeat2, + STATE(5483), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -670980,52 +663800,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 11, + ACTIONS(7899), 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(7562), 32, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 30, 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_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, - [1706] = 13, + [2843] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671046,7 +663865,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5470), 9, + 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, @@ -671056,40 +663897,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3997), 17, + ACTIONS(3694), 10, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LT, - anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_DASH_GT, - sym_grit_metavariable, - ACTIONS(3986), 28, + 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_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, @@ -671102,8 +663931,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [1797] = 15, + [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, @@ -671124,11 +664105,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(5468), 1, - aux_sym__query_body_repeat2, - STATE(5471), 9, + STATE(5487), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671138,52 +664115,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 11, + ACTIONS(7022), 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(7572), 32, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7020), 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, - [1892] = 17, + [3222] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671204,15 +664181,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5970), 1, - anon_sym_LBRACK, - ACTIONS(7199), 1, - anon_sym_LBRACE, - ACTIONS(7202), 1, - anon_sym_QMARK, - STATE(3780), 1, - sym_initializer_expression, - STATE(5472), 9, + STATE(5488), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671222,38 +664191,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5980), 11, + ACTIONS(6883), 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(5974), 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(6881), 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, @@ -671265,7 +664236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [1991] = 13, + [3311] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671286,7 +664257,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5473), 9, + STATE(5489), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671296,54 +664267,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(6743), 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(4152), 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, - [2082] = 17, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [3400] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671364,15 +664333,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, - ACTIONS(4926), 1, - anon_sym_LPAREN, - STATE(3685), 1, - sym_argument_list, - STATE(4111), 1, - sym_initializer_expression, - STATE(5474), 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, @@ -671382,40 +664347,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 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(5682), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 30, anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_switch, anon_sym_DOT_DOT, - anon_sym_and, + anon_sym_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, @@ -671425,7 +664390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [2181] = 13, + [3493] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671446,7 +664411,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5475), 9, + STATE(5491), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671456,54 +664421,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3974), 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(3972), 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, - [2272] = 14, + 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, @@ -671524,9 +664487,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(5476), 10, + STATE(5498), 1, + aux_sym_query_body_repeat2, + STATE(5492), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671536,20 +664501,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(7555), 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(7553), 32, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -671557,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, @@ -671582,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, - [2365] = 15, + [3675] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671603,11 +664565,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7699), 1, - anon_sym_and, - ACTIONS(7701), 1, - anon_sym_or, - STATE(5477), 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, @@ -671617,19 +664579,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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(7016), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -671637,23 +664599,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_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, @@ -671661,7 +664622,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [2459] = 15, + [3768] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671682,11 +664643,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7703), 1, - anon_sym_into, - STATE(5488), 1, - aux_sym__query_body_repeat2, - STATE(5478), 9, + STATE(5494), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671696,41 +664653,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 12, + ACTIONS(7044), 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(7568), 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(7042), 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, @@ -671740,7 +664698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [2553] = 15, + [3857] = 30, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671761,11 +664719,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7703), 1, - anon_sym_into, - STATE(5478), 1, - aux_sym__query_body_repeat2, - STATE(5479), 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, @@ -671775,51 +664769,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 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(7572), 30, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(3211), 21, + 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_yield, + anon_sym_when, anon_sym_from, + anon_sym_into, anon_sym_join, + anon_sym_on, + 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, - [2647] = 15, + [3980] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671840,11 +664812,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7699), 1, - anon_sym_and, - ACTIONS(7701), 1, - anon_sym_or, - STATE(5480), 9, + ACTIONS(8178), 1, + anon_sym_into, + STATE(5492), 1, + aux_sym_query_body_repeat2, + STATE(5496), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671854,19 +664826,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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(7667), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -671874,23 +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_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, @@ -671898,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, - [2741] = 14, + [4073] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671919,9 +664890,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7699), 1, + ACTIONS(8174), 1, anon_sym_and, - STATE(5481), 9, + ACTIONS(8176), 1, + anon_sym_or, + STATE(5497), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -671931,52 +664904,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 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(7679), 32, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 30, 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_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_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, - [2833] = 14, + [4166] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -671997,9 +664968,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_EQ_GT, - STATE(5482), 9, + ACTIONS(8182), 1, + anon_sym_into, + STATE(5498), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672009,52 +664980,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6996), 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(4163), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 30, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_where, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_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_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, 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, - [2925] = 25, + 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, @@ -672075,43 +665045,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(3702), 1, - anon_sym_COLON, - ACTIONS(3894), 1, - anon_sym_where, - ACTIONS(7501), 1, - anon_sym_ref, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2366), 1, - sym__scoped_base_type, - STATE(2386), 1, - sym_ref_type, - STATE(6634), 1, - sym_identifier, - STATE(6681), 1, - sym__name, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3700), 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(5483), 9, + STATE(5499), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672121,29 +665055,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 21, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, + ACTIONS(6919), 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(6917), 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, - [3039] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [4346] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672164,7 +665121,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5484), 9, + STATE(5500), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672174,53 +665131,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4021), 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(6845), 12, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, - anon_sym_EQ_GT, - sym_grit_metavariable, - ACTIONS(4014), 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, - [3129] = 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, @@ -672241,11 +665197,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7703), 1, - anon_sym_into, - STATE(5488), 1, - aux_sym__query_body_repeat2, - STATE(5485), 9, + STATE(5501), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672255,41 +665207,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 12, + ACTIONS(6825), 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(7547), 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(6823), 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, @@ -672299,7 +665252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [3223] = 14, + [4524] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672320,9 +665273,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7705), 1, - anon_sym_DOT, - STATE(5486), 9, + STATE(5502), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672332,40 +665283,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4361), 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_or, - ACTIONS(4363), 32, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6925), 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, @@ -672377,7 +665328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [3315] = 17, + [4613] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672398,15 +665349,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4397), 1, - anon_sym_STAR, - ACTIONS(5806), 1, - anon_sym_QMARK, - ACTIONS(7705), 1, - anon_sym_DOT, - STATE(5487), 9, + STATE(5503), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672416,37 +665359,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 10, + ACTIONS(6819), 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(4318), 30, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6817), 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, @@ -672458,7 +665404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [3413] = 14, + [4702] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672479,9 +665425,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(5504), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672491,42 +665435,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(7555), 12, + ACTIONS(7032), 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(7553), 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(7030), 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, @@ -672536,7 +665480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [3505] = 23, + [4791] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672557,29 +665501,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(7606), 1, - anon_sym_ref, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2366), 1, - sym__scoped_base_type, - STATE(2386), 1, - sym_ref_type, - STATE(5575), 1, - sym_identifier, - STATE(5810), 1, - sym__name, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5489), 9, + STATE(5505), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672589,41 +665511,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3700), 10, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(6923), 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(6921), 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, - [3615] = 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, @@ -672644,11 +665577,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7703), 1, - anon_sym_into, - STATE(5485), 1, - aux_sym__query_body_repeat2, - STATE(5490), 9, + STATE(5506), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672658,41 +665587,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 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(7562), 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, @@ -672702,7 +665632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [3709] = 15, + [4969] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672723,19 +665653,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5011), 1, - anon_sym_or, - ACTIONS(5003), 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(5491), 9, + 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, @@ -672745,42 +665683,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7023), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7020), 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, - [3802] = 15, + 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, + [5062] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672801,19 +665731,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5011), 1, - anon_sym_or, - ACTIONS(5003), 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(5492), 9, + STATE(5508), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672823,42 +665741,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 11, + ACTIONS(6829), 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(7038), 22, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6827), 31, anon_sym_LBRACK, anon_sym_LPAREN, - 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, - [3895] = 13, + [5151] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672879,7 +665807,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5493), 9, + STATE(5509), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672889,40 +665817,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7086), 12, + ACTIONS(6971), 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(7084), 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(6969), 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, @@ -672934,7 +665862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [3984] = 15, + [5240] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -672955,11 +665883,7 @@ 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(5499), 1, - aux_sym__query_body_repeat2, - STATE(5494), 9, + STATE(5510), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -672969,50 +665893,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 11, + ACTIONS(6877), 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(7572), 30, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6875), 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, - [4077] = 13, + [5329] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673033,7 +665959,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5495), 9, + STATE(5511), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673043,40 +665969,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7090), 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(7088), 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(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, @@ -673088,7 +666014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [4166] = 13, + [5418] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673109,7 +666035,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5496), 9, + STATE(5512), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673119,40 +666045,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7094), 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(7092), 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(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, @@ -673164,7 +666090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [4255] = 13, + [5507] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673185,7 +666111,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5497), 9, + STATE(5513), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673195,40 +666121,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7094), 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(7092), 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(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, @@ -673240,7 +666166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [4344] = 13, + [5596] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673261,7 +666187,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5498), 9, + STATE(5514), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673271,40 +666197,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7098), 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(7096), 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, @@ -673316,7 +666242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [4433] = 15, + [5685] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673337,11 +666263,7 @@ 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(5499), 9, + STATE(5515), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673351,50 +666273,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 11, + ACTIONS(6837), 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(7568), 30, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6835), 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, - [4526] = 13, + [5774] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673415,7 +666339,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5500), 9, + STATE(5516), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673425,40 +666349,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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(7016), 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(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, @@ -673470,7 +666394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [4615] = 15, + [5863] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673491,11 +666415,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7710), 1, + ACTIONS(8178), 1, anon_sym_into, - STATE(5514), 1, - aux_sym__query_body_repeat2, - STATE(5501), 9, + STATE(5498), 1, + aux_sym_query_body_repeat2, + STATE(5517), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673505,19 +666429,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 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(7562), 30, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 30, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_COMMA, @@ -673525,22 +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_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, @@ -673548,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, - [4708] = 13, + [5956] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673569,7 +666493,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5502), 9, + STATE(5518), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673579,52 +666503,52 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7140), 12, + 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_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(7138), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_where, - 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, + 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_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, - [4797] = 13, + sym__identifier_token, + [6045] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673645,50 +666569,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5503), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7112), 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, + ACTIONS(5076), 1, anon_sym_or, - ACTIONS(7110), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(5068), 9, 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_from, anon_sym_into, anon_sym_join, @@ -673696,36 +666581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [4886] = 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(7712), 1, - anon_sym_and, - ACTIONS(7714), 1, - anon_sym_or, - STATE(5504), 9, + STATE(5519), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673735,50 +666591,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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(7667), 30, + 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_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, - [4979] = 13, + [6138] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673799,7 +666647,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5505), 9, + STATE(5520), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673809,40 +666657,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7128), 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(7126), 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, @@ -673854,7 +666702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [5068] = 13, + [6227] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673875,7 +666723,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5506), 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(5521), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -673885,52 +666745,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7132), 12, + 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, - anon_sym_or, - ACTIONS(7130), 31, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6953), 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, - [5157] = 13, + [6320] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -673951,7 +666801,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5507), 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, @@ -673961,42 +666815,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7116), 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(7114), 31, + 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_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, @@ -674006,7 +666857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [5246] = 15, + [6412] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674027,11 +666878,7 @@ 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(5508), 9, + STATE(5523), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674041,50 +666888,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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(7016), 30, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_EQ_GT, + sym_grit_metavariable, + ACTIONS(4401), 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_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, + anon_sym_on, + anon_sym_equals, anon_sym_let, anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, anon_sym_group, + anon_sym_by, anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [5339] = 13, + sym__identifier_token, + [6500] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674105,7 +666953,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5509), 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, @@ -674115,52 +666994,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7120), 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(7118), 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, - [5428] = 13, + [6608] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674181,7 +667038,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5510), 9, + STATE(5525), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674191,52 +667048,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7120), 12, + ACTIONS(4393), 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(7118), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_EQ_GT, + sym_grit_metavariable, + ACTIONS(4391), 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, - [5517] = 13, + sym__identifier_token, + [6696] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674257,7 +667113,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5511), 9, + ACTIONS(8187), 1, + anon_sym_and, + STATE(5526), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674267,42 +667125,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7124), 12, + ACTIONS(8041), 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(7122), 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(8039), 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, @@ -674312,7 +667168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [5606] = 13, + [6786] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674333,7 +667189,11 @@ 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, + STATE(5527), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674343,52 +667203,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7148), 12, + 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_QMARK, - anon_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(7146), 31, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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, - [5695] = 13, + sym__identifier_token, + [6878] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674409,7 +667266,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5513), 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, @@ -674419,42 +667280,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7152), 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(7150), 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, @@ -674464,7 +667322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [5784] = 15, + [6970] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674485,11 +667343,11 @@ 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(5514), 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, @@ -674499,50 +667357,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 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(7547), 30, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 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, - [5877] = 13, + [7062] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674563,7 +667420,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5515), 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, @@ -674573,52 +667466,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7136), 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(7134), 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, - [5966] = 30, + [7180] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674643,43 +667514,39 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(3709), 1, + ACTIONS(3703), 1, anon_sym_delegate, ACTIONS(4080), 1, sym_grit_metavariable, - ACTIONS(5500), 1, - anon_sym_var, - ACTIONS(7716), 1, + ACTIONS(8197), 1, sym_predefined_type, - STATE(5132), 1, + ACTIONS(8199), 1, + anon_sym_LBRACK, + STATE(4993), 1, + sym_array_type, + STATE(5149), 1, sym__reserved_identifier, - STATE(5454), 1, + STATE(5462), 1, sym_identifier, - STATE(5473), 1, + STATE(5468), 1, sym_generic_name, - STATE(6834), 1, + STATE(6961), 1, sym__name, - STATE(6987), 1, + STATE(7240), 1, sym_tuple_type, - STATE(7221), 1, - sym_array_type, - STATE(7639), 1, + STATE(7471), 1, sym__array_base_type, - STATE(7650), 1, + STATE(7930), 1, sym__pointer_base_type, - STATE(7754), 1, - sym_implicit_type, - STATE(7757), 1, - sym__ref_base_type, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(7212), 3, + STATE(7612), 3, sym_nullable_type, sym_pointer_type, sym_function_pointer_type, - STATE(5516), 9, + STATE(5531), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674689,7 +667556,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, @@ -674697,6 +667564,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, @@ -674711,7 +667579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [6089] = 13, + [7298] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674732,7 +667600,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5517), 9, + STATE(5532), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674742,52 +667610,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6996), 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(4163), 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, - [6178] = 13, + sym__identifier_token, + [7386] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674808,7 +667675,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5518), 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, @@ -674818,52 +667695,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7076), 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(7074), 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, - [6267] = 14, + [7478] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674884,9 +667752,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7718), 1, + ACTIONS(8185), 1, anon_sym_into, - STATE(5519), 10, + STATE(5538), 1, + aux_sym_query_body_repeat2, + STATE(5534), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -674896,51 +667766,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(7555), 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(7553), 30, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 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, - [6358] = 13, + [7570] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -674961,7 +667829,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5520), 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, @@ -674971,52 +667847,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7072), 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(7070), 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, - [6447] = 13, + [7666] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675037,7 +667908,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5521), 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, @@ -675047,52 +667954,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7144), 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(7142), 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, - [6536] = 13, + [7784] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675113,7 +667998,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5522), 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, @@ -675123,52 +668014,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7144), 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(7142), 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, - [6625] = 13, + [7878] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675189,7 +668076,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5523), 9, + ACTIONS(8208), 1, + anon_sym_into, + STATE(5538), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675199,42 +668088,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7076), 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(7074), 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, @@ -675244,7 +668131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [6714] = 13, + [7968] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675265,7 +668152,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5524), 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(8211), 1, + anon_sym_LBRACK, + STATE(3078), 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(7544), 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(5539), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675275,38 +668198,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4464), 15, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_EQ_GT, - sym_grit_metavariable, - ACTIONS(4462), 28, + ACTIONS(3211), 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, @@ -675319,8 +668221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [6803] = 14, + [8086] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675341,9 +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, - STATE(5525), 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, @@ -675353,41 +668256,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 12, + 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, - anon_sym_or, - ACTIONS(7679), 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, @@ -675397,7 +668298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [6894] = 15, + [8178] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675418,27 +668319,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3702), 1, - anon_sym_EQ, - ACTIONS(3700), 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(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(5526), 9, + ACTIONS(8213), 1, + anon_sym_QMARK, + STATE(5541), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675448,13 +668335,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3913), 26, + 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_notnull, anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, @@ -675475,7 +668376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [6987] = 13, + [8272] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675496,7 +668397,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5527), 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, @@ -675506,52 +668438,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7059), 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(7057), 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, - [7076] = 15, + [8380] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675572,11 +668482,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_into, - STATE(5534), 1, - aux_sym__query_body_repeat2, - STATE(5528), 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, @@ -675586,49 +668528,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7572), 29, - 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_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, - [7168] = 15, + [8498] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675649,11 +668572,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7723), 1, - anon_sym_and, - ACTIONS(7725), 1, - anon_sym_or, - STATE(5529), 9, + STATE(5544), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -675663,49 +668582,51 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 11, + 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, - ACTIONS(7016), 29, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, + anon_sym_into, anon_sym_join, + anon_sym_on, + anon_sym_equals, anon_sym_let, anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, anon_sym_group, + anon_sym_by, anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [7260] = 16, + sym__identifier_token, + [8586] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675726,13 +668647,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7727), 1, - anon_sym_LT, - ACTIONS(7730), 1, - anon_sym_COLON_COLON, - STATE(5615), 1, - sym_type_argument_list, - STATE(5530), 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, @@ -675742,48 +668661,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(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(3953), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 29, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACE, - 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_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_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, - [7354] = 15, + [8678] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675804,11 +668724,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7723), 1, + ACTIONS(5068), 4, + anon_sym_EQ_GT, + anon_sym_when, anon_sym_and, - ACTIONS(7725), 1, anon_sym_or, - STATE(5531), 9, + 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, @@ -675818,49 +668744,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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(7667), 29, + 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_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_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, - [7446] = 13, + [8770] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675881,7 +668801,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5532), 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, @@ -675891,37 +668847,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4450), 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_EQ_GT, - sym_grit_metavariable, - ACTIONS(4448), 28, + ACTIONS(3211), 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, @@ -675934,8 +668870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [7534] = 13, + [8888] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -675956,7 +668891,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5533), 9, + ACTIONS(8219), 1, + anon_sym_LBRACK, + ACTIONS(8222), 1, + aux_sym_preproc_if_token1, + STATE(5916), 1, + sym__attribute_list, + ACTIONS(5345), 2, + anon_sym_LPAREN, + 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, @@ -675966,37 +668913,28 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4416), 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_EQ_GT, - sym_grit_metavariable, - ACTIONS(4414), 28, + 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_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, @@ -676010,7 +668948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [7622] = 15, + [8983] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676031,11 +668969,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, + ACTIONS(8225), 1, anon_sym_into, - STATE(5543), 1, - aux_sym__query_body_repeat2, - STATE(5534), 9, + STATE(5577), 1, + aux_sym_query_body_repeat2, + STATE(5549), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676045,49 +668983,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 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(7568), 29, + 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_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, - [7714] = 14, + [9074] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676108,9 +669045,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7723), 1, - anon_sym_and, - STATE(5535), 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, @@ -676120,50 +669090,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 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(7679), 29, - 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_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, - [7804] = 15, + [9191] = 32, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676184,115 +669134,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5003), 4, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - ACTIONS(7020), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5536), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6047), 11, + ACTIONS(8227), 1, anon_sym_LT, + ACTIONS(8229), 1, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, + 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, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6045), 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, - [7896] = 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(3207), 1, - sym__identifier_token, - ACTIONS(4080), 1, - sym_grit_metavariable, - ACTIONS(5887), 1, - anon_sym_ref, - STATE(5132), 1, - sym__reserved_identifier, - STATE(5454), 1, - sym_identifier, - STATE(5473), 1, - sym_generic_name, - STATE(7353), 1, - sym__name, - STATE(7381), 1, - sym_ref_type, - STATE(7382), 1, - sym__scoped_base_type, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3700), 8, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(5537), 9, + 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, @@ -676302,30 +669188,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, - [8004] = 15, + 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, @@ -676346,17 +669227,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5003), 4, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_and, - anon_sym_or, - ACTIONS(7038), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5538), 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, @@ -676366,43 +669243,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6059), 11, + 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, - ACTIONS(6057), 23, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [8096] = 17, + [9409] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676425,13 +669306,9 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(1611), 1, anon_sym_LBRACE, - ACTIONS(5648), 1, - anon_sym_LPAREN, - STATE(5568), 1, - sym_argument_list, - STATE(5651), 1, + STATE(5776), 1, sym_initializer_expression, - STATE(5539), 9, + STATE(5553), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676441,47 +669318,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5684), 11, + 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, - ACTIONS(5682), 27, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5516), 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, - [8192] = 15, + [9500] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676502,11 +669380,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_into, - STATE(5546), 1, - aux_sym__query_body_repeat2, - STATE(5540), 9, + STATE(5554), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676516,49 +669390,50 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 11, + 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, - ACTIONS(7562), 29, + 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_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, - [8284] = 28, + [9587] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676579,43 +669454,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(3709), 1, - anon_sym_delegate, - ACTIONS(4080), 1, - sym_grit_metavariable, - ACTIONS(7732), 1, - anon_sym_LBRACK, - ACTIONS(7734), 1, - sym_predefined_type, - STATE(5132), 1, - sym__reserved_identifier, - STATE(5142), 1, - sym_array_type, - STATE(5454), 1, - sym_identifier, - STATE(5473), 1, - sym_generic_name, - STATE(6938), 1, - sym__name, - STATE(7349), 1, - sym_tuple_type, - STATE(7570), 1, - sym__array_base_type, - STATE(7650), 1, - sym__pointer_base_type, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(7403), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(5541), 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, @@ -676625,30 +669468,48 @@ 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, - [8402] = 13, + ACTIONS(3955), 10, + 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(3957), 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_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [9678] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676669,32 +669530,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5542), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4444), 14, - anon_sym_SEMI, + ACTIONS(8189), 1, anon_sym_LBRACK, - anon_sym_COLON, + 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, anon_sym_EQ_GT, sym_grit_metavariable, - ACTIONS(4442), 28, + STATE(5556), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4329), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -676723,7 +669587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [8490] = 14, + [9773] = 32, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676744,9 +669608,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7736), 1, - anon_sym_into, - STATE(5543), 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(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, @@ -676756,50 +669662,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(7555), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7553), 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, - [8580] = 28, + 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, @@ -676820,43 +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(3219), 1, - anon_sym_LPAREN, - ACTIONS(3709), 1, - anon_sym_delegate, - ACTIONS(4080), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7734), 1, - sym_predefined_type, - ACTIONS(7739), 1, - anon_sym_LBRACK, - STATE(4648), 1, - sym_array_type, - STATE(5132), 1, + ACTIONS(8021), 1, + anon_sym_ref, + STATE(2207), 1, sym__reserved_identifier, - STATE(5454), 1, - sym_identifier, - STATE(5473), 1, + STATE(2210), 1, sym_generic_name, - STATE(6938), 1, + STATE(2376), 1, + sym__scoped_base_type, + STATE(2384), 1, + sym_ref_type, + STATE(5576), 1, + sym_identifier, + STATE(5847), 1, sym__name, - STATE(7349), 1, - sym_tuple_type, - STATE(7374), 1, - sym__array_base_type, - STATE(7650), 1, - sym__pointer_base_type, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(7403), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(5544), 9, + 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, + STATE(5558), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -676866,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, @@ -676889,7 +669764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [8698] = 28, + [10005] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -676910,43 +669785,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(3219), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(3709), 1, - anon_sym_delegate, - ACTIONS(4080), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7734), 1, - sym_predefined_type, - ACTIONS(7741), 1, - anon_sym_LBRACK, - STATE(3600), 1, - sym_array_type, - STATE(5132), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(5454), 1, + STATE(4580), 1, sym_identifier, - STATE(5473), 1, - sym_generic_name, - STATE(6938), 1, - sym__name, - STATE(7349), 1, - sym_tuple_type, - STATE(7393), 1, - sym__array_base_type, - STATE(7650), 1, - sym__pointer_base_type, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(7403), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(5545), 9, + 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, @@ -676956,7 +669829,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, @@ -676979,7 +669852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [8816] = 15, + [10120] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677000,11 +669873,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7721), 1, - anon_sym_into, - STATE(5543), 1, - aux_sym__query_body_repeat2, - STATE(5546), 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, @@ -677014,49 +669887,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7547), 29, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, + anon_sym_into, anon_sym_join, + anon_sym_on, + anon_sym_equals, anon_sym_let, anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, anon_sym_group, + anon_sym_by, anon_sym_select, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [8908] = 15, + sym__identifier_token, + [10211] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677077,11 +669949,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - STATE(5547), 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, @@ -677091,7 +669963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4318), 12, + ACTIONS(3957), 11, anon_sym_SEMI, anon_sym_COLON, anon_sym_COMMA, @@ -677100,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(4316), 28, + ACTIONS(3955), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -677133,7 +670004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [9000] = 28, + [10302] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677154,43 +670025,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(3709), 1, - anon_sym_delegate, - ACTIONS(4080), 1, - sym_grit_metavariable, - ACTIONS(7734), 1, - sym_predefined_type, - ACTIONS(7747), 1, - anon_sym_LBRACK, - STATE(3401), 1, - sym_array_type, - STATE(5132), 1, - sym__reserved_identifier, - STATE(5454), 1, - sym_identifier, - STATE(5473), 1, - sym_generic_name, - STATE(6938), 1, - sym__name, - STATE(7349), 1, - sym_tuple_type, - STATE(7449), 1, - sym__array_base_type, - STATE(7650), 1, - sym__pointer_base_type, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(7403), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(5548), 9, + STATE(5562), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677200,30 +670035,50 @@ 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(3187), 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(3189), 30, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [9118] = 16, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [10389] = 32, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677244,13 +670099,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 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(7749), 1, - anon_sym_QMARK, - STATE(5549), 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(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, @@ -677260,48 +670153,99 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4318), 11, - anon_sym_SEMI, + 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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3696), 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(3694), 30, + sym_interpolation_close_brace, + anon_sym_LBRACK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LT, anon_sym_EQ_GT, - sym_grit_metavariable, - ACTIONS(4316), 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, - [9212] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [10601] = 32, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677322,7 +670266,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5550), 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(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, @@ -677332,51 +670320,118 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4420), 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, + 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, - anon_sym_QMARK, - anon_sym_EQ_GT, - sym_grit_metavariable, - ACTIONS(4418), 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, - [9300] = 28, + 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, @@ -677401,39 +670456,38 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, ACTIONS(3219), 1, anon_sym_LPAREN, - ACTIONS(3709), 1, + ACTIONS(3703), 1, anon_sym_delegate, ACTIONS(4080), 1, sym_grit_metavariable, - ACTIONS(7734), 1, + ACTIONS(8197), 1, sym_predefined_type, - ACTIONS(7751), 1, - anon_sym_LBRACK, - STATE(5132), 1, + STATE(5149), 1, sym__reserved_identifier, - STATE(5454), 1, + STATE(5462), 1, sym_identifier, - STATE(5473), 1, + STATE(5468), 1, sym_generic_name, - STATE(5561), 1, + STATE(6247), 1, sym_array_type, - STATE(6938), 1, + STATE(6255), 1, + sym_nullable_type, + STATE(6961), 1, sym__name, - STATE(7349), 1, + STATE(7240), 1, sym_tuple_type, - STATE(7380), 1, + STATE(7452), 1, sym__array_base_type, - STATE(7650), 1, + STATE(7930), 1, sym__pointer_base_type, - STATE(5470), 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(7403), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(5551), 9, + STATE(5567), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677466,7 +670520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [9418] = 23, + [10968] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677487,38 +670541,115 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, + 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, + 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, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LPAREN, + 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, + 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(4080), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7459), 1, + ACTIONS(7074), 1, anon_sym_ref, - STATE(5132), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(5454), 1, - sym_identifier, - STATE(5473), 1, + STATE(2210), 1, sym_generic_name, - STATE(7353), 1, - sym__name, - STATE(7381), 1, - sym_ref_type, - STATE(7382), 1, + STATE(2376), 1, sym__scoped_base_type, - STATE(5470), 3, + 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(3700), 8, + ACTIONS(3694), 7, anon_sym_LBRACK, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LT, - anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, anon_sym_COLON_COLON, - STATE(5552), 9, + anon_sym_STAR, + STATE(5569), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677528,7 +670659,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, @@ -677551,7 +670682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [9526] = 28, + [11170] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677572,43 +670703,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, - anon_sym_LPAREN, - ACTIONS(3709), 1, - anon_sym_delegate, - ACTIONS(4080), 1, - sym_grit_metavariable, - ACTIONS(7734), 1, - sym_predefined_type, - ACTIONS(7753), 1, + ACTIONS(5624), 1, anon_sym_LBRACK, - STATE(4733), 1, - sym_array_type, - STATE(5132), 1, - sym__reserved_identifier, - STATE(5454), 1, - sym_identifier, - STATE(5473), 1, - sym_generic_name, - STATE(6938), 1, - sym__name, - STATE(7349), 1, - sym_tuple_type, - STATE(7419), 1, - sym__array_base_type, - STATE(7650), 1, - sym__pointer_base_type, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(7403), 3, - sym_nullable_type, - sym_pointer_type, - sym_function_pointer_type, - STATE(5553), 9, + 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, @@ -677618,30 +670721,46 @@ 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(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_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [9644] = 28, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [11265] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677662,42 +670781,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(3709), 1, - anon_sym_delegate, - ACTIONS(4080), 1, - sym_grit_metavariable, - ACTIONS(7734), 1, - sym_predefined_type, - STATE(5132), 1, - sym__reserved_identifier, - STATE(5454), 1, - sym_identifier, - STATE(5473), 1, - sym_generic_name, - STATE(6235), 1, - sym_nullable_type, - STATE(6277), 1, - sym_array_type, - STATE(6938), 1, - sym__name, - STATE(7349), 1, - sym_tuple_type, - STATE(7639), 1, - sym__array_base_type, - STATE(7650), 1, - sym__pointer_base_type, - STATE(7403), 2, - sym_pointer_type, - sym_function_pointer_type, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5554), 9, + ACTIONS(1611), 1, + anon_sym_LBRACE, + STATE(5671), 1, + sym_initializer_expression, + STATE(5571), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677707,30 +670795,48 @@ 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(5592), 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(5590), 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, - [9761] = 28, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [11356] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677751,42 +670857,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(3709), 1, - anon_sym_delegate, - ACTIONS(4080), 1, - sym_grit_metavariable, - ACTIONS(7734), 1, - sym_predefined_type, - STATE(5132), 1, - sym__reserved_identifier, - STATE(5454), 1, - sym_identifier, - STATE(5473), 1, - sym_generic_name, - STATE(6341), 1, - sym_nullable_type, - STATE(6346), 1, - sym_array_type, - STATE(6938), 1, - sym__name, - STATE(7349), 1, - sym_tuple_type, - STATE(7639), 1, - sym__array_base_type, - STATE(7650), 1, - sym__pointer_base_type, - STATE(7403), 2, - sym_pointer_type, - sym_function_pointer_type, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5555), 9, + STATE(5572), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677796,30 +670867,219 @@ 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(3696), 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(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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_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, - [9878] = 17, + 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, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + 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, + 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), 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, + 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(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, @@ -677840,25 +671100,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(7755), 1, - anon_sym_DOT, - ACTIONS(4318), 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(3694), 1, + anon_sym_COLON_COLON, + STATE(5575), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -677868,36 +671112,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 28, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - sym_discard, + ACTIONS(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_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, - [9973] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [11748] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677918,11 +671175,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7749), 1, - anon_sym_QMARK, - STATE(5557), 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, @@ -677932,19 +671191,18 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4318), 11, + ACTIONS(3957), 10, anon_sym_SEMI, - anon_sym_COLON, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_DOT, anon_sym_EQ_GT, sym_grit_metavariable, - ACTIONS(4316), 28, + ACTIONS(3955), 28, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -677973,7 +671231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [10064] = 13, + [11841] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -677994,7 +671252,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5558), 9, + ACTIONS(8318), 1, + anon_sym_into, + STATE(5577), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678004,50 +671264,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3702), 12, - anon_sym_COLON, + 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(3700), 29, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 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_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, - [10151] = 17, + [11930] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678068,15 +671327,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5970), 1, - anon_sym_LBRACK, - ACTIONS(7757), 1, - anon_sym_LBRACE, - ACTIONS(7760), 1, - anon_sym_QMARK, - STATE(5670), 1, - sym_initializer_expression, - STATE(5559), 9, + ACTIONS(8225), 1, + anon_sym_into, + STATE(5577), 1, + aux_sym_query_body_repeat2, + STATE(5578), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678086,46 +671341,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5980), 10, + ACTIONS(7920), 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(5974), 27, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 28, + 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_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, - [10246] = 13, + [12021] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678146,7 +671403,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5560), 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, @@ -678156,50 +671417,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3187), 12, - anon_sym_COLON, + 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(3189), 29, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 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_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, - [10333] = 16, + [12112] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678220,13 +671479,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, - ACTIONS(5766), 1, - anon_sym_LBRACK, - STATE(5671), 1, - sym_initializer_expression, - STATE(5561), 9, + ACTIONS(8321), 1, + aux_sym_raw_string_literal_token1, + STATE(5580), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678236,47 +671491,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5769), 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(5764), 27, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [10426] = 15, + [12200] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678297,11 +671553,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7764), 1, - anon_sym_LT, - STATE(2216), 1, - sym_type_argument_list, - STATE(5562), 9, + STATE(5581), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678311,132 +671563,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3953), 11, - anon_sym_SEMI, + 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_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_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [10517] = 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(1307), 1, - sym_grit_metavariable, - ACTIONS(7168), 1, - anon_sym_ref, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2366), 1, - sym__scoped_base_type, - STATE(2386), 1, - sym_ref_type, - STATE(5575), 1, - sym_identifier, - STATE(5810), 1, - sym__name, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3700), 7, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - 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, - 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_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, - [10624] = 13, + 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, @@ -678457,7 +671626,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5564), 9, + STATE(5582), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678467,50 +671636,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3187), 11, + ACTIONS(3970), 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(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_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_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [10711] = 13, + [12372] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678531,7 +671699,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5565), 9, + STATE(5583), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678541,138 +671709,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3702), 11, + 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(3700), 30, + 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_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_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [10798] = 27, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(4214), 1, - anon_sym_LBRACE, - ACTIONS(4236), 1, - sym_discard, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7770), 1, - anon_sym_LPAREN, - ACTIONS(7772), 1, - sym_grit_metavariable, - STATE(2787), 1, - sym__reserved_identifier, - STATE(4988), 1, - sym_identifier, - STATE(4996), 1, - sym__variable_designation, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(5802), 1, - sym_positional_pattern_clause, - STATE(5993), 1, - sym_property_pattern_clause, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 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(5566), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7768), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [10913] = 17, + [12458] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678693,19 +671772,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7774), 1, + ACTIONS(5386), 7, anon_sym_LBRACK, - ACTIONS(7777), 1, - aux_sym_preproc_if_token1, - STATE(5916), 1, - sym__attribute_list, - ACTIONS(5495), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(5914), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(5567), 10, + 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, @@ -678715,8 +671790,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(5490), 33, + ACTIONS(5384), 33, anon_sym_alias, anon_sym_global, anon_sym_static, @@ -678750,7 +671824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [11008] = 15, + [12544] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678771,11 +671845,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(5692), 1, - sym_initializer_expression, - STATE(5568), 9, + ACTIONS(8323), 1, + anon_sym_into, + STATE(5585), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -678785,48 +671857,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5775), 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(5773), 28, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [11099] = 23, + [12632] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -678847,37 +671919,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(7612), 1, - anon_sym_ref, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2366), 1, - sym__scoped_base_type, - STATE(2386), 1, - sym_ref_type, - STATE(5575), 1, - sym_identifier, - STATE(5810), 1, - sym__name, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - ACTIONS(3700), 7, - anon_sym_LBRACK, - anon_sym_RPAREN, + ACTIONS(8227), 1, anon_sym_LT, - anon_sym_QMARK, + ACTIONS(8229), 1, + anon_sym_GT, + ACTIONS(8233), 1, + anon_sym_TILDE, + ACTIONS(8235), 1, anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(5569), 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(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, @@ -678887,30 +671971,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [11206] = 15, + 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, @@ -678931,11 +672010,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7780), 1, - anon_sym_into, - STATE(5571), 1, - aux_sym__query_body_repeat2, - STATE(5570), 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(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, @@ -678945,48 +672062,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7572), 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, - [11297] = 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, @@ -679007,11 +672101,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7780), 1, - anon_sym_into, - STATE(5573), 1, - aux_sym__query_body_repeat2, - STATE(5571), 9, + STATE(5588), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679021,48 +672111,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 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(7568), 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, - [11388] = 15, + [12962] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679083,11 +672174,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7780), 1, - anon_sym_into, - STATE(5577), 1, - aux_sym__query_body_repeat2, - STATE(5572), 9, + STATE(5589), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679097,48 +672184,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 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(7562), 28, + 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_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, - [11479] = 14, + [13048] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679159,9 +672247,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7782), 1, - anon_sym_into, - STATE(5573), 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(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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + 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, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_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(5591), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679171,49 +672348,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(7555), 11, + ACTIONS(3986), 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(7553), 28, + 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_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, - [11568] = 17, + [13256] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679234,15 +672411,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5970), 1, + ACTIONS(5480), 7, anon_sym_LBRACK, - ACTIONS(5977), 1, - anon_sym_LBRACE, - ACTIONS(5983), 1, - anon_sym_QMARK, - STATE(4113), 1, - sym_initializer_expression, - STATE(5574), 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, @@ -679252,46 +672429,196 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5980), 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(5974), 27, - anon_sym_SEMI, - anon_sym_COMMA, + 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, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_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(6098), 1, + sym_attribute_target_specifier, + STATE(6843), 1, + sym__name, + STATE(7267), 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(5593), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(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, + [13446] = 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(5422), 7, + anon_sym_LBRACK, 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, + sym_grit_metavariable, + aux_sym_preproc_if_token1, aux_sym_preproc_if_token3, aux_sym_preproc_else_token1, aux_sym_preproc_elif_token1, - [11663] = 16, + STATE(5594), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + 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, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [13532] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679312,13 +672639,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7764), 1, - anon_sym_LT, - ACTIONS(7785), 1, - anon_sym_COLON_COLON, - STATE(2216), 1, - sym_type_argument_list, - STATE(5575), 9, + ACTIONS(5430), 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(5595), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679328,33 +672657,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3953), 10, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_EQ_GT, - sym_grit_metavariable, - ACTIONS(3951), 28, + 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_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, @@ -679368,7 +672691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [11756] = 15, + [13618] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679389,11 +672712,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7727), 1, - anon_sym_LT, - STATE(5615), 1, - sym_type_argument_list, - STATE(5576), 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, @@ -679403,48 +672726,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 10, + 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(3953), 29, + 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_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, - [11847] = 15, + [13708] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679465,11 +672787,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7780), 1, - anon_sym_into, - STATE(5573), 1, - aux_sym__query_body_repeat2, - STATE(5577), 9, + STATE(5597), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679479,48 +672797,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7547), 28, - anon_sym_LBRACK, + ACTIONS(4282), 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, + anon_sym_GT, + anon_sym_EQ_GT, + sym_grit_metavariable, + ACTIONS(4280), 28, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_operator, + anon_sym_this, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + sym_discard, anon_sym_and, anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [11938] = 14, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [13794] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679541,9 +672860,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3700), 1, - anon_sym_COLON_COLON, - STATE(5578), 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(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, @@ -679553,49 +672898,30 @@ static const uint16_t ts_small_parse_table[] = { 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_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(3910), 28, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [12027] = 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, + [13898] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679616,11 +672942,15 @@ 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(5666), 1, - sym_initializer_expression, - STATE(5579), 9, + ACTIONS(5434), 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(5599), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679630,48 +672960,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5762), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5760), 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(5432), 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, - [12118] = 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, + [13984] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679692,9 +673015,11 @@ 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(5580), 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, @@ -679704,48 +673029,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 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(7679), 28, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 27, + sym_interpolation_close_brace, anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [12206] = 15, + [14074] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679766,11 +673090,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4397), 1, - anon_sym_STAR, - STATE(5581), 9, + STATE(5601), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679780,47 +673100,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 11, + 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(4318), 27, + 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_PERCENT, - anon_sym_CARET, - anon_sym_LT_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_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, - [12296] = 13, + [14160] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679841,7 +673163,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5582), 9, + STATE(5602), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679851,49 +673173,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4458), 11, + ACTIONS(4280), 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(4460), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4282), 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, - [12382] = 13, + [14246] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679914,7 +673236,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5583), 9, + STATE(5603), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -679924,49 +673246,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4357), 11, + ACTIONS(4409), 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(4359), 29, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [12468] = 13, + [14332] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -679987,7 +673309,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5584), 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(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, @@ -679997,49 +673353,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4014), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4021), 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(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [12554] = 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, + [14448] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680060,7 +673397,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5585), 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, @@ -680070,49 +673411,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 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(3953), 29, + 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_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, - [12640] = 13, + [14538] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680133,7 +673472,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5586), 9, + ACTIONS(8338), 1, + sym_string_literal_encoding, + STATE(5606), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680143,49 +673484,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4462), 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(4464), 29, + 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_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, - [12726] = 13, + [14626] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680206,7 +673546,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5587), 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, @@ -680216,49 +673584,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4288), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4290), 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(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [12812] = 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, + [14730] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680279,9 +673628,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7789), 1, - aux_sym_raw_string_literal_token1, - STATE(5588), 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, @@ -680291,48 +673680,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5966), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5964), 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, - [12900] = 13, + 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, @@ -680353,7 +673719,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5589), 9, + STATE(5609), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680363,122 +673729,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4353), 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(4355), 29, + 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_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, - [12986] = 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(5548), 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(5590), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5546), 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, - [13072] = 13, + [14938] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680499,7 +673792,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5591), 9, + STATE(5610), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680509,49 +673802,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5958), 11, + 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(5956), 29, + 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, - [13158] = 14, + [15024] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680572,9 +673865,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, - STATE(5592), 9, + STATE(5611), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680584,48 +673875,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 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(7679), 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, - [13246] = 13, + [15110] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680646,7 +673938,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5593), 9, + STATE(5612), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680656,49 +673948,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4448), 11, + 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(4450), 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, - [13332] = 13, + [15196] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680719,7 +674011,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5594), 9, + STATE(5613), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680729,49 +674021,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4442), 11, + ACTIONS(5715), 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(4444), 29, + 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_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, - [13418] = 14, + [15282] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680792,9 +674084,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7793), 1, - anon_sym_DOT, - STATE(5595), 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, @@ -680804,48 +674100,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4361), 10, - 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, - ACTIONS(4363), 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_RPAREN, anon_sym_LBRACE, - 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_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [13506] = 22, + [15374] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680868,25 +674162,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, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6079), 1, + STATE(6085), 1, sym_attribute_target_specifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7184), 1, + STATE(7174), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - ACTIONS(1315), 7, + ACTIONS(1267), 7, anon_sym_field, anon_sym_event, anon_sym_method, @@ -680894,7 +674188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_return, anon_sym_type, - STATE(5596), 9, + STATE(5615), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -680927,7 +674221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [13610] = 15, + [15478] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -680948,11 +674242,49 @@ 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(7795), 1, - anon_sym_or, - STATE(5597), 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(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, @@ -680962,47 +674294,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7667), 27, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_into, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [13700] = 14, + 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, @@ -681023,9 +674333,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7797), 1, - sym_string_literal_encoding, - STATE(5598), 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, @@ -681035,130 +674347,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5922), 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(5920), 28, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [13788] = 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(2211), 1, - sym_generic_name, - STATE(5575), 1, - sym_identifier, - STATE(6085), 1, - sym_attribute_target_specifier, - STATE(6870), 1, - sym__name, - STATE(7096), 1, - sym_attribute, - STATE(5470), 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(5599), 9, - sym_preproc_region, - sym_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, - [13892] = 13, + [15690] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681179,7 +674408,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5600), 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, @@ -681189,49 +674422,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4310), 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(4312), 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, - [13978] = 13, + [15780] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681252,7 +674483,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5601), 9, + STATE(5619), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681262,49 +674493,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3972), 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(3974), 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, - [14064] = 17, + [15866] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681325,26 +674556,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, + ACTIONS(5440), 7, anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(4468), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(4318), 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(5602), 9, + 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, @@ -681354,20 +674574,27 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 26, + 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, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -681381,7 +674608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [14158] = 13, + [15952] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681402,80 +674629,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(4418), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(4420), 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, + ACTIONS(8350), 1, anon_sym_and, + ACTIONS(8352), 1, 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, - [14244] = 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(5604), 9, + STATE(5621), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681485,49 +674643,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3976), 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(3978), 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, - [14330] = 14, + [16042] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681548,9 +674704,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7799), 1, - sym_string_literal_encoding, - STATE(5605), 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, @@ -681560,48 +674722,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5936), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5934), 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(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, - [14418] = 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, + sym__identifier_token, + [16128] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681624,25 +674779,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, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6086), 1, + STATE(6091), 1, sym_attribute_target_specifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7155), 1, + STATE(7094), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - ACTIONS(1315), 7, + ACTIONS(1267), 7, anon_sym_field, anon_sym_event, anon_sym_method, @@ -681650,7 +674805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_property, anon_sym_return, anon_sym_type, - STATE(5606), 9, + STATE(5623), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681683,7 +674838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [14522] = 13, + [16232] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681704,7 +674859,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5607), 9, + STATE(5624), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681714,49 +674869,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3968), 11, + 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(3970), 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, - [14608] = 17, + [16318] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681777,25 +674932,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4397), 1, - anon_sym_STAR, - ACTIONS(7793), 1, - anon_sym_DOT, - ACTIONS(7801), 1, - anon_sym_QMARK, - ACTIONS(4316), 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(5608), 9, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + STATE(5625), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681805,35 +674944,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4318), 27, + 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), 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_PERCENT, - anon_sym_CARET, - anon_sym_LT_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_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, - [14702] = 16, + [16406] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681854,13 +675006,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4391), 1, + ACTIONS(4439), 1, anon_sym_LBRACK, - ACTIONS(4397), 1, + ACTIONS(4447), 1, anon_sym_STAR, - ACTIONS(7801), 1, + ACTIONS(8354), 1, anon_sym_QMARK, - STATE(5609), 9, + STATE(5626), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681870,46 +675022,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 10, + 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, - ACTIONS(4318), 27, + 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, - [14794] = 13, + [16498] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -681930,7 +675082,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5610), 9, + ACTIONS(8357), 1, + sym_string_literal_encoding, + STATE(5627), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -681940,49 +675094,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3962), 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(3964), 29, + 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_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, - [14880] = 14, + [16586] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682003,14 +675156,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5003), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(8359), 1, anon_sym_and, + ACTIONS(8361), 1, anon_sym_or, - STATE(5611), 9, + STATE(5628), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682020,43 +675170,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6047), 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(6045), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 27, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, 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, - [14968] = 14, + [16676] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682077,14 +675231,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5003), 6, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_or, - STATE(5612), 9, + ACTIONS(4439), 1, + anon_sym_LBRACK, + ACTIONS(4447), 1, + anon_sym_STAR, + STATE(5629), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682094,43 +675245,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6059), 11, + 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(6057), 23, - anon_sym_LBRACK, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4331), 27, + sym_interpolation_close_brace, anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_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, - [15056] = 13, + [16766] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682151,7 +675306,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5613), 9, + STATE(5630), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682161,137 +675316,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5991), 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(5989), 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, - [15142] = 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(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(5883), 1, - anon_sym_LBRACK, - ACTIONS(5899), 1, - aux_sym_preproc_if_token1, - ACTIONS(7804), 1, - aux_sym_preproc_if_token3, - ACTIONS(7806), 1, - aux_sym_preproc_else_token1, - ACTIONS(7808), 1, - aux_sym_preproc_elif_token1, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6084), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6127), 1, - sym_attribute_list, - STATE(6332), 1, - sym__attribute_list, - STATE(6333), 1, - sym_preproc_if_in_attribute_list, - STATE(6911), 1, - sym_enum_member_declaration, - STATE(7039), 1, - sym_identifier, - STATE(7645), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(7885), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(5614), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(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, - [15258] = 13, + [16852] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682312,7 +675379,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5615), 9, + ACTIONS(8363), 1, + anon_sym_DOT, + STATE(5631), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682322,49 +675391,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3980), 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(3982), 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, - [15344] = 16, + [16940] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682385,13 +675453,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5901), 1, - anon_sym_LT, - ACTIONS(7810), 1, - anon_sym_COLON_COLON, - STATE(3930), 1, - sym_type_argument_list, - STATE(5616), 9, + STATE(5632), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682401,46 +675463,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(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(3953), 26, + 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_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_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, - [15436] = 13, + [17026] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682461,7 +675526,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5617), 9, + ACTIONS(8350), 1, + anon_sym_and, + STATE(5633), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682471,49 +675538,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4336), 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(4338), 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, - [15522] = 22, + [17114] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682534,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(2211), 1, - sym_generic_name, - STATE(5575), 1, - sym_identifier, - STATE(6092), 1, - sym_attribute_target_specifier, - STATE(6870), 1, - sym__name, - STATE(7216), 1, - sym_attribute, - STATE(5470), 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(5618), 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, @@ -682572,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, @@ -682595,7 +675651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [15626] = 13, + sym__identifier_token, + [17200] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682616,7 +675673,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5619), 9, + STATE(5635), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682626,49 +675683,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4324), 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(4326), 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, - [15712] = 13, + [17286] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682689,7 +675746,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5620), 9, + STATE(5636), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682699,49 +675756,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4361), 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(4363), 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, - [15798] = 15, + [17372] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682762,11 +675819,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7787), 1, + ACTIONS(5068), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(7812), 1, anon_sym_or, - STATE(5621), 9, + STATE(5637), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682776,47 +675836,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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(7016), 27, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5915), 23, anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_COLON, 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, - [15888] = 13, + [17460] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682837,15 +675893,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5584), 7, + ACTIONS(4439), 1, 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, + ACTIONS(8354), 1, + anon_sym_QMARK, + STATE(5638), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682855,41 +675907,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5582), 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(4329), 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(4331), 28, + sym_interpolation_close_brace, + 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, - sym__identifier_token, - [15974] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [17550] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682910,15 +675968,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5554), 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(5623), 9, + STATE(5639), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -682928,41 +675978,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5552), 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(3959), 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(3961), 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, - sym__identifier_token, - [16060] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [17636] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -682983,15 +676041,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5642), 7, + 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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4331), 27, + sym_interpolation_close_brace, + anon_sym_COLON, + anon_sym_COMMA, 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(5624), 9, + 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, + [17730] = 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(5641), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683001,41 +676128,123 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5640), 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(4433), 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(4435), 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, - sym__identifier_token, - [16146] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [17816] = 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(8359), 1, + anon_sym_and, + STATE(5642), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(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), 28, + 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_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [17904] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683056,11 +676265,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(7801), 1, - anon_sym_QMARK, - STATE(5625), 9, + STATE(5643), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683070,47 +676275,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 10, + ACTIONS(5656), 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(4318), 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_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, - [16236] = 13, + [17990] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683131,7 +676338,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5626), 9, + STATE(5644), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683141,49 +676348,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4414), 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(4416), 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, - [16322] = 13, + [18076] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683204,7 +676411,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5627), 9, + STATE(5645), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683214,49 +676421,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3986), 11, + ACTIONS(3980), 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_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, - [16408] = 15, + [18162] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683277,11 +676484,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7791), 1, + ACTIONS(5068), 6, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(7795), 1, anon_sym_or, - STATE(5628), 9, + STATE(5646), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683291,47 +676501,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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(7016), 27, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5839), 23, 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_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [16498] = 13, + [18250] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683352,7 +676558,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5629), 9, + STATE(5647), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683362,49 +676568,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4290), 12, - anon_sym_SEMI, + ACTIONS(3974), 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(3976), 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_LT, - anon_sym_GT, - anon_sym_EQ_GT, - sym_grit_metavariable, - ACTIONS(4288), 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, - [16584] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [18336] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683425,15 +676631,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5606), 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(5630), 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, @@ -683443,25 +676675,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5604), 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, @@ -683476,8 +676698,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [16670] = 13, + [18452] = 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(8359), 1, + anon_sym_and, + ACTIONS(8361), 1, + anon_sym_or, + STATE(5649), 9, + sym_preproc_region, + sym_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), 27, + 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_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [18542] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683498,15 +676794,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5512), 7, + ACTIONS(8189), 1, anon_sym_LBRACK, + 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, - aux_sym_preproc_if_token1, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(5631), 9, + STATE(5650), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683516,27 +676823,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5510), 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, @@ -683550,7 +676850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [16756] = 14, + [18636] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683571,9 +676871,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_EQ_GT, - STATE(5632), 9, + STATE(5651), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683583,48 +676881,49 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6996), 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(4163), 28, + 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_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, - [16844] = 13, + [18722] = 31, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683645,7 +676944,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5633), 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(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, @@ -683655,49 +676996,97 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5962), 11, + 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, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_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(5653), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + 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(5960), 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, - [16930] = 15, + [18929] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683718,11 +677107,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7787), 1, - anon_sym_and, - ACTIONS(7812), 1, - anon_sym_or, - STATE(5634), 9, + STATE(5654), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683732,47 +677117,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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(7667), 27, - anon_sym_SEMI, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6011), 28, + 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_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, - [17020] = 13, + [19014] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683793,15 +677179,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(5635), 9, + 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, @@ -683811,25 +677222,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, @@ -683844,8 +677245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [17106] = 28, + [19129] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683866,41 +677266,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8279), 1, + anon_sym_LPAREN, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(5883), 1, - anon_sym_LBRACK, - ACTIONS(5899), 1, - aux_sym_preproc_if_token1, - ACTIONS(7806), 1, - aux_sym_preproc_else_token1, - ACTIONS(7808), 1, - aux_sym_preproc_elif_token1, - ACTIONS(7814), 1, - aux_sym_preproc_if_token3, - STATE(2206), 1, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8372), 1, + anon_sym_RPAREN, + STATE(2652), 1, sym__reserved_identifier, - STATE(6084), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6109), 1, - sym_attribute_list, - STATE(6332), 1, - sym__attribute_list, - STATE(6333), 1, - sym_preproc_if_in_attribute_list, - STATE(6833), 1, - sym_enum_member_declaration, - STATE(7039), 1, + 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(7713), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(7910), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(5636), 9, + 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, @@ -683910,7 +677309,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, @@ -683933,7 +677332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [17222] = 13, + [19244] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -683954,7 +677353,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5637), 9, + STATE(5657), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -683964,49 +677363,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 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(4318), 29, + 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_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, - [17308] = 15, + [19329] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684027,11 +677425,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7816), 1, - anon_sym_into, - STATE(5639), 1, - aux_sym__query_body_repeat2, - STATE(5638), 9, + ACTIONS(8374), 1, + anon_sym_and, + ACTIONS(8376), 1, + anon_sym_or, + STATE(5658), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684041,47 +677439,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 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(7572), 27, - sym_interpolation_close_brace, + 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_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, - [17398] = 15, + [19418] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684102,11 +677499,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7816), 1, + ACTIONS(8378), 1, anon_sym_into, - STATE(5641), 1, - aux_sym__query_body_repeat2, - STATE(5639), 9, + STATE(5741), 1, + aux_sym_query_body_repeat2, + STATE(5659), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684116,47 +677513,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 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(7568), 27, - 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_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_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, - [17488] = 15, + [19507] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684177,11 +677573,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7816), 1, - anon_sym_into, - STATE(5642), 1, - aux_sym__query_body_repeat2, - STATE(5640), 9, + STATE(5660), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684191,47 +677583,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 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(7562), 27, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [17578] = 14, + [19592] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684252,9 +677645,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7818), 1, - anon_sym_into, - STATE(5641), 10, + STATE(5661), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684264,48 +677655,123 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(7555), 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(7553), 27, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_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, + [19677] = 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(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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3955), 10, + 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(3957), 26, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + 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, - [17666] = 15, + [19768] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684326,11 +677792,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7816), 1, - anon_sym_into, - STATE(5641), 1, - aux_sym__query_body_repeat2, - STATE(5642), 9, + STATE(5663), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684340,47 +677802,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 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(7547), 27, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [17756] = 22, + [19853] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684401,35 +677864,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8279), 1, + anon_sym_LPAREN, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8382), 1, + anon_sym_RPAREN, + STATE(2652), 1, sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5575), 1, + 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(6090), 1, - sym_attribute_target_specifier, - STATE(6870), 1, - sym__name, - STATE(7358), 1, - sym_attribute, - STATE(5470), 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(5643), 9, + 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, @@ -684439,7 +677907,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, @@ -684462,7 +677930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [17860] = 13, + [19968] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684483,7 +677951,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5644), 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, @@ -684493,49 +677965,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4320), 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(4322), 29, + 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_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_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [17946] = 13, + [20057] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684556,15 +678025,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5558), 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(5645), 9, + STATE(5666), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684574,41 +678035,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5556), 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(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, - sym__identifier_token, - [18032] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [20142] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684629,7 +678097,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5646), 9, + ACTIONS(8388), 1, + anon_sym_LPAREN, + STATE(5667), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684639,49 +678109,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4340), 11, + ACTIONS(2281), 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(4342), 29, + sym_op_divide, + anon_sym_BANG, + ACTIONS(2283), 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_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [18118] = 28, + [20229] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684702,40 +678170,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(4236), 1, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7770), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7824), 1, + ACTIONS(8390), 1, anon_sym_RPAREN, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4996), 1, + STATE(4581), 1, sym__variable_designation, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5802), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5993), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6716), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 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(5647), 9, + STATE(5668), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684745,7 +678213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -684768,7 +678236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [18233] = 28, + [20344] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684789,40 +678257,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(4236), 1, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7770), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7826), 1, + ACTIONS(8392), 1, anon_sym_RPAREN, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4996), 1, + STATE(4581), 1, sym__variable_designation, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5802), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5993), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6716), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 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(5648), 9, + STATE(5669), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684832,7 +678300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -684855,79 +678323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [18348] = 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(5649), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5995), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5993), 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, - [18433] = 28, + [20459] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -684948,40 +678344,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(4236), 1, - sym_discard, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7770), 1, - anon_sym_LPAREN, - ACTIONS(7772), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7828), 1, - anon_sym_RPAREN, - STATE(2787), 1, - sym__reserved_identifier, - STATE(4996), 1, - sym__variable_designation, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(5802), 1, - sym_positional_pattern_clause, - STATE(5993), 1, - sym_property_pattern_clause, - STATE(6716), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, + ACTIONS(8384), 1, anon_sym_and, + ACTIONS(8386), 1, anon_sym_or, - STATE(5650), 9, + STATE(5670), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -684991,30 +678358,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(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, + 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, - [18548] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [20548] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685035,7 +678418,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5651), 9, + STATE(5671), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685045,48 +678428,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6043), 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(6041), 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, - [18633] = 13, + [20633] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685107,7 +678490,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5652), 9, + STATE(5672), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685117,48 +678500,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6059), 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(6057), 28, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [18718] = 14, + [20718] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685179,9 +678562,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7830), 1, - anon_sym_and, - STATE(5653), 9, + STATE(5673), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685191,47 +678572,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 11, + ACTIONS(5901), 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(7679), 27, + 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_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, - [18805] = 13, + [20803] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685252,7 +678634,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5654), 9, + STATE(5674), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685262,48 +678644,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6007), 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(6005), 28, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [18890] = 13, + [20888] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685324,7 +678706,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5655), 9, + STATE(5675), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685334,48 +678716,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6123), 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(6121), 28, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [18975] = 13, + [20973] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685396,7 +678778,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5656), 9, + ACTIONS(8394), 1, + anon_sym_and, + STATE(5676), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685406,48 +678790,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6115), 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(6113), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 27, + 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_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, - [19060] = 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, @@ -685468,7 +678851,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5657), 9, + STATE(5677), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685478,48 +678861,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6255), 11, + ACTIONS(5997), 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(6253), 28, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [19145] = 13, + [21145] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685540,7 +678923,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5658), 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, @@ -685550,48 +678937,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6275), 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(6273), 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, - [19230] = 13, + [21234] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685612,7 +678997,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5659), 9, + STATE(5679), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685622,48 +679007,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6099), 11, + ACTIONS(5933), 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(6097), 28, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [19315] = 13, + [21319] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685684,7 +679069,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5660), 9, + STATE(5680), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685694,48 +679079,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6095), 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(6093), 28, + 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, - [19400] = 13, + [21404] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685756,7 +679141,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5661), 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, @@ -685766,48 +679155,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3203), 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(3205), 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_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, - [19485] = 13, + [21493] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685828,7 +679215,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5662), 9, + STATE(5682), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685838,48 +679225,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6083), 11, + ACTIONS(5859), 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(5857), 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, - [19570] = 13, + [21578] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685900,7 +679287,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5663), 9, + STATE(5683), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -685910,48 +679297,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4817), 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(4815), 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, - [19655] = 13, + [21663] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -685972,7 +679359,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5664), 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, @@ -685982,48 +679373,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6077), 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(6075), 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, - [19740] = 13, + [21752] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686044,7 +679433,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5665), 9, + STATE(5685), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686054,48 +679443,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6073), 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(6071), 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, - [19825] = 13, + [21837] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686116,7 +679505,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5666), 9, + STATE(5686), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686126,48 +679515,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6069), 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(6067), 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, - [19910] = 28, + [21922] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686188,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(4236), 1, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7770), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7772), 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(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4996), 1, + STATE(4581), 1, sym__variable_designation, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5802), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5993), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6716), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 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(5667), 9, + STATE(5687), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686231,7 +679620,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -686254,7 +679643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [20025] = 13, + [22037] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686275,7 +679664,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(5698), 1, + aux_sym_query_body_repeat2, + STATE(5688), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686285,122 +679678,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6205), 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(6203), 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_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, - [20110] = 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_and, - ACTIONS(7836), 1, - anon_sym_or, - STATE(5669), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7669), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7667), 26, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_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, - [20199] = 13, + [22126] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686421,7 +679738,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5670), 9, + STATE(5689), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686431,48 +679748,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6033), 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(6031), 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, - [20284] = 13, + [22211] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686493,7 +679810,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5671), 9, + STATE(5690), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686503,48 +679820,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6119), 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(6117), 28, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [20369] = 13, + [22296] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686565,7 +679882,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5672), 9, + STATE(5691), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686575,48 +679892,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6029), 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(6027), 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, - [20454] = 13, + [22381] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686637,7 +679954,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5673), 9, + STATE(5692), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686647,48 +679964,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6025), 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(6023), 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, - [20539] = 14, + [22466] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686709,9 +680026,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7834), 1, + 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, - STATE(5674), 9, + anon_sym_or, + STATE(5693), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686721,47 +680069,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7679), 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_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, - [20626] = 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, @@ -686782,7 +680113,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5675), 9, + STATE(5694), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686792,48 +680123,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6011), 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(6009), 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, - [20711] = 28, + [22666] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686854,40 +680185,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(4236), 1, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7770), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7838), 1, + ACTIONS(8404), 1, anon_sym_RPAREN, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4996), 1, + STATE(4581), 1, sym__variable_designation, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5802), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5993), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6716), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 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(5676), 9, + STATE(5695), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -686897,7 +680228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -686920,7 +680251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [20826] = 13, + [22781] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -686941,7 +680272,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5677), 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, @@ -686951,48 +680315,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6131), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6129), 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, - [20911] = 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, + [22896] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687013,11 +680359,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7834), 1, - anon_sym_and, - ACTIONS(7836), 1, - anon_sym_or, - STATE(5678), 9, + STATE(5697), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687027,46 +680369,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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(7016), 26, + 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, - [21000] = 13, + [22981] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687087,7 +680431,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5679), 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, @@ -687097,48 +680445,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4766), 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(4764), 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, - [21085] = 13, + [23070] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687159,7 +680505,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5680), 9, + STATE(5699), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687169,48 +680515,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6137), 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(6135), 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, - [21170] = 13, + [23155] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687231,7 +680577,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5681), 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, @@ -687241,48 +680591,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6141), 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(6139), 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, - [21255] = 13, + [23244] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687303,7 +680651,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5682), 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, @@ -687313,48 +680694,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6145), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6143), 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, - [21340] = 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, @@ -687375,7 +680738,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5683), 9, + STATE(5702), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687385,48 +680748,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6047), 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(6045), 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, - [21425] = 13, + [23444] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687447,7 +680810,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5684), 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, @@ -687457,48 +680853,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5752), 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, - [21510] = 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, @@ -687519,7 +680897,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5685), 9, + STATE(5704), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687529,48 +680907,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6149), 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(6147), 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, - [21595] = 28, + [23644] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687591,40 +680969,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(4236), 1, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7770), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7840), 1, + ACTIONS(8412), 1, anon_sym_RPAREN, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4996), 1, + STATE(4581), 1, sym__variable_designation, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5802), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5993), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6716), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 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(5705), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687634,7 +681012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -687657,7 +681035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [21710] = 13, + [23759] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687678,7 +681056,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5687), 9, + STATE(5706), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687688,120 +681066,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6161), 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(6159), 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_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, - [21795] = 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(5688), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6165), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6163), 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_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [21880] = 13, + [23844] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687822,7 +681128,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5689), 9, + STATE(5707), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687832,48 +681138,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6169), 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(6167), 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, - [21965] = 28, + [23929] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687894,40 +681200,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(4236), 1, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7770), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7842), 1, + ACTIONS(8414), 1, anon_sym_RPAREN, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4996), 1, + STATE(4581), 1, sym__variable_designation, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5802), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5993), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6716), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 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(5708), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687937,7 +681243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -687960,7 +681266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [22080] = 13, + [24044] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -687981,7 +681287,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5691), 9, + STATE(5709), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -687991,48 +681297,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6173), 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(6171), 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, - [22165] = 13, + [24129] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688053,7 +681359,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5692), 9, + STATE(5710), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688063,48 +681369,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6177), 11, + ACTIONS(5819), 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(6175), 28, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [22250] = 13, + [24214] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688125,7 +681431,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5693), 9, + ACTIONS(8416), 1, + anon_sym_into, + STATE(5711), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688135,48 +681443,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6181), 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(6179), 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_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, - [22335] = 13, + [24301] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688197,7 +681504,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5694), 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, @@ -688207,48 +681518,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2177), 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(2175), 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, - [22420] = 13, + [24390] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688269,7 +681578,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5695), 9, + STATE(5713), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688279,48 +681588,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6185), 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(6183), 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, - [22505] = 13, + [24475] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688341,7 +681650,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5696), 9, + STATE(5714), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688351,48 +681660,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6189), 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(6187), 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, - [22590] = 13, + [24560] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688413,7 +681722,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5697), 9, + ACTIONS(8419), 1, + anon_sym_into, + STATE(5715), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688423,48 +681734,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6197), 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(6195), 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_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, - [22675] = 13, + [24647] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688485,7 +681795,98 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5698), 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(8422), 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(5716), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(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, + [24762] = 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(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, @@ -688495,48 +681896,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6201), 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(6199), 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_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, - [22760] = 28, + [24851] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688557,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(4236), 1, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7770), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7844), 1, + ACTIONS(8424), 1, anon_sym_RPAREN, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4996), 1, + STATE(4581), 1, sym__variable_designation, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5802), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5993), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6716), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 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(5699), 9, + STATE(5718), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688600,7 +681999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -688623,7 +682022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [22875] = 28, + [24966] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688644,40 +682043,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(8394), 1, + anon_sym_and, + ACTIONS(8426), 1, + anon_sym_or, + STATE(5719), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(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, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_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(4236), 1, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7770), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7772), 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(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4996), 1, + STATE(4581), 1, sym__variable_designation, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5802), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5993), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6716), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 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(5720), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688687,7 +682160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -688710,7 +682183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [22990] = 13, + [25170] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688731,7 +682204,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5701), 9, + STATE(5721), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688741,48 +682214,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6209), 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(6207), 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, - [23075] = 13, + [25255] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688803,7 +682276,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5702), 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, @@ -688813,48 +682290,118 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6215), 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, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 26, + 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_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [25344] = 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(5723), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(3195), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, anon_sym_DOT, - ACTIONS(6213), 28, + anon_sym_AMP, + sym_op_bitwise_or, + sym_op_right_shift, + anon_sym_PLUS, + anon_sym_DASH, + 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, - [23160] = 15, + [25429] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688875,11 +682422,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7830), 1, - anon_sym_and, - ACTIONS(7848), 1, - anon_sym_or, - STATE(5703), 9, + STATE(5724), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688889,46 +682432,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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(7016), 26, + 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_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, - [23249] = 28, + [25514] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -688949,40 +682494,79 @@ 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(4236), 1, - sym_discard, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7770), 1, - anon_sym_LPAREN, - ACTIONS(7772), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, + STATE(5725), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(5889), 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(5887), 28, + sym_interpolation_close_brace, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(7850), 1, - anon_sym_RPAREN, - STATE(2787), 1, - sym__reserved_identifier, - STATE(4996), 1, - sym__variable_designation, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(5802), 1, - sym_positional_pattern_clause, - STATE(5993), 1, - sym_property_pattern_clause, - STATE(6716), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 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(5704), 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_into, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [25599] = 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(5726), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -688992,30 +682576,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(6841), 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(6839), 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, - [23364] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [25684] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689036,11 +682638,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7830), 1, - anon_sym_and, - ACTIONS(7848), 1, - anon_sym_or, - STATE(5705), 9, + STATE(5727), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689050,46 +682648,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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(7667), 26, + 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_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, - [23453] = 28, + [25769] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689110,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(4236), 1, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7770), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7852), 1, + ACTIONS(8430), 1, anon_sym_RPAREN, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4996), 1, + STATE(4581), 1, sym__variable_designation, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5802), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5993), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6716), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 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(5706), 9, + STATE(5728), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689153,7 +682753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -689176,7 +682776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [23568] = 13, + [25884] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689197,7 +682797,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5707), 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(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, + STATE(5729), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689207,48 +682840,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6223), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6221), 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, - [23653] = 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, @@ -689269,7 +682884,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5708), 9, + STATE(5730), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689279,48 +682894,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6053), 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(6051), 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, - [23738] = 14, + [26084] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689341,9 +682956,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7854), 1, - anon_sym_and, - STATE(5709), 9, + STATE(5731), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689353,47 +682966,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 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(7679), 27, - anon_sym_SEMI, + 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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [23825] = 13, + [26169] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689414,7 +683028,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5710), 9, + STATE(5732), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689424,48 +683038,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6227), 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(6225), 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, - [23910] = 28, + [26254] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689486,40 +683100,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(4236), 1, - sym_discard, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7770), 1, - anon_sym_LPAREN, - ACTIONS(7772), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7856), 1, - anon_sym_RPAREN, - STATE(2787), 1, - sym__reserved_identifier, - STATE(4996), 1, - sym__variable_designation, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(5802), 1, - sym_positional_pattern_clause, - STATE(5993), 1, - sym_property_pattern_clause, - STATE(6716), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5711), 9, + STATE(5733), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689529,30 +683110,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(6829), 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(6827), 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, - [24025] = 28, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [26339] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689573,40 +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(4236), 1, - sym_discard, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7770), 1, - anon_sym_LPAREN, - ACTIONS(7772), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7858), 1, - anon_sym_RPAREN, - STATE(2787), 1, - sym__reserved_identifier, - STATE(4996), 1, - sym__variable_designation, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(5802), 1, - sym_positional_pattern_clause, - STATE(5993), 1, - sym_property_pattern_clause, - STATE(6716), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, + ACTIONS(8374), 1, anon_sym_and, - anon_sym_or, - STATE(5712), 9, + STATE(5734), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689616,30 +683184,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [24140] = 13, + 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), 27, + 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_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, + [26426] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689660,7 +683245,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5713), 9, + STATE(5735), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689670,48 +683255,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6231), 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(6229), 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_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, - [24225] = 14, + [26511] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689732,9 +683317,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7860), 1, - anon_sym_LPAREN, - STATE(5714), 9, + STATE(5736), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689744,47 +683327,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2171), 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(2173), 27, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6917), 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, - [24312] = 28, + [26596] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689805,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(4236), 1, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7770), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7862), 1, + ACTIONS(8434), 1, anon_sym_RPAREN, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4996), 1, + STATE(4581), 1, sym__variable_designation, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5802), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5993), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6716), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 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(5715), 9, + STATE(5737), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689848,7 +683432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -689871,7 +683455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [24427] = 13, + [26711] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689892,7 +683476,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5716), 9, + STATE(5738), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689902,48 +683486,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6235), 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(6233), 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, - [24512] = 13, + [26796] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -689964,7 +683548,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5717), 9, + STATE(5739), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -689974,48 +683558,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6239), 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(6237), 28, + 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, - [24597] = 13, + [26881] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690036,7 +683620,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5718), 9, + STATE(5740), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690046,135 +683630,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6243), 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(6241), 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, - [24682] = 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(4236), 1, - sym_discard, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7770), 1, - anon_sym_LPAREN, - ACTIONS(7772), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7864), 1, - anon_sym_RPAREN, - STATE(2787), 1, - sym__reserved_identifier, - STATE(4996), 1, - sym__variable_designation, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(5802), 1, - sym_positional_pattern_clause, - STATE(5993), 1, - sym_property_pattern_clause, - STATE(6716), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5719), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7768), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [24797] = 28, + [26966] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690195,94 +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(4236), 1, - sym_discard, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7770), 1, - anon_sym_LPAREN, - ACTIONS(7772), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7866), 1, - anon_sym_RPAREN, - STATE(2787), 1, - sym__reserved_identifier, - STATE(4996), 1, - sym__variable_designation, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(5802), 1, - sym_positional_pattern_clause, - STATE(5993), 1, - sym_property_pattern_clause, - STATE(6716), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5720), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7768), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(8378), 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, - [24912] = 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(5721), 9, + STATE(5747), 1, + aux_sym_query_body_repeat2, + STATE(5741), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690292,48 +683706,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6261), 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(6259), 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_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_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, - [24997] = 13, + [27055] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690354,7 +683766,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5722), 9, + STATE(5742), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690364,48 +683776,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6267), 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(6265), 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, - [25082] = 28, + [27140] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690426,40 +683838,14 @@ 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(4236), 1, - sym_discard, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7770), 1, - anon_sym_LPAREN, - ACTIONS(7772), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(5068), 6, + sym_interpolation_close_brace, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(7868), 1, - anon_sym_RPAREN, - STATE(2787), 1, - sym__reserved_identifier, - STATE(4996), 1, - sym__variable_designation, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(5802), 1, - sym_positional_pattern_clause, - STATE(5993), 1, - sym_property_pattern_clause, - STATE(6716), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, anon_sym_and, anon_sym_or, - STATE(5723), 9, + anon_sym_into, + STATE(5743), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690469,30 +683855,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [25197] = 13, + ACTIONS(6962), 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(6959), 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, + [27227] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690513,7 +683911,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5724), 9, + STATE(5744), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690523,48 +683921,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6279), 11, + ACTIONS(5773), 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(6277), 28, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [25282] = 28, + [27312] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690585,40 +683983,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(4236), 1, - sym_discard, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7770), 1, - anon_sym_LPAREN, - ACTIONS(7772), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7870), 1, - anon_sym_RPAREN, - STATE(2787), 1, - sym__reserved_identifier, - STATE(4996), 1, - sym__variable_designation, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(5802), 1, - sym_positional_pattern_clause, - STATE(5993), 1, - sym_property_pattern_clause, - STATE(6716), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5725), 9, + STATE(5745), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690628,30 +683993,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(6009), 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(6007), 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, - [25397] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [27397] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690672,7 +684055,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5726), 9, + STATE(5746), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690682,48 +684065,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6283), 11, + ACTIONS(5789), 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(5787), 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, - [25482] = 13, + [27482] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690744,7 +684127,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5727), 9, + ACTIONS(8436), 1, + anon_sym_into, + STATE(5747), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690754,48 +684139,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6271), 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(6269), 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, - [25567] = 13, + [27569] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690816,7 +684200,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5728), 9, + STATE(5748), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690826,48 +684210,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6287), 11, + ACTIONS(5763), 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(6285), 28, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [25652] = 28, + [27654] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690888,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(4236), 1, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7770), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7872), 1, + ACTIONS(8439), 1, anon_sym_RPAREN, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4996), 1, + STATE(4581), 1, sym__variable_designation, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5802), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5993), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6716), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 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(5729), 9, + STATE(5749), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690931,7 +684315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -690954,7 +684338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [25767] = 13, + [27769] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -690975,7 +684359,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5730), 9, + STATE(5750), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -690985,48 +684369,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6291), 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(6289), 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, - [25852] = 13, + [27854] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691047,7 +684431,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5731), 9, + STATE(5751), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691057,48 +684441,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6295), 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(6293), 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, - [25937] = 13, + [27939] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691119,7 +684503,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5732), 9, + STATE(5752), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691129,48 +684513,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7076), 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(7074), 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, - [26022] = 13, + [28024] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691191,7 +684575,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5733), 9, + STATE(5753), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691201,130 +684585,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6127), 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(6125), 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, - [26107] = 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(7874), 1, - sym__identifier_token, - ACTIONS(7880), 1, - anon_sym_LPAREN, - ACTIONS(7887), 1, - sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5575), 1, - sym_identifier, - STATE(6194), 1, - sym_explicit_interface_specifier, - STATE(7981), 1, - sym__name, - ACTIONS(7884), 2, - anon_sym_operator, - anon_sym_checked, - ACTIONS(7882), 3, - anon_sym_ref, - anon_sym_delegate, - sym_predefined_type, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5734), 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_conversion_operator_declaration_repeat1, - ACTIONS(7877), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [26212] = 15, + [28109] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691345,11 +684647,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7890), 1, - anon_sym_into, - STATE(5794), 1, - aux_sym__query_body_repeat2, - STATE(5735), 9, + STATE(5754), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691359,46 +684657,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 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(7572), 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_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, - [26301] = 13, + [28194] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691419,7 +684719,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5736), 9, + STATE(5755), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691429,48 +684729,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6311), 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(6309), 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, - [26386] = 28, + [28279] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691491,127 +684791,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(4236), 1, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7770), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7892), 1, + ACTIONS(8441), 1, anon_sym_RPAREN, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4996), 1, + STATE(4581), 1, sym__variable_designation, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5802), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5993), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6716), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - 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(7768), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [26501] = 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(4236), 1, - sym_discard, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7770), 1, - anon_sym_LPAREN, - ACTIONS(7772), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7894), 1, - anon_sym_RPAREN, - STATE(2787), 1, - sym__reserved_identifier, - STATE(4996), 1, - sym__variable_designation, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(5802), 1, - sym_positional_pattern_clause, - STATE(5993), 1, - sym_property_pattern_clause, - STATE(6716), 1, - sym_identifier, - STATE(7657), 1, + STATE(7966), 1, sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, + ACTIONS(4228), 2, anon_sym_and, anon_sym_or, - STATE(5738), 9, + STATE(5756), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691621,7 +684834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -691644,7 +684857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [26616] = 15, + [28394] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691665,11 +684878,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7854), 1, - anon_sym_and, - ACTIONS(7896), 1, - anon_sym_or, - STATE(5739), 9, + STATE(5757), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691679,46 +684888,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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(7016), 26, - anon_sym_SEMI, + 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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [26705] = 15, + [28479] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691739,11 +684950,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7898), 1, - anon_sym_into, - STATE(5741), 1, - aux_sym__query_body_repeat2, - STATE(5740), 9, + STATE(5758), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691753,46 +684960,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 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(7572), 26, + 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_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, - [26794] = 15, + [28564] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691813,11 +685022,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7898), 1, - anon_sym_into, - STATE(5743), 1, - aux_sym__query_body_repeat2, - STATE(5741), 9, + STATE(5759), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691827,46 +685032,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 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(7568), 26, + 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_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, - [26883] = 15, + [28649] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691887,11 +685094,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7898), 1, - anon_sym_into, - STATE(5744), 1, - aux_sym__query_body_repeat2, - STATE(5742), 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(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, + ACTIONS(4232), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(5760), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691901,46 +685136,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7562), 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(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_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, - [26972] = 14, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [28762] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -691961,9 +685180,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7900), 1, - anon_sym_into, - STATE(5743), 10, + STATE(5761), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -691973,47 +685190,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(7555), 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(7553), 26, + 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_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, - [27059] = 15, + [28847] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692034,11 +685252,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7898), 1, - anon_sym_into, - STATE(5743), 1, - aux_sym__query_body_repeat2, - STATE(5744), 9, + STATE(5762), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692048,46 +685262,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 11, + 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(7547), 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_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, - [27148] = 13, + [28932] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692108,7 +685324,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5745), 9, + STATE(5763), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692118,48 +685334,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6153), 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(6151), 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, - [27233] = 13, + [29017] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692180,7 +685396,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5746), 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, @@ -692190,48 +685410,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6315), 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(6313), 28, - sym_interpolation_close_brace, + 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_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, - [27318] = 13, + [29106] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692252,7 +685470,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5747), 9, + STATE(5765), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692262,48 +685480,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6327), 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(6325), 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, - [27403] = 28, + [29191] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692324,40 +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(4236), 1, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7770), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7903), 1, + ACTIONS(8443), 1, anon_sym_RPAREN, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4996), 1, + STATE(4581), 1, sym__variable_designation, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5802), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5993), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6716), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 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(5748), 9, + STATE(5766), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692367,7 +685585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -692390,7 +685608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [27518] = 15, + [29306] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692411,11 +685629,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7854), 1, - anon_sym_and, - ACTIONS(7896), 1, - anon_sym_or, - STATE(5749), 9, + STATE(5767), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692425,46 +685639,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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(7667), 26, - anon_sym_SEMI, + 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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [27607] = 27, + [29391] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692485,39 +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(4236), 1, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7770), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2787), 1, + ACTIONS(8367), 1, + anon_sym_COMMA, + ACTIONS(8445), 1, + anon_sym_RPAREN, + STATE(2652), 1, sym__reserved_identifier, - STATE(4996), 1, + STATE(4581), 1, sym__variable_designation, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5802), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5993), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6868), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 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(5750), 9, + STATE(5768), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692527,7 +685744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -692550,7 +685767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [27720] = 13, + [29506] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692571,7 +685788,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5751), 9, + STATE(5769), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692581,48 +685798,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7076), 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(7074), 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, - [27805] = 13, + [29591] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692643,7 +685860,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5752), 9, + ACTIONS(8384), 1, + anon_sym_and, + STATE(5770), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692653,48 +685872,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6377), 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(6375), 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, - [27890] = 13, + [29678] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692715,7 +685933,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5753), 9, + STATE(5771), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692725,48 +685943,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6381), 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(6379), 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, - [27975] = 13, + [29763] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692787,7 +686005,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5754), 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, @@ -692797,48 +686019,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7059), 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(7057), 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, - [28060] = 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, @@ -692859,7 +686079,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5755), 9, + STATE(5773), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692869,48 +686089,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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(7016), 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, - [28145] = 28, + [29937] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -692931,40 +686151,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(4236), 1, - sym_discard, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7770), 1, - anon_sym_LPAREN, - ACTIONS(7772), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7905), 1, - anon_sym_RPAREN, - STATE(2787), 1, - sym__reserved_identifier, - STATE(4996), 1, - sym__variable_designation, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(5802), 1, - sym_positional_pattern_clause, - STATE(5993), 1, - sym_property_pattern_clause, - STATE(6716), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5756), 9, + STATE(5774), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -692974,105 +686161,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [28260] = 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(6943), 1, + ACTIONS(6005), 11, anon_sym_LT, - ACTIONS(7907), 1, - anon_sym_COLON_COLON, - STATE(4782), 1, - sym_type_argument_list, - STATE(5757), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3951), 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(3953), 26, + 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_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, - [28351] = 15, + [30022] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693093,11 +686223,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym_into, - STATE(5759), 1, - aux_sym__query_body_repeat2, - STATE(5758), 9, + STATE(5775), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693107,46 +686233,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 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(7572), 26, + 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_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, - [28440] = 15, + [30107] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693167,11 +686295,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym_into, - STATE(5761), 1, - aux_sym__query_body_repeat2, - STATE(5759), 9, + STATE(5776), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693181,46 +686305,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 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(7568), 26, + 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_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, - [28529] = 15, + [30192] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693241,11 +686367,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym_into, - STATE(5762), 1, - aux_sym__query_body_repeat2, - STATE(5760), 9, + STATE(5777), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693255,46 +686377,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 11, + ACTIONS(5875), 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(7562), 26, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_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, - [28618] = 14, + [30277] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693315,9 +686439,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7911), 1, - anon_sym_into, - STATE(5761), 10, + STATE(5778), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693327,47 +686449,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(7555), 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(7553), 26, + 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_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, - [28705] = 15, + [30362] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693388,11 +686511,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7909), 1, - anon_sym_into, - STATE(5761), 1, - aux_sym__query_body_repeat2, - STATE(5762), 9, + STATE(5779), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693402,46 +686521,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 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(7547), 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_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, - [28794] = 28, + [30447] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693462,40 +686583,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(4236), 1, - sym_discard, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7770), 1, - anon_sym_LPAREN, - ACTIONS(7772), 1, - sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7914), 1, - anon_sym_RPAREN, - STATE(2787), 1, - sym__reserved_identifier, - STATE(4996), 1, - sym__variable_designation, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(5802), 1, - sym_positional_pattern_clause, - STATE(5993), 1, - sym_property_pattern_clause, - STATE(6716), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5763), 9, + STATE(5780), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693505,30 +686593,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - 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(6759), 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(6757), 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, - [28909] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [30532] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693549,7 +686655,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5764), 9, + STATE(5781), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693559,48 +686665,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7128), 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(7126), 28, + 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_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, - [28994] = 13, + [30617] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693621,7 +686727,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5765), 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(8447), 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(5782), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693631,48 +686770,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7132), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7130), 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, - [29079] = 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, + [30732] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693693,7 +686814,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5766), 9, + STATE(5783), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693703,48 +686824,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7136), 11, + ACTIONS(5867), 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(7134), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5865), 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, - [29164] = 13, + [30817] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693765,7 +686886,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5767), 9, + STATE(5784), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693775,48 +686896,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3379), 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(3381), 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, - [29249] = 13, + [30902] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693837,7 +686958,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5768), 9, + STATE(5785), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693847,48 +686968,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6996), 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(4163), 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, - [29334] = 13, + [30987] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693909,7 +687030,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5769), 9, + STATE(5786), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693919,48 +687040,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7140), 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(7138), 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, - [29419] = 13, + [31072] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -693981,7 +687102,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5770), 9, + STATE(5787), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -693991,48 +687112,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3199), 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(3201), 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, - [29504] = 13, + [31157] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694053,7 +687174,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5771), 9, + STATE(5788), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694063,48 +687184,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7144), 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(7142), 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, - [29589] = 28, + [31242] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694125,40 +687246,34 @@ 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(4236), 1, - sym_discard, - ACTIONS(7766), 1, + ACTIONS(8449), 1, sym__identifier_token, - ACTIONS(7770), 1, + ACTIONS(8455), 1, anon_sym_LPAREN, - ACTIONS(7772), 1, + ACTIONS(8462), 1, sym_grit_metavariable, - ACTIONS(7821), 1, - anon_sym_COMMA, - ACTIONS(7916), 1, - anon_sym_RPAREN, - STATE(2787), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(4996), 1, - sym__variable_designation, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(5802), 1, - sym_positional_pattern_clause, - STATE(5993), 1, - sym_property_pattern_clause, - STATE(6716), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5772), 9, + 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, @@ -694168,7 +687283,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + aux_sym_conversion_operator_declaration_repeat1, + ACTIONS(8452), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -694189,153 +687305,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ascending, anon_sym_descending, anon_sym_group, - anon_sym_by, - anon_sym_select, - [29704] = 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(5773), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7144), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7142), 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, - [29789] = 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(5774), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(3199), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - 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_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, - [29874] = 13, + anon_sym_by, + anon_sym_select, + [31347] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694356,7 +687328,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5775), 9, + STATE(5790), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694366,48 +687338,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7152), 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(7150), 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, - [29959] = 13, + [31432] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694428,7 +687400,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5776), 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(8465), 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(5791), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694438,48 +687443,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7148), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7146), 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, - [30044] = 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, + [31547] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694500,7 +687487,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5777), 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, @@ -694510,48 +687504,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7124), 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(7122), 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, - [30129] = 13, + [31634] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694572,7 +687560,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5778), 9, + STATE(5793), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694582,48 +687570,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7120), 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(7118), 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, - [30214] = 13, + [31719] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694644,7 +687632,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5779), 9, + STATE(5794), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694654,48 +687642,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7120), 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(7118), 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, - [30299] = 15, + [31804] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694716,11 +687704,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7890), 1, - anon_sym_into, - STATE(5781), 1, - aux_sym__query_body_repeat2, - STATE(5780), 9, + STATE(5795), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694730,46 +687714,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 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(7547), 26, + 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_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, - [30388] = 14, + [31889] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694790,9 +687776,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7918), 1, - anon_sym_into, - STATE(5781), 10, + STATE(5796), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694802,47 +687786,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(7555), 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(7553), 26, + 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_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, - [30475] = 13, + [31974] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -694863,7 +687848,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5782), 9, + STATE(5797), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -694873,121 +687858,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7116), 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(7114), 28, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7042), 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, - [30560] = 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(5003), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(5783), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7023), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7020), 22, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_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, - [30647] = 28, + [32059] = 28, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695008,40 +687920,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(4236), 1, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7770), 1, + ACTIONS(8279), 1, anon_sym_LPAREN, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7821), 1, + ACTIONS(8367), 1, anon_sym_COMMA, - ACTIONS(7921), 1, + ACTIONS(8467), 1, anon_sym_RPAREN, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4996), 1, + STATE(4581), 1, sym__variable_designation, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5802), 1, + STATE(5884), 1, sym_positional_pattern_clause, - STATE(5993), 1, + STATE(5959), 1, sym_property_pattern_clause, - STATE(6716), 1, + STATE(6725), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 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(5784), 9, + STATE(5798), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695051,7 +687963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -695074,7 +687986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [30762] = 14, + [32174] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695095,14 +688007,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5003), 6, - sym_interpolation_close_brace, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - anon_sym_into, - STATE(5785), 9, + STATE(5799), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695112,114 +688017,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7041), 11, + ACTIONS(6887), 11, anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7038), 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, - [30849] = 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(5786), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7112), 11, - 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(7110), 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, - [30934] = 13, + [32259] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695240,7 +688079,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5787), 9, + ACTIONS(8378), 1, + anon_sym_into, + STATE(5678), 1, + aux_sym_query_body_repeat2, + STATE(5800), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695250,48 +688093,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7098), 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(7096), 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_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_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, - [31019] = 13, + [32348] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695312,7 +688153,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5788), 9, + STATE(5801), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695322,48 +688163,48 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7094), 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(7092), 28, + 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, - [31104] = 13, + [32433] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695384,7 +688225,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5789), 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, @@ -695394,48 +688261,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7094), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - 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_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, - [31189] = 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, + [32535] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695456,7 +688305,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5790), 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(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, @@ -695466,48 +688341,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7090), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - 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_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, - [31274] = 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, + [32637] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695528,7 +688385,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5791), 9, + 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, @@ -695538,48 +688399,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7086), 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(7084), 28, - 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, - [31359] = 13, + [32725] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695600,7 +688458,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5792), 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, @@ -695610,48 +688472,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7072), 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(7070), 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, - [31444] = 15, + [32813] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695672,11 +688531,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(8487), 1, anon_sym_into, - STATE(5780), 1, - aux_sym__query_body_repeat2, - STATE(5793), 9, + STATE(5835), 1, + aux_sym_query_body_repeat2, + STATE(5806), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695686,46 +688545,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 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(7562), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 25, 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_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, - [31533] = 15, + [32901] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695746,11 +688604,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7890), 1, - anon_sym_into, - STATE(5781), 1, - aux_sym__query_body_repeat2, - STATE(5794), 9, + ACTIONS(8489), 1, + anon_sym_and, + STATE(5807), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695760,46 +688616,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 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(7568), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 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_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, - [31622] = 13, + [32987] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695820,7 +688676,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(5806), 1, + aux_sym_query_body_repeat2, + STATE(5808), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695830,48 +688690,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6387), 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(6385), 28, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 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, - [31707] = 13, + [33075] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695892,7 +688749,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5796), 9, + ACTIONS(8491), 1, + anon_sym_into, + STATE(5809), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695902,47 +688761,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6996), 11, + 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(4163), 27, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 24, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, anon_sym_switch, - anon_sym_when, anon_sym_DOT_DOT, + anon_sym_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, - [31791] = 14, + [33161] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -695963,9 +688821,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7923), 1, - anon_sym_and, - STATE(5797), 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(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, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5810), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -695975,46 +688857,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7679), 26, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [31877] = 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, + [33263] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696035,9 +688901,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7925), 1, - anon_sym_and, - STATE(5798), 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, @@ -696047,46 +688937,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7679), 26, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, + ACTIONS(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, - [31963] = 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, + [33365] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696107,9 +688981,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7927), 1, - anon_sym_DOT, - STATE(5799), 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, @@ -696119,46 +689017,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4361), 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(4363), 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, - [32049] = 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, + [33467] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696179,11 +689061,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7925), 1, + ACTIONS(8500), 1, anon_sym_and, - ACTIONS(7929), 1, - anon_sym_or, - STATE(5800), 9, + STATE(5813), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696193,120 +689073,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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(7667), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 26, 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_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, - [32137] = 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(4391), 1, - anon_sym_LBRACK, - ACTIONS(4397), 1, - anon_sym_STAR, - ACTIONS(6355), 1, - anon_sym_QMARK, - ACTIONS(7927), 1, - anon_sym_DOT, - ACTIONS(4316), 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(5801), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4318), 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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_or, anon_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, - [32229] = 24, + [33553] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696327,35 +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(4236), 1, - sym_discard, - ACTIONS(7766), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7772), 1, - sym_grit_metavariable, - ACTIONS(7931), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - STATE(2787), 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, + STATE(6755), 1, sym__reserved_identifier, - STATE(4997), 1, - sym__variable_designation, - STATE(5004), 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(5014), 1, - sym_parenthesized_variable_designation, - STATE(5987), 1, - sym_property_pattern_clause, - ACTIONS(4248), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(4246), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5802), 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, @@ -696365,7 +689169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696388,7 +689192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [32335] = 22, + [33655] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696409,33 +689213,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6910), 1, + STATE(6791), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5815), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696445,7 +689249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696468,7 +689272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [32437] = 22, + [33757] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696489,33 +689293,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, - sym__identifier_token, - ACTIONS(7937), 1, - anon_sym_LPAREN, - ACTIONS(7939), 1, - anon_sym_BANG, - ACTIONS(7943), 1, - anon_sym_SQUOTE, - ACTIONS(7945), 1, - sym_integer_literal, - ACTIONS(7947), 1, - sym_grit_metavariable, - STATE(6744), 1, - sym__reserved_identifier, - STATE(6924), 1, - sym__preproc_expression, - ACTIONS(7941), 2, - anon_sym_true, - anon_sym_false, - STATE(6915), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5804), 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, @@ -696525,30 +689307,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [32539] = 22, + 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, + 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, + [33845] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696569,33 +689366,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6900), 1, + STATE(6920), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5805), 9, + STATE(5817), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696605,7 +689402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696628,7 +689425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [32641] = 22, + [33947] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696649,33 +689446,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6895), 1, + STATE(6892), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5818), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696685,7 +689482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696708,7 +689505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [32743] = 15, + [34049] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696729,11 +689526,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7949), 1, + ACTIONS(8487), 1, anon_sym_into, - STATE(5813), 1, - aux_sym__query_body_repeat2, - STATE(5807), 9, + STATE(5816), 1, + aux_sym_query_body_repeat2, + STATE(5819), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696743,45 +689540,191 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 12, + ACTIONS(7899), 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(7547), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 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, + [34137] = 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(5809), 1, + aux_sym_query_body_repeat2, + STATE(5820), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(7920), 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(7918), 24, + anon_sym_LBRACK, + anon_sym_LPAREN, 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_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, + [34225] = 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(5833), 1, + aux_sym_query_body_repeat2, + STATE(5821), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(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_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [32831] = 22, + [34313] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696802,33 +689745,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6787), 1, + STATE(6775), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5808), 9, + STATE(5822), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696838,7 +689781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -696861,7 +689804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [32933] = 17, + [34415] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696882,15 +689825,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5970), 1, - anon_sym_LBRACK, - ACTIONS(7050), 1, - anon_sym_LBRACE, - ACTIONS(7053), 1, - anon_sym_QMARK, - STATE(5001), 1, - sym_initializer_expression, - STATE(5809), 9, + ACTIONS(8504), 1, + anon_sym_and, + ACTIONS(8506), 1, + anon_sym_or, + STATE(5823), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696900,43 +689839,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5980), 10, + ACTIONS(8005), 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(5974), 24, + 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_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_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, - [33025] = 14, + [34503] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -696957,19 +689898,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7951), 1, - anon_sym_DOT, - ACTIONS(4363), 9, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(8469), 1, + sym__identifier_token, + ACTIONS(8473), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + 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(5810), 9, + STATE(6755), 1, + sym__reserved_identifier, + STATE(6898), 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(5824), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -696979,22 +689934,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4361), 28, + ACTIONS(8471), 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, @@ -697007,8 +689957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [33111] = 22, + [34605] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697029,33 +689978,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, - sym__identifier_token, - ACTIONS(7937), 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(7939), 1, - anon_sym_BANG, - ACTIONS(7943), 1, - anon_sym_SQUOTE, - ACTIONS(7945), 1, - sym_integer_literal, - ACTIONS(7947), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, sym_grit_metavariable, - STATE(6744), 1, - sym__reserved_identifier, - STATE(6873), 1, - sym__preproc_expression, - ACTIONS(7941), 2, - anon_sym_true, - anon_sym_false, - STATE(6915), 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(5825), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697065,7 +690006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(4329), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697076,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, @@ -697088,7 +690032,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [33213] = 22, + sym__identifier_token, + [34699] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697109,33 +690054,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6841), 1, + STATE(6864), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5812), 9, + STATE(5826), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697145,7 +690090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697168,7 +690113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [33315] = 14, + [34801] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697189,9 +690134,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7953), 1, - anon_sym_into, - STATE(5813), 10, + 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(6870), 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(5827), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697201,46 +690170,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(7555), 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(7553), 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, - [33401] = 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, + [34903] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697261,33 +690214,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(7956), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7958), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7960), 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(6851), 1, + STATE(6895), 1, sym__preproc_expression, - ACTIONS(77), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6926), 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(5828), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697297,7 +690250,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, @@ -697320,7 +690273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [33503] = 27, + [35005] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697341,38 +690294,33 @@ 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(4236), 1, - sym_discard, - ACTIONS(7766), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7770), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7772), 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, - STATE(2787), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(4996), 1, - sym__variable_designation, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(5802), 1, - sym_positional_pattern_clause, - STATE(5993), 1, - sym_property_pattern_clause, - STATE(6760), 1, + STATE(6860), 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(7988), 1, - sym__lambda_parameters, - ACTIONS(4216), 2, - anon_sym_and, - anon_sym_or, - STATE(5815), 9, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5829), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697382,7 +690330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697405,7 +690353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [33615] = 15, + [35107] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697426,11 +690374,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7949), 1, - anon_sym_into, - STATE(5807), 1, - aux_sym__query_body_repeat2, - STATE(5816), 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(6872), 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(5830), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697440,45 +690410,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 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(7562), 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, - [33703] = 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, + [35209] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697499,11 +690454,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7949), 1, - anon_sym_into, - STATE(5813), 1, - aux_sym__query_body_repeat2, - STATE(5817), 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(6881), 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(5831), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697513,45 +690490,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 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(7568), 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, - [33791] = 15, + ACTIONS(29), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [35311] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697572,11 +690534,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7962), 1, + ACTIONS(8510), 1, anon_sym_into, - STATE(5820), 1, - aux_sym__query_body_repeat2, - STATE(5818), 9, + STATE(5892), 1, + aux_sym_query_body_repeat2, + STATE(5832), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697586,45 +690548,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 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(7547), 25, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [33879] = 15, + [35399] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697645,11 +690607,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7949), 1, + ACTIONS(8512), 1, anon_sym_into, - STATE(5817), 1, - aux_sym__query_body_repeat2, - STATE(5819), 9, + STATE(5833), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697659,117 +690619,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 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(7572), 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, - [33967] = 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(7964), 1, - anon_sym_into, - STATE(5820), 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(7555), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7553), 25, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_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, - [34053] = 22, + [35485] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697790,33 +690679,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6820), 1, + STATE(6825), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5821), 9, + STATE(5834), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697826,7 +690715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -697849,7 +690738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [34155] = 18, + [35587] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -697870,25 +690759,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(7967), 1, - anon_sym_DOT, - ACTIONS(4318), 7, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_grit_metavariable, - STATE(5822), 9, + ACTIONS(8515), 1, + anon_sym_into, + STATE(5835), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -697898,34 +690771,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 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, + 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_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - sym__identifier_token, - [34249] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_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, @@ -697946,33 +690831,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, - sym__identifier_token, - ACTIONS(7937), 1, - anon_sym_LPAREN, - ACTIONS(7939), 1, - anon_sym_BANG, - ACTIONS(7943), 1, - anon_sym_SQUOTE, - ACTIONS(7945), 1, - sym_integer_literal, - ACTIONS(7947), 1, - sym_grit_metavariable, - STATE(6744), 1, - sym__reserved_identifier, - STATE(6920), 1, - sym__preproc_expression, - ACTIONS(7941), 2, - anon_sym_true, - anon_sym_false, - STATE(6915), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5823), 9, + 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, @@ -697982,30 +690845,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, + ACTIONS(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_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [34351] = 22, + 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, @@ -698026,33 +690904,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7937), 1, - anon_sym_LPAREN, - ACTIONS(7939), 1, - anon_sym_BANG, - ACTIONS(7943), 1, - anon_sym_SQUOTE, - ACTIONS(7945), 1, - sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(6744), 1, + ACTIONS(8518), 1, + anon_sym_LPAREN, + STATE(2652), 1, sym__reserved_identifier, - STATE(6789), 1, - sym__preproc_expression, - ACTIONS(7941), 2, - anon_sym_true, - anon_sym_false, - STATE(6915), 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(5824), 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, @@ -698062,7 +690942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698085,7 +690965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [34453] = 22, + [35867] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698106,33 +690986,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6792), 1, + STATE(6899), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5825), 9, + STATE(5838), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698142,7 +691022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698165,7 +691045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [34555] = 22, + [35969] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698186,33 +691066,106 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8502), 1, + anon_sym_into, + STATE(5833), 1, + aux_sym_query_body_repeat2, + STATE(5839), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(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, + 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, + [36057] = 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(7937), 1, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8494), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8496), 1, anon_sym_BANG, - ACTIONS(7943), 1, - anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8498), 1, sym_integer_literal, - ACTIONS(7947), 1, - sym_grit_metavariable, - STATE(6744), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6808), 1, + STATE(6915), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(123), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5826), 9, + STATE(5840), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698222,7 +691175,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698245,7 +691198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [34657] = 22, + [36159] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698266,33 +691219,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6822), 1, + STATE(6917), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5841), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698302,7 +691255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698325,7 +691278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [34759] = 27, + [36261] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698346,39 +691299,39 @@ 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(4236), 1, + ACTIONS(4232), 1, + anon_sym_EQ_GT, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7969), 1, + ACTIONS(8520), 1, anon_sym_LPAREN, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4996), 1, + STATE(4581), 1, sym__variable_designation, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - STATE(5796), 1, + STATE(5845), 1, sym_identifier, - STATE(5964), 1, + STATE(5967), 1, sym_positional_pattern_clause, - STATE(6031), 1, + STATE(6025), 1, sym_property_pattern_clause, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - ACTIONS(4216), 3, + STATE(7966), 1, + sym_parameter_list, + ACTIONS(4228), 3, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(5828), 9, + STATE(5842), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698388,7 +691341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 21, + ACTIONS(8277), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698410,7 +691363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [34871] = 22, + [36373] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698431,33 +691384,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, - sym__identifier_token, - ACTIONS(7937), 1, - anon_sym_LPAREN, - ACTIONS(7939), 1, - anon_sym_BANG, - ACTIONS(7943), 1, - anon_sym_SQUOTE, - ACTIONS(7945), 1, - sym_integer_literal, - ACTIONS(7947), 1, - sym_grit_metavariable, - STATE(6744), 1, - sym__reserved_identifier, - STATE(6914), 1, - sym__preproc_expression, - ACTIONS(7941), 2, - anon_sym_true, - anon_sym_false, - STATE(6915), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5829), 9, + 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, @@ -698467,30 +691402,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [34973] = 15, + 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), 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, @@ -698511,11 +691459,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7962), 1, - anon_sym_into, - STATE(5818), 1, - aux_sym__query_body_repeat2, - STATE(5830), 9, + ACTIONS(8500), 1, + anon_sym_and, + ACTIONS(8522), 1, + anon_sym_or, + STATE(5844), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698525,45 +691473,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 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(7562), 25, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 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_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_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [35061] = 27, + [36553] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698584,39 +691532,7 @@ 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(4236), 1, - sym_discard, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7770), 1, - anon_sym_LPAREN, - ACTIONS(7772), 1, - sym_grit_metavariable, - STATE(2787), 1, - sym__reserved_identifier, - STATE(4988), 1, - sym_identifier, - STATE(4996), 1, - sym__variable_designation, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(5964), 1, - sym_positional_pattern_clause, - STATE(6031), 1, - sym_property_pattern_clause, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - ACTIONS(4216), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5831), 9, + STATE(5845), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698626,29 +691542,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 21, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_from, + ACTIONS(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_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [35173] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [36637] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698669,33 +691603,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6921), 1, + STATE(6882), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5832), 9, + STATE(5846), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698705,7 +691639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -698728,7 +691662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [35275] = 24, + [36739] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698749,35 +691683,19 @@ 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(4236), 1, - sym_discard, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7772), 1, - sym_grit_metavariable, - ACTIONS(7931), 1, - anon_sym_LPAREN, - STATE(2787), 1, - sym__reserved_identifier, - STATE(4986), 1, - sym__variable_designation, - STATE(5004), 1, - sym_identifier, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(5933), 1, - sym_property_pattern_clause, - ACTIONS(4252), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(4250), 4, + 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, - STATE(5833), 9, + anon_sym_EQ_GT, + sym_grit_metavariable, + STATE(5847), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698787,17 +691705,22 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 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, @@ -698810,7 +691733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [35381] = 15, + sym__identifier_token, + [36825] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698831,11 +691755,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_into, - STATE(5835), 1, - aux_sym__query_body_repeat2, - STATE(5834), 9, + ACTIONS(8504), 1, + anon_sym_and, + STATE(5848), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -698845,117 +691767,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 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(7547), 25, + 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_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_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [35469] = 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(7973), 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(7555), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7553), 25, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_and, - anon_sym_or, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_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, - [35555] = 22, + [36911] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -698980,29 +691831,29 @@ static const uint16_t ts_small_parse_table[] = { sym__identifier_token, ACTIONS(141), 1, anon_sym_SQUOTE, - ACTIONS(1307), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7956), 1, + ACTIONS(8494), 1, anon_sym_LPAREN, - ACTIONS(7958), 1, + ACTIONS(8496), 1, anon_sym_BANG, - ACTIONS(7960), 1, + ACTIONS(8498), 1, sym_integer_literal, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, STATE(6850), 1, sym__preproc_expression, - ACTIONS(77), 2, + ACTIONS(123), 2, anon_sym_true, anon_sym_false, - STATE(6926), 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(5836), 9, + STATE(5849), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699035,7 +691886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [35657] = 22, + [37013] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699056,33 +691907,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8494), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8496), 1, anon_sym_BANG, - ACTIONS(7943), 1, - anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8498), 1, sym_integer_literal, - ACTIONS(7947), 1, - sym_grit_metavariable, - STATE(6744), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6864), 1, + STATE(6857), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(123), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5837), 9, + STATE(5850), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699092,7 +691943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699115,7 +691966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [35759] = 22, + [37115] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699136,33 +691987,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(7956), 1, - anon_sym_LPAREN, - ACTIONS(7958), 1, - anon_sym_BANG, - ACTIONS(7960), 1, - sym_integer_literal, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6925), 1, - sym__preproc_expression, - ACTIONS(77), 2, - anon_sym_true, - anon_sym_false, - STATE(6926), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5838), 9, + ACTIONS(8504), 1, + anon_sym_and, + ACTIONS(8506), 1, + anon_sym_or, + STATE(5851), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699172,30 +692001,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, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [35861] = 14, + 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), 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, + [37203] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699216,9 +692060,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7976), 1, - anon_sym_and, - STATE(5839), 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, @@ -699228,46 +692074,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 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(7679), 26, + 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, - [35947] = 22, + [37291] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699288,33 +692133,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(7956), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7958), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7960), 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(6852), 1, + STATE(6880), 1, sym__preproc_expression, - ACTIONS(77), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6926), 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(5840), 9, + STATE(5853), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699324,7 +692169,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, @@ -699347,7 +692192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [36049] = 15, + [37393] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699368,11 +692213,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_into, - STATE(5834), 1, - aux_sym__query_body_repeat2, - STATE(5841), 9, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4232), 1, + anon_sym_COLON, + 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(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, @@ -699382,45 +692255,29 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7562), 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, - [36137] = 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, + [37505] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699441,11 +692298,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7923), 1, - anon_sym_and, - ACTIONS(7978), 1, - anon_sym_or, - STATE(5842), 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, @@ -699455,45 +692312,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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(7016), 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_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [36225] = 15, + [37593] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699514,11 +692371,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_into, - STATE(5835), 1, - aux_sym__query_body_repeat2, - STATE(5843), 9, + ACTIONS(8528), 1, + anon_sym_DOT, + STATE(5856), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699528,45 +692383,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 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(7568), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(4361), 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_LBRACE, + 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_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, - [36313] = 22, + [37679] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699587,33 +692443,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, - sym__identifier_token, - ACTIONS(7937), 1, - anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(4439), 1, + anon_sym_LBRACK, + ACTIONS(4447), 1, + anon_sym_STAR, + ACTIONS(5832), 1, + anon_sym_QMARK, + ACTIONS(8528), 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, - ACTIONS(7943), 1, - anon_sym_SQUOTE, - ACTIONS(7945), 1, - sym_integer_literal, - ACTIONS(7947), 1, - sym_grit_metavariable, - STATE(6744), 1, - sym__reserved_identifier, - STATE(6863), 1, - sym__preproc_expression, - ACTIONS(7941), 2, - anon_sym_true, - anon_sym_false, - STATE(6915), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5844), 9, + STATE(5857), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699623,30 +692471,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [36415] = 15, + ACTIONS(4331), 25, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, @@ -699667,11 +692518,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7971), 1, + ACTIONS(8510), 1, anon_sym_into, - STATE(5843), 1, - aux_sym__query_body_repeat2, - STATE(5845), 9, + STATE(5864), 1, + aux_sym_query_body_repeat2, + STATE(5858), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699681,45 +692532,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 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(7572), 25, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_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, - [36503] = 22, + [37859] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699740,33 +692591,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6855), 1, + STATE(6816), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5846), 9, + STATE(5859), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699776,7 +692627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699799,7 +692650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [36605] = 22, + [37961] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699820,33 +692671,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(141), 1, + anon_sym_SQUOTE, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8494), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8496), 1, anon_sym_BANG, - ACTIONS(7943), 1, - anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8498), 1, sym_integer_literal, - ACTIONS(7947), 1, - sym_grit_metavariable, - STATE(6744), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6912), 1, + STATE(6861), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(123), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5847), 9, + STATE(5860), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699856,7 +692707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -699879,7 +692730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [36707] = 22, + [38063] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699900,33 +692751,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(7956), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7958), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7960), 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(6903), 1, + STATE(6902), 1, sym__preproc_expression, - ACTIONS(77), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6926), 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(5848), 9, + STATE(5861), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -699936,7 +692787,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, @@ -699959,7 +692810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [36809] = 22, + [38165] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -699980,33 +692831,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, - sym__identifier_token, - ACTIONS(7937), 1, - anon_sym_LPAREN, - ACTIONS(7939), 1, - anon_sym_BANG, - ACTIONS(7943), 1, - anon_sym_SQUOTE, - ACTIONS(7945), 1, - sym_integer_literal, - ACTIONS(7947), 1, - sym_grit_metavariable, - STATE(6744), 1, - sym__reserved_identifier, - STATE(6872), 1, - sym__preproc_expression, - ACTIONS(7941), 2, - anon_sym_true, - anon_sym_false, - STATE(6915), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5849), 9, + ACTIONS(8530), 1, + anon_sym_into, + STATE(5862), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700016,30 +692843,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - 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, - [36911] = 15, + 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, @@ -700060,11 +692903,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7980), 1, + ACTIONS(8485), 1, anon_sym_into, - STATE(5852), 1, - aux_sym__query_body_repeat2, - STATE(5850), 9, + STATE(5805), 1, + aux_sym_query_body_repeat2, + STATE(5863), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700074,45 +692917,117 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 11, + 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(7547), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7897), 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_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_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [38339] = 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(8533), 1, + anon_sym_into, + STATE(5864), 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, + 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, - [36999] = 22, + [38425] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700133,33 +693048,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6909), 1, + STATE(6785), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5851), 9, + STATE(5865), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700169,7 +693084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700192,7 +693107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [37101] = 14, + [38527] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700213,9 +693128,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7982), 1, + ACTIONS(8526), 1, anon_sym_into, - STATE(5852), 10, + STATE(5855), 1, + aux_sym_query_body_repeat2, + STATE(5866), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700225,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(7555), 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(7553), 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, - [37187] = 15, + [38615] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700285,11 +693201,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7980), 1, + ACTIONS(8526), 1, anon_sym_into, - STATE(5850), 1, - aux_sym__query_body_repeat2, - STATE(5853), 9, + STATE(5862), 1, + aux_sym_query_body_repeat2, + STATE(5867), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700299,45 +693215,118 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 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(7562), 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_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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_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, + [38703] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(8526), 1, + anon_sym_into, + STATE(5867), 1, + aux_sym_query_body_repeat2, + STATE(5868), 9, + sym_preproc_region, + sym_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_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, - [37275] = 22, + [38791] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700358,33 +693347,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(7956), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7958), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7960), 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(6869), 1, + STATE(6856), 1, sym__preproc_expression, - ACTIONS(77), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6926), 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(5869), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700394,7 +693383,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, @@ -700417,7 +693406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [37377] = 15, + [38893] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700438,11 +693427,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7976), 1, - anon_sym_and, - ACTIONS(7985), 1, - anon_sym_or, - STATE(5855), 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(6797), 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(5870), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700452,45 +693463,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7667), 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, + 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_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, - [37465] = 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, + [38995] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700511,33 +693507,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, - sym__identifier_token, - ACTIONS(7937), 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(8536), 1, + anon_sym_DOT, + ACTIONS(4331), 7, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(7939), 1, - anon_sym_BANG, - ACTIONS(7943), 1, - anon_sym_SQUOTE, - ACTIONS(7945), 1, - sym_integer_literal, - ACTIONS(7947), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_grit_metavariable, - STATE(6744), 1, - sym__reserved_identifier, - STATE(6854), 1, - sym__preproc_expression, - ACTIONS(7941), 2, - anon_sym_true, - anon_sym_false, - STATE(6915), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5856), 9, + STATE(5871), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700547,7 +693535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(4329), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700558,6 +693546,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, @@ -700570,7 +693561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [37567] = 22, + sym__identifier_token, + [39089] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700591,33 +693583,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6891), 1, + STATE(6840), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5872), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700627,7 +693619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700650,7 +693642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [37669] = 15, + [39191] = 27, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700671,84 +693663,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7980), 1, - anon_sym_into, - STATE(5852), 1, - aux_sym__query_body_repeat2, - STATE(5858), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7570), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7568), 25, - anon_sym_LBRACK, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4232), 1, + anon_sym_COMMA, + 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, + 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(6758), 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_on, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [37757] = 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(7980), 1, - anon_sym_into, - STATE(5858), 1, - aux_sym__query_body_repeat2, - STATE(5859), 9, + STATE(5873), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700758,45 +693704,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7572), 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, + 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [37845] = 26, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [39303] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700817,37 +693748,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(1307), 1, + 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, - ACTIONS(5883), 1, - anon_sym_LBRACK, - ACTIONS(5899), 1, - aux_sym_preproc_if_token1, - ACTIONS(7804), 1, - aux_sym_preproc_if_token3, - ACTIONS(7987), 1, - aux_sym_preproc_else_token1, - ACTIONS(7989), 1, - aux_sym_preproc_elif_token1, - STATE(2206), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6084), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6332), 1, - sym__attribute_list, - STATE(6911), 1, - sym_enum_member_declaration, - STATE(7039), 1, + STATE(6790), 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(6333), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(7645), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(5860), 9, + sym_preproc_parenthesized_expression, + sym_preproc_unary_expression, + sym_preproc_binary_expression, + STATE(5874), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700857,7 +693784,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, @@ -700880,7 +693807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [37955] = 22, + [39405] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700901,33 +693828,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6846), 1, + STATE(6802), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5861), 9, + STATE(5875), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -700937,7 +693864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -700960,7 +693887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [38057] = 15, + [39507] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -700981,11 +693908,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7991), 1, - anon_sym_into, - STATE(5863), 1, - aux_sym__query_body_repeat2, - STATE(5862), 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, @@ -700995,45 +693944,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7547), 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, + 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [38145] = 14, + 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, @@ -701054,58 +693988,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7993), 1, - anon_sym_into, - STATE(5863), 10, + 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, sym_preproc_pragma, sym_preproc_nullable, sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(7555), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7553), 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, + 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [38231] = 15, + 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, @@ -701126,11 +694068,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7991), 1, - anon_sym_into, - STATE(5862), 1, - aux_sym__query_body_repeat2, - STATE(5864), 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, @@ -701140,45 +694082,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 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(7562), 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_equals, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [38319] = 22, + [39799] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701199,33 +694141,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6922), 1, + STATE(6886), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5865), 9, + STATE(5879), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701235,7 +694177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701258,7 +694200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [38421] = 15, + [39901] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701279,11 +694221,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7991), 1, + ACTIONS(8540), 1, anon_sym_into, - STATE(5863), 1, - aux_sym__query_body_repeat2, - STATE(5866), 9, + STATE(5881), 1, + aux_sym_query_body_repeat2, + STATE(5880), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701293,45 +694235,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 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(7568), 25, + 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_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, - [38509] = 15, + [39989] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701352,11 +694294,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7923), 1, - anon_sym_and, - ACTIONS(7978), 1, - anon_sym_or, - STATE(5867), 9, + ACTIONS(8542), 1, + anon_sym_into, + STATE(5881), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701366,45 +694306,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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(7667), 25, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 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_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [38597] = 22, + [40075] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701425,33 +694366,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6799), 1, + STATE(6847), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5868), 9, + STATE(5882), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701461,7 +694402,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701484,7 +694425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [38699] = 22, + [40177] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701505,33 +694446,115 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6835), 1, + STATE(6782), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5869), 9, + STATE(5883), 9, + sym_preproc_region, + sym_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, + [40279] = 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(8281), 1, + sym_grit_metavariable, + ACTIONS(8518), 1, + anon_sym_LPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4528), 1, + sym__variable_designation, + STATE(4583), 1, + sym_identifier, + 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, @@ -701541,7 +694564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701564,7 +694587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [38801] = 22, + [40385] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701585,33 +694608,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6898), 1, + STATE(6812), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5870), 9, + STATE(5885), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701621,7 +694644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701644,7 +694667,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [38903] = 22, + [40487] = 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(5858), 1, + aux_sym_query_body_repeat2, + STATE(5886), 9, + sym_preproc_region, + sym_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, + 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, + [40575] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701665,33 +694761,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6906), 1, + STATE(6912), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5871), 9, + STATE(5887), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701701,7 +694797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701724,7 +694820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [39005] = 22, + [40677] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701745,33 +694841,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8473), 1, anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(8475), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(8479), 1, anon_sym_SQUOTE, - ACTIONS(7945), 1, + ACTIONS(8481), 1, sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(6744), 1, + STATE(6755), 1, sym__reserved_identifier, - STATE(6812), 1, + STATE(6875), 1, sym__preproc_expression, - ACTIONS(7941), 2, + ACTIONS(8477), 2, anon_sym_true, anon_sym_false, - STATE(6915), 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(5872), 9, + STATE(5888), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701781,7 +694877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701804,7 +694900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [39107] = 15, + [40779] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701825,11 +694921,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7991), 1, + ACTIONS(8540), 1, anon_sym_into, - STATE(5866), 1, - aux_sym__query_body_repeat2, - STATE(5873), 9, + STATE(5880), 1, + aux_sym_query_body_repeat2, + STATE(5889), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -701839,45 +694935,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 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(7572), 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_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, - [39195] = 22, + [40867] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701898,33 +694994,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7937), 1, - anon_sym_LPAREN, - ACTIONS(7939), 1, - anon_sym_BANG, - ACTIONS(7943), 1, - anon_sym_SQUOTE, - ACTIONS(7945), 1, - sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6744), 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(6811), 1, - sym__preproc_expression, - ACTIONS(7941), 2, - anon_sym_true, - anon_sym_false, - STATE(6915), 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(5874), 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, @@ -701934,7 +695034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -701957,7 +695057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [39297] = 22, + [40977] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -701978,33 +695078,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, - sym__identifier_token, - ACTIONS(7937), 1, - anon_sym_LPAREN, - ACTIONS(7939), 1, - anon_sym_BANG, - ACTIONS(7943), 1, - anon_sym_SQUOTE, - ACTIONS(7945), 1, - sym_integer_literal, - ACTIONS(7947), 1, - sym_grit_metavariable, - STATE(6744), 1, - sym__reserved_identifier, - STATE(6821), 1, - sym__preproc_expression, - ACTIONS(7941), 2, - anon_sym_true, - anon_sym_false, - STATE(6915), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5875), 9, + 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, @@ -702014,30 +695092,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - 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(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, + 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, - [39399] = 15, + 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, @@ -702058,11 +695151,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7996), 1, + ACTIONS(8510), 1, anon_sym_into, - STATE(5877), 1, - aux_sym__query_body_repeat2, - STATE(5876), 9, + STATE(5864), 1, + aux_sym_query_body_repeat2, + STATE(5892), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702072,45 +695165,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 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(7547), 25, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [39487] = 14, + [41153] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702131,9 +695224,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7998), 1, + ACTIONS(8540), 1, anon_sym_into, - STATE(5877), 10, + STATE(5891), 1, + aux_sym_query_body_repeat2, + STATE(5893), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702143,46 +695238,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(7555), 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(7553), 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_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, - [39573] = 15, + [41241] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702203,11 +695297,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7996), 1, + ACTIONS(4086), 4, + anon_sym_LBRACK, + anon_sym_LPAREN, + sym_grit_metavariable, + aux_sym_preproc_if_token1, + STATE(5894), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + 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, anon_sym_into, - STATE(5876), 1, - aux_sym__query_body_repeat2, - STATE(5878), 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, + [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, @@ -702217,45 +695383,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 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(7562), 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, - [39661] = 15, + [41411] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702276,11 +695439,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7996), 1, - anon_sym_into, - STATE(5877), 1, - aux_sym__query_body_repeat2, - STATE(5879), 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, @@ -702290,45 +695453,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 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(7568), 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_by, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [39749] = 15, + [41498] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702349,11 +695511,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7996), 1, - anon_sym_into, - STATE(5879), 1, - aux_sym__query_body_repeat2, - STATE(5880), 9, + ACTIONS(6959), 1, + anon_sym_COLON, + ACTIONS(5068), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5897), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702363,45 +695527,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 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(7572), 25, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5839), 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, - [39837] = 22, + [41585] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702422,33 +695583,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7937), 1, - anon_sym_LPAREN, - ACTIONS(7939), 1, - anon_sym_BANG, - ACTIONS(7943), 1, - anon_sym_SQUOTE, - ACTIONS(7945), 1, - sym_integer_literal, - ACTIONS(7947), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6744), 1, + 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(6793), 1, - sym__preproc_expression, - ACTIONS(7941), 2, - anon_sym_true, - anon_sym_false, - STATE(6915), 6, - sym_character_literal, - sym_boolean_literal, + STATE(2210), 1, + sym_generic_name, + STATE(6342), 1, + sym_explicit_interface_specifier, + STATE(6550), 1, sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5881), 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(5898), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702458,7 +695621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702481,7 +695644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [39939] = 18, + [41692] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702502,25 +695665,153 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, + 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, + 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, - ACTIONS(7745), 1, + anon_sym_LPAREN, anon_sym_STAR, - ACTIONS(7749), 1, + 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, + [41777] = 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(8549), 1, + anon_sym_and, + STATE(5900), 9, + sym_preproc_region, + sym_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, - ACTIONS(8001), 1, anon_sym_DOT, - ACTIONS(4318), 7, - anon_sym_COMMA, - anon_sym_RBRACK, + 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), 25, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - sym_grit_metavariable, - STATE(5882), 9, + anon_sym_STAR, + 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_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [41862] = 15, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(8559), 1, + anon_sym_and, + ACTIONS(8561), 1, + anon_sym_or, + STATE(5901), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702530,34 +695821,115 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 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(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_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_equals, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [41949] = 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(8559), 1, anon_sym_and, + STATE(5902), 9, + sym_preproc_region, + sym_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), 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_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, - [40033] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [42034] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702578,33 +695950,150 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, - sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(8563), 1, + anon_sym_and, + ACTIONS(8565), 1, + anon_sym_or, + STATE(5903), 9, + sym_preproc_region, + sym_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), 24, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(7939), 1, + 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, + [42121] = 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(8567), 1, + anon_sym_and, + STATE(5904), 9, + sym_preproc_region, + sym_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(7943), 1, - anon_sym_SQUOTE, - ACTIONS(7945), 1, - sym_integer_literal, - ACTIONS(7947), 1, - sym_grit_metavariable, - STATE(6744), 1, - sym__reserved_identifier, - STATE(6791), 1, - sym__preproc_expression, - ACTIONS(7941), 2, - anon_sym_true, - anon_sym_false, - STATE(6915), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5883), 9, + ACTIONS(8039), 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_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, + [42206] = 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(5905), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702614,7 +696103,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 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, @@ -702625,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, @@ -702637,7 +696141,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [40135] = 15, + sym__identifier_token, + [42289] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702658,11 +696163,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7962), 1, - anon_sym_into, - STATE(5886), 1, - aux_sym__query_body_repeat2, - STATE(5884), 9, + 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, @@ -702672,45 +696178,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 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(7572), 25, - sym_interpolation_close_brace, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5839), 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_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, - [40223] = 22, + [42374] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702731,33 +696234,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, - sym__identifier_token, - ACTIONS(7937), 1, + ACTIONS(5670), 4, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(7939), 1, - anon_sym_BANG, - ACTIONS(7943), 1, - anon_sym_SQUOTE, - ACTIONS(7945), 1, - sym_integer_literal, - ACTIONS(7947), 1, sym_grit_metavariable, - STATE(6744), 1, - sym__reserved_identifier, - STATE(6790), 1, - sym__preproc_expression, - ACTIONS(7941), 2, - anon_sym_true, - anon_sym_false, - STATE(6915), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5885), 9, + aux_sym_preproc_if_token1, + STATE(5907), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702767,15 +696249,25 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 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, @@ -702790,7 +696282,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [40325] = 15, + sym__identifier_token, + [42457] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702811,106 +696304,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7962), 1, - anon_sym_into, - STATE(5820), 1, - aux_sym__query_body_repeat2, - STATE(5886), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7570), 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(8569), 1, anon_sym_DOT, - ACTIONS(7568), 25, - sym_interpolation_close_brace, - anon_sym_LBRACK, - anon_sym_COLON, + ACTIONS(4331), 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_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [40413] = 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(7933), 1, - sym__identifier_token, - ACTIONS(7937), 1, - anon_sym_LPAREN, - ACTIONS(7939), 1, - anon_sym_BANG, - ACTIONS(7943), 1, - anon_sym_SQUOTE, - ACTIONS(7945), 1, - sym_integer_literal, - ACTIONS(7947), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, sym_grit_metavariable, - STATE(6744), 1, - sym__reserved_identifier, - STATE(6805), 1, - sym__preproc_expression, - ACTIONS(7941), 2, - anon_sym_true, - anon_sym_false, - STATE(6915), 6, - sym_character_literal, - sym_boolean_literal, - sym_identifier, - sym_preproc_parenthesized_expression, - sym_preproc_unary_expression, - sym_preproc_binary_expression, - STATE(5887), 9, + STATE(5908), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702920,7 +696331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(4329), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -702931,6 +696342,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, @@ -702943,7 +696357,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [40515] = 15, + sym__identifier_token, + [42550] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -702964,13 +696379,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7038), 1, - anon_sym_COLON, - ACTIONS(5003), 3, - anon_sym_when, + ACTIONS(8571), 1, anon_sym_and, + ACTIONS(8573), 1, anon_sym_or, - STATE(5888), 9, + STATE(5909), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -702980,42 +696393,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6059), 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(6057), 22, + 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_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_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [40602] = 14, + [42637] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703036,9 +696451,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8003), 1, + ACTIONS(8571), 1, anon_sym_and, - STATE(5889), 9, + STATE(5910), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703048,45 +696463,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 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(7679), 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_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_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [40687] = 13, + [42722] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703107,12 +696522,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5823), 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(5890), 9, + 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(2210), 1, + sym_generic_name, + STATE(6357), 1, + sym_explicit_interface_specifier, + STATE(6549), 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(5911), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703122,25 +696560,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5821), 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, @@ -703155,8 +696583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [40770] = 15, + [42829] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703177,11 +696604,35 @@ 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(5891), 9, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + 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(2210), 1, + sym_generic_name, + STATE(6271), 1, + sym_explicit_interface_specifier, + STATE(6548), 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(5912), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703191,44 +696642,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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(7667), 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [40857] = 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, + [42936] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703249,9 +696686,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8009), 1, + ACTIONS(8563), 1, anon_sym_and, - STATE(5892), 9, + STATE(5913), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703261,45 +696698,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 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(7679), 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_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [40942] = 15, + [43021] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703320,11 +696757,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8011), 1, - anon_sym_and, - ACTIONS(8013), 1, - anon_sym_or, - STATE(5893), 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(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, @@ -703334,44 +696787,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7667), 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, + 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [41029] = 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, + sym__identifier_token, + [43120] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703392,11 +696835,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8015), 1, - anon_sym_and, - ACTIONS(8017), 1, - anon_sym_or, - STATE(5894), 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, + 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, @@ -703406,44 +696859,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7667), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, + 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, + anon_sym_join, anon_sym_on, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [41116] = 13, + anon_sym_equals, + 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, @@ -703464,12 +696909,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4086), 4, + ACTIONS(5698), 4, anon_sym_LBRACK, anon_sym_LPAREN, sym_grit_metavariable, aux_sym_preproc_if_token1, - STATE(5895), 9, + STATE(5916), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703479,7 +696924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4084), 33, + ACTIONS(5696), 33, anon_sym_alias, anon_sym_global, anon_sym_static, @@ -703513,7 +696958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [41199] = 17, + [43294] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703534,21 +696979,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5464), 1, - aux_sym_preproc_else_token1, - ACTIONS(5466), 1, - aux_sym_preproc_elif_token1, - ACTIONS(5468), 1, - aux_sym_preproc_if_token3, - STATE(7764), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - ACTIONS(5460), 4, - anon_sym_LBRACK, + ACTIONS(3910), 5, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(5896), 9, + ACTIONS(3694), 6, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_COLON_COLON, + anon_sym_STAR, + STATE(5917), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703558,22 +697002,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5458), 28, + ACTIONS(3913), 26, anon_sym_alias, anon_sym_global, - anon_sym_static, - anon_sym_ref, - anon_sym_delegate, - anon_sym_async, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, anon_sym_scoped, anon_sym_var, - sym_predefined_type, anon_sym_yield, anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -703587,7 +697029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [41290] = 15, + [43379] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703608,13 +697050,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7020), 1, - anon_sym_COLON, - ACTIONS(5003), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5897), 9, + ACTIONS(4439), 1, + anon_sym_LBRACK, + ACTIONS(4447), 1, + anon_sym_STAR, + 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, @@ -703624,42 +697078,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6047), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6045), 22, - anon_sym_LBRACK, + ACTIONS(4331), 24, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + 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, - [41377] = 13, + [43470] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703680,12 +697124,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5932), 4, - anon_sym_LBRACK, - anon_sym_LPAREN, - sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(5898), 9, + ACTIONS(8567), 1, + anon_sym_and, + ACTIONS(8591), 1, + anon_sym_or, + STATE(5919), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703695,41 +697138,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5930), 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_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, - [41460] = 13, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [43557] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703750,12 +697196,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5859), 4, + ACTIONS(5204), 4, anon_sym_LBRACK, anon_sym_LPAREN, sym_grit_metavariable, aux_sym_preproc_if_token1, - STATE(5899), 9, + STATE(5920), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703765,7 +697211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5857), 33, + ACTIONS(5202), 33, anon_sym_alias, anon_sym_global, anon_sym_static, @@ -703799,7 +697245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [41543] = 15, + [43640] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703820,11 +697266,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8003), 1, + ACTIONS(8593), 1, anon_sym_and, - ACTIONS(8019), 1, + ACTIONS(8595), 1, anon_sym_or, - STATE(5900), 9, + STATE(5921), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703834,44 +697280,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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(7016), 24, + 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_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, - [41630] = 14, + [43727] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703892,9 +697338,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8021), 1, - anon_sym_and, - STATE(5901), 9, + ACTIONS(8589), 1, + anon_sym_DOT, + STATE(5922), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703904,45 +697350,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 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(7679), 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_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, - [41715] = 16, + [43812] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -703963,21 +697409,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4234), 1, + 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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + 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_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, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(4236), 1, anon_sym_COLON_COLON, - ACTIONS(7683), 1, + ACTIONS(8151), 1, anon_sym_LT, - STATE(5462), 1, + STATE(5456), 1, sym_type_argument_list, - ACTIONS(3953), 7, + ACTIONS(3957), 7, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, + anon_sym_STAR, sym_grit_metavariable, - STATE(5902), 9, + STATE(5924), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -703987,7 +697503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 27, + ACTIONS(3955), 27, anon_sym_alias, anon_sym_global, anon_sym_COLON, @@ -704015,7 +697531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [41804] = 15, + [43984] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704036,11 +697552,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8021), 1, + ACTIONS(8597), 1, anon_sym_and, - ACTIONS(8023), 1, + ACTIONS(8599), 1, anon_sym_or, - STATE(5903), 9, + STATE(5925), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704050,44 +697566,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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(7016), 24, + 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_into, - anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [41891] = 17, + [44071] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704108,21 +697624,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5464), 1, + ACTIONS(5208), 1, aux_sym_preproc_else_token1, - ACTIONS(5466), 1, + ACTIONS(5210), 1, aux_sym_preproc_elif_token1, - ACTIONS(8025), 1, + ACTIONS(5212), 1, aux_sym_preproc_if_token3, - STATE(7891), 2, + STATE(7745), 2, sym_preproc_else_in_attribute_list, sym_preproc_elif_in_attribute_list, - ACTIONS(5460), 4, + ACTIONS(5204), 4, anon_sym_LBRACK, anon_sym_LPAREN, sym_grit_metavariable, aux_sym_preproc_if_token1, - STATE(5904), 9, + STATE(5926), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704132,7 +697648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5458), 28, + ACTIONS(5202), 28, anon_sym_alias, anon_sym_global, anon_sym_static, @@ -704161,7 +697677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [41982] = 14, + [44162] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704182,9 +697698,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8027), 1, - anon_sym_DOT, - STATE(5905), 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, @@ -704194,45 +697712,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4361), 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(4363), 26, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 24, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_in, - 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_into, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [42067] = 25, + [44249] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704253,35 +697770,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(8029), 1, - anon_sym_LPAREN, - ACTIONS(8031), 1, - anon_sym_operator, - ACTIONS(8033), 1, - anon_sym_this, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(6269), 1, - sym_explicit_interface_specifier, - STATE(6553), 1, - sym_identifier, - STATE(6908), 1, - sym_tuple_pattern, - STATE(7161), 1, - sym_variable_declarator, - STATE(7919), 1, - sym__name, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5906), 9, + ACTIONS(8593), 1, + anon_sym_and, + STATE(5928), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704291,112 +697782,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, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [42174] = 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(1307), 1, - sym_grit_metavariable, - ACTIONS(8029), 1, + 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), 25, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(8035), 1, - anon_sym_operator, - ACTIONS(8037), 1, - anon_sym_this, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(6264), 1, - sym_explicit_interface_specifier, - STATE(6555), 1, - sym_identifier, - STATE(6908), 1, - sym_tuple_pattern, - STATE(7161), 1, - sym_variable_declarator, - STATE(7919), 1, - sym__name, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5907), 9, - sym_preproc_region, - sym_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_EQ_GT, + 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_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [42281] = 15, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [44334] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704417,11 +697841,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8003), 1, + ACTIONS(8567), 1, anon_sym_and, - ACTIONS(8019), 1, + ACTIONS(8591), 1, anon_sym_or, - STATE(5908), 9, + STATE(5929), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704431,44 +697855,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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(7667), 24, + 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_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_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [42368] = 17, + [44421] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704489,25 +697913,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4391), 1, - anon_sym_LBRACK, - ACTIONS(4397), 1, - anon_sym_STAR, - ACTIONS(7063), 1, - anon_sym_QMARK, - ACTIONS(8027), 1, - anon_sym_DOT, - ACTIONS(4316), 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(5909), 9, + STATE(5930), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704517,32 +697923,46 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4318), 24, + ACTIONS(3189), 11, + 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_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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_LT, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, anon_sym_DASH_GT, - anon_sym_with, - [42459] = 15, + 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_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [44504] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704563,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(8039), 1, - anon_sym_or, - STATE(5910), 9, + ACTIONS(8601), 1, + anon_sym_SEMI, + STATE(5931), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704577,44 +697995,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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(7667), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5839), 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_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, - [42546] = 14, + 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, @@ -704635,12 +698054,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5003), 4, - anon_sym_COLON, - anon_sym_when, + ACTIONS(8559), 1, anon_sym_and, + ACTIONS(8561), 1, anon_sym_or, - STATE(5911), 9, + STATE(5932), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704650,42 +698068,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6059), 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(6057), 22, + 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_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, - [42631] = 14, + [44676] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704706,9 +698126,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8015), 1, + ACTIONS(8597), 1, anon_sym_and, - STATE(5912), 9, + ACTIONS(8599), 1, + anon_sym_or, + STATE(5933), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704718,45 +698140,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 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(7679), 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_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_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [42716] = 25, + [44763] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704779,33 +698200,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(8029), 1, + ACTIONS(8553), 1, anon_sym_LPAREN, - ACTIONS(8041), 1, + ACTIONS(8603), 1, anon_sym_operator, - ACTIONS(8043), 1, + ACTIONS(8605), 1, anon_sym_this, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(6314), 1, + STATE(6310), 1, sym_explicit_interface_specifier, - STATE(6556), 1, + STATE(6547), 1, sym_identifier, - STATE(6908), 1, + STATE(6890), 1, sym_tuple_pattern, - STATE(7161), 1, + STATE(7262), 1, sym_variable_declarator, - STATE(7919), 1, + STATE(7743), 1, sym__name, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5913), 9, + STATE(5934), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704838,77 +698259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [42823] = 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(5460), 4, - anon_sym_LBRACK, - anon_sym_LPAREN, - sym_grit_metavariable, - aux_sym_preproc_if_token1, - 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(5458), 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, - [42906] = 14, + [44870] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -704929,9 +698280,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8011), 1, + ACTIONS(8597), 1, anon_sym_and, - STATE(5915), 9, + STATE(5935), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -704941,45 +698292,45 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 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(7679), 25, + 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_EQ_GT, 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, - [42991] = 13, + [44955] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705000,12 +698351,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5928), 4, + ACTIONS(5711), 4, anon_sym_LBRACK, anon_sym_LPAREN, sym_grit_metavariable, aux_sym_preproc_if_token1, - STATE(5916), 9, + STATE(5936), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705015,7 +698366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5926), 33, + ACTIONS(5709), 33, anon_sym_alias, anon_sym_global, anon_sym_static, @@ -705049,7 +698400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [43074] = 14, + [45038] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705070,12 +698421,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5003), 4, - anon_sym_COLON, - anon_sym_when, + ACTIONS(8571), 1, anon_sym_and, + ACTIONS(8573), 1, anon_sym_or, - STATE(5917), 9, + STATE(5937), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705085,42 +698435,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6047), 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(6045), 22, + 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_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_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [43159] = 14, + [45125] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705141,9 +698493,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8045), 1, + ACTIONS(8607), 1, anon_sym_and, - STATE(5918), 9, + STATE(5938), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705153,45 +698505,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 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(7679), 25, + 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_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_EQ_GT, 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_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [43244] = 15, + [45209] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705212,11 +698563,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8011), 1, + ACTIONS(8609), 1, anon_sym_and, - ACTIONS(8013), 1, + ACTIONS(8611), 1, anon_sym_or, - STATE(5919), 9, + STATE(5939), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705226,44 +698577,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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(7016), 24, + 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_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_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [43331] = 15, + [45295] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705284,11 +698634,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8021), 1, - anon_sym_and, - ACTIONS(8023), 1, - anon_sym_or, - STATE(5920), 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, @@ -705298,44 +698648,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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(7667), 24, + 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_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_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [43418] = 15, + [45381] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705356,11 +698705,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8015), 1, - anon_sym_and, - ACTIONS(8017), 1, - anon_sym_or, - STATE(5921), 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(8615), 1, + anon_sym_DOT, + ACTIONS(4331), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + sym_grit_metavariable, + STATE(5941), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705370,44 +698731,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7016), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - 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, - [43505] = 25, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [45473] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705428,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(8029), 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(8041), 1, - anon_sym_operator, - ACTIONS(8047), 1, - anon_sym_this, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(6335), 1, - sym_explicit_interface_specifier, - STATE(6554), 1, - sym_identifier, - STATE(6908), 1, - sym_tuple_pattern, - STATE(7161), 1, - sym_variable_declarator, - STATE(7919), 1, - sym__name, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5922), 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, @@ -705466,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, @@ -705489,7 +698832,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [43612] = 14, + sym__identifier_token, + [45567] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705510,9 +698854,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8005), 1, - anon_sym_and, - STATE(5923), 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, @@ -705522,45 +698868,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 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(7679), 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_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, - [43697] = 15, + [45653] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705581,11 +698925,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(5924), 9, + ACTIONS(8623), 1, + anon_sym_RPAREN, + STATE(5944), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705595,44 +698937,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 12, + ACTIONS(5510), 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(7016), 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_into, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [43784] = 15, + [45737] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705653,11 +698995,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8045), 1, - anon_sym_and, - ACTIONS(8049), 1, - anon_sym_or, - STATE(5925), 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, @@ -705667,44 +699009,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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(7667), 24, + 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_EQ_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_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + sym_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, - [43871] = 18, + [45823] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705725,24 +699066,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(8051), 1, - anon_sym_DOT, - ACTIONS(4318), 6, - anon_sym_COMMA, + 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(4569), 1, + sym__variable_designation, + STATE(4583), 1, + sym_identifier, + 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_LBRACE, anon_sym_RBRACE, - sym_grit_metavariable, - STATE(5926), 9, + STATE(5946), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705752,7 +699100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 26, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -705763,9 +699111,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, @@ -705778,8 +699123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [43964] = 13, + [45923] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705800,7 +699144,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5927), 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(8627), 1, + anon_sym_DOT, + ACTIONS(4331), 5, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + sym_grit_metavariable, + STATE(5947), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705810,19 +699170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3700), 11, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_grit_metavariable, - ACTIONS(3702), 26, + ACTIONS(4329), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -705849,7 +699197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [44047] = 13, + [46015] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705870,7 +699218,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(5928), 9, + ACTIONS(8629), 1, + anon_sym_into, + STATE(5948), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -705880,46 +699230,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, + aux_sym_query_body_repeat2, + ACTIONS(7913), 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_into, - anon_sym_join, + 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), 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, - [44130] = 14, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [46099] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -705940,9 +699288,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8053), 1, - anon_sym_SEMI, - STATE(5929), 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, @@ -705952,45 +699302,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6059), 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(6057), 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_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, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - [44215] = 21, + [46185] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706011,27 +699359,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(7967), 1, - anon_sym_DOT, - ACTIONS(8058), 1, - anon_sym_LPAREN, - STATE(7421), 1, - sym_attribute_argument_list, - ACTIONS(4318), 2, - anon_sym_LBRACE, - sym_grit_metavariable, - ACTIONS(8055), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(5930), 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, @@ -706041,105 +699373,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 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, - [44314] = 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(3700), 6, - anon_sym_LBRACK, + ACTIONS(7920), 12, anon_sym_LT, + anon_sym_GT, + anon_sym_in, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(5931), 9, - sym_preproc_region, - sym_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, - [44399] = 15, + 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, @@ -706160,11 +699430,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8061), 1, + ACTIONS(8632), 1, anon_sym_into, - STATE(5957), 1, - aux_sym__query_body_repeat2, - STATE(5932), 9, + STATE(5951), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706174,43 +699442,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 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(7547), 22, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [44485] = 22, + [46355] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706231,31 +699500,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4236), 1, - sym_discard, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7772), 1, - sym_grit_metavariable, - ACTIONS(7931), 1, - anon_sym_LPAREN, - STATE(2787), 1, - sym__reserved_identifier, - STATE(4984), 1, - sym__variable_designation, - STATE(5004), 1, - sym_identifier, - STATE(5014), 1, - sym_parenthesized_variable_designation, - ACTIONS(4298), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(4296), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5933), 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, @@ -706265,30 +699514,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, + ACTIONS(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_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [44585] = 22, + anon_sym_as, + anon_sym_is, + anon_sym_DASH_GT, + anon_sym_with, + [46441] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706309,31 +699571,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4236), 1, - sym_discard, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7772), 1, - sym_grit_metavariable, - ACTIONS(7931), 1, - anon_sym_LPAREN, - STATE(2787), 1, - sym__reserved_identifier, - STATE(4985), 1, - sym__variable_designation, - STATE(5004), 1, - sym_identifier, - STATE(5014), 1, - sym_parenthesized_variable_designation, - ACTIONS(4252), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(4250), 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(8635), 1, + anon_sym_DOT, + ACTIONS(4331), 5, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(5934), 9, + sym_grit_metavariable, + STATE(5953), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706343,7 +699597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(4329), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -706354,86 +699608,9 @@ 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, - [44685] = 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(4214), 1, - anon_sym_LBRACE, - ACTIONS(4236), 1, sym_discard, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7772), 1, - sym_grit_metavariable, - ACTIONS(7931), 1, - anon_sym_LPAREN, - STATE(2787), 1, - sym__reserved_identifier, - STATE(4986), 1, - sym__variable_designation, - STATE(5004), 1, - sym_identifier, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(6020), 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(5935), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7768), 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, @@ -706446,7 +699623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [44789] = 15, + sym__identifier_token, + [46533] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706467,11 +699645,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8063), 1, - anon_sym_into, - STATE(5945), 1, - aux_sym__query_body_repeat2, - STATE(5936), 9, + ACTIONS(8637), 1, + anon_sym_RPAREN, + STATE(5954), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706481,43 +699657,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 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(7562), 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_equals, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [44875] = 15, + [46617] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706538,11 +699715,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8063), 1, - anon_sym_into, - STATE(5962), 1, - aux_sym__query_body_repeat2, - STATE(5937), 9, + ACTIONS(8639), 1, + anon_sym_and, + ACTIONS(8641), 1, + anon_sym_or, + STATE(5955), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706552,43 +699729,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 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(7568), 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_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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_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, - [44961] = 14, + [46703] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706609,9 +699786,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8065), 1, - anon_sym_and, - STATE(5938), 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, @@ -706621,44 +699800,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 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(7679), 24, + 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_equals, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [45045] = 15, + [46789] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706679,11 +699857,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(5954), 1, - aux_sym__query_body_repeat2, - STATE(5939), 9, + STATE(5963), 1, + aux_sym_query_body_repeat2, + STATE(5957), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706693,43 +699871,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 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(7572), 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_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_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [45131] = 15, + [46875] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706750,11 +699928,11 @@ 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(5940), 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, @@ -706764,43 +699942,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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(7667), 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_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, - [45217] = 14, + [46961] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706821,9 +699999,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8067), 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(4529), 1, + sym__variable_designation, + STATE(4583), 1, + sym_identifier, + STATE(4585), 1, + sym_parenthesized_variable_designation, + ACTIONS(4256), 2, anon_sym_and, - STATE(5941), 9, + 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, @@ -706833,44 +700033,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7679), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_GT, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [45301] = 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, + [47061] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706891,11 +700077,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(5967), 1, - aux_sym__query_body_repeat2, - STATE(5942), 9, + ACTIONS(8645), 1, + anon_sym_SEMI, + STATE(5960), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -706905,43 +700089,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 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(7572), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5839), 24, anon_sym_LBRACK, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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, - [45387] = 14, + [47145] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -706962,9 +700147,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8073), 1, - anon_sym_SEMI, - STATE(5943), 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, @@ -706974,44 +700161,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(6059), 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(6057), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7907), 23, anon_sym_LBRACK, - anon_sym_COMMA, anon_sym_LPAREN, - 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_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, - [45471] = 15, + [47231] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707032,11 +700218,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8075), 1, + ACTIONS(8639), 1, anon_sym_and, - ACTIONS(8077), 1, + ACTIONS(8641), 1, anon_sym_or, - STATE(5944), 9, + STATE(5962), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707046,43 +700232,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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(7016), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 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_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, - [45557] = 15, + [47317] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707103,11 +700289,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8063), 1, + ACTIONS(8647), 1, anon_sym_into, - STATE(5962), 1, - aux_sym__query_body_repeat2, - STATE(5945), 9, + STATE(5963), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707117,43 +700301,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 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(7547), 23, + 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_equals, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [45643] = 15, + [47401] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707174,11 +700359,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8079), 1, + ACTIONS(8643), 1, anon_sym_into, - STATE(5960), 1, - aux_sym__query_body_repeat2, - STATE(5946), 9, + STATE(5963), 1, + aux_sym_query_body_repeat2, + STATE(5964), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707188,43 +700373,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 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(7568), 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, - [45729] = 15, + [47487] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707245,11 +700430,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8079), 1, - anon_sym_into, - STATE(5965), 1, - aux_sym__query_body_repeat2, - STATE(5947), 9, + ACTIONS(8650), 1, + anon_sym_and, + STATE(5965), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707259,43 +700442,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 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(7562), 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_by, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [45815] = 18, + [47571] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707315,24 +700499,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 1, aux_sym_preproc_undef_token1, ACTIONS(21), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(8081), 1, - anon_sym_DOT, - ACTIONS(4318), 5, - anon_sym_COMMA, + sym_comment, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8281), 1, + sym_grit_metavariable, + ACTIONS(8518), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + 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, + anon_sym_or, + ACTIONS(4306), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_RBRACE, - sym_grit_metavariable, - STATE(5948), 9, + STATE(5966), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707342,7 +700534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 26, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -707353,9 +700545,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, @@ -707368,8 +700557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [45907] = 18, + [47671] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707390,23 +700578,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(8083), 1, - anon_sym_DOT, - ACTIONS(4318), 5, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(4222), 1, anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(5949), 9, + ACTIONS(8518), 1, + anon_sym_LPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(4528), 1, + sym__variable_designation, + STATE(4583), 1, + sym_identifier, + STATE(4585), 1, + sym_parenthesized_variable_designation, + STATE(6026), 1, + sym_property_pattern_clause, + ACTIONS(4254), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(4256), 3, + anon_sym_when, + anon_sym_and, + anon_sym_or, + STATE(5967), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707416,7 +700615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 26, + ACTIONS(8277), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -707426,10 +700625,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_scoped, anon_sym_var, anon_sym_yield, - anon_sym_when, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -707442,8 +700637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [45999] = 14, + [47775] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707464,9 +700658,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8085), 1, - anon_sym_and, - STATE(5950), 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, @@ -707476,44 +700694,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7679), 24, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_switch, - anon_sym_DOT_DOT, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - sym_op_coalescing, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [46083] = 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, + [47879] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707534,9 +700738,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8087), 1, - anon_sym_and, - STATE(5951), 9, + 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, @@ -707546,44 +700752,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 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(7679), 24, + 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_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_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, - [46167] = 14, + [47965] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707604,9 +700809,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8089), 1, + ACTIONS(8660), 1, anon_sym_RPAREN, - STATE(5952), 9, + STATE(5970), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707616,44 +700821,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 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(5752), 24, + 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, - [46251] = 14, + [48049] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707674,9 +700879,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8091), 1, + ACTIONS(8662), 1, anon_sym_and, - STATE(5953), 9, + ACTIONS(8664), 1, + anon_sym_or, + STATE(5971), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707686,44 +700893,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 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(7679), 24, + 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_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_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [46335] = 15, + [48135] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707744,11 +700950,11 @@ 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(5957), 1, - aux_sym__query_body_repeat2, - STATE(5954), 9, + ACTIONS(8666), 1, + anon_sym_and, + ACTIONS(8668), 1, + anon_sym_or, + STATE(5972), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707758,43 +700964,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 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(7568), 22, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 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_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, - [46421] = 15, + [48221] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707815,11 +701021,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8093), 1, - anon_sym_into, - STATE(5984), 1, - aux_sym__query_body_repeat2, - STATE(5955), 9, + ACTIONS(8609), 1, + anon_sym_and, + STATE(5973), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707829,43 +701033,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 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(7572), 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_EQ_GT, + 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_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [46507] = 15, + [48305] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707886,11 +701091,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(5932), 1, - aux_sym__query_body_repeat2, - STATE(5956), 9, + ACTIONS(8639), 1, + anon_sym_and, + STATE(5974), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707900,43 +701103,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 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(7562), 22, + 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_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [46593] = 14, + [48389] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -707957,9 +701161,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8095), 1, + ACTIONS(8658), 1, anon_sym_into, - STATE(5957), 10, + STATE(5976), 1, + aux_sym_query_body_repeat2, + STATE(5975), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -707969,44 +701175,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(7555), 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(7553), 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_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [46677] = 15, + [48475] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708027,11 +701232,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8075), 1, - anon_sym_and, - ACTIONS(8077), 1, - anon_sym_or, - STATE(5958), 9, + ACTIONS(8670), 1, + anon_sym_into, + STATE(5976), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708041,43 +701244,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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(7667), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7911), 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_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, - [46763] = 14, + [48559] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708098,9 +701302,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8098), 1, - anon_sym_RPAREN, - STATE(5959), 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, @@ -708110,44 +701316,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 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(5752), 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_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, - [46847] = 14, + [48645] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708168,9 +701373,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8100), 1, + ACTIONS(8658), 1, anon_sym_into, - STATE(5960), 10, + STATE(5975), 1, + aux_sym_query_body_repeat2, + STATE(5978), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708180,44 +701387,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(7555), 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(7553), 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_by, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [46931] = 14, + [48731] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708238,9 +701444,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8103), 1, - anon_sym_RPAREN, - STATE(5961), 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, @@ -708250,44 +701458,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 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(5752), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7903), 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, - [47015] = 14, + [48817] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708308,9 +701515,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8105), 1, - anon_sym_into, - STATE(5962), 10, + ACTIONS(8609), 1, + anon_sym_and, + ACTIONS(8611), 1, + anon_sym_or, + STATE(5980), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708320,204 +701529,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(7555), 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(7553), 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_equals, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [47099] = 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(1307), 1, - sym_grit_metavariable, - ACTIONS(5883), 1, - anon_sym_LBRACK, - ACTIONS(8108), 1, - anon_sym_COMMA, - ACTIONS(8110), 1, - anon_sym_RBRACE, - ACTIONS(8112), 1, - aux_sym_preproc_if_token1, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6083), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6332), 1, - sym__attribute_list, - STATE(7063), 1, - sym_identifier, - STATE(6333), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(7055), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, - STATE(5963), 9, - sym_preproc_region, - sym_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, - [47203] = 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(4214), 1, - anon_sym_LBRACE, - ACTIONS(4236), 1, - sym_discard, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7772), 1, - sym_grit_metavariable, - ACTIONS(7931), 1, - anon_sym_LPAREN, - STATE(2787), 1, - sym__reserved_identifier, - STATE(4997), 1, - sym__variable_designation, - STATE(5004), 1, - sym_identifier, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(6039), 1, - sym_property_pattern_clause, - ACTIONS(4246), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(4248), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(5964), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7768), 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, - [47307] = 15, + [48903] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708538,11 +701586,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8079), 1, + ACTIONS(8625), 1, anon_sym_into, - STATE(5960), 1, - aux_sym__query_body_repeat2, - STATE(5965), 9, + STATE(5952), 1, + aux_sym_query_body_repeat2, + STATE(5981), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708552,43 +701600,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 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(7547), 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_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_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [47393] = 15, + [48989] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708609,11 +701657,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8085), 1, - anon_sym_and, - ACTIONS(8114), 1, - anon_sym_or, - STATE(5966), 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, @@ -708623,43 +701671,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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(7667), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(7918), 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_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [47479] = 15, + [49075] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708680,11 +701728,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(5976), 1, - aux_sym__query_body_repeat2, - STATE(5967), 9, + ACTIONS(8662), 1, + anon_sym_and, + STATE(5983), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708694,43 +701740,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 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(7568), 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_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, - [47565] = 15, + [49159] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708751,11 +701798,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8065), 1, + ACTIONS(8607), 1, anon_sym_and, - ACTIONS(8116), 1, + ACTIONS(8673), 1, anon_sym_or, - STATE(5968), 9, + STATE(5984), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708765,43 +701812,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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(7016), 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_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_equals, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [47651] = 15, + [49245] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708822,11 +701869,9 @@ 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(5969), 9, + ACTIONS(8675), 1, + anon_sym_into, + STATE(5985), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708836,43 +701881,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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(7016), 23, + 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_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, - [47737] = 15, + [49329] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708893,11 +701939,11 @@ 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(8116), 1, - anon_sym_or, - STATE(5970), 9, + ACTIONS(8643), 1, + anon_sym_into, + STATE(5957), 1, + aux_sym_query_body_repeat2, + STATE(5986), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708907,43 +701953,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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(7667), 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_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_equals, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [47823] = 15, + [49415] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -708964,11 +702010,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8085), 1, + ACTIONS(8650), 1, anon_sym_and, - ACTIONS(8114), 1, + ACTIONS(8678), 1, anon_sym_or, - STATE(5971), 9, + STATE(5987), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -708978,43 +702024,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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(7016), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8003), 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_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [47909] = 18, + [49501] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709035,83 +702081,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(8118), 1, - anon_sym_DOT, - ACTIONS(4318), 5, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - sym_grit_metavariable, - 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(4316), 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(8666), 1, 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, - [48001] = 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(8120), 1, - anon_sym_RPAREN, - STATE(5973), 9, + STATE(5988), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709121,44 +702093,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 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(5752), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(8039), 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_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, - [48085] = 17, + [49585] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709179,22 +702151,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7046), 1, + STATE(7014), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - ACTIONS(4290), 6, + 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(5974), 9, + STATE(5989), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709204,7 +702176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4288), 26, + ACTIONS(4280), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -709231,7 +702203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [48175] = 15, + [49675] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709252,11 +702224,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8071), 1, + ACTIONS(8613), 1, anon_sym_into, - STATE(5978), 1, - aux_sym__query_body_repeat2, - STATE(5975), 9, + STATE(5982), 1, + aux_sym_query_body_repeat2, + STATE(5990), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709266,184 +702238,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 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(7562), 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_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, - [48261] = 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(8122), 1, - anon_sym_into, - STATE(5976), 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(7555), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7553), 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_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_on, - anon_sym_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [48345] = 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(8087), 1, - anon_sym_and, - ACTIONS(8125), 1, - anon_sym_or, - STATE(5977), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7018), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7016), 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_on, + anon_sym_by, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [48431] = 15, + [49761] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709464,11 +702295,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(5976), 1, - aux_sym__query_body_repeat2, - STATE(5978), 9, + ACTIONS(8680), 1, + anon_sym_RPAREN, + STATE(5991), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709478,43 +702307,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 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(7547), 23, + sym_op_divide, + anon_sym_BANG, + ACTIONS(5508), 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_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_on, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [48517] = 15, + [49845] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709535,11 +702365,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8091), 1, - anon_sym_and, - ACTIONS(8127), 1, - anon_sym_or, - STATE(5979), 9, + ACTIONS(8613), 1, + anon_sym_into, + STATE(5985), 1, + aux_sym_query_body_repeat2, + STATE(5992), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709549,43 +702379,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7018), 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(7016), 23, + 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, - [48603] = 15, + [49931] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709606,11 +702436,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8079), 1, - anon_sym_into, - STATE(5946), 1, - aux_sym__query_body_repeat2, - STATE(5980), 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, @@ -709620,43 +702450,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 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(7572), 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_STAR, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_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_equals, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [48689] = 14, + [50017] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709677,9 +702507,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8075), 1, + ACTIONS(8666), 1, anon_sym_and, - STATE(5981), 9, + ACTIONS(8668), 1, + anon_sym_or, + STATE(5994), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709689,44 +702521,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7681), 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(7679), 24, + sym_op_divide, + anon_sym_BANG, + ACTIONS(6885), 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_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, - [48773] = 15, + [50103] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709747,11 +702578,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8091), 1, + ACTIONS(8650), 1, anon_sym_and, - ACTIONS(8127), 1, + ACTIONS(8678), 1, anon_sym_or, - STATE(5982), 9, + STATE(5995), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709761,43 +702592,43 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 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(7667), 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_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_on, anon_sym_as, anon_sym_is, anon_sym_DASH_GT, anon_sym_with, - [48859] = 18, + [50189] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709818,23 +702649,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4450), 1, anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8129), 1, + ACTIONS(8682), 1, anon_sym_DOT, - ACTIONS(4318), 5, + ACTIONS(4331), 5, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, sym_grit_metavariable, - STATE(5983), 9, + STATE(5996), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709844,7 +702675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 26, + ACTIONS(4329), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -709871,7 +702702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [48951] = 15, + [50281] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709892,11 +702723,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8093), 1, - anon_sym_into, - STATE(5991), 1, - aux_sym__query_body_repeat2, - STATE(5984), 9, + ACTIONS(8684), 1, + anon_sym_RPAREN, + STATE(5997), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -709906,43 +702735,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7570), 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(7568), 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, - [49037] = 15, + [50365] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -709963,11 +702793,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8087), 1, - anon_sym_and, - ACTIONS(8125), 1, - anon_sym_or, - STATE(5985), 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(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, @@ -709977,43 +702819,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7669), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7667), 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, - [49123] = 15, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [50457] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710034,11 +702867,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8093), 1, - anon_sym_into, - STATE(5992), 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(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, @@ -710048,43 +702893,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7564), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7562), 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, - [49209] = 22, + 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, @@ -710105,31 +702941,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4236), 1, + ACTIONS(4222), 1, + anon_sym_LBRACE, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7931), 1, + ACTIONS(8518), 1, anon_sym_LPAREN, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4980), 1, + STATE(4578), 1, sym__variable_designation, - STATE(5004), 1, + STATE(4583), 1, sym_identifier, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - ACTIONS(4302), 2, + 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, - ACTIONS(4300), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5987), 9, + STATE(6000), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710139,7 +702978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710149,7 +702988,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, @@ -710162,7 +703000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [49309] = 18, + [50653] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710183,23 +703021,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(8131), 1, - anon_sym_DOT, - ACTIONS(4318), 5, - anon_sym_COMMA, + 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, + anon_sym_or, + ACTIONS(4302), 4, + anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_LBRACE, - sym_grit_metavariable, - STATE(5988), 9, + anon_sym_RBRACE, + STATE(6001), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710209,7 +703055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 26, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710220,9 +703066,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, @@ -710235,8 +703078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [49401] = 14, + [50753] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710257,9 +703099,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8133), 1, - anon_sym_RPAREN, - STATE(5989), 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, @@ -710269,44 +703133,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5754), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(5752), 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, - [49485] = 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, + [50854] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710327,23 +703177,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, + 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, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, anon_sym_QMARK, - ACTIONS(8135), 1, anon_sym_DOT, - ACTIONS(4318), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_STAR, sym_grit_metavariable, - STATE(5990), 9, + STATE(6003), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710353,20 +703203,19 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 26, + 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, - sym_discard, - anon_sym_and, - anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -710380,7 +703229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [49577] = 14, + [50945] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710401,9 +703250,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8137), 1, - anon_sym_into, - STATE(5991), 10, + ACTIONS(3193), 2, + anon_sym_while, + anon_sym_else, + STATE(6004), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710413,44 +703263,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat2, - ACTIONS(7555), 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(7553), 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_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, - [49661] = 15, + [51028] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710471,11 +703319,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8093), 1, - anon_sym_into, - STATE(5991), 1, - aux_sym__query_body_repeat2, - STATE(5992), 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, @@ -710485,43 +703353,103 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7549), 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, + [51129] = 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(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, anon_sym_LT, - anon_sym_GT, + 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_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7547), 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, - [49747] = 22, + sym_grit_metavariable, + STATE(6006), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(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, @@ -710542,31 +703470,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4236), 1, - sym_discard, - ACTIONS(7766), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7931), 1, + ACTIONS(8553), 1, anon_sym_LPAREN, - STATE(2787), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(4951), 1, - sym__variable_designation, - STATE(5004), 1, + STATE(2210), 1, + sym_generic_name, + STATE(6375), 1, + sym_explicit_interface_specifier, + STATE(6579), 1, sym_identifier, - STATE(5014), 1, - sym_parenthesized_variable_designation, - ACTIONS(4248), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(4246), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - STATE(5993), 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(6007), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710576,7 +703504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710599,7 +703527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [49847] = 19, + [51321] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710620,27 +703548,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_EQ_GT, - ACTIONS(3960), 1, + ACTIONS(3968), 1, anon_sym_COLON_COLON, - ACTIONS(7683), 1, + ACTIONS(8151), 1, anon_sym_LT, - ACTIONS(8140), 1, + ACTIONS(8693), 1, anon_sym_EQ, - STATE(5462), 1, - sym_type_argument_list, - ACTIONS(8142), 2, + ACTIONS(8695), 1, anon_sym_COMMA, + ACTIONS(8698), 1, anon_sym_RPAREN, - ACTIONS(3953), 6, + STATE(5456), 1, + sym_type_argument_list, + STATE(7282), 1, + aux_sym_tuple_pattern_repeat1, + ACTIONS(3957), 5, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, + anon_sym_STAR, sym_grit_metavariable, - STATE(5994), 9, + STATE(6008), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710650,7 +703578,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, @@ -710674,7 +703602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [49941] = 15, + [51416] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710695,11 +703623,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8063), 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, + anon_sym_LBRACE, + sym_grit_metavariable, + STATE(6009), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(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, - STATE(5937), 1, - aux_sym__query_body_repeat2, - STATE(5995), 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, + [51507] = 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(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, @@ -710709,43 +703729,103 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7574), 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, + [51606] = 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(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, anon_sym_LT, - anon_sym_GT, + 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_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7572), 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, + sym_grit_metavariable, + STATE(6011), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + 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_as, - anon_sym_is, - anon_sym_DASH_GT, - anon_sym_with, - [50027] = 18, + 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, @@ -710766,23 +703846,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3960), 1, + ACTIONS(3968), 1, anon_sym_COLON_COLON, - ACTIONS(7683), 1, + ACTIONS(8151), 1, anon_sym_LT, - ACTIONS(8144), 1, + ACTIONS(8690), 1, anon_sym_LPAREN, - STATE(5462), 1, + STATE(5456), 1, sym_type_argument_list, - STATE(6902), 1, + STATE(6884), 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(5996), 9, + STATE(6012), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710792,7 +703872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 25, + ACTIONS(3955), 25, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -710818,7 +703898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [50118] = 23, + [51788] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710841,29 +703921,29 @@ 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(8029), 1, + ACTIONS(8553), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(6374), 1, + STATE(6407), 1, sym_explicit_interface_specifier, - STATE(6580), 1, + STATE(6574), 1, sym_identifier, - STATE(6908), 1, + STATE(6890), 1, sym_tuple_pattern, - STATE(7161), 1, + STATE(7262), 1, sym_variable_declarator, - STATE(7919), 1, + STATE(7743), 1, sym__name, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(5997), 9, + STATE(6013), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710896,7 +703976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [50219] = 23, + [51889] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710917,31 +703997,95 @@ 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(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, - ACTIONS(8029), 1, + STATE(6014), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(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, + [51980] = 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(8705), 1, + anon_sym_DOT, + ACTIONS(4331), 4, anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(6373), 1, - sym_explicit_interface_specifier, - STATE(6581), 1, - sym_identifier, - STATE(6908), 1, - sym_tuple_pattern, - STATE(7161), 1, - sym_variable_declarator, - STATE(7919), 1, - sym__name, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(5998), 9, + anon_sym_LBRACE, + anon_sym_EQ_GT, + sym_grit_metavariable, + STATE(6015), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -710951,7 +704095,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, @@ -710962,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, @@ -710974,7 +704121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [50320] = 18, + sym__identifier_token, + [52071] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -710995,22 +704143,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4450), 1, anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8147), 1, + ACTIONS(8707), 1, anon_sym_DOT, - ACTIONS(4318), 4, + ACTIONS(4331), 4, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACE, sym_grit_metavariable, - STATE(5999), 9, + STATE(6016), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711020,7 +704168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 26, + ACTIONS(4329), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711047,7 +704195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [50411] = 23, + [52162] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711070,29 +704218,29 @@ 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(8029), 1, - anon_sym_LPAREN, - STATE(2206), 1, + 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(2211), 1, - sym_generic_name, - STATE(6430), 1, - sym_explicit_interface_specifier, - STATE(6585), 1, + STATE(6082), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6246), 1, + sym__attribute_list, + STATE(7357), 1, sym_identifier, - STATE(6908), 1, - sym_tuple_pattern, - STATE(7161), 1, - sym_variable_declarator, - STATE(7919), 1, - sym__name, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6000), 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(6017), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711125,7 +704273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [50512] = 18, + [52263] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711146,23 +704294,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3960), 1, + ACTIONS(3968), 1, anon_sym_COLON_COLON, - ACTIONS(7683), 1, + ACTIONS(8151), 1, anon_sym_LT, - ACTIONS(8144), 1, - anon_sym_LPAREN, - STATE(5462), 1, + ACTIONS(8711), 1, + anon_sym_EQ, + STATE(5456), 1, sym_type_argument_list, - STATE(6866), 1, - sym_parameter_list, - ACTIONS(3953), 5, + 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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + 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, + [52354] = 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(8713), 1, anon_sym_DOT, + ACTIONS(4331), 4, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, sym_grit_metavariable, - STATE(6001), 9, + STATE(6019), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711172,19 +704392,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 25, + ACTIONS(4329), 26, anon_sym_alias, anon_sym_global, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_operator, - anon_sym_this, anon_sym_scoped, anon_sym_var, anon_sym_yield, anon_sym_when, + sym_discard, + anon_sym_and, + anon_sym_or, anon_sym_from, anon_sym_into, anon_sym_join, @@ -711198,7 +704419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [50603] = 22, + [52445] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711219,30 +704440,31 @@ 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, + ACTIONS(5676), 1, + anon_sym_LBRACK, + ACTIONS(5692), 1, + aux_sym_preproc_if_token1, + STATE(5149), 1, sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(4964), 1, - aux_sym_conversion_operator_declaration_repeat1, - STATE(5575), 1, + 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, - STATE(6194), 1, - sym_explicit_interface_specifier, - STATE(7981), 1, - sym__name, - ACTIONS(7170), 2, - anon_sym_operator, - anon_sym_checked, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6002), 9, + 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, @@ -711252,7 +704474,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, @@ -711275,7 +704497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [50702] = 18, + [52546] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711296,22 +704518,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(8149), 1, - anon_sym_DOT, - ACTIONS(4318), 4, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6003), 9, + 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, @@ -711321,7 +704552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711332,9 +704563,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, @@ -711347,8 +704575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [50793] = 23, + [52647] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711369,31 +704596,31 @@ 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(5883), 1, + ACTIONS(5676), 1, anon_sym_LBRACK, - ACTIONS(8112), 1, + ACTIONS(5692), 1, aux_sym_preproc_if_token1, - ACTIONS(8151), 1, - anon_sym_RBRACE, - STATE(2206), 1, + STATE(5149), 1, sym__reserved_identifier, - STATE(6083), 1, + STATE(6049), 1, aux_sym__class_declaration_initializer_repeat1, - STATE(6332), 1, + STATE(6246), 1, sym__attribute_list, - STATE(7063), 1, + STATE(7382), 1, sym_identifier, - STATE(6333), 2, + 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(7428), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, - STATE(6004), 9, + STATE(6022), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711403,7 +704630,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, @@ -711426,7 +704653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [50894] = 18, + [52748] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711447,23 +704674,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3960), 1, - anon_sym_COLON_COLON, - ACTIONS(7683), 1, - anon_sym_LT, - ACTIONS(8144), 1, - anon_sym_LPAREN, - STATE(5462), 1, - sym_type_argument_list, - STATE(6800), 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(6005), 9, + 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, @@ -711473,15 +704707,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, @@ -711498,8 +704730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [50985] = 18, + [52847] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711520,22 +704751,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(8153), 1, - anon_sym_DOT, - ACTIONS(4318), 4, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6006), 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, @@ -711545,7 +704784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -711556,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, @@ -711571,8 +704807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [51076] = 23, + [52946] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711593,31 +704828,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(8029), 1, + ACTIONS(8518), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(6365), 1, - sym_explicit_interface_specifier, - STATE(6573), 1, + STATE(4529), 1, + sym__variable_designation, + STATE(4583), 1, sym_identifier, - STATE(6908), 1, - sym_tuple_pattern, - STATE(7161), 1, - sym_variable_declarator, - STATE(7919), 1, - sym__name, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6007), 9, + 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, @@ -711627,7 +704861,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, @@ -711637,7 +704871,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, @@ -711650,7 +704883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [51177] = 22, + [53044] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711671,30 +704904,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, - STATE(2206), 1, + ACTIONS(8518), 1, + anon_sym_LPAREN, + STATE(2652), 1, sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5036), 1, - aux_sym_conversion_operator_declaration_repeat1, - STATE(5575), 1, + STATE(4583), 1, sym_identifier, - STATE(6194), 1, - sym_explicit_interface_specifier, - STATE(7981), 1, - sym__name, - ACTIONS(7170), 2, - anon_sym_operator, - anon_sym_checked, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6008), 9, + 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, + anon_sym_or, + STATE(6026), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -711704,7 +704937,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, @@ -711714,7 +704947,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, @@ -711727,7 +704959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [51276] = 14, + [53142] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711748,10 +704980,31 @@ 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(6009), 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, @@ -711761,42 +705014,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, - [51359] = 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, + [53244] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711817,25 +705058,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3960), 1, - anon_sym_COLON_COLON, - ACTIONS(7683), 1, - anon_sym_LT, - ACTIONS(8155), 1, - anon_sym_EQ, - STATE(5462), 1, - sym_type_argument_list, - ACTIONS(8142), 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(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6010), 9, + 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, @@ -711845,7 +705090,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, @@ -711868,8 +705113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [51450] = 18, + [53342] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711890,23 +705134,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3960), 1, - anon_sym_COLON_COLON, - ACTIONS(7683), 1, - anon_sym_LT, - ACTIONS(8144), 1, + ACTIONS(8723), 1, + sym__identifier_token, + ACTIONS(8729), 1, anon_sym_LPAREN, - STATE(5462), 1, - sym_type_argument_list, - STATE(6896), 1, - sym_parameter_list, - ACTIONS(3953), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, + ACTIONS(8733), 1, sym_grit_metavariable, - STATE(6011), 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, @@ -711916,15 +705164,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 25, + ACTIONS(8726), 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, @@ -711941,8 +705187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [51541] = 23, + [53436] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -711965,29 +705210,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(5883), 1, - anon_sym_LBRACK, - ACTIONS(8112), 1, - aux_sym_preproc_if_token1, - ACTIONS(8157), 1, - anon_sym_RBRACE, - STATE(2206), 1, + ACTIONS(8721), 1, + anon_sym_static, + ACTIONS(8736), 1, + anon_sym_unsafe, + STATE(2207), 1, sym__reserved_identifier, - STATE(6083), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6332), 1, - sym__attribute_list, - STATE(7063), 1, + STATE(2210), 1, + sym_generic_name, + STATE(6042), 1, + aux_sym_using_directive_repeat1, + STATE(6764), 1, sym_identifier, - STATE(6333), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(7428), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, - STATE(6012), 9, + 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, @@ -712020,7 +705263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [51642] = 18, + [53534] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712041,25 +705284,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3960), 1, - anon_sym_COLON_COLON, - ACTIONS(7683), 1, - anon_sym_LT, - ACTIONS(8159), 1, - anon_sym_EQ, - STATE(5462), 1, - sym_type_argument_list, - ACTIONS(8161), 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(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6013), 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(7412), 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(6031), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712069,7 +705315,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, @@ -712092,8 +705338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [51733] = 23, + [53630] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712114,31 +705359,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(4080), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(5883), 1, - anon_sym_LBRACK, - ACTIONS(5899), 1, - aux_sym_preproc_if_token1, - STATE(5132), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6019), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6332), 1, - sym__attribute_list, - STATE(7090), 1, - sym_type_parameter, - STATE(7543), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, sym_identifier, - ACTIONS(5893), 2, - anon_sym_in, - anon_sym_out, - STATE(6333), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(6014), 9, + STATE(6363), 1, + aux_sym_using_directive_repeat1, + STATE(7438), 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(6032), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712148,7 +705390,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, @@ -712171,7 +705413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [51834] = 20, + [53726] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712192,27 +705434,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3960), 1, - anon_sym_COLON_COLON, - ACTIONS(7683), 1, + ACTIONS(8283), 1, anon_sym_LT, - ACTIONS(8159), 1, - anon_sym_EQ, - ACTIONS(8163), 1, - anon_sym_COMMA, - ACTIONS(8166), 1, - anon_sym_RPAREN, - STATE(5462), 1, + ACTIONS(8738), 1, + anon_sym_COLON_COLON, + STATE(2214), 1, sym_type_argument_list, - STATE(7192), 1, - aux_sym_tuple_pattern_repeat1, - ACTIONS(3953), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, + ACTIONS(3957), 4, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_DOT, sym_grit_metavariable, - STATE(6015), 9, + STATE(6033), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712222,9 +705455,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3951), 23, + ACTIONS(3955), 27, anon_sym_alias, anon_sym_global, + anon_sym_COLON, anon_sym_file, anon_sym_where, anon_sym_notnull, @@ -712233,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, @@ -712246,7 +705483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [51929] = 18, + [53812] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712267,22 +705504,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(8169), 1, - anon_sym_DOT, - ACTIONS(4318), 4, - anon_sym_COLON, + ACTIONS(8729), 1, anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(8740), 1, + sym__identifier_token, + ACTIONS(8746), 1, sym_grit_metavariable, - STATE(6016), 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, @@ -712292,7 +705534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 26, + ACTIONS(8743), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712303,9 +705545,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, @@ -712318,8 +705557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [52020] = 23, + [53906] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712340,31 +705578,20 @@ 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(4080), 1, - sym_grit_metavariable, - ACTIONS(5883), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(5899), 1, - aux_sym_preproc_if_token1, - STATE(5132), 1, - sym__reserved_identifier, - STATE(6019), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6332), 1, - sym__attribute_list, - STATE(7448), 1, - sym_type_parameter, - STATE(7543), 1, - sym_identifier, - ACTIONS(5893), 2, - anon_sym_in, - anon_sym_out, - STATE(6333), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(6017), 9, + ACTIONS(8191), 1, + anon_sym_STAR, + 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(6035), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712374,7 +705601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3211), 22, + ACTIONS(4329), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712385,6 +705612,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, @@ -712397,7 +705627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [52121] = 22, + sym__identifier_token, + [53994] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712420,28 +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, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5038), 1, - aux_sym_conversion_operator_declaration_repeat1, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6194), 1, - sym_explicit_interface_specifier, - STATE(7981), 1, + STATE(6363), 1, + aux_sym_using_directive_repeat1, + STATE(7621), 1, sym__name, - ACTIONS(7170), 2, - anon_sym_operator, - anon_sym_checked, - STATE(5470), 3, + ACTIONS(8721), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6018), 9, + STATE(6036), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712474,7 +705703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [52220] = 22, + [54090] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712495,106 +705724,30 @@ 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(4080), 1, - sym_grit_metavariable, - ACTIONS(5883), 1, - anon_sym_LBRACK, - ACTIONS(5899), 1, - aux_sym_preproc_if_token1, - STATE(5132), 1, - sym__reserved_identifier, - STATE(6089), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6332), 1, - sym__attribute_list, - STATE(7590), 1, - sym_identifier, - ACTIONS(8171), 2, - anon_sym_in, - anon_sym_out, - STATE(6333), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(6019), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(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, - [52318] = 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(4236), 1, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7931), 1, + ACTIONS(8518), 1, anon_sym_LPAREN, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4984), 1, + STATE(4569), 1, sym__variable_designation, - STATE(5004), 1, + STATE(4583), 1, sym_identifier, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - ACTIONS(4296), 2, + ACTIONS(4250), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(4298), 3, + ACTIONS(4252), 3, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(6020), 9, + STATE(6037), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712604,7 +705757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 21, + ACTIONS(8277), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712626,7 +705779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [52416] = 22, + [54188] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712647,30 +705800,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4236), 1, + ACTIONS(4234), 1, sym_discard, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - ACTIONS(7931), 1, + ACTIONS(8518), 1, anon_sym_LPAREN, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4985), 1, + STATE(4532), 1, sym__variable_designation, - STATE(5004), 1, + STATE(4583), 1, sym_identifier, - STATE(5014), 1, + STATE(4585), 1, sym_parenthesized_variable_designation, - ACTIONS(4250), 2, + ACTIONS(4306), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(4252), 3, + ACTIONS(4308), 3, anon_sym_when, anon_sym_and, anon_sym_or, - STATE(6021), 9, + STATE(6038), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712680,7 +705833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 21, + ACTIONS(8277), 21, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712702,7 +705855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [52514] = 22, + [54286] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712725,27 +705878,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(5883), 1, - anon_sym_LBRACK, - ACTIONS(8112), 1, - aux_sym_preproc_if_token1, - STATE(2206), 1, + ACTIONS(8721), 1, + anon_sym_static, + ACTIONS(8751), 1, + anon_sym_unsafe, + STATE(2207), 1, sym__reserved_identifier, - STATE(6083), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6332), 1, - sym__attribute_list, - STATE(7063), 1, + STATE(2210), 1, + sym_generic_name, + STATE(6032), 1, + aux_sym_using_directive_repeat1, + STATE(6763), 1, sym_identifier, - STATE(6333), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(7428), 2, - sym_enum_member_declaration, - sym_preproc_if_in_enum_member_declaration, - STATE(6022), 9, + 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, @@ -712778,7 +705931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [52612] = 19, + [54384] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712799,25 +705952,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3960), 1, - anon_sym_COLON_COLON, - ACTIONS(4202), 1, - anon_sym_COMMA, - ACTIONS(7683), 1, + ACTIONS(8753), 1, + anon_sym_SEMI, + STATE(6040), 9, + sym_preproc_region, + sym_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, - ACTIONS(8159), 1, - anon_sym_EQ, - ACTIONS(8161), 1, - anon_sym_RPAREN, - STATE(5462), 1, - sym_type_argument_list, - ACTIONS(3953), 5, - anon_sym_LBRACK, + anon_sym_GT, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, - sym_grit_metavariable, - STATE(6023), 9, + 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, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(8755), 1, + anon_sym_SEMI, + STATE(6041), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712827,31 +706032,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, - [52704] = 21, + 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, @@ -712874,26 +706090,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(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6359), 1, + STATE(6363), 1, aux_sym_using_directive_repeat1, - STATE(7637), 1, + STATE(7615), 1, sym__name, - ACTIONS(8173), 2, + ACTIONS(8721), 2, anon_sym_unsafe, anon_sym_static, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6024), 9, + STATE(6042), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712926,7 +706142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [52800] = 17, + [54644] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -712947,20 +706163,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, + ACTIONS(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(4197), 1, + anon_sym_COMMA, + ACTIONS(8151), 1, + anon_sym_LT, + ACTIONS(8693), 1, + anon_sym_EQ, + ACTIONS(8703), 1, + anon_sym_RPAREN, + STATE(5456), 1, + sym_type_argument_list, + ACTIONS(3957), 5, anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, anon_sym_QMARK, - ACTIONS(8175), 1, anon_sym_DOT, - ACTIONS(4318), 4, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_STAR, sym_grit_metavariable, - STATE(6025), 9, + STATE(6043), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -712970,7 +706191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 26, + ACTIONS(3955), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -712981,9 +706202,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, @@ -712997,7 +706215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [52888] = 21, + [54736] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713018,28 +706236,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, + anon_sym_LT, + ACTIONS(8757), 1, + anon_sym_COMMA, + ACTIONS(8760), 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(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5575), 1, - sym_identifier, - STATE(6359), 1, - aux_sym_using_directive_repeat1, - STATE(7595), 1, - sym__name, - ACTIONS(8173), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6026), 9, + STATE(6044), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713049,7 +706264,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, @@ -713072,7 +706287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [52984] = 20, + sym__identifier_token, + [54828] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713093,27 +706309,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8177), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8183), 1, - anon_sym_LPAREN, - ACTIONS(8187), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(5676), 1, + anon_sym_LBRACK, + ACTIONS(8656), 1, + aux_sym_preproc_if_token1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5484), 1, - sym__simple_name, - STATE(5562), 1, + STATE(6082), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6246), 1, + sym__attribute_list, + STATE(7357), 1, sym_identifier, - ACTIONS(8185), 5, - anon_sym_ref, - anon_sym_delegate, - anon_sym_operator, - anon_sym_checked, - sym_predefined_type, - STATE(6027), 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, @@ -713123,7 +706341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8180), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713146,7 +706364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [53078] = 21, + [54926] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713167,28 +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(2211), 1, - sym_generic_name, - STATE(5575), 1, - sym_identifier, - STATE(6359), 1, - aux_sym_using_directive_repeat1, - STATE(7473), 1, - sym__name, - ACTIONS(8173), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6028), 9, + STATE(6046), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713198,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, @@ -713221,75 +706431,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [53174] = 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(8190), 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(6059), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6057), 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, - [53256] = 17, + sym__identifier_token, + [55008] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713310,23 +706453,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3960), 1, + ACTIONS(3968), 1, anon_sym_COLON_COLON, - ACTIONS(7683), 1, + ACTIONS(8151), 1, anon_sym_LT, - ACTIONS(8192), 1, + ACTIONS(8764), 1, anon_sym_EQ, - STATE(5462), 1, + STATE(5456), 1, sym_type_argument_list, - ACTIONS(3953), 7, + 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(6030), 9, + STATE(6047), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713336,7 +706479,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, @@ -713360,7 +706503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [53344] = 22, + [55096] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713381,30 +706524,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4236), 1, - sym_discard, - ACTIONS(7766), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7931), 1, - anon_sym_LPAREN, - STATE(2787), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(4951), 1, - sym__variable_designation, - STATE(5004), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, sym_identifier, - STATE(5014), 1, - sym_parenthesized_variable_designation, - ACTIONS(4246), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(4248), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(6031), 9, + 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, @@ -713414,7 +706555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 21, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713424,6 +706565,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, @@ -713436,7 +706578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [53442] = 22, + [55192] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713457,29 +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(8173), 1, - anon_sym_static, - ACTIONS(8194), 1, - anon_sym_unsafe, - STATE(2206), 1, + ACTIONS(5676), 1, + anon_sym_LBRACK, + ACTIONS(5692), 1, + aux_sym_preproc_if_token1, + STATE(5149), 1, sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(6041), 1, - aux_sym_using_directive_repeat1, - STATE(6722), 1, + STATE(6093), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6246), 1, + sym__attribute_list, + STATE(7598), 1, sym_identifier, - STATE(7441), 1, - sym__name, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6032), 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, @@ -713489,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, @@ -713512,7 +706654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [53540] = 22, + [55290] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713535,27 +706677,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(8173), 1, - anon_sym_static, - ACTIONS(8196), 1, - anon_sym_unsafe, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(6024), 1, - aux_sym_using_directive_repeat1, - STATE(6766), 1, + STATE(5576), 1, sym_identifier, - STATE(7595), 1, + STATE(6363), 1, + aux_sym_using_directive_repeat1, + STATE(7600), 1, sym__name, - STATE(5470), 3, + ACTIONS(8721), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6033), 9, + STATE(6050), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713588,7 +706729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [53638] = 24, + [55386] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713609,31 +706750,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(5883), 1, + ACTIONS(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, + anon_sym_LT, + ACTIONS(8768), 1, + anon_sym_EQ, + STATE(5456), 1, + sym_type_argument_list, + ACTIONS(3957), 7, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5899), 1, - aux_sym_preproc_if_token1, - ACTIONS(8198), 1, - aux_sym_preproc_if_token3, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6084), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6332), 1, - sym__attribute_list, - STATE(6333), 1, - sym_preproc_if_in_attribute_list, - STATE(6358), 1, - sym_attribute_list, - STATE(7039), 1, - sym_identifier, - STATE(7780), 1, - sym_enum_member_declaration, - STATE(6034), 9, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, + sym_grit_metavariable, + STATE(6051), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713643,7 +706776,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, @@ -713666,7 +706799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [53740] = 20, + sym__identifier_token, + [55474] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713687,27 +706821,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8183), 1, - anon_sym_LPAREN, - ACTIONS(8200), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8206), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(5132), 1, + ACTIONS(8721), 1, + anon_sym_static, + ACTIONS(8770), 1, + anon_sym_unsafe, + STATE(2207), 1, sym__reserved_identifier, - STATE(5359), 1, - sym_identifier, - STATE(5473), 1, + STATE(2210), 1, sym_generic_name, - STATE(5484), 1, + 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, - ACTIONS(8185), 5, - anon_sym_ref, - anon_sym_delegate, - anon_sym_operator, - anon_sym_checked, - sym_predefined_type, - STATE(6035), 9, + sym_qualified_name, + STATE(6052), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713717,7 +706853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8203), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -713740,7 +706876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [53834] = 19, + [55572] = 23, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713761,91 +706897,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3960), 1, - anon_sym_COLON_COLON, - ACTIONS(7683), 1, - anon_sym_LT, - ACTIONS(8209), 1, - anon_sym_COMMA, - ACTIONS(8212), 1, - anon_sym_RPAREN, - STATE(5462), 1, - sym_type_argument_list, - STATE(7192), 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(6036), 9, - sym_preproc_region, - sym_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, + ACTIONS(25), 1, sym__identifier_token, - [53926] = 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(8214), 1, - anon_sym_using, - ACTIONS(3700), 8, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6037), 9, + 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(7031), 1, + sym_identifier, + STATE(7738), 1, + sym_enum_member_declaration, + STATE(6254), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(6053), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713855,15 +706930,13 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3702), 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, @@ -713880,8 +706953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [54008] = 21, + [55672] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713904,26 +706976,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(8772), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6359), 1, - aux_sym_using_directive_repeat1, - STATE(7458), 1, + STATE(6843), 1, sym__name, - ACTIONS(8173), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(5470), 3, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6038), 9, + STATE(6054), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -713956,7 +707027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [54104] = 22, + [55767] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -713977,30 +707048,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4236), 1, - sym_discard, - ACTIONS(7766), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(7931), 1, - anon_sym_LPAREN, - STATE(2787), 1, + ACTIONS(8774), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(4980), 1, - sym__variable_designation, - STATE(5004), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, sym_identifier, - STATE(5014), 1, - sym_parenthesized_variable_designation, - ACTIONS(4300), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(4302), 3, - anon_sym_when, - anon_sym_and, - anon_sym_or, - STATE(6039), 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, @@ -714010,7 +707078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 21, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -714020,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, @@ -714032,7 +707101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [54202] = 17, + [55862] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714053,23 +707122,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3960), 1, - anon_sym_COLON_COLON, - ACTIONS(7683), 1, - anon_sym_LT, - ACTIONS(8216), 1, - anon_sym_EQ, - STATE(5462), 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(6040), 9, + ACTIONS(8776), 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(6056), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714079,7 +707152,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, @@ -714102,8 +707175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [54290] = 21, + [55957] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714126,26 +707198,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(8778), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6359), 1, - aux_sym_using_directive_repeat1, - STATE(7436), 1, + STATE(6843), 1, sym__name, - ACTIONS(8173), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(5470), 3, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6041), 9, + STATE(6057), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714178,7 +707249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [54386] = 16, + [56052] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714199,18 +707270,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7764), 1, - anon_sym_LT, - ACTIONS(8218), 1, - anon_sym_COLON_COLON, - STATE(2216), 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(6042), 9, + 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, @@ -714220,10 +707300,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, @@ -714232,9 +707311,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, @@ -714247,8 +707323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [54472] = 23, + [56147] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714271,28 +707346,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(5883), 1, - anon_sym_LBRACK, - ACTIONS(5899), 1, - aux_sym_preproc_if_token1, - ACTIONS(8198), 1, - aux_sym_preproc_if_token3, - STATE(2206), 1, + ACTIONS(8782), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(6084), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6332), 1, - sym__attribute_list, - STATE(7039), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, sym_identifier, - STATE(7780), 1, - sym_enum_member_declaration, - STATE(6333), 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(6059), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714325,7 +707397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [54572] = 22, + [56242] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714348,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(8173), 1, - anon_sym_static, - ACTIONS(8220), 1, - anon_sym_unsafe, - STATE(2206), 1, + ACTIONS(8784), 1, + anon_sym_RBRACK, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(6028), 1, - aux_sym_using_directive_repeat1, - STATE(6757), 1, + STATE(5576), 1, sym_identifier, - STATE(7436), 1, + STATE(6843), 1, sym__name, - STATE(5470), 3, + STATE(7620), 1, + sym_attribute, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6044), 9, + STATE(6060), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714401,7 +707471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [54670] = 22, + [56337] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714422,29 +707492,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, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + ACTIONS(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, + anon_sym_LT, + STATE(5456), 1, + sym_type_argument_list, + ACTIONS(3957), 6, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, sym_grit_metavariable, - ACTIONS(8173), 1, - anon_sym_static, - ACTIONS(8222), 1, - anon_sym_unsafe, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(6046), 1, - aux_sym_using_directive_repeat1, - STATE(6746), 1, - sym_identifier, - STATE(7458), 1, - sym__name, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6045), 9, + STATE(6061), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714454,7 +707517,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, @@ -714477,7 +707540,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [54768] = 21, + sym__identifier_token, + [56424] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714498,28 +707562,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(5584), 1, + aux_sym_preproc_if_token3, + ACTIONS(5204), 4, + anon_sym_LBRACK, + anon_sym_LPAREN, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5575), 1, - sym_identifier, - STATE(6359), 1, - aux_sym_using_directive_repeat1, - STATE(7522), 1, - sym__name, - ACTIONS(8173), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6046), 9, + aux_sym_preproc_if_token1, + STATE(6062), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714529,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, @@ -714552,75 +707607,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [54864] = 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(8224), 1, - anon_sym_SEMI, - STATE(6047), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(6059), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(6057), 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, - [54946] = 21, + sym__identifier_token, + [56505] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714643,25 +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(8226), 1, + ACTIONS(8786), 1, anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7596), 1, + STATE(7620), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6048), 9, + STATE(6063), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714694,7 +707682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [55041] = 21, + [56600] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714717,25 +707705,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(8228), 1, + ACTIONS(8788), 1, anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7463), 1, + STATE(7425), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6049), 9, + STATE(6064), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714768,7 +707756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [55136] = 21, + [56695] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714789,27 +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, - ACTIONS(8230), 1, - anon_sym_RBRACK, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5575), 1, - sym_identifier, - STATE(6870), 1, - sym__name, - STATE(7596), 1, - sym_attribute, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6050), 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, @@ -714819,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, @@ -714842,7 +707822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [55231] = 21, + sym__identifier_token, + [56776] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714865,25 +707846,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(8232), 1, + ACTIONS(8797), 1, anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7596), 1, + STATE(7620), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6051), 9, + STATE(6066), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714916,7 +707897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [55326] = 21, + [56871] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -714939,25 +707920,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(8234), 1, + ACTIONS(8799), 1, anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7596), 1, + STATE(7620), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6052), 9, + STATE(6067), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -714990,7 +707971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [55421] = 21, + [56966] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715013,25 +707994,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(8236), 1, + ACTIONS(8801), 1, anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7596), 1, + STATE(7620), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6053), 9, + STATE(6068), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715064,7 +708045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [55516] = 21, + [57061] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715087,25 +708068,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(8238), 1, + ACTIONS(8803), 1, anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7596), 1, + STATE(7620), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6054), 9, + STATE(6069), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715138,7 +708119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [55611] = 21, + [57156] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715161,25 +708142,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(8240), 1, + ACTIONS(8805), 1, anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7463), 1, + STATE(7620), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6055), 9, + STATE(6070), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715212,7 +708193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [55706] = 21, + [57251] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715235,25 +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, - ACTIONS(8242), 1, + ACTIONS(8807), 1, anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7596), 1, + STATE(7425), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6056), 9, + STATE(6071), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715286,7 +708267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [55801] = 21, + [57346] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715307,26 +708288,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4318), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(4468), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(7967), 1, - anon_sym_DOT, - ACTIONS(8058), 1, - anon_sym_LPAREN, - STATE(7421), 1, - sym_attribute_argument_list, - ACTIONS(8244), 2, - anon_sym_COMMA, + ACTIONS(8809), 1, anon_sym_RBRACK, - STATE(6057), 9, + 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(6072), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715336,7 +708318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -715359,8 +708341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [55896] = 17, + [57441] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715381,22 +708362,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_EQ_GT, - ACTIONS(3960), 1, - anon_sym_COLON_COLON, - ACTIONS(7683), 1, - anon_sym_LT, - STATE(5462), 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(6058), 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, @@ -715406,7 +708392,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, @@ -715429,8 +708415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [55983] = 21, + [57536] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715453,25 +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, - ACTIONS(8246), 1, + ACTIONS(8813), 1, anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7596), 1, + STATE(7620), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6059), 9, + STATE(6074), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715504,7 +708489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [56078] = 21, + [57631] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715525,27 +708510,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, + ACTIONS(4331), 1, sym_grit_metavariable, - ACTIONS(8248), 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(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(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5575), 1, - sym_identifier, - STATE(6870), 1, - sym__name, - STATE(7596), 1, - sym_attribute, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6060), 9, + STATE(6075), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715555,7 +708539,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, @@ -715578,7 +708562,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [56173] = 14, + sym__identifier_token, + [57726] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715599,17 +708584,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8252), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8254), 6, - anon_sym_ref, - anon_sym_readonly, - anon_sym_in, - anon_sym_out, - anon_sym_this, - anon_sym_scoped, - STATE(6061), 10, + ACTIONS(8817), 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(6076), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715619,17 +708614,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(8250), 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, @@ -715644,8 +708637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [56254] = 21, + [57821] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715668,25 +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(8257), 1, + ACTIONS(8819), 1, anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7596), 1, + STATE(7620), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6062), 9, + STATE(6077), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715719,7 +708711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [56349] = 21, + [57916] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715742,25 +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, - ACTIONS(8259), 1, + ACTIONS(8821), 1, anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7596), 1, + STATE(7620), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6063), 9, + STATE(6078), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715793,7 +708785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [56444] = 21, + [58011] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715816,25 +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(8261), 1, + ACTIONS(8823), 1, anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7596), 1, + STATE(7620), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6064), 9, + STATE(6079), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715867,7 +708859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [56539] = 14, + [58106] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715888,14 +708880,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5788), 1, - aux_sym_preproc_if_token3, - ACTIONS(5460), 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(6065), 9, + ACTIONS(8825), 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(6080), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -715905,20 +708910,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5458), 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, @@ -715933,8 +708933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [56620] = 21, + [58201] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -715957,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(8263), 1, + ACTIONS(8827), 1, anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7596), 1, + STATE(7620), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6066), 9, + STATE(6081), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716008,7 +709007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [56715] = 21, + [58296] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716031,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(8265), 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(2211), 1, - sym_generic_name, - STATE(5575), 1, + STATE(6093), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6246), 1, + sym__attribute_list, + STATE(7231), 1, sym_identifier, - STATE(6870), 1, - sym__name, - STATE(7596), 1, - sym_attribute, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6067), 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, @@ -716082,7 +709080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [56810] = 21, + [58390] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716105,25 +709103,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(8267), 1, - anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7463), 1, + STATE(7244), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6068), 9, + STATE(6083), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716156,7 +709152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [56905] = 21, + [58482] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716177,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(8269), 1, - anon_sym_RBRACK, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5575), 1, - sym_identifier, - STATE(6870), 1, - sym__name, - STATE(7596), 1, - sym_attribute, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6069), 9, + STATE(6084), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716207,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, @@ -716230,7 +709220,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [57000] = 21, + sym__identifier_token, + [58568] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716253,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(8271), 1, - anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7596), 1, + STATE(7280), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6070), 9, + STATE(6085), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716304,7 +709293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [57095] = 21, + [58660] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716325,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(8273), 1, - anon_sym_RBRACK, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5575), 1, - sym_identifier, - STATE(6870), 1, - sym__name, - STATE(7596), 1, - sym_attribute, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6071), 9, + STATE(6086), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716355,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, @@ -716366,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, @@ -716378,7 +709359,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [57190] = 21, + sym__identifier_token, + [58742] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716401,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(8275), 1, - anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7596), 1, + STATE(7620), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6072), 9, + STATE(6087), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716452,7 +709432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [57285] = 21, + [58834] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716475,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(8277), 1, - anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7596), 1, + STATE(7425), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6073), 9, + STATE(6088), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716526,7 +709504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [57380] = 21, + [58926] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716547,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(8279), 1, - anon_sym_RBRACK, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5575), 1, - sym_identifier, - STATE(6870), 1, - sym__name, - STATE(7463), 1, - sym_attribute, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6074), 9, + STATE(6089), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716577,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, @@ -716600,7 +709568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [57475] = 21, + sym__identifier_token, + [59004] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716623,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(8281), 1, - anon_sym_RBRACK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7596), 1, + STATE(7350), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6075), 9, + STATE(6090), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716674,7 +709641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [57570] = 20, + [59096] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716697,23 +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, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7596), 1, + STATE(7053), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6076), 9, + STATE(6091), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716746,7 +709713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [57662] = 20, + [59188] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716769,23 +709736,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, - STATE(2206), 1, + ACTIONS(5676), 1, + anon_sym_LBRACK, + ACTIONS(5692), 1, + aux_sym_preproc_if_token1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5575), 1, + STATE(6093), 1, + aux_sym__class_declaration_initializer_repeat1, + STATE(6246), 1, + sym__attribute_list, + STATE(7018), 1, sym_identifier, - STATE(6870), 1, - sym__name, - STATE(7279), 1, - sym_attribute, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6077), 9, + STATE(6254), 2, + sym_attribute_list, + sym_preproc_if_in_attribute_list, + STATE(6092), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716818,7 +709786,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [57754] = 20, + [59282] = 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(5345), 1, + sym_grit_metavariable, + 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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + aux_sym__class_declaration_initializer_repeat1, + ACTIONS(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, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [59368] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716841,23 +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, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6633), 1, sym__name, - STATE(7105), 1, - sym_attribute, - STATE(5470), 3, + STATE(7002), 1, + sym_primary_constructor_base_type, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6078), 9, + STATE(6094), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716890,7 +709927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [57846] = 20, + [59460] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716913,23 +709950,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, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7102), 1, + STATE(7249), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6079), 9, + STATE(6095), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -716962,7 +709999,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [57938] = 20, + [59552] = 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(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, + STATE(6096), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + 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, + [59638] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -716985,23 +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, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5575), 1, + STATE(5576), 1, sym_identifier, - STATE(6870), 1, + STATE(6843), 1, sym__name, - STATE(7463), 1, + STATE(7183), 1, sym_attribute, - STATE(5470), 3, + STATE(5457), 3, sym_alias_qualified_name, sym__simple_name, sym_qualified_name, - STATE(6080), 9, + STATE(6097), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717034,7 +710140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [58030] = 15, + [59730] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717055,16 +710161,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4426), 1, - anon_sym_EQ_GT, - ACTIONS(7122), 1, - anon_sym_RPAREN, - ACTIONS(4424), 4, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6081), 9, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, + sym_identifier, + STATE(6843), 1, + sym__name, + STATE(7225), 1, + sym_attribute, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6098), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717074,7 +710189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4422), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -717085,9 +710200,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, @@ -717100,8 +710212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [58112] = 17, + [59822] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717122,21 +710233,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3960), 1, - anon_sym_COLON_COLON, - ACTIONS(7683), 1, - anon_sym_LT, - ACTIONS(8283), 1, - anon_sym_in, - STATE(5462), 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(6082), 9, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8518), 1, + anon_sym_LPAREN, + ACTIONS(8839), 1, + anon_sym_RPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(4583), 1, + sym_identifier, + 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, @@ -717146,7 +710261,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, @@ -717169,8 +710284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [58198] = 21, + [59915] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717193,24 +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(5883), 1, - anon_sym_LBRACK, - ACTIONS(5899), 1, - aux_sym_preproc_if_token1, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6089), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6332), 1, - sym__attribute_list, - STATE(7294), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, sym_identifier, - STATE(6333), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(6083), 9, + STATE(7297), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6100), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717243,7 +710354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [58292] = 21, + [60004] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717266,24 +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(5883), 1, - anon_sym_LBRACK, - ACTIONS(5899), 1, - aux_sym_preproc_if_token1, - 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(6089), 1, - aux_sym__class_declaration_initializer_repeat1, - STATE(6332), 1, - sym__attribute_list, - STATE(6960), 1, + STATE(7030), 1, sym_identifier, - STATE(6333), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(6084), 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, @@ -717316,7 +710426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [58386] = 20, + [60097] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717339,23 +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, - 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(2211), 1, - sym_generic_name, - STATE(5575), 1, + STATE(7030), 1, sym_identifier, - STATE(6870), 1, - sym__name, - STATE(7132), 1, - sym_attribute, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6085), 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, @@ -717388,7 +710498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [58478] = 20, + [60190] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717409,25 +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, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5575), 1, - sym_identifier, - STATE(6870), 1, - sym__name, - STATE(7137), 1, - sym_attribute, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6086), 9, + STATE(6103), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717437,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, @@ -717460,7 +710562,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [58570] = 17, + sym__identifier_token, + [60269] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717481,21 +710584,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3960), 1, - anon_sym_COLON_COLON, - ACTIONS(7683), 1, - anon_sym_LT, - ACTIONS(8285), 1, - anon_sym_in, - STATE(5462), 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, + ACTIONS(8852), 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(6104), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717505,7 +710612,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, @@ -717528,8 +710635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [58656] = 20, + [60362] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717552,23 +710658,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(8382), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5575), 1, + STATE(7030), 1, sym_identifier, - STATE(6642), 1, - sym__name, - STATE(6976), 1, - sym_primary_constructor_base_type, - STATE(5470), 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(6105), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717601,7 +710707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [58748] = 17, + [60455] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717622,18 +710728,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5495), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8287), 1, - anon_sym_LBRACK, - ACTIONS(8290), 1, - aux_sym_preproc_if_token1, - STATE(6332), 1, - sym__attribute_list, - STATE(6333), 2, - sym_attribute_list, - sym_preproc_if_in_attribute_list, - STATE(6089), 10, + 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(7030), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6106), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717643,13 +710756,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(5490), 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, @@ -717669,8 +710779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [58834] = 20, + [60548] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717693,23 +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, - 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(2211), 1, - sym_generic_name, - STATE(5575), 1, + STATE(7030), 1, sym_identifier, - STATE(6870), 1, - sym__name, - STATE(7099), 1, - sym_attribute, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6090), 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, @@ -717742,7 +710851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [58926] = 13, + [60641] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717763,10 +710872,14 @@ 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(5440), 6, + anon_sym_LBRACK, sym_grit_metavariable, - STATE(6091), 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, @@ -717776,22 +710889,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(2919), 30, + ACTIONS(5438), 25, 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, @@ -717807,7 +710915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [59004] = 20, + [60718] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717830,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(2211), 1, - sym_generic_name, - STATE(5575), 1, + STATE(6583), 1, sym_identifier, - STATE(6870), 1, - sym__name, - STATE(7220), 1, - sym_attribute, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6092), 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, @@ -717879,7 +710987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [59096] = 21, + [60811] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717902,23 +711010,95 @@ 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(4234), 1, + sym_discard, + ACTIONS(8518), 1, anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8858), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(6589), 1, + STATE(4583), 1, sym_identifier, - STATE(6908), 1, - sym_tuple_pattern, - STATE(7161), 1, - sym_variable_declarator, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + 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, + 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, + [60904] = 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(1301), 1, + sym_grit_metavariable, + 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(6093), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6111), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -717951,7 +711131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [59189] = 21, + [60997] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -717974,95 +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, - ACTIONS(7870), 1, - anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8862), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6094), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(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, - [59282] = 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(8293), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6749), 1, - sym_identifier, - STATE(6908), 1, - sym_tuple_pattern, - STATE(7161), 1, - sym_variable_declarator, - STATE(7657), 1, + STATE(7966), 1, sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - STATE(6095), 9, + STATE(6112), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718095,7 +711203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [59375] = 21, + [61090] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718118,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, - ACTIONS(8295), 1, + ACTIONS(8428), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8299), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6096), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6113), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718167,7 +711275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [59468] = 21, + [61183] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718190,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, - ACTIONS(7852), 1, - anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8864), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6097), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6114), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718239,7 +711347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [59561] = 21, + [61276] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718262,23 +711370,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(7844), 1, + ACTIONS(8372), 1, anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6098), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6115), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718311,7 +711419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [59654] = 21, + [61369] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718334,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, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8301), 1, + ACTIONS(8866), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6099), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6116), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718383,7 +711491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [59747] = 21, + [61462] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718406,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, - ACTIONS(8295), 1, - anon_sym_COMMA, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8303), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - STATE(6100), 9, + STATE(6819), 1, + sym__name, + STATE(5457), 3, + sym_alias_qualified_name, + sym__simple_name, + sym_qualified_name, + STATE(6117), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718455,71 +711561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [59840] = 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(5548), 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(6101), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(5546), 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, - [59917] = 21, + [61551] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718542,23 +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(7921), 1, + ACTIONS(8398), 1, anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6102), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6118), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718591,7 +711633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [60010] = 21, + [61644] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718614,95 +711656,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(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8305), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(6983), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7241), 1, + sym_using_variable_declarator, + STATE(7646), 1, sym__lambda_parameters, - STATE(6103), 9, - sym_preproc_region, - sym_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, - [60103] = 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(4236), 1, - sym_discard, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(8307), 1, - anon_sym_RPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(5004), 1, - sym_identifier, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(7123), 1, - sym__variable_designation, - STATE(6104), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6119), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718735,7 +711705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [60196] = 21, + [61737] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718758,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, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8309), 1, + ACTIONS(8868), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6105), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6120), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718807,7 +711777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [60289] = 21, + [61830] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718830,23 +711800,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(8295), 1, + ACTIONS(8434), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8311), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6106), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6121), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718879,7 +711849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [60382] = 21, + [61923] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718902,23 +711872,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(7828), 1, - anon_sym_RPAREN, - ACTIONS(8295), 1, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, + sym_identifier, + 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, + 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, + [62012] = 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(1301), 1, + sym_grit_metavariable, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8870), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6107), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6123), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -718951,7 +711991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [60475] = 21, + [62105] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -718974,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, - ACTIONS(7842), 1, + ACTIONS(8465), 1, anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6108), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6124), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719023,7 +712063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [60568] = 17, + [62198] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719044,20 +712084,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5464), 1, - aux_sym_preproc_else_token1, - ACTIONS(5466), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8313), 1, - aux_sym_preproc_if_token3, - STATE(7946), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - ACTIONS(5460), 3, + ACTIONS(5446), 6, anon_sym_LBRACK, sym_grit_metavariable, aux_sym_preproc_if_token1, - STATE(6109), 9, + 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, @@ -719067,10 +712101,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5458), 23, + 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, @@ -719091,7 +712127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [60653] = 21, + [62275] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719114,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(8295), 1, - anon_sym_COMMA, - ACTIONS(8297), 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(6931), 1, + STATE(4583), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - STATE(6110), 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, @@ -719163,7 +712199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [60746] = 21, + [62368] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719186,23 +712222,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(7894), 1, - anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8874), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6111), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6127), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719235,7 +712271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [60839] = 21, + [62461] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719258,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(7858), 1, + ACTIONS(8445), 1, anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6112), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6128), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719307,7 +712343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [60932] = 21, + [62554] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719330,23 +712366,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(4236), 1, - sym_discard, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(8315), 1, + ACTIONS(8439), 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(5004), 1, + STATE(7030), 1, sym_identifier, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(7152), 1, - sym__variable_designation, - STATE(6113), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6129), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719379,7 +712415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61025] = 21, + [62647] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719402,23 +712438,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(8295), 1, + ACTIONS(8447), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8317), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6114), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6130), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719451,7 +712487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61118] = 14, + [62740] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719472,14 +712508,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8319), 1, - anon_sym_DOT, - ACTIONS(4363), 4, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6115), 9, + 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, @@ -719489,7 +712534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4361), 26, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -719500,9 +712545,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, @@ -719515,8 +712557,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, + [62829] = 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, - [61197] = 21, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8443), 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(6132), 9, + sym_preproc_region, + sym_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, + [62922] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719539,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(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8321), 1, + ACTIONS(8876), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6116), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6133), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719588,7 +712701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61290] = 21, + [63015] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719611,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(4236), 1, - sym_discard, - ACTIONS(7931), 1, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8323), 1, + ACTIONS(8878), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(5004), 1, + STATE(7030), 1, sym_identifier, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(7203), 1, - sym__variable_designation, - STATE(6117), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6134), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719660,7 +712773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61383] = 21, + [63108] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719683,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(7905), 1, - anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8880), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6118), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6135), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719732,7 +712845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61476] = 21, + [63201] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719755,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(7862), 1, + ACTIONS(8410), 1, anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6119), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6136), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719804,7 +712917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61569] = 21, + [63294] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719827,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(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8325), 1, + ACTIONS(8882), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6120), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6137), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719876,7 +712989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61662] = 21, + [63387] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719899,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(7832), 1, + ACTIONS(8430), 1, anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6121), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6138), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -719948,7 +713061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61755] = 21, + [63480] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -719971,23 +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, - ACTIONS(7916), 1, + ACTIONS(8422), 1, anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6122), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6139), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720020,7 +713133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61848] = 21, + [63573] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720043,23 +713156,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(8295), 1, + ACTIONS(8412), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8327), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6123), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6140), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720092,7 +713205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [61941] = 21, + [63666] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720115,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(7864), 1, + ACTIONS(8402), 1, anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6124), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6141), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720164,7 +713277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [62034] = 21, + [63759] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720185,25 +713298,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(5450), 6, + anon_sym_LBRACK, sym_grit_metavariable, - ACTIONS(8295), 1, - anon_sym_COMMA, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8329), 1, - anon_sym_RPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6931), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - STATE(6125), 9, + 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, @@ -720213,10 +713315,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + 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, @@ -720236,7 +713340,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [62127] = 21, + sym__identifier_token, + [63836] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720259,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(8295), 1, - anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8518), 1, anon_sym_LPAREN, - ACTIONS(8331), 1, + ACTIONS(8884), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(4583), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - STATE(6126), 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, @@ -720308,7 +713413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [62220] = 17, + [63929] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720329,20 +713434,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5464), 1, - aux_sym_preproc_else_token1, - ACTIONS(5466), 1, - aux_sym_preproc_elif_token1, - ACTIONS(5468), 1, - aux_sym_preproc_if_token3, - STATE(7764), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - ACTIONS(5460), 3, - anon_sym_LBRACK, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6127), 9, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(8886), 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(6144), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720352,7 +713462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5458), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720375,8 +713485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [62305] = 13, + [64022] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720397,14 +713506,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5584), 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(6128), 9, + ACTIONS(8408), 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(6145), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720414,12 +713534,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5582), 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, @@ -720439,8 +713557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [62382] = 21, + [64115] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720463,23 +713580,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(7872), 1, - anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8888), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6129), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6146), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720512,7 +713629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [62475] = 13, + [64208] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720533,14 +713650,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5512), 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(6130), 9, + ACTIONS(8856), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(6722), 1, + sym_identifier, + 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, @@ -720550,12 +713678,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5510), 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, @@ -720575,8 +713701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [62552] = 13, + [64301] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720597,14 +713722,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5554), 6, + ACTIONS(5480), 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(6131), 9, + STATE(6148), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720614,7 +713739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5552), 25, + ACTIONS(5478), 25, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720640,7 +713765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [62629] = 13, + [64378] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720661,14 +713786,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5642), 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(6132), 9, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8518), 1, + anon_sym_LPAREN, + ACTIONS(8890), 1, + anon_sym_RPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(4583), 1, + sym_identifier, + 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, @@ -720678,12 +713814,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5640), 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, @@ -720703,8 +713837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [62706] = 21, + [64471] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720727,23 +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, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8333), 1, + ACTIONS(8892), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6133), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6150), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720776,7 +713909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [62799] = 13, + [64564] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720797,14 +713930,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5596), 6, + ACTIONS(5422), 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(6134), 9, + STATE(6151), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720814,7 +713947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5594), 25, + ACTIONS(5420), 25, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -720840,7 +713973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [62876] = 21, + [64641] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720863,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(7850), 1, - anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8894), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6135), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6152), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720912,7 +714045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [62969] = 21, + [64734] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -720933,25 +714066,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(5434), 6, + anon_sym_LBRACK, sym_grit_metavariable, - ACTIONS(7856), 1, - anon_sym_RPAREN, - ACTIONS(8295), 1, - anon_sym_COMMA, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6931), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - STATE(6136), 9, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(6153), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -720961,10 +714083,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(5432), 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, @@ -720984,7 +714108,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63062] = 19, + sym__identifier_token, + [64811] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721007,21 +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, - STATE(2206), 1, + ACTIONS(8404), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5575), 1, + STATE(7030), 1, sym_identifier, - STATE(6765), 1, - sym__name, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6137), 9, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6154), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721054,7 +714181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63151] = 19, + [64904] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721075,23 +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, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5575), 1, - sym_identifier, - STATE(6807), 1, - sym__name, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6138), 9, + aux_sym_preproc_if_token1, + STATE(6155), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721101,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, @@ -721124,7 +714248,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63240] = 21, + sym__identifier_token, + [64989] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721147,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(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8335), 1, + ACTIONS(8896), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6139), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6156), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721196,7 +714321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63333] = 21, + [65082] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721219,23 +714344,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(8295), 1, + ACTIONS(8392), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8337), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6140), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6157), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721268,7 +714393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63426] = 14, + [65175] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721289,13 +714414,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8341), 2, - anon_sym_static, - anon_sym_async, - ACTIONS(8344), 2, - anon_sym_LPAREN, + ACTIONS(5386), 6, + anon_sym_LBRACK, sym_grit_metavariable, - STATE(6141), 10, + aux_sym_preproc_if_token1, + aux_sym_preproc_if_token3, + aux_sym_preproc_else_token1, + aux_sym_preproc_elif_token1, + STATE(6158), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721305,19 +714431,17 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__lambda_expression_init_repeat1, - ACTIONS(8339), 26, + ACTIONS(5384), 25, 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, @@ -721333,7 +714457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [63505] = 21, + [65252] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721356,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(8295), 1, + ACTIONS(8406), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8346), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6142), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6159), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721405,7 +714529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63598] = 21, + [65345] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721428,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(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8348), 1, + ACTIONS(8898), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6143), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6160), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721477,7 +714601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63691] = 21, + [65438] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721498,25 +714622,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, - sym_grit_metavariable, - ACTIONS(4236), 1, - sym_discard, - ACTIONS(7931), 1, + ACTIONS(8900), 1, + anon_sym_DOT, + ACTIONS(4361), 4, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(8350), 1, - anon_sym_RPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(5004), 1, - sym_identifier, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(7338), 1, - sym__variable_designation, - STATE(6144), 9, + anon_sym_LBRACE, + sym_grit_metavariable, + STATE(6161), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721526,7 +714639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4359), 26, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -721537,6 +714650,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, @@ -721549,7 +714665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63784] = 21, + sym__identifier_token, + [65517] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721570,25 +714687,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(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(7846), 1, - anon_sym_RPAREN, - ACTIONS(8295), 1, - anon_sym_COMMA, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6931), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - STATE(6145), 9, + aux_sym_preproc_if_token1, + STATE(6162), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721598,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, @@ -721621,7 +714733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63877] = 21, + sym__identifier_token, + [65602] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721644,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(7866), 1, + ACTIONS(8390), 1, anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6146), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6163), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721693,7 +714806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [63970] = 21, + [65695] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721716,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(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8352), 1, + ACTIONS(8904), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6147), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6164), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721765,7 +714878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64063] = 21, + [65788] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721788,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(7914), 1, - anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8906), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6148), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6165), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721837,7 +714950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64156] = 21, + [65881] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721860,23 +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, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8354), 1, + ACTIONS(8908), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6149), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6166), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -721909,7 +715022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64249] = 21, + [65974] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -721932,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(8295), 1, - anon_sym_COMMA, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8356), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5576), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - STATE(6150), 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, @@ -721981,7 +715092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64342] = 21, + [66063] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722004,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(7868), 1, + ACTIONS(8441), 1, anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6151), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6168), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722053,7 +715164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64435] = 19, + [66156] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722074,23 +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, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5575), 1, - sym_identifier, - STATE(7032), 1, - sym__name, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6152), 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, @@ -722100,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, @@ -722123,7 +715227,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64524] = 21, + sym__identifier_token, + [66233] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722146,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(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8358), 1, + ACTIONS(8910), 1, anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6153), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6170), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722195,7 +715300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64617] = 21, + [66326] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722218,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(8295), 1, + ACTIONS(8414), 1, + anon_sym_RPAREN, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7005), 1, + STATE(7030), 1, sym_identifier, - STATE(7246), 1, - sym_using_variable_declarator, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6154), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6171), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722267,7 +715372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64710] = 13, + [66419] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722288,14 +715393,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5606), 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(6155), 9, + ACTIONS(8424), 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(6172), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722305,12 +715421,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5604), 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, @@ -722330,8 +715444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [64787] = 21, + [66512] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722354,23 +715467,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(7826), 1, - anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8912), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6156), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6173), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722403,7 +715516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64880] = 21, + [66605] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722426,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(7892), 1, - anon_sym_RPAREN, - ACTIONS(8295), 1, + ACTIONS(8841), 1, anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + ACTIONS(8914), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7030), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6157), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6174), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722475,7 +715588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [64973] = 21, + [66698] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722496,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(8295), 1, - anon_sym_COMMA, - ACTIONS(8297), 1, + ACTIONS(8856), 1, anon_sym_LPAREN, - ACTIONS(8360), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7551), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(6158), 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, @@ -722524,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, @@ -722547,7 +715658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [65066] = 21, + [66788] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722568,25 +715679,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(4236), 1, - sym_discard, - ACTIONS(7931), 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(8916), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, - ACTIONS(8362), 1, - anon_sym_RPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(5004), 1, - sym_identifier, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(7119), 1, - sym__variable_designation, - STATE(6159), 9, + sym_grit_metavariable, + STATE(6176), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722596,7 +715702,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, @@ -722619,7 +715725,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [65159] = 21, + sym__identifier_token, + [66874] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722640,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(7903), 1, - anon_sym_RPAREN, - ACTIONS(8295), 1, - anon_sym_COMMA, - ACTIONS(8297), 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, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6931), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - STATE(6160), 9, + sym_grit_metavariable, + STATE(6177), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722668,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, @@ -722691,7 +715793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [65252] = 19, + sym__identifier_token, + [66960] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722712,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(2211), 1, - sym_generic_name, - STATE(5575), 1, - sym_identifier, - STATE(7342), 1, - sym__name, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6161), 9, + STATE(6178), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722738,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, @@ -722761,7 +715861,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [65341] = 21, + sym__identifier_token, + [67046] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722782,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(8295), 1, - anon_sym_COMMA, - ACTIONS(8297), 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(8364), 1, - anon_sym_RPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6931), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - STATE(6162), 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, @@ -722810,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, @@ -722833,7 +715928,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [65434] = 21, + sym__identifier_token, + [67130] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722856,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(8295), 1, - anon_sym_COMMA, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8366), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7460), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - STATE(6163), 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, @@ -722905,7 +715996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [65527] = 21, + [67214] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722926,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(7840), 1, - anon_sym_RPAREN, - ACTIONS(8295), 1, - anon_sym_COMMA, - ACTIONS(8297), 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, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6931), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - STATE(6164), 9, + sym_grit_metavariable, + STATE(6181), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -722954,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, @@ -722977,7 +716063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [65620] = 21, + sym__identifier_token, + [67300] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -722998,25 +716085,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(8295), 1, - anon_sym_COMMA, - ACTIONS(8297), 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, - ACTIONS(8368), 1, - anon_sym_RPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6931), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - STATE(6165), 9, + sym_grit_metavariable, + STATE(6182), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723026,7 +716108,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, @@ -723049,7 +716131,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [65713] = 19, + sym__identifier_token, + [67386] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723070,23 +716153,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, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(4331), 2, + anon_sym_LPAREN, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5575), 1, - sym_identifier, - STATE(6962), 1, - sym__name, - STATE(5470), 3, - sym_alias_qualified_name, - sym__simple_name, - sym_qualified_name, - STATE(6166), 9, + ACTIONS(5292), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + STATE(6183), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723096,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, @@ -723119,7 +716198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [65802] = 21, + sym__identifier_token, + [67470] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723142,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(7838), 1, - anon_sym_RPAREN, - ACTIONS(8295), 1, - anon_sym_COMMA, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6931), 1, + STATE(7228), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - STATE(6167), 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, @@ -723191,7 +716266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [65895] = 13, + [67554] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723212,14 +716287,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5558), 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(8930), 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(6168), 9, + STATE(6185), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723229,12 +716310,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5556), 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, @@ -723255,7 +716334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [65972] = 18, + [67640] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723276,20 +716355,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(5292), 1, anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8370), 1, + ACTIONS(8932), 1, anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6169), 9, + STATE(6186), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723299,7 +716378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723323,7 +716402,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [66058] = 18, + [67726] = 20, + ACTIONS(3), 1, + aux_sym_preproc_region_token1, + ACTIONS(5), 1, + aux_sym_preproc_endregion_token1, + ACTIONS(7), 1, + aux_sym_preproc_line_token1, + ACTIONS(9), 1, + aux_sym_preproc_pragma_token1, + ACTIONS(11), 1, + aux_sym_preproc_nullable_token1, + ACTIONS(13), 1, + aux_sym_preproc_error_token1, + ACTIONS(15), 1, + aux_sym_preproc_warning_token1, + ACTIONS(17), 1, + aux_sym_preproc_define_token1, + ACTIONS(19), 1, + aux_sym_preproc_undef_token1, + ACTIONS(21), 1, + sym_comment, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, + sym_grit_metavariable, + ACTIONS(8841), 1, + anon_sym_COMMA, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7319), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(6187), 9, + sym_preproc_region, + sym_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, + [67816] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723344,20 +716493,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(5408), 1, anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8372), 1, + ACTIONS(8918), 1, anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6170), 9, + STATE(6188), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723367,7 +716516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723391,7 +716540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [66144] = 18, + [67902] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723412,20 +716561,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4402), 1, + ACTIONS(5408), 1, anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8374), 1, + ACTIONS(8934), 1, anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6171), 9, + STATE(6189), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723435,7 +716584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723459,7 +716608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [66230] = 18, + [67988] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723480,20 +716629,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4402), 1, + ACTIONS(4454), 1, anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8376), 1, + ACTIONS(8936), 1, anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6172), 9, + STATE(6190), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723503,7 +716652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723527,7 +716676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [66316] = 18, + [68074] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723548,20 +716697,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4454), 1, anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8374), 1, + ACTIONS(8934), 1, anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6173), 9, + STATE(6191), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723571,7 +716720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723595,7 +716744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [66402] = 19, + [68160] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723616,22 +716765,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8177), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8187), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2206), 1, + ACTIONS(4234), 1, + sym_discard, + ACTIONS(8518), 1, + anon_sym_LPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5484), 1, - sym__simple_name, - STATE(5562), 1, + STATE(4583), 1, sym_identifier, - ACTIONS(8185), 2, - anon_sym_operator, - anon_sym_this, - STATE(6174), 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, @@ -723641,7 +716791,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8180), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723664,7 +716814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [66490] = 18, + [68250] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723685,20 +716835,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4402), 1, + ACTIONS(5408), 1, anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8378), 1, + ACTIONS(8938), 1, anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6175), 9, + STATE(6193), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723708,7 +716858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723732,7 +716882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [66576] = 18, + [68336] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723753,20 +716903,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4402), 1, + ACTIONS(5408), 1, anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8380), 1, + ACTIONS(8940), 1, anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6176), 9, + STATE(6194), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723776,7 +716926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723800,7 +716950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [66662] = 18, + [68422] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723821,20 +716971,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4402), 1, + ACTIONS(5408), 1, anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8382), 1, + ACTIONS(8936), 1, anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6177), 9, + STATE(6195), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723844,7 +716994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723868,7 +717018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [66748] = 18, + [68508] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723889,20 +717039,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4738), 1, + ACTIONS(4743), 1, anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8384), 1, + ACTIONS(8942), 1, anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6178), 9, + STATE(6196), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723912,7 +717062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -723936,7 +717086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [66834] = 18, + [68594] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -723957,20 +717107,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, + ACTIONS(4450), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(7755), 1, + ACTIONS(8944), 1, anon_sym_DOT, - ACTIONS(8386), 1, - anon_sym_SEMI, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6179), 9, + STATE(6197), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -723980,7 +717130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724004,7 +717154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [66920] = 18, + [68680] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724025,20 +717175,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4402), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(8388), 1, - anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(8948), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6180), 9, + STATE(6198), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724048,15 +717188,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + 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, anon_sym_scoped, anon_sym_var, + sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -724072,7 +717217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [67006] = 18, + [68756] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724093,20 +717238,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(5408), 1, anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8378), 1, + ACTIONS(8920), 1, anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6181), 9, + STATE(6199), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724116,7 +717261,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724140,7 +717285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [67092] = 18, + [68842] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724161,20 +717306,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4936), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8390), 1, - anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6182), 9, + ACTIONS(4743), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + STATE(6200), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724184,7 +717328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724208,7 +717352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [67178] = 20, + [68926] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724229,161 +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(4236), 1, - sym_discard, - ACTIONS(7931), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(5004), 1, - sym_identifier, - STATE(5014), 1, - sym_parenthesized_variable_designation, - STATE(7577), 1, - sym__variable_designation, - STATE(6183), 9, - sym_preproc_region, - sym_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, - [67268] = 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(4468), 1, + ACTIONS(4450), 1, anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8392), 1, + ACTIONS(8950), 1, anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6184), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4316), 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, - [67354] = 20, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(25), 1, - sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - ACTIONS(8295), 1, - anon_sym_COMMA, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7171), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - STATE(6185), 9, + STATE(6201), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724393,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, @@ -724416,74 +717419,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [67444] = 17, - ACTIONS(3), 1, - aux_sym_preproc_region_token1, - ACTIONS(5), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(7), 1, - aux_sym_preproc_line_token1, - ACTIONS(9), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(11), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(13), 1, - aux_sym_preproc_error_token1, - ACTIONS(15), 1, - aux_sym_preproc_warning_token1, - ACTIONS(17), 1, - aux_sym_preproc_define_token1, - ACTIONS(19), 1, - aux_sym_preproc_undef_token1, - ACTIONS(21), 1, - sym_comment, - ACTIONS(25), 1, sym__identifier_token, - ACTIONS(1307), 1, - sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7190), 1, - sym_identifier, - ACTIONS(8394), 4, - anon_sym_Cdecl, - anon_sym_Stdcall, - anon_sym_Thiscall, - anon_sym_Fastcall, - STATE(6186), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - 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, - [67528] = 18, + [69012] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724504,20 +717441,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(4450), 1, anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8396), 1, + ACTIONS(8952), 1, anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6187), 9, + STATE(6202), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724527,7 +717464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724551,7 +717488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [67614] = 17, + [69098] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724572,19 +717509,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, + ACTIONS(4454), 1, + anon_sym_DASH_GT, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(4318), 2, + ACTIONS(8926), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - ACTIONS(4936), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - STATE(6188), 9, + STATE(6203), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724594,7 +717532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724618,7 +717556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [67698] = 18, + [69184] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724639,20 +717577,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, + ACTIONS(5292), 1, anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8398), 1, + ACTIONS(8954), 1, anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6189), 9, + STATE(6204), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724662,7 +717600,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724686,7 +717624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [67784] = 18, + [69270] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724707,20 +717645,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4454), 1, anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8400), 1, + ACTIONS(8956), 1, anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6190), 9, + STATE(6205), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724730,7 +717668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724754,7 +717692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [67870] = 20, + [69356] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724775,23 +717713,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7772), 1, - sym_grit_metavariable, - ACTIONS(8293), 1, + 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(8958), 1, + anon_sym_SEMI, + ACTIONS(4331), 2, anon_sym_LPAREN, - STATE(2787), 1, - sym__reserved_identifier, - STATE(7614), 1, - sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7720), 1, - sym_tuple_pattern, - STATE(7988), 1, - sym__lambda_parameters, - STATE(6191), 9, + sym_grit_metavariable, + STATE(6206), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724801,7 +717736,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724824,7 +717759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [67960] = 18, + sym__identifier_token, + [69442] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724845,20 +717781,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4402), 1, + ACTIONS(4454), 1, anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8390), 1, + ACTIONS(8960), 1, anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6192), 9, + STATE(6207), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724868,7 +717804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724892,7 +717828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [68046] = 17, + [69528] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724913,19 +717849,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(4318), 2, + ACTIONS(8267), 1, + anon_sym_DOT, + ACTIONS(8962), 1, + anon_sym_SEMI, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - ACTIONS(5274), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - STATE(6193), 9, + STATE(6208), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724935,7 +717872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -724959,7 +717896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [68130] = 13, + [69614] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -724980,10 +717917,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8404), 2, + 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(8964), 1, + anon_sym_DOT, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6194), 9, + STATE(6209), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -724993,20 +717940,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8402), 28, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, - anon_sym_ref, - anon_sym_delegate, anon_sym_file, anon_sym_where, anon_sym_notnull, anon_sym_unmanaged, - anon_sym_operator, - anon_sym_checked, anon_sym_scoped, anon_sym_var, - sym_predefined_type, anon_sym_yield, anon_sym_when, anon_sym_from, @@ -725022,7 +717964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [68206] = 18, + [69700] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725043,20 +717985,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8406), 1, - anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6195), 9, + ACTIONS(4454), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + STATE(6210), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725066,7 +718007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725090,7 +718031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [68292] = 18, + [69784] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725111,20 +718052,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5274), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(8408), 1, - anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(8968), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6196), 9, + STATE(6211), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725134,15 +718065,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 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, @@ -725158,7 +718094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [68378] = 18, + [69860] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725179,20 +718115,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4936), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(8376), 1, - anon_sym_DOT, - ACTIONS(4318), 2, - anon_sym_LPAREN, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(6197), 9, + ACTIONS(8856), 1, + anon_sym_LPAREN, + STATE(2652), 1, + sym__reserved_identifier, + STATE(7530), 1, + sym_identifier, + STATE(7646), 1, + sym__lambda_parameters, + STATE(7794), 1, + sym_tuple_pattern, + STATE(7966), 1, + sym_parameter_list, + STATE(6212), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725202,7 +718141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725225,8 +718164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [68464] = 17, + [69950] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725247,19 +718185,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(4318), 2, + ACTIONS(8972), 2, anon_sym_LPAREN, sym_grit_metavariable, - ACTIONS(4738), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - STATE(6198), 9, + STATE(6213), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725269,15 +718198,20 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 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, @@ -725293,7 +718227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [68548] = 18, + [70026] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725314,20 +718248,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4738), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(8410), 1, - anon_sym_DOT, - ACTIONS(4318), 2, - anon_sym_LPAREN, + ACTIONS(8740), 1, + sym__identifier_token, + ACTIONS(8746), 1, sym_grit_metavariable, - STATE(6199), 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, @@ -725337,7 +718273,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(8743), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725360,8 +718296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [68634] = 18, + [70114] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725382,20 +718317,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4450), 1, anon_sym_DASH_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(7749), 1, + ACTIONS(8213), 1, anon_sym_QMARK, - ACTIONS(8412), 1, + ACTIONS(8974), 1, anon_sym_DOT, - ACTIONS(4318), 2, + ACTIONS(4331), 2, anon_sym_LPAREN, sym_grit_metavariable, - STATE(6200), 9, + STATE(6215), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725405,7 +718340,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(4329), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725429,7 +718364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_by, anon_sym_select, sym__identifier_token, - [68720] = 13, + [70200] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725450,10 +718385,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8416), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6201), 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, @@ -725463,20 +718409,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8414), 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, @@ -725491,8 +718432,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, + [70287] = 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, - [68796] = 18, + ACTIONS(1301), 1, + sym_grit_metavariable, + 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, + 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, + [70374] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725513,20 +718521,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4936), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(8388), 1, - anon_sym_DOT, - ACTIONS(4318), 2, + 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(6866), 1, + sym_tuple_pattern, + STATE(6887), 1, + sym_identifier, + STATE(7281), 1, + sym_variable_declarator, + STATE(6218), 9, + sym_preproc_region, + sym_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, + [70461] = 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(6202), 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, @@ -725536,7 +718613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725559,8 +718636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [68882] = 13, + [70548] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725581,10 +718657,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8420), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6203), 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, @@ -725594,20 +718681,15 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8418), 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, @@ -725622,8 +718704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [68958] = 18, + [70635] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725644,20 +718725,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(7755), 1, - anon_sym_DOT, - ACTIONS(8422), 1, - anon_sym_SEMI, - ACTIONS(4318), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6204), 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, @@ -725667,7 +718749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725690,8 +718772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [69044] = 18, + [70722] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725712,20 +718793,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5274), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(8424), 1, - anon_sym_DOT, - ACTIONS(4318), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6205), 9, + ACTIONS(8553), 1, + anon_sym_LPAREN, + ACTIONS(8976), 1, + sym_discard, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7477), 1, + sym_identifier, + STATE(7479), 1, + sym_tuple_pattern, + STATE(6222), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725735,7 +718817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725758,8 +718840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [69130] = 18, + [70809] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725780,20 +718861,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4468), 1, - anon_sym_DASH_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(8426), 1, - anon_sym_DOT, - ACTIONS(4318), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(6206), 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, @@ -725803,7 +718885,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725826,8 +718908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [69216] = 17, + [70896] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725850,18 +718931,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(7493), 1, + STATE(6806), 1, sym_identifier, - ACTIONS(8428), 4, - anon_sym_Cdecl, - anon_sym_Stdcall, - anon_sym_Thiscall, - anon_sym_Fastcall, - STATE(6207), 9, + STATE(6890), 1, + sym_tuple_pattern, + STATE(7281), 1, + sym_variable_declarator, + STATE(6224), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725894,7 +718976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69300] = 20, + [70983] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725915,23 +718997,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8293), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2787), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7409), 1, + STATE(7014), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, + STATE(7646), 1, sym__lambda_parameters, - STATE(8070), 1, - sym_tuple_pattern, - STATE(6208), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6225), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -725941,7 +719021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -725964,7 +719044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69390] = 17, + [71070] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -725985,19 +719065,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(4318), 2, - anon_sym_LPAREN, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(4402), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - STATE(6209), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7868), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(8006), 1, + sym_identifier, + STATE(6226), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726007,7 +719089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4316), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726030,8 +719112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [69474] = 19, + [71157] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726054,19 +719135,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(8029), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6623), 1, + STATE(7673), 1, + sym__lambda_parameters, + STATE(7966), 1, + sym_parameter_list, + STATE(8006), 1, sym_identifier, - STATE(6908), 1, - sym_tuple_pattern, - STATE(7161), 1, - sym_variable_declarator, - STATE(6210), 9, + STATE(6227), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726099,7 +719180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69561] = 19, + [71244] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726122,19 +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(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6784), 1, + STATE(6808), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(8132), 1, + STATE(7868), 1, sym__lambda_parameters, - STATE(6211), 9, + STATE(7966), 1, + sym_parameter_list, + STATE(6228), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726167,7 +719248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69648] = 19, + [71331] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726188,21 +719269,85 @@ 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(8029), 1, - anon_sym_LPAREN, - STATE(2206), 1, + STATE(5555), 1, + sym_identifier, + STATE(5562), 1, sym__reserved_identifier, - STATE(6875), 1, - sym_tuple_pattern, - STATE(6884), 1, + STATE(5632), 1, + sym_generic_name, + STATE(5641), 1, + sym__simple_name, + STATE(6229), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4415), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + 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, + ACTIONS(7262), 1, + sym_grit_metavariable, + STATE(2394), 1, sym_identifier, - STATE(7146), 1, - sym_variable_declarator, - STATE(6212), 9, + 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, @@ -726212,7 +719357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4425), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726235,7 +719380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69735] = 19, + [71499] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726256,21 +719401,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8978), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8986), 1, sym_grit_metavariable, - ACTIONS(8029), 1, - anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6781), 1, + STATE(7708), 1, sym_identifier, - STATE(6908), 1, - sym_tuple_pattern, - STATE(7161), 1, - sym_variable_declarator, - STATE(6213), 9, + ACTIONS(8984), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(6231), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726280,7 +719422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8981), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726303,7 +719445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69822] = 19, + [71581] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726324,21 +719466,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, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7814), 1, + STATE(3731), 1, sym_identifier, - STATE(8132), 1, - sym__lambda_parameters, - STATE(6214), 9, + 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, @@ -726348,7 +719488,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, @@ -726371,7 +719511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69909] = 19, + [71665] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726392,21 +719532,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(8297), 1, - anon_sym_LPAREN, - STATE(2206), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2652), 1, sym__reserved_identifier, - STATE(7046), 1, + STATE(5479), 1, + sym__simple_name, + STATE(6638), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7988), 1, - sym__lambda_parameters, - STATE(6215), 9, + STATE(6233), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726416,7 +719554,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, @@ -726439,7 +719577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [69996] = 19, + [71749] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726462,19 +719600,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(8029), 1, - anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6781), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(6908), 1, - sym_tuple_pattern, - STATE(7146), 1, - sym_variable_declarator, - STATE(6216), 9, + STATE(2356), 1, + sym__simple_name, + STATE(6234), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726507,7 +719643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70083] = 19, + [71833] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726530,19 +719666,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(8297), 1, - anon_sym_LPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7810), 1, - sym__lambda_parameters, - STATE(7814), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(6217), 9, + STATE(2391), 1, + sym__simple_name, + STATE(6235), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726575,7 +719709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70170] = 19, + [71917] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726596,21 +719730,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(5474), 1, - sym_discard, - ACTIONS(8029), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7125), 1, + STATE(3088), 1, sym_identifier, - STATE(7293), 1, - sym_tuple_pattern, - STATE(6218), 9, + 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, @@ -726620,7 +719752,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, @@ -726643,7 +719775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70257] = 19, + [72001] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726666,19 +719798,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(8029), 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(6875), 1, - sym_tuple_pattern, - STATE(6884), 1, + STATE(7294), 1, sym_identifier, - STATE(7327), 1, - sym_variable_declarator, - STATE(6219), 9, + STATE(6237), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726711,7 +719841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70344] = 19, + [72085] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726732,21 +719862,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(8297), 1, - anon_sym_LPAREN, - STATE(2206), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2277), 1, sym__reserved_identifier, - STATE(6944), 1, + STATE(5463), 1, + sym__simple_name, + STATE(5561), 1, sym_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(8132), 1, - sym__lambda_parameters, - STATE(6220), 9, + STATE(6238), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726756,7 +719884,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, @@ -726779,7 +719907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70431] = 19, + [72169] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726800,21 +719928,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8995), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8999), 1, sym_grit_metavariable, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7657), 1, - sym_parameter_list, - STATE(7814), 1, + STATE(2666), 1, sym_identifier, - STATE(7988), 1, - sym__lambda_parameters, - STATE(6221), 9, + 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, @@ -726824,7 +719950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8997), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -726847,7 +719973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70518] = 19, + [72253] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726870,19 +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, - ACTIONS(8029), 1, - anon_sym_LPAREN, - ACTIONS(8430), 1, - sym_discard, - STATE(2206), 1, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8213), 1, + anon_sym_QMARK, + STATE(2207), 1, sym__reserved_identifier, - STATE(7580), 1, + STATE(7294), 1, sym_identifier, - STATE(7581), 1, - sym_tuple_pattern, - STATE(6222), 9, + STATE(6240), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726915,7 +720039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70605] = 18, + [72337] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -726936,19 +720060,85 @@ 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, - STATE(2206), 1, + STATE(3731), 1, + sym_identifier, + STATE(3771), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(4273), 1, sym_generic_name, - STATE(2219), 1, + STATE(4507), 1, + sym__simple_name, + STATE(6241), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(4218), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [72421] = 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(8989), 1, + sym__identifier_token, + ACTIONS(8993), 1, + sym_grit_metavariable, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(2449), 1, + STATE(2277), 1, + sym__reserved_identifier, + STATE(2292), 1, sym__simple_name, - STATE(6223), 9, + STATE(6242), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -726958,7 +720148,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, @@ -726981,7 +720171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70689] = 18, + [72505] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727004,17 +720194,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(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2344), 1, + STATE(2449), 1, sym__simple_name, - STATE(6224), 9, + STATE(6243), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727047,7 +720237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70773] = 18, + [72589] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727068,19 +720258,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8432), 1, + ACTIONS(4216), 1, sym__identifier_token, - ACTIONS(8436), 1, + ACTIONS(4230), 1, sym_grit_metavariable, - STATE(2283), 1, + STATE(3088), 1, sym_identifier, - STATE(2296), 1, + STATE(3145), 1, sym_generic_name, - STATE(2304), 1, - sym__reserved_identifier, - STATE(2329), 1, + STATE(3151), 1, sym__simple_name, - STATE(6225), 9, + STATE(3771), 1, + sym__reserved_identifier, + STATE(6244), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727090,7 +720280,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8434), 22, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727113,7 +720303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70857] = 18, + [72673] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727134,19 +720324,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8438), 1, + ACTIONS(4413), 1, sym__identifier_token, - ACTIONS(8442), 1, + ACTIONS(4421), 1, sym_grit_metavariable, - STATE(2788), 1, + STATE(5555), 1, sym_identifier, - STATE(2819), 1, - sym_generic_name, - STATE(2897), 1, + STATE(5562), 1, sym__reserved_identifier, - STATE(3051), 1, + STATE(5624), 1, sym__simple_name, - STATE(6226), 9, + STATE(5632), 1, + sym_generic_name, + STATE(6245), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727156,7 +720346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8440), 22, + ACTIONS(4415), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727179,7 +720369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [70941] = 18, + [72757] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727200,19 +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, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2367), 1, - sym__simple_name, - STATE(6227), 9, + aux_sym_preproc_if_token1, + STATE(6246), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727222,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, @@ -727245,7 +720429,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71025] = 18, + sym__identifier_token, + [72831] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727268,17 +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, - STATE(2206), 1, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8213), 1, + anon_sym_QMARK, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, + STATE(7236), 1, sym_identifier, - STATE(2378), 1, - sym__simple_name, - STATE(6228), 9, + STATE(6247), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727311,7 +720496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71109] = 18, + [72915] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727334,17 +720519,17 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(4208), 1, sym__identifier_token, - ACTIONS(4220), 1, + ACTIONS(4214), 1, sym_grit_metavariable, - STATE(3412), 1, + STATE(3147), 1, sym_identifier, - STATE(3618), 1, + STATE(3148), 1, + sym__reserved_identifier, + STATE(3247), 1, sym_generic_name, - STATE(3669), 1, + STATE(3331), 1, sym__simple_name, - STATE(4707), 1, - sym__reserved_identifier, - STATE(6229), 9, + STATE(6248), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727377,7 +720562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71193] = 18, + [72999] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727400,17 +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, - STATE(2206), 1, + ACTIONS(9001), 1, + anon_sym_RBRACE, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, + STATE(7134), 1, + sym_with_initializer, + STATE(7664), 1, sym_identifier, - STATE(2318), 1, - sym__simple_name, - STATE(6230), 9, + STATE(6249), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727443,7 +720628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71277] = 18, + [73083] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727466,17 +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, - STATE(2206), 1, + ACTIONS(9003), 1, + anon_sym_RBRACE, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, + STATE(7337), 1, + sym_with_initializer, + STATE(7664), 1, sym_identifier, - STATE(2382), 1, - sym__simple_name, - STATE(6231), 9, + STATE(6250), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727509,7 +720694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71361] = 18, + [73167] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727530,19 +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, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2333), 1, + STATE(2277), 1, + sym__reserved_identifier, + STATE(2377), 1, sym__simple_name, - STATE(6232), 9, + STATE(6251), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727552,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, @@ -727575,7 +720760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71445] = 18, + [73251] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727596,19 +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, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2438), 1, - sym__simple_name, - STATE(6233), 9, + aux_sym_preproc_if_token1, + STATE(6252), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727618,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, @@ -727641,7 +720821,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71529] = 18, + sym__identifier_token, + [73327] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727664,17 +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, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2365), 1, + STATE(3049), 1, sym__simple_name, - STATE(6234), 9, + STATE(6253), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727707,7 +720888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71613] = 18, + [73411] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727728,19 +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, - sym_grit_metavariable, - ACTIONS(7743), 1, + ACTIONS(5204), 3, anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7340), 1, - sym_identifier, - STATE(6235), 9, + sym_grit_metavariable, + aux_sym_preproc_if_token1, + STATE(6254), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727750,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, @@ -727773,7 +720948,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71697] = 18, + sym__identifier_token, + [73485] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727796,17 +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, - STATE(2206), 1, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, + STATE(7236), 1, sym_identifier, - STATE(2431), 1, - sym__simple_name, - STATE(6236), 9, + STATE(6255), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727839,7 +721015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71781] = 17, + [73569] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727860,18 +721036,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8444), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(8452), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7954), 1, + STATE(2746), 1, sym_identifier, - ACTIONS(8450), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(6237), 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, @@ -727881,7 +721058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8447), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -727904,7 +721081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71863] = 18, + [73653] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727925,19 +721102,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, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, + STATE(3147), 1, sym_identifier, - STATE(2317), 1, + STATE(3247), 1, + sym_generic_name, + STATE(3327), 1, sym__simple_name, - STATE(6238), 9, + STATE(3771), 1, + sym__reserved_identifier, + STATE(6257), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -727947,7 +721124,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, @@ -727970,7 +721147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [71947] = 18, + [73737] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -727993,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(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2353), 1, + STATE(2321), 1, sym__simple_name, - STATE(6239), 9, + STATE(6258), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728036,7 +721213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72031] = 17, + [73821] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728057,18 +721234,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(9007), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(9011), 1, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7412), 1, + STATE(3603), 1, sym_identifier, - ACTIONS(8295), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6240), 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, @@ -728078,7 +721256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(9009), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -728101,7 +721279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72113] = 18, + [73905] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728122,19 +721300,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4149), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(4158), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(3393), 1, - sym__reserved_identifier, - STATE(3412), 1, - sym_identifier, - STATE(3618), 1, + STATE(2210), 1, sym_generic_name, - STATE(3894), 1, + STATE(2217), 1, + sym_identifier, + STATE(2227), 1, sym__simple_name, - STATE(6241), 9, + STATE(2277), 1, + sym__reserved_identifier, + STATE(6260), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728144,7 +721322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4151), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -728167,7 +721345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72197] = 18, + [73989] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728190,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, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2364), 1, + STATE(2386), 1, sym__simple_name, - STATE(6242), 9, + STATE(6261), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728233,7 +721411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72281] = 18, + [74073] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728254,77 +721432,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4404), 1, + ACTIONS(9013), 1, sym__identifier_token, - ACTIONS(4412), 1, + ACTIONS(9017), 1, sym_grit_metavariable, - STATE(5564), 1, - sym__reserved_identifier, - STATE(5576), 1, + STATE(2394), 1, sym_identifier, - STATE(5584), 1, + STATE(2409), 1, sym__simple_name, - STATE(5585), 1, + STATE(2415), 1, sym_generic_name, - STATE(6243), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4406), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [72365] = 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(5932), 3, - anon_sym_LBRACK, - sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6244), 9, + STATE(2682), 1, + sym__reserved_identifier, + STATE(6262), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728334,12 +721454,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5930), 25, + ACTIONS(9015), 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, @@ -728359,8 +721477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [72439] = 18, + [74157] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728381,19 +721498,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4404), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(4412), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(5564), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(5576), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(5582), 1, + STATE(2345), 1, sym__simple_name, - STATE(5585), 1, - sym_generic_name, - STATE(6245), 9, + STATE(6263), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728403,7 +721520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4406), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -728426,7 +721543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72523] = 18, + [74241] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728447,19 +721564,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8455), 1, - sym__identifier_token, - ACTIONS(8459), 1, + ACTIONS(5670), 3, + anon_sym_LBRACK, sym_grit_metavariable, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2274), 1, - sym__reserved_identifier, - STATE(2349), 1, - sym__simple_name, - STATE(6246), 9, + aux_sym_preproc_if_token1, + STATE(6264), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728469,10 +721578,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 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, @@ -728492,7 +721603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72607] = 18, + sym__identifier_token, + [74315] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728515,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, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2387), 1, + STATE(2432), 1, sym__simple_name, - STATE(6247), 9, + STATE(6265), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728558,7 +721670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72691] = 13, + [74399] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728579,11 +721691,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(9019), 1, + sym__identifier_token, + ACTIONS(9023), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6248), 9, + STATE(2283), 1, + sym_identifier, + STATE(2287), 1, + sym__simple_name, + STATE(2291), 1, + sym__reserved_identifier, + STATE(2309), 1, + sym_generic_name, + STATE(6266), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728593,12 +721713,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4084), 25, + ACTIONS(9021), 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, @@ -728618,8 +721736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [72765] = 18, + [74483] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728640,19 +721757,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8461), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(8465), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2733), 1, - sym_identifier, - STATE(2866), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(3034), 1, - sym__simple_name, - STATE(3044), 1, - sym_generic_name, - STATE(6249), 9, + STATE(6554), 1, + sym_identifier, + ACTIONS(9025), 2, + anon_sym_class, + anon_sym_struct, + STATE(6267), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728662,7 +721778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8463), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -728685,7 +721801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72849] = 18, + [74565] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728706,19 +721822,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(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2392), 1, + STATE(2222), 1, sym__simple_name, - STATE(6250), 9, + STATE(2277), 1, + sym__reserved_identifier, + STATE(6268), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728728,7 +721844,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, @@ -728751,7 +721867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [72933] = 18, + [74649] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728772,19 +721888,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4208), 1, - sym__identifier_token, - ACTIONS(4220), 1, + ACTIONS(5674), 3, + anon_sym_LBRACK, sym_grit_metavariable, - STATE(4655), 1, - sym_identifier, - STATE(4666), 1, - sym_generic_name, - STATE(4681), 1, - sym__simple_name, - STATE(4707), 1, - sym__reserved_identifier, - STATE(6251), 9, + aux_sym_preproc_if_token1, + STATE(6269), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728794,10 +721902,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4210), 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, @@ -728817,7 +721927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73017] = 18, + sym__identifier_token, + [74723] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728840,17 +721951,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(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2320), 1, + STATE(2427), 1, sym__simple_name, - STATE(6252), 9, + STATE(6270), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728883,7 +721994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73101] = 18, + [74807] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728904,19 +722015,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8467), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8471), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(4652), 1, - sym_identifier, - STATE(4663), 1, - sym__simple_name, - STATE(4670), 1, + ACTIONS(9027), 1, + anon_sym_operator, + ACTIONS(9029), 1, + anon_sym_this, + STATE(2207), 1, sym__reserved_identifier, - STATE(4717), 1, - sym_generic_name, - STATE(6253), 9, + STATE(6643), 1, + sym_identifier, + STATE(6271), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728926,7 +722037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8469), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -728949,7 +722060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73185] = 18, + [74891] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -728970,19 +722081,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8459), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2274), 1, + ACTIONS(9031), 1, + anon_sym_RBRACE, + STATE(2207), 1, sym__reserved_identifier, - STATE(2318), 1, - sym__simple_name, - STATE(6254), 9, + STATE(7268), 1, + sym_with_initializer, + STATE(7664), 1, + sym_identifier, + STATE(6272), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -728992,7 +722103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729015,7 +722126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73269] = 18, + [74975] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729038,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(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2250), 1, + STATE(2267), 1, sym__simple_name, - STATE(6255), 9, + STATE(6273), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729081,7 +722192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73353] = 18, + [75059] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729102,19 +722213,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4430), 1, + ACTIONS(4216), 1, sym__identifier_token, - ACTIONS(4436), 1, + ACTIONS(4230), 1, sym_grit_metavariable, - STATE(2389), 1, + STATE(3731), 1, sym_identifier, - STATE(2400), 1, + STATE(3771), 1, sym__reserved_identifier, - STATE(2433), 1, - sym_generic_name, - STATE(2440), 1, + STATE(4141), 1, sym__simple_name, - STATE(6256), 9, + STATE(4273), 1, + sym_generic_name, + STATE(6274), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729124,7 +722235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4432), 22, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729147,7 +722258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73437] = 18, + [75143] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729168,19 +722279,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(4423), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(7262), 1, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, + STATE(2394), 1, sym_identifier, - STATE(2289), 1, + STATE(2402), 1, + sym__reserved_identifier, + STATE(2409), 1, sym__simple_name, - STATE(6257), 9, + STATE(2415), 1, + sym_generic_name, + STATE(6275), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729190,7 +722301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(4425), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729213,7 +722324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73521] = 18, + [75227] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729234,19 +722345,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8473), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(8477), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(5473), 1, + STATE(2210), 1, sym_generic_name, - STATE(5484), 1, - sym__simple_name, - STATE(5928), 1, - sym__reserved_identifier, - STATE(6579), 1, + STATE(2217), 1, sym_identifier, - STATE(6258), 9, + STATE(2277), 1, + sym__reserved_identifier, + STATE(2294), 1, + sym__simple_name, + STATE(6276), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729256,7 +722367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8475), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729279,7 +722390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73605] = 18, + [75311] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729300,19 +722411,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8479), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(8483), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(2389), 1, - sym_identifier, - STATE(2433), 1, + STATE(2210), 1, sym_generic_name, - STATE(2440), 1, + STATE(2217), 1, + sym_identifier, + STATE(2223), 1, sym__simple_name, - STATE(2736), 1, + STATE(2277), 1, sym__reserved_identifier, - STATE(6259), 9, + STATE(6277), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729322,7 +722433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8481), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729345,7 +722456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73689] = 18, + [75395] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729366,19 +722477,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(9019), 1, sym__identifier_token, - ACTIONS(8459), 1, + ACTIONS(9023), 1, sym_grit_metavariable, - STATE(2211), 1, - sym_generic_name, - STATE(2274), 1, + STATE(2283), 1, + sym_identifier, + STATE(2291), 1, sym__reserved_identifier, - STATE(5484), 1, + STATE(2295), 1, sym__simple_name, - STATE(5562), 1, - sym_identifier, - STATE(6260), 9, + STATE(2309), 1, + sym_generic_name, + STATE(6278), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729388,7 +722499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 22, + ACTIONS(9021), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729411,7 +722522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73773] = 18, + [75479] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729432,19 +722543,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4430), 1, + ACTIONS(9013), 1, sym__identifier_token, - ACTIONS(4436), 1, + ACTIONS(9017), 1, sym_grit_metavariable, - STATE(2389), 1, + STATE(2394), 1, sym_identifier, - STATE(2400), 1, - sym__reserved_identifier, - STATE(2433), 1, + STATE(2415), 1, sym_generic_name, - STATE(5407), 1, + STATE(2431), 1, sym__simple_name, - STATE(6261), 9, + STATE(2682), 1, + sym__reserved_identifier, + STATE(6279), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729454,7 +722565,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4432), 22, + ACTIONS(9015), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729477,7 +722588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [73857] = 13, + [75563] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729498,11 +722609,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5823), 3, - anon_sym_LBRACK, + ACTIONS(8989), 1, + sym__identifier_token, + ACTIONS(8993), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6262), 9, + STATE(2210), 1, + sym_generic_name, + STATE(2277), 1, + sym__reserved_identifier, + STATE(5479), 1, + sym__simple_name, + STATE(5561), 1, + sym_identifier, + STATE(6280), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729512,12 +722631,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5821), 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, @@ -729537,8 +722654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [73931] = 13, + [75647] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729559,11 +722675,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5859), 3, - anon_sym_LBRACK, + ACTIONS(9033), 1, + sym__identifier_token, + ACTIONS(9037), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6263), 9, + STATE(2468), 1, + sym_identifier, + 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, @@ -729573,12 +722697,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5857), 25, + ACTIONS(9035), 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, @@ -729598,8 +722720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [74005] = 18, + [75731] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729620,19 +722741,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(8485), 1, - anon_sym_operator, - ACTIONS(8487), 1, - anon_sym_this, - STATE(2206), 1, + STATE(3071), 1, sym__reserved_identifier, - STATE(6647), 1, + STATE(3088), 1, sym_identifier, - STATE(6264), 9, + STATE(3145), 1, + sym_generic_name, + STATE(3289), 1, + sym__simple_name, + STATE(6282), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729642,7 +722763,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, @@ -729665,7 +722786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74089] = 18, + [75815] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729686,19 +722807,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8459), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2211), 1, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2274), 1, - sym__reserved_identifier, - STATE(2387), 1, + STATE(2222), 1, sym__simple_name, - STATE(6265), 9, + STATE(6283), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729708,7 +722829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729731,7 +722852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74173] = 18, + [75899] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729754,17 +722875,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(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2227), 1, + STATE(2258), 1, sym__simple_name, - STATE(6266), 9, + STATE(6284), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729797,7 +722918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74257] = 18, + [75983] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729818,19 +722939,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8432), 1, + ACTIONS(4423), 1, sym__identifier_token, - ACTIONS(8436), 1, + ACTIONS(7262), 1, sym_grit_metavariable, - STATE(2283), 1, + STATE(2394), 1, sym_identifier, - STATE(2287), 1, - sym__simple_name, - STATE(2296), 1, - sym_generic_name, - STATE(2304), 1, + STATE(2402), 1, sym__reserved_identifier, - STATE(6267), 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, @@ -729840,7 +722961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8434), 22, + ACTIONS(4425), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -729863,7 +722984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74341] = 18, + [76067] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729884,19 +723005,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(8489), 1, - anon_sym_RBRACE, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7061), 1, - sym_with_initializer, - STATE(7860), 1, + STATE(3147), 1, sym_identifier, - STATE(6268), 9, + STATE(3148), 1, + sym__reserved_identifier, + STATE(3247), 1, + sym_generic_name, + STATE(3357), 1, + sym__simple_name, + STATE(6286), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729906,7 +723027,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, @@ -729929,7 +723050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74425] = 18, + [76151] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -729952,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, - ACTIONS(8491), 1, - anon_sym_operator, - ACTIONS(8493), 1, - anon_sym_this, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6646), 1, + STATE(2210), 1, + sym_generic_name, + STATE(5463), 1, + sym__simple_name, + STATE(5561), 1, sym_identifier, - STATE(6269), 9, + STATE(6287), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -729995,7 +723116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74509] = 18, + [76235] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730016,19 +723137,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(8459), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2274), 1, + STATE(2277), 1, sym__reserved_identifier, - STATE(2320), 1, + STATE(2332), 1, sym__simple_name, - STATE(6270), 9, + STATE(6288), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730038,7 +723159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -730061,7 +723182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74593] = 18, + [76319] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730082,19 +723203,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, - ACTIONS(8495), 1, - anon_sym_RBRACE, - STATE(2206), 1, + STATE(5149), 1, sym__reserved_identifier, - STATE(7225), 1, - sym_with_initializer, - STATE(7860), 1, + STATE(5356), 1, sym_identifier, - STATE(6271), 9, + STATE(5463), 1, + sym__simple_name, + STATE(5468), 1, + sym_generic_name, + STATE(6289), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730104,7 +723225,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, @@ -730127,7 +723248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74677] = 17, + [76403] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730148,18 +723269,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8444), 1, + ACTIONS(4186), 1, sym__identifier_token, - ACTIONS(8452), 1, + ACTIONS(4195), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(3071), 1, sym__reserved_identifier, - STATE(7916), 1, + STATE(3088), 1, sym_identifier, - ACTIONS(8450), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(6272), 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, @@ -730169,7 +723291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8447), 22, + ACTIONS(4188), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -730192,7 +723314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74759] = 18, + [76487] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730213,19 +723335,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8995), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8999), 1, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, + STATE(2666), 1, sym_identifier, - STATE(2422), 1, + STATE(2713), 1, + sym_generic_name, + STATE(2784), 1, sym__simple_name, - STATE(6273), 9, + STATE(2796), 1, + sym__reserved_identifier, + STATE(6291), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730235,7 +723357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8997), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -730258,7 +723380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74843] = 18, + [76571] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730281,17 +723403,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(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2233), 1, + STATE(5479), 1, sym__simple_name, - STATE(6274), 9, + STATE(5561), 1, + sym_identifier, + STATE(6292), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730324,7 +723446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [74927] = 18, + [76655] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730345,19 +723467,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8432), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8436), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2283), 1, - sym_identifier, - STATE(2296), 1, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, sym_generic_name, - STATE(2301), 1, + STATE(2217), 1, + sym_identifier, + STATE(2412), 1, sym__simple_name, - STATE(2304), 1, - sym__reserved_identifier, - STATE(6275), 9, + STATE(6293), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730367,7 +723489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8434), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -730390,7 +723512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75011] = 18, + [76739] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730411,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(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2357), 1, + STATE(2221), 1, sym__simple_name, - STATE(6276), 9, + STATE(2277), 1, + sym__reserved_identifier, + STATE(6294), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730433,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, @@ -730456,7 +723578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75095] = 18, + [76823] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730479,17 +723601,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(7743), 1, - anon_sym_LBRACK, - ACTIONS(7749), 1, - anon_sym_QMARK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7340), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(6277), 9, + STATE(2396), 1, + sym__simple_name, + STATE(6295), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730522,7 +723644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75179] = 18, + [76907] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730543,19 +723665,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(4208), 1, sym__identifier_token, - ACTIONS(8459), 1, + ACTIONS(4214), 1, sym_grit_metavariable, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, + STATE(3147), 1, sym_identifier, - STATE(2274), 1, + STATE(3148), 1, sym__reserved_identifier, - STATE(2286), 1, + STATE(3247), 1, + sym_generic_name, + STATE(3327), 1, sym__simple_name, - STATE(6278), 9, + STATE(6296), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730565,7 +723687,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 22, + ACTIONS(4210), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -730588,7 +723710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75263] = 18, + [76991] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730609,19 +723731,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4404), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(4412), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(5564), 1, - sym__reserved_identifier, - STATE(5576), 1, - sym_identifier, - STATE(5585), 1, + STATE(2210), 1, sym_generic_name, - STATE(5701), 1, + STATE(2217), 1, + sym_identifier, + STATE(2277), 1, + sym__reserved_identifier, + STATE(2321), 1, sym__simple_name, - STATE(6279), 9, + STATE(6297), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730631,7 +723753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4406), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -730654,7 +723776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75347] = 18, + [77075] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730675,19 +723797,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(4086), 3, + anon_sym_LBRACK, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(5484), 1, - sym__simple_name, - STATE(5562), 1, - sym_identifier, - STATE(6280), 9, + aux_sym_preproc_if_token1, + STATE(6298), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730697,10 +723811,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 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, @@ -730720,7 +723836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75431] = 18, + sym__identifier_token, + [77149] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730741,19 +723858,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8459), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2211), 1, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2232), 1, + STATE(2404), 1, sym__simple_name, - STATE(2274), 1, - sym__reserved_identifier, - STATE(6281), 9, + STATE(6299), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730763,7 +723880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -730786,7 +723903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75515] = 18, + [77233] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730807,19 +723924,19 @@ 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(4655), 1, - sym_identifier, - STATE(4666), 1, + STATE(2210), 1, sym_generic_name, - STATE(4707), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(4767), 1, + STATE(5463), 1, sym__simple_name, - STATE(6282), 9, + STATE(6638), 1, + sym_identifier, + STATE(6300), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730829,7 +723946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4210), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -730852,7 +723969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75599] = 18, + [77317] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730873,19 +723990,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(4665), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(4707), 1, + STATE(2277), 1, sym__reserved_identifier, - STATE(4783), 1, - sym_generic_name, - STATE(4908), 1, + STATE(2319), 1, sym__simple_name, - STATE(6283), 9, + STATE(6301), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730895,7 +724012,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, @@ -730918,7 +724035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75683] = 18, + [77401] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -730939,19 +724056,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(8459), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2274), 1, - sym__reserved_identifier, - STATE(2289), 1, + STATE(2267), 1, sym__simple_name, - STATE(6284), 9, + STATE(2277), 1, + sym__reserved_identifier, + STATE(6302), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -730961,7 +724078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -730984,7 +724101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75767] = 18, + [77485] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731005,19 +724122,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, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, + STATE(3602), 1, sym_identifier, - STATE(2395), 1, + STATE(3729), 1, + sym_generic_name, + STATE(3771), 1, + sym__reserved_identifier, + STATE(3905), 1, sym__simple_name, - STATE(6285), 9, + STATE(6303), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731027,7 +724144,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, @@ -731050,7 +724167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75851] = 18, + [77569] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731071,19 +724188,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8473), 1, + ACTIONS(4216), 1, sym__identifier_token, - ACTIONS(8477), 1, + ACTIONS(4230), 1, sym_grit_metavariable, - STATE(5359), 1, + STATE(3602), 1, sym_identifier, - STATE(5467), 1, - sym__simple_name, - STATE(5473), 1, + STATE(3729), 1, sym_generic_name, - STATE(5928), 1, + STATE(3771), 1, sym__reserved_identifier, - STATE(6286), 9, + STATE(4221), 1, + sym__simple_name, + STATE(6304), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731093,7 +724210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8475), 22, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731116,7 +724233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [75935] = 18, + [77653] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731139,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, - ACTIONS(8497), 1, - anon_sym_RBRACE, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7068), 1, - sym_with_initializer, - STATE(7860), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(6287), 9, + STATE(2377), 1, + sym__simple_name, + STATE(6305), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731182,7 +724299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76019] = 17, + [77737] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731203,18 +724320,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(4216), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(4230), 1, sym_grit_metavariable, - STATE(2787), 1, - sym__reserved_identifier, - STATE(6567), 1, + STATE(3731), 1, sym_identifier, - ACTIONS(8499), 2, - anon_sym_class, - anon_sym_struct, - STATE(6288), 9, + STATE(3771), 1, + sym__reserved_identifier, + STATE(4135), 1, + sym__simple_name, + STATE(4273), 1, + sym_generic_name, + STATE(6306), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731224,7 +724342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731247,7 +724365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76101] = 18, + [77821] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731268,19 +724386,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8432), 1, + ACTIONS(9039), 1, sym__identifier_token, - ACTIONS(8436), 1, + ACTIONS(9043), 1, sym_grit_metavariable, - STATE(2283), 1, + STATE(5356), 1, sym_identifier, - STATE(2296), 1, + STATE(5463), 1, + sym__simple_name, + STATE(5468), 1, sym_generic_name, - STATE(2304), 1, + STATE(5930), 1, sym__reserved_identifier, - STATE(2342), 1, - sym__simple_name, - STATE(6289), 9, + STATE(6307), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731290,7 +724408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8434), 22, + ACTIONS(9041), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731313,7 +724431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76185] = 18, + [77905] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731336,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(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(5467), 1, - sym__simple_name, - STATE(5562), 1, + STATE(2217), 1, sym_identifier, - STATE(6290), 9, + STATE(2221), 1, + sym__simple_name, + STATE(6308), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731379,7 +724497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76269] = 18, + [77989] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731400,19 +724518,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(9019), 1, sym__identifier_token, - ACTIONS(8459), 1, + ACTIONS(9023), 1, sym_grit_metavariable, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, + STATE(2283), 1, sym_identifier, - STATE(2227), 1, - sym__simple_name, - STATE(2274), 1, + STATE(2291), 1, sym__reserved_identifier, - STATE(6291), 9, + STATE(2309), 1, + sym_generic_name, + STATE(2346), 1, + sym__simple_name, + STATE(6309), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731422,7 +724540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 22, + ACTIONS(9021), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731445,7 +724563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76353] = 18, + [78073] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731466,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(3729), 1, - sym_identifier, - STATE(3957), 1, - sym_generic_name, - STATE(4215), 1, - sym__simple_name, - STATE(4707), 1, + ACTIONS(9045), 1, + anon_sym_operator, + ACTIONS(9047), 1, + anon_sym_this, + STATE(2207), 1, sym__reserved_identifier, - STATE(6292), 9, + STATE(6637), 1, + sym_identifier, + STATE(6310), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731488,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, @@ -731511,7 +724629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76437] = 18, + [78157] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731532,19 +724650,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(8459), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2224), 1, - sym__simple_name, - STATE(2274), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6293), 9, + 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, @@ -731554,7 +724671,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731577,7 +724694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76521] = 18, + [78239] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731598,19 +724715,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8459), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2211), 1, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2233), 1, + STATE(2227), 1, sym__simple_name, - STATE(2274), 1, - sym__reserved_identifier, - STATE(6294), 9, + STATE(6312), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731620,7 +724737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731643,7 +724760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76605] = 18, + [78323] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731664,19 +724781,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, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, + STATE(3602), 1, sym_identifier, - STATE(3361), 1, + STATE(3729), 1, + sym_generic_name, + STATE(3771), 1, + sym__reserved_identifier, + STATE(3907), 1, sym__simple_name, - STATE(6295), 9, + STATE(6313), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731686,7 +724803,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, @@ -731709,7 +724826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76689] = 18, + [78407] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731730,19 +724847,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(8501), 1, - anon_sym_RBRACE, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7365), 1, - sym_with_initializer, - STATE(7860), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(6296), 9, + STATE(2229), 1, + sym__simple_name, + STATE(2277), 1, + sym__reserved_identifier, + STATE(6314), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731752,7 +724869,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, @@ -731775,7 +724892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76773] = 18, + [78491] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731796,19 +724913,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(8459), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2274), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(2328), 1, - sym__simple_name, - STATE(6297), 9, + STATE(6556), 1, + sym_identifier, + ACTIONS(9051), 2, + anon_sym_class, + anon_sym_struct, + STATE(6315), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731818,7 +724934,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731841,7 +724957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76857] = 18, + [78573] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731862,19 +724978,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(4655), 1, - sym_identifier, - STATE(4666), 1, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, sym_generic_name, - STATE(4682), 1, + STATE(2217), 1, + sym_identifier, + STATE(2233), 1, sym__simple_name, - STATE(4707), 1, - sym__reserved_identifier, - STATE(6298), 9, + STATE(6316), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731884,7 +725000,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, @@ -731907,7 +725023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [76941] = 18, + [78657] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731928,19 +725044,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2787), 1, + STATE(2217), 1, + sym_identifier, + STATE(2277), 1, sym__reserved_identifier, - STATE(5467), 1, + STATE(2360), 1, sym__simple_name, - STATE(6648), 1, - sym_identifier, - STATE(6299), 9, + STATE(6317), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -731950,7 +725066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -731973,7 +725089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77025] = 18, + [78741] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -731996,17 +725112,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(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2232), 1, + STATE(2319), 1, sym__simple_name, - STATE(6300), 9, + STATE(6318), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732039,7 +725155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77109] = 18, + [78825] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732062,17 +725178,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(8503), 1, - anon_sym_RBRACE, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7364), 1, - sym_with_initializer, - STATE(7860), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(6301), 9, + STATE(2229), 1, + sym__simple_name, + STATE(6319), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732105,7 +725221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77193] = 18, + [78909] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732128,17 +725244,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(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2442), 1, + STATE(2354), 1, sym__simple_name, - STATE(6302), 9, + STATE(6320), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732171,7 +725287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77277] = 17, + [78993] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732192,18 +725308,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2787), 1, + ACTIONS(9053), 1, + anon_sym_RBRACE, + STATE(2207), 1, sym__reserved_identifier, - STATE(6560), 1, + STATE(7164), 1, + sym_with_initializer, + STATE(7664), 1, sym_identifier, - ACTIONS(8505), 2, - anon_sym_class, - anon_sym_struct, - STATE(6303), 9, + STATE(6321), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732213,7 +725330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732236,7 +725353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77359] = 18, + [79077] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732257,84 +725374,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4103), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(4109), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(4665), 1, - sym_identifier, - STATE(4715), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(4783), 1, + STATE(2210), 1, sym_generic_name, - STATE(4945), 1, - sym__simple_name, - STATE(6304), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4105), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [77443] = 17, - ACTIONS(8507), 1, - sym_integer_literal, - ACTIONS(8509), 1, - aux_sym_preproc_if_token2, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - STATE(6744), 1, - sym__reserved_identifier, - STATE(7204), 1, + STATE(2217), 1, sym_identifier, - ACTIONS(7933), 2, - sym__identifier_token, - sym_grit_metavariable, - STATE(6305), 9, + STATE(2353), 1, + sym__simple_name, + STATE(6322), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732344,7 +725396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732367,7 +725419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77525] = 18, + [79161] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732388,19 +725440,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8432), 1, + ACTIONS(4186), 1, sym__identifier_token, - ACTIONS(8436), 1, + ACTIONS(4195), 1, sym_grit_metavariable, - STATE(2283), 1, + STATE(3071), 1, + sym__reserved_identifier, + STATE(3088), 1, sym_identifier, - STATE(2296), 1, + STATE(3145), 1, sym_generic_name, - STATE(2298), 1, + STATE(3151), 1, sym__simple_name, - STATE(2304), 1, - sym__reserved_identifier, - STATE(6306), 9, + STATE(6323), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732410,7 +725462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8434), 22, + ACTIONS(4188), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732433,7 +725485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77609] = 18, + [79245] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732454,19 +725506,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(3412), 1, - sym_identifier, - STATE(3618), 1, + STATE(2207), 1, + sym__reserved_identifier, + STATE(2210), 1, sym_generic_name, - STATE(3894), 1, + STATE(2217), 1, + sym_identifier, + STATE(2323), 1, sym__simple_name, - STATE(4707), 1, - sym__reserved_identifier, - STATE(6307), 9, + STATE(6324), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732476,7 +725528,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, @@ -732499,7 +725551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77693] = 17, + [79329] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732520,18 +725572,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8444), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(8452), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(7697), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - ACTIONS(8450), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(6308), 9, + STATE(2277), 1, + sym__reserved_identifier, + STATE(2331), 1, + sym__simple_name, + STATE(6325), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732541,7 +725594,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8447), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732564,7 +725617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77775] = 18, + [79413] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732585,19 +725638,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(9055), 1, sym__identifier_token, - ACTIONS(4220), 1, + ACTIONS(9059), 1, sym_grit_metavariable, - STATE(3729), 1, + STATE(2688), 1, sym_identifier, - STATE(3957), 1, - sym_generic_name, - STATE(4012), 1, + STATE(2760), 1, sym__simple_name, - STATE(4707), 1, + STATE(2781), 1, sym__reserved_identifier, - STATE(6309), 9, + STATE(2807), 1, + sym_generic_name, + STATE(6326), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732607,7 +725660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4210), 22, + ACTIONS(9057), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732630,7 +725683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77859] = 18, + [79497] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732653,17 +725706,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(8531), 1, - anon_sym_RBRACE, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7296), 1, - sym_with_initializer, - STATE(7860), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(6310), 9, + STATE(2379), 1, + sym__simple_name, + STATE(6327), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732696,7 +725749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [77943] = 18, + [79581] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732717,84 +725770,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4103), 1, + ACTIONS(9039), 1, sym__identifier_token, - ACTIONS(4109), 1, + ACTIONS(9043), 1, sym_grit_metavariable, - STATE(4665), 1, + STATE(5356), 1, sym_identifier, - STATE(4715), 1, - sym__reserved_identifier, - STATE(4783), 1, + STATE(5468), 1, sym_generic_name, - STATE(4908), 1, + STATE(5479), 1, sym__simple_name, - STATE(6311), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4105), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [78027] = 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(7766), 1, - sym__identifier_token, - ACTIONS(7772), 1, - sym_grit_metavariable, - STATE(2787), 1, + STATE(5930), 1, sym__reserved_identifier, - STATE(6569), 1, - sym_identifier, - ACTIONS(8533), 2, - anon_sym_class, - anon_sym_struct, - STATE(6312), 9, + STATE(6328), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732804,7 +725792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(9041), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732827,7 +725815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78109] = 18, + [79665] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732848,19 +725836,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4103), 1, + ACTIONS(4216), 1, sym__identifier_token, - ACTIONS(4109), 1, + ACTIONS(4230), 1, sym_grit_metavariable, - STATE(4665), 1, + STATE(3147), 1, sym_identifier, - STATE(4715), 1, - sym__reserved_identifier, - STATE(4783), 1, + STATE(3247), 1, sym_generic_name, - STATE(4913), 1, + STATE(3357), 1, sym__simple_name, - STATE(6313), 9, + STATE(3771), 1, + sym__reserved_identifier, + STATE(6329), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732870,7 +725858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4105), 22, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -732893,7 +725881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78193] = 18, + [79749] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732916,17 +725904,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(8535), 1, - anon_sym_operator, - ACTIONS(8537), 1, - anon_sym_this, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6644), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(6314), 9, + STATE(2327), 1, + sym__simple_name, + STATE(6330), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -732959,7 +725947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78277] = 18, + [79833] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -732980,19 +725968,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4226), 1, + ACTIONS(4216), 1, sym__identifier_token, - ACTIONS(4232), 1, + ACTIONS(4230), 1, sym_grit_metavariable, - STATE(3729), 1, + STATE(3088), 1, sym_identifier, - STATE(3741), 1, - sym__reserved_identifier, - STATE(3957), 1, + STATE(3145), 1, sym_generic_name, - STATE(4215), 1, + STATE(3289), 1, sym__simple_name, - STATE(6315), 9, + STATE(3771), 1, + sym__reserved_identifier, + STATE(6331), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733002,7 +725990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4228), 22, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733025,7 +726013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78361] = 18, + [79917] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733048,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(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2444), 1, + STATE(2440), 1, sym__simple_name, - STATE(6316), 9, + STATE(6332), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733091,7 +726079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78445] = 18, + [80001] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733112,147 +726100,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2211), 1, - sym_generic_name, - STATE(2787), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(5484), 1, - sym__simple_name, - STATE(6648), 1, - sym_identifier, - STATE(6317), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(7768), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [78529] = 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(8539), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4086), 3, - anon_sym_LBRACK, - sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6318), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - ACTIONS(4084), 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, - [78605] = 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(4430), 1, - sym__identifier_token, - ACTIONS(4436), 1, - sym_grit_metavariable, - STATE(2389), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(2400), 1, - sym__reserved_identifier, STATE(2433), 1, - sym_generic_name, - STATE(2448), 1, sym__simple_name, - STATE(6319), 9, + STATE(6333), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733262,7 +726122,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4432), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733285,7 +726145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78689] = 18, + [80085] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733306,85 +726166,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(3729), 1, - sym_identifier, - STATE(3741), 1, + ACTIONS(9061), 1, + anon_sym_RBRACE, + STATE(2207), 1, sym__reserved_identifier, - STATE(3957), 1, - sym_generic_name, - STATE(4012), 1, - sym__simple_name, - STATE(6320), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - 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, - [78773] = 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(8455), 1, - sym__identifier_token, - ACTIONS(8459), 1, - sym_grit_metavariable, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, + STATE(7175), 1, + sym_with_initializer, + STATE(7664), 1, sym_identifier, - STATE(2250), 1, - sym__simple_name, - STATE(2274), 1, - sym__reserved_identifier, - STATE(6321), 9, + STATE(6334), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733394,7 +726188,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733417,7 +726211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78857] = 18, + [80169] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733438,19 +726232,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8459), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2274), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2317), 1, - sym__simple_name, - STATE(6322), 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, @@ -733460,7 +726253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733483,7 +726276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [78941] = 18, + [80251] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733504,19 +726297,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(8978), 1, sym__identifier_token, - ACTIONS(1307), 1, + ACTIONS(8986), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, + STATE(7720), 1, sym_identifier, - STATE(2409), 1, - sym__simple_name, - STATE(6323), 9, + ACTIONS(8984), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(6336), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733526,7 +726318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 22, + ACTIONS(8981), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733549,7 +726341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79025] = 18, + [80333] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733570,19 +726362,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8473), 1, + ACTIONS(3207), 1, sym__identifier_token, - ACTIONS(8477), 1, + ACTIONS(4080), 1, sym_grit_metavariable, - STATE(5359), 1, + STATE(5149), 1, + sym__reserved_identifier, + STATE(5356), 1, sym_identifier, - STATE(5473), 1, + STATE(5468), 1, sym_generic_name, - STATE(5484), 1, + STATE(5479), 1, sym__simple_name, - STATE(5928), 1, - sym__reserved_identifier, - STATE(6324), 9, + STATE(6337), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733592,7 +726384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8475), 22, + ACTIONS(3211), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733615,7 +726407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79109] = 18, + [80417] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733636,19 +726428,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4149), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(4158), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(3393), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(3412), 1, - sym_identifier, - STATE(3618), 1, + STATE(2210), 1, sym_generic_name, - STATE(3669), 1, + STATE(2217), 1, + sym_identifier, + STATE(2292), 1, sym__simple_name, - STATE(6325), 9, + STATE(6338), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733658,7 +726450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4151), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733681,7 +726473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79193] = 18, + [80501] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733702,19 +726494,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8473), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(8477), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(5467), 1, - sym__simple_name, - STATE(5473), 1, + STATE(2210), 1, sym_generic_name, - STATE(5928), 1, - sym__reserved_identifier, - STATE(6579), 1, + STATE(2217), 1, sym_identifier, - STATE(6326), 9, + STATE(2258), 1, + sym__simple_name, + STATE(2277), 1, + sym__reserved_identifier, + STATE(6339), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733724,7 +726516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8475), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733747,7 +726539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79277] = 18, + [80585] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733770,17 +726562,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(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2223), 1, + STATE(2365), 1, sym__simple_name, - STATE(6327), 9, + STATE(6340), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733813,7 +726605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79361] = 18, + [80669] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733834,19 +726626,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(9019), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(9023), 1, sym_grit_metavariable, - STATE(2787), 1, - sym__reserved_identifier, - STATE(2810), 1, + STATE(2283), 1, sym_identifier, - STATE(3068), 1, + STATE(2290), 1, sym__simple_name, - STATE(3128), 1, + STATE(2291), 1, + sym__reserved_identifier, + STATE(2309), 1, sym_generic_name, - STATE(6328), 9, + STATE(6341), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733856,7 +726648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(9021), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -733879,7 +726671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79445] = 18, + [80753] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733902,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, - STATE(2206), 1, + ACTIONS(9063), 1, + anon_sym_operator, + ACTIONS(9065), 1, + anon_sym_this, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, + STATE(6641), 1, sym_identifier, - STATE(2418), 1, - sym__simple_name, - STATE(6329), 9, + STATE(6342), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733945,7 +726737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79529] = 18, + [80837] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -733966,19 +726758,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(3729), 1, - sym_identifier, - STATE(3957), 1, + STATE(5468), 1, sym_generic_name, - STATE(4016), 1, + STATE(5479), 1, sym__simple_name, - STATE(4707), 1, + STATE(5930), 1, sym__reserved_identifier, - STATE(6330), 9, + STATE(6567), 1, + sym_identifier, + STATE(6343), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -733988,7 +726780,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, @@ -734011,7 +726803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79613] = 18, + [80921] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734032,19 +726824,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(5711), 3, + anon_sym_LBRACK, sym_grit_metavariable, - STATE(2206), 1, - sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2224), 1, - sym__simple_name, - STATE(6331), 9, + aux_sym_preproc_if_token1, + STATE(6344), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734054,10 +726838,12 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(29), 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, @@ -734077,7 +726863,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79697] = 13, + sym__identifier_token, + [80995] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734098,11 +726885,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5928), 3, - anon_sym_LBRACK, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6332), 9, + ACTIONS(9067), 1, + anon_sym_RBRACE, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7078), 1, + sym_with_initializer, + STATE(7664), 1, + sym_identifier, + STATE(6345), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734112,12 +726907,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5926), 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, @@ -734137,8 +726930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [79771] = 13, + [81079] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734159,11 +726951,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5460), 3, - anon_sym_LBRACK, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6333), 9, + 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, @@ -734173,12 +726973,10 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5458), 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, @@ -734198,8 +726996,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, + [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(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, + STATE(6755), 1, + sym__reserved_identifier, + STATE(7206), 1, + sym_identifier, + ACTIONS(8469), 2, sym__identifier_token, - [79845] = 18, + sym_grit_metavariable, + 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(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, + [81245] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734220,19 +727082,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(4216), 1, sym__identifier_token, - ACTIONS(8459), 1, + ACTIONS(4230), 1, sym_grit_metavariable, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, + STATE(3147), 1, sym_identifier, - STATE(2226), 1, + STATE(3247), 1, + sym_generic_name, + STATE(3331), 1, sym__simple_name, - STATE(2274), 1, + STATE(3771), 1, sym__reserved_identifier, - STATE(6334), 9, + STATE(6348), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734242,7 +727104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 22, + ACTIONS(4218), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -734265,7 +727127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [79929] = 18, + [81329] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734286,19 +727148,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(8535), 1, - anon_sym_operator, - ACTIONS(8541), 1, - anon_sym_this, - STATE(2206), 1, - sym__reserved_identifier, - STATE(6645), 1, + STATE(5555), 1, sym_identifier, - STATE(6335), 9, + STATE(5562), 1, + sym__reserved_identifier, + STATE(5632), 1, + sym_generic_name, + STATE(5657), 1, + sym__simple_name, + STATE(6349), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734308,7 +727170,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, @@ -734331,7 +727193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80013] = 18, + [81413] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734352,19 +727214,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3207), 1, + ACTIONS(9039), 1, sym__identifier_token, - ACTIONS(4080), 1, + ACTIONS(9043), 1, sym_grit_metavariable, - STATE(5132), 1, - sym__reserved_identifier, - STATE(5359), 1, - sym_identifier, - STATE(5467), 1, + STATE(5463), 1, sym__simple_name, - STATE(5473), 1, + STATE(5468), 1, sym_generic_name, - STATE(6336), 9, + STATE(5930), 1, + sym__reserved_identifier, + STATE(6567), 1, + sym_identifier, + STATE(6350), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734374,7 +727236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3211), 22, + ACTIONS(9041), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -734397,7 +727259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80097] = 18, + [81497] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734418,19 +727280,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8461), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(8465), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(2733), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(2866), 1, + STATE(2277), 1, sym__reserved_identifier, - STATE(3026), 1, + STATE(2323), 1, sym__simple_name, - STATE(3044), 1, - sym_generic_name, - STATE(6337), 9, + STATE(6351), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734440,7 +727302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8463), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -734463,7 +727325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80181] = 18, + [81581] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734486,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(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2219), 1, + STATE(2217), 1, sym_identifier, - STATE(2375), 1, + STATE(2364), 1, sym__simple_name, - STATE(6338), 9, + STATE(6352), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734529,7 +727391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80265] = 18, + [81665] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734550,19 +727412,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(8989), 1, sym__identifier_token, - ACTIONS(8459), 1, + ACTIONS(8993), 1, sym_grit_metavariable, - STATE(2211), 1, + STATE(2210), 1, sym_generic_name, - STATE(2274), 1, - sym__reserved_identifier, - STATE(5467), 1, - sym__simple_name, - STATE(5562), 1, + STATE(2217), 1, sym_identifier, - STATE(6339), 9, + STATE(2233), 1, + sym__simple_name, + STATE(2277), 1, + sym__reserved_identifier, + STATE(6353), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734572,7 +727434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 22, + ACTIONS(8991), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -734595,7 +727457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80349] = 18, + [81749] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734616,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(2211), 1, - sym_generic_name, - STATE(2219), 1, + STATE(3731), 1, sym_identifier, - STATE(2272), 1, + STATE(3824), 1, + sym__reserved_identifier, + STATE(4135), 1, sym__simple_name, - STATE(6340), 9, + STATE(4273), 1, + sym_generic_name, + STATE(6354), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734638,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, @@ -734661,7 +727523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80433] = 18, + [81833] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734684,17 +727546,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(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7066), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(6341), 9, + STATE(2361), 1, + sym__simple_name, + STATE(6355), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734727,7 +727589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80517] = 18, + [81917] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734748,19 +727610,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(4113), 1, sym__identifier_token, - ACTIONS(8459), 1, + ACTIONS(4119), 1, sym_grit_metavariable, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, + STATE(3731), 1, sym_identifier, - STATE(2223), 1, - sym__simple_name, - STATE(2274), 1, + STATE(3824), 1, sym__reserved_identifier, - STATE(6342), 9, + STATE(4141), 1, + sym__simple_name, + STATE(4273), 1, + sym_generic_name, + STATE(6356), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734770,7 +727632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 22, + ACTIONS(4115), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -734793,7 +727655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80601] = 18, + [82001] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734816,17 +727678,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(9063), 1, + anon_sym_operator, + ACTIONS(9093), 1, + anon_sym_this, + STATE(2207), 1, sym__reserved_identifier, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, + STATE(6639), 1, sym_identifier, - STATE(2226), 1, - sym__simple_name, - STATE(6343), 9, + STATE(6357), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734859,7 +727721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80685] = 18, + [82085] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734880,19 +727742,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, + STATE(2283), 1, + sym_identifier, + STATE(2291), 1, sym__reserved_identifier, - STATE(2211), 1, + STATE(2309), 1, sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2374), 1, + STATE(2337), 1, sym__simple_name, - STATE(6344), 9, + STATE(6358), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734902,7 +727764,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, @@ -734925,7 +727787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80769] = 17, + [82169] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -734946,18 +727808,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8444), 1, + ACTIONS(8978), 1, sym__identifier_token, - ACTIONS(8452), 1, + ACTIONS(8986), 1, sym_grit_metavariable, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7709), 1, + STATE(7746), 1, sym_identifier, - ACTIONS(8450), 2, + ACTIONS(8984), 2, anon_sym_unsafe, anon_sym_static, - STATE(6345), 9, + STATE(6359), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(8981), 22, + anon_sym_alias, + anon_sym_global, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + [82251] = 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(2223), 1, + sym__simple_name, + STATE(6360), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -734967,7 +727895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8447), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -734990,7 +727918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80851] = 18, + [82335] = 18, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735013,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, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7749), 1, - anon_sym_QMARK, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7066), 1, + STATE(2210), 1, + sym_generic_name, + STATE(2217), 1, sym_identifier, - STATE(6346), 9, + STATE(2360), 1, + sym__simple_name, + STATE(6361), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735056,7 +727984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [80935] = 18, + [82419] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735077,19 +728005,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(8978), 1, sym__identifier_token, - ACTIONS(8459), 1, + ACTIONS(8986), 1, sym_grit_metavariable, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2272), 1, - sym__simple_name, - STATE(2274), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6347), 9, + STATE(7965), 1, + sym_identifier, + ACTIONS(8984), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(6362), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735099,7 +728026,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 22, + ACTIONS(8981), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -735122,7 +728049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81019] = 18, + [82501] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735143,19 +728070,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4208), 1, - sym__identifier_token, - ACTIONS(4220), 1, + ACTIONS(9100), 1, sym_grit_metavariable, - STATE(4665), 1, - sym_identifier, - STATE(4707), 1, - sym__reserved_identifier, - STATE(4783), 1, - sym_generic_name, - STATE(4945), 1, - sym__simple_name, - STATE(6348), 9, + ACTIONS(9097), 2, + anon_sym_unsafe, + anon_sym_static, + STATE(6363), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735165,7 +728085,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4210), 22, + aux_sym_using_directive_repeat1, + ACTIONS(9095), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -735188,7 +728109,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81103] = 18, + sym__identifier_token, + [82576] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735209,19 +728131,17 @@ 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(4665), 1, - sym_identifier, - STATE(4707), 1, + ACTIONS(9102), 1, + anon_sym_RPAREN, + STATE(2207), 1, sym__reserved_identifier, - STATE(4783), 1, - sym_generic_name, - STATE(4913), 1, - sym__simple_name, - STATE(6349), 9, + STATE(8082), 1, + sym_identifier, + STATE(6364), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735231,7 +728151,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, @@ -735254,7 +728174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81187] = 18, + [82657] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735275,19 +728195,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8479), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8483), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2389), 1, - sym_identifier, - STATE(2433), 1, - sym_generic_name, - STATE(2448), 1, - sym__simple_name, - STATE(2736), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6350), 9, + STATE(7108), 1, + sym_identifier, + STATE(7426), 1, + sym_using_variable_declarator, + STATE(6365), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735297,7 +728215,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8481), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -735320,7 +728238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81271] = 18, + [82738] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735341,19 +728259,13 @@ 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(4080), 1, + ACTIONS(5584), 1, + aux_sym_preproc_if_token3, + ACTIONS(5204), 3, + anon_sym_LBRACK, sym_grit_metavariable, - STATE(5132), 1, - sym__reserved_identifier, - STATE(5359), 1, - sym_identifier, - STATE(5473), 1, - sym_generic_name, - STATE(5484), 1, - sym__simple_name, - STATE(6351), 9, + aux_sym_preproc_if_token1, + STATE(6366), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735363,7 +728275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(3211), 22, + ACTIONS(5202), 23, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -735386,7 +728298,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81355] = 18, + sym__identifier_token, + [82813] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735407,19 +728320,17 @@ 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(3729), 1, - sym_identifier, - STATE(3741), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(3957), 1, - sym_generic_name, - STATE(4016), 1, - sym__simple_name, - STATE(6352), 9, + STATE(7431), 1, + sym_with_initializer, + STATE(7664), 1, + sym_identifier, + STATE(6367), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735429,7 +728340,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, @@ -735452,7 +728363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81439] = 18, + [82894] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735473,19 +728384,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8455), 1, + ACTIONS(8469), 1, sym__identifier_token, - ACTIONS(8459), 1, + ACTIONS(8483), 1, sym_grit_metavariable, - STATE(2211), 1, - sym_generic_name, - STATE(2219), 1, - sym_identifier, - STATE(2274), 1, + ACTIONS(9104), 1, + sym_integer_literal, + STATE(6755), 1, sym__reserved_identifier, - STATE(2375), 1, - sym__simple_name, - STATE(6353), 9, + STATE(7427), 1, + sym_identifier, + STATE(6368), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735495,7 +728404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8457), 22, + ACTIONS(8471), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -735518,7 +728427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81523] = 18, + [82975] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735539,19 +728448,17 @@ 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(3412), 1, - sym_identifier, - STATE(3607), 1, - sym__simple_name, - STATE(3618), 1, - sym_generic_name, - STATE(4707), 1, + ACTIONS(8841), 1, + anon_sym_COMMA, + STATE(2207), 1, sym__reserved_identifier, - STATE(6354), 9, + STATE(7344), 1, + sym_identifier, + STATE(6369), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735561,7 +728468,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, @@ -735584,7 +728491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81607] = 18, + [83056] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735605,19 +728512,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8543), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(8547), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2466), 1, - sym_identifier, - STATE(2482), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(2502), 1, - sym_generic_name, - STATE(2508), 1, - sym__simple_name, - STATE(6355), 9, + STATE(6539), 1, + sym_identifier, + STATE(6370), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735627,7 +728530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8545), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -735650,7 +728553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81691] = 18, + [83134] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735671,19 +728574,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4149), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(4158), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(3393), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(3412), 1, + STATE(6557), 1, sym_identifier, - STATE(3607), 1, - sym__simple_name, - STATE(3618), 1, - sym_generic_name, - STATE(6356), 9, + STATE(6371), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735693,7 +728592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(4151), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -735716,7 +728615,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81775] = 17, + [83212] = 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(9106), 1, + sym_grit_metavariable, + STATE(6372), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + ACTIONS(8984), 25, + anon_sym_alias, + anon_sym_global, + anon_sym_unsafe, + anon_sym_static, + anon_sym_file, + anon_sym_where, + anon_sym_notnull, + anon_sym_unmanaged, + anon_sym_scoped, + anon_sym_var, + anon_sym_yield, + anon_sym_when, + anon_sym_from, + anon_sym_into, + anon_sym_join, + anon_sym_on, + anon_sym_equals, + anon_sym_let, + anon_sym_orderby, + anon_sym_ascending, + anon_sym_descending, + anon_sym_group, + anon_sym_by, + anon_sym_select, + sym__identifier_token, + [83284] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735739,15 +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, - ACTIONS(8295), 1, - anon_sym_COMMA, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7304), 1, + STATE(6541), 1, sym_identifier, - STATE(6357), 9, + STATE(6373), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735780,7 +728736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [81856] = 14, + [83362] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735801,13 +728757,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5788), 1, - aux_sym_preproc_if_token3, - ACTIONS(5460), 3, - anon_sym_LBRACK, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - aux_sym_preproc_if_token1, - STATE(6358), 9, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7528), 1, + sym_identifier, + STATE(6374), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735817,7 +728775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(5458), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -735840,8 +728798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [81931] = 14, + [83440] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735862,12 +728819,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8554), 1, + ACTIONS(25), 1, + sym__identifier_token, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8551), 2, - anon_sym_unsafe, - anon_sym_static, - STATE(6359), 10, + STATE(2207), 1, + sym__reserved_identifier, + STATE(7209), 1, + sym_identifier, + STATE(6375), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735877,8 +728837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_using_directive_repeat1, - ACTIONS(8549), 23, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -735901,8 +728860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [82006] = 17, + [83518] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735925,15 +728883,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(8556), 1, - anon_sym_RPAREN, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(8086), 1, + STATE(6525), 1, sym_identifier, - STATE(6360), 9, + STATE(6376), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -735966,7 +728922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82087] = 17, + [83596] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -735987,17 +728943,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(7240), 1, + STATE(6565), 1, sym_identifier, - STATE(7469), 1, - sym_using_variable_declarator, - STATE(6361), 9, + STATE(6377), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736007,7 +728961,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, @@ -736030,7 +728984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82168] = 17, + [83674] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736051,17 +729005,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7947), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - ACTIONS(8558), 1, - sym_integer_literal, - STATE(6744), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7476), 1, + STATE(6527), 1, sym_identifier, - STATE(6362), 9, + STATE(6378), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736071,7 +729023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7935), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -736094,7 +729046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82249] = 17, + [83752] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736115,17 +729067,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, - sym_with_initializer, - STATE(7860), 1, + STATE(7020), 1, sym_identifier, - STATE(6363), 9, + STATE(6379), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736135,7 +729085,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, @@ -736158,7 +729108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82330] = 16, + [83830] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736179,15 +729129,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6643), 1, + STATE(7011), 1, sym_identifier, - STATE(6364), 9, + STATE(6380), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736197,7 +729147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -736220,7 +729170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82408] = 16, + [83908] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736241,15 +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(7093), 1, + STATE(7417), 1, sym_identifier, - STATE(6365), 9, + STATE(6381), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736259,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, @@ -736282,7 +729232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82486] = 16, + [83986] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736305,13 +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(6551), 1, + STATE(6506), 1, sym_identifier, - STATE(6366), 9, + STATE(6382), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736344,7 +729294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82564] = 16, + [84064] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736367,13 +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(6673), 1, + STATE(6490), 1, sym_identifier, - STATE(6367), 9, + STATE(6383), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736406,7 +729356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82642] = 16, + [84142] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736429,13 +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(7456), 1, + STATE(6497), 1, sym_identifier, - STATE(6368), 9, + STATE(6384), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736468,7 +729418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82720] = 16, + [84220] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736491,13 +729441,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(8034), 1, + STATE(6523), 1, sym_identifier, - STATE(6369), 9, + STATE(6385), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736530,7 +729480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82798] = 16, + [84298] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736553,13 +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, - STATE(2206), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6978), 1, + STATE(6509), 1, sym_identifier, - STATE(6370), 9, + STATE(6386), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736592,7 +729542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82876] = 16, + [84376] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736613,15 +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, - STATE(2206), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6499), 1, + STATE(7038), 1, sym_identifier, - STATE(6371), 9, + STATE(6387), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736631,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, @@ -736654,7 +729604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [82954] = 16, + [84454] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736675,15 +729625,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7044), 1, + STATE(6495), 1, sym_identifier, - STATE(6372), 9, + STATE(6388), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736693,7 +729643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -736716,7 +729666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83032] = 16, + [84532] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736739,13 +729689,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(7170), 1, + STATE(7908), 1, sym_identifier, - STATE(6373), 9, + STATE(6389), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736778,7 +729728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83110] = 16, + [84610] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736801,13 +729751,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(7151), 1, + STATE(7028), 1, sym_identifier, - STATE(6374), 9, + STATE(6390), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736840,7 +729790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83188] = 16, + [84688] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736861,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(7620), 1, + STATE(6636), 1, sym_identifier, - STATE(6375), 9, + STATE(6391), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736879,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, @@ -736902,7 +729852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83266] = 16, + [84766] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736923,15 +729873,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6562), 1, + STATE(6556), 1, sym_identifier, - STATE(6376), 9, + STATE(6392), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -736941,7 +729891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -736964,7 +729914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83344] = 16, + [84844] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -736985,15 +729935,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6566), 1, + STATE(7008), 1, sym_identifier, - STATE(6377), 9, + STATE(6393), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737003,7 +729953,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -737026,7 +729976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83422] = 16, + [84922] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737049,13 +729999,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(6534), 1, + STATE(6507), 1, sym_identifier, - STATE(6378), 9, + STATE(6394), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737088,7 +730038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83500] = 16, + [85000] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737111,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(6523), 1, + STATE(6534), 1, sym_identifier, - STATE(6379), 9, + STATE(6395), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737150,7 +730100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83578] = 16, + [85078] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737171,15 +730121,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6569), 1, + STATE(6560), 1, sym_identifier, - STATE(6380), 9, + STATE(6396), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737189,7 +730139,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -737212,7 +730162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83656] = 16, + [85156] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737233,15 +730183,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7822), 1, + STATE(7754), 1, sym_identifier, - STATE(6381), 9, + STATE(6397), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737251,7 +730201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -737274,7 +730224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83734] = 16, + [85234] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737295,15 +730245,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6584), 1, + STATE(8056), 1, sym_identifier, - STATE(6382), 9, + STATE(6398), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737313,7 +730263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -737336,7 +730286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83812] = 16, + [85312] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737359,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(6537), 1, + STATE(6519), 1, sym_identifier, - STATE(6383), 9, + STATE(6399), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737398,7 +730348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83890] = 16, + [85390] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737421,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(7027), 1, + STATE(7300), 1, sym_identifier, - STATE(6384), 9, + STATE(6400), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737460,7 +730410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [83968] = 16, + [85468] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737481,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(7031), 1, + STATE(6570), 1, sym_identifier, - STATE(6385), 9, + STATE(6401), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737499,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, @@ -737522,7 +730472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84046] = 16, + [85546] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737543,15 +730493,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6587), 1, + STATE(7015), 1, sym_identifier, - STATE(6386), 9, + STATE(6402), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737561,7 +730511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -737584,7 +730534,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84124] = 16, + [85624] = 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(8275), 1, + sym__identifier_token, + ACTIONS(8281), 1, + sym_grit_metavariable, + STATE(2652), 1, + sym__reserved_identifier, + STATE(6644), 1, + sym_identifier, + STATE(6403), 9, + sym_preproc_region, + sym_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, + [85702] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737607,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(6550), 1, + STATE(6484), 1, sym_identifier, - STATE(6387), 9, + STATE(6404), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737646,7 +730658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84202] = 16, + [85780] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737669,13 +730681,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(6527), 1, + STATE(7089), 1, sym_identifier, - STATE(6388), 9, + STATE(6405), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737708,7 +730720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84280] = 16, + [85858] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737729,15 +730741,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6567), 1, + STATE(8096), 1, sym_identifier, - STATE(6389), 9, + STATE(6406), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737747,7 +730759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -737770,7 +730782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84358] = 16, + [85936] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737793,13 +730805,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(6513), 1, + STATE(7260), 1, sym_identifier, - STATE(6390), 9, + STATE(6407), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737832,7 +730844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84436] = 16, + [86014] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737855,13 +730867,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(7000), 1, + STATE(7021), 1, sym_identifier, - STATE(6391), 9, + STATE(6408), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737894,7 +730906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84514] = 16, + [86092] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737915,15 +730927,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6565), 1, + STATE(7561), 1, sym_identifier, - STATE(6392), 9, + STATE(6409), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737933,7 +730945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -737956,7 +730968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84592] = 16, + [86170] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -737977,15 +730989,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6572), 1, + STATE(6510), 1, sym_identifier, - STATE(6393), 9, + STATE(6410), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -737995,7 +731007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -738018,7 +731030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84670] = 16, + [86248] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738041,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(7051), 1, + STATE(6483), 1, sym_identifier, - STATE(6394), 9, + STATE(6411), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738080,7 +731092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84748] = 16, + [86326] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738101,15 +731113,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(6494), 1, + STATE(6642), 1, sym_identifier, - STATE(6395), 9, + STATE(6412), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738119,7 +731131,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, @@ -738142,7 +731154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84826] = 16, + [86404] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738165,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(6487), 1, + STATE(6674), 1, sym_identifier, - STATE(6396), 9, + STATE(6413), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738204,7 +731216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84904] = 16, + [86482] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738227,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(6489), 1, + STATE(6498), 1, sym_identifier, - STATE(6397), 9, + STATE(6414), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738266,7 +731278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [84982] = 16, + [86560] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738287,15 +731299,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6574), 1, + STATE(6532), 1, sym_identifier, - STATE(6398), 9, + STATE(6415), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738305,7 +731317,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -738328,7 +731340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85060] = 16, + [86638] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738349,15 +731361,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7033), 1, + STATE(6486), 1, sym_identifier, - STATE(6399), 9, + STATE(6416), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738367,7 +731379,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -738390,7 +731402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85138] = 16, + [86716] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738411,15 +731423,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(4080), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(5132), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7444), 1, + STATE(6962), 1, sym_identifier, - STATE(6400), 9, + STATE(6417), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738429,7 +731441,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, @@ -738452,7 +731464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85216] = 16, + [86794] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738475,13 +731487,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(6947), 1, + STATE(6963), 1, sym_identifier, - STATE(6401), 9, + STATE(6418), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738514,7 +731526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85294] = 16, + [86872] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738535,15 +731547,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(6959), 1, + STATE(7598), 1, sym_identifier, - STATE(6402), 9, + STATE(6419), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738553,7 +731565,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, @@ -738576,7 +731588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85372] = 16, + [86950] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738597,15 +731609,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7011), 1, + STATE(6992), 1, sym_identifier, - STATE(6403), 9, + STATE(6420), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738615,7 +731627,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -738638,7 +731650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85450] = 16, + [87028] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738661,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(7631), 1, + STATE(7004), 1, sym_identifier, - STATE(6404), 9, + STATE(6421), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738700,7 +731712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85528] = 16, + [87106] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738723,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(7399), 1, + STATE(7494), 1, sym_identifier, - STATE(6405), 9, + STATE(6422), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738762,7 +731774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85606] = 16, + [87184] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738783,15 +731795,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7863), 1, + STATE(6563), 1, sym_identifier, - STATE(6406), 9, + STATE(6423), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738801,7 +731813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -738824,7 +731836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85684] = 16, + [87262] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738845,15 +731857,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7009), 1, + STATE(6952), 1, sym_identifier, - STATE(6407), 9, + STATE(6424), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738863,7 +731875,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -738886,7 +731898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85762] = 16, + [87340] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738907,15 +731919,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(7018), 1, + STATE(7374), 1, sym_identifier, - STATE(6408), 9, + STATE(6425), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738925,7 +731937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -738948,7 +731960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85840] = 16, + [87418] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -738969,15 +731981,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6649), 1, + STATE(6569), 1, sym_identifier, - STATE(6409), 9, + STATE(6426), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -738987,7 +731999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -739010,7 +732022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85918] = 16, + [87496] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739031,15 +732043,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(4080), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(5132), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(7590), 1, + STATE(6554), 1, sym_identifier, - STATE(6410), 9, + STATE(6427), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739049,7 +732061,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, @@ -739072,7 +732084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [85996] = 13, + [87574] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739093,9 +732105,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8560), 1, + ACTIONS(8275), 1, + sym__identifier_token, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(6411), 9, + STATE(2652), 1, + sym__reserved_identifier, + STATE(8026), 1, + sym_identifier, + STATE(6428), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739105,11 +732123,9 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8450), 25, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, - anon_sym_unsafe, - anon_sym_static, anon_sym_file, anon_sym_where, anon_sym_notnull, @@ -739130,8 +732146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - sym__identifier_token, - [86068] = 16, + [87652] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739152,15 +732167,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(8128), 1, + STATE(6929), 1, sym_identifier, - STATE(6412), 9, + STATE(6429), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739170,7 +732185,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, @@ -739193,7 +732208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [86146] = 16, + [87730] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739214,15 +732229,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6973), 1, + STATE(7019), 1, sym_identifier, - STATE(6413), 9, + STATE(6430), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739232,7 +732247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -739255,7 +732270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [86224] = 16, + [87808] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739278,13 +732293,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(6529), 1, + STATE(6536), 1, sym_identifier, - STATE(6414), 9, + STATE(6431), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739317,7 +732332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [86302] = 16, + [87886] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739340,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(6517), 1, + STATE(6934), 1, sym_identifier, - STATE(6415), 9, + STATE(6432), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739379,7 +732394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [86380] = 16, + [87964] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739400,15 +732415,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(6505), 1, + STATE(6580), 1, sym_identifier, - STATE(6416), 9, + STATE(6433), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739418,7 +732433,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, @@ -739441,7 +732456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [86458] = 16, + [88042] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739462,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(6488), 1, + STATE(6997), 1, sym_identifier, - STATE(6417), 9, + STATE(6434), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739480,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, @@ -739503,7 +732518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [86536] = 16, + [88120] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739524,15 +732539,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(8275), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(8281), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2652), 1, sym__reserved_identifier, - STATE(6641), 1, + STATE(7662), 1, sym_identifier, - STATE(6418), 9, + STATE(6435), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739542,7 +732557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(8277), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -739565,7 +732580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [86614] = 16, + [88198] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739588,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(6539), 1, + STATE(6543), 1, sym_identifier, - STATE(6419), 9, + STATE(6436), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739627,7 +732642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [86692] = 16, + [88276] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739648,15 +732663,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, + ACTIONS(25), 1, sym__identifier_token, - ACTIONS(7772), 1, + ACTIONS(1301), 1, sym_grit_metavariable, - STATE(2787), 1, + STATE(2207), 1, sym__reserved_identifier, - STATE(6965), 1, + STATE(7043), 1, sym_identifier, - STATE(6420), 9, + STATE(6437), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739666,7 +732681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, + ACTIONS(29), 22, anon_sym_alias, anon_sym_global, anon_sym_file, @@ -739689,7 +732704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [86770] = 16, + [88354] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739712,13 +732727,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(6538), 1, + STATE(6535), 1, sym_identifier, - STATE(6421), 9, + STATE(6438), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739751,7 +732766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [86848] = 16, + [88432] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739772,15 +732787,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(6950), 1, + STATE(6571), 1, sym_identifier, - STATE(6422), 9, + STATE(6439), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739790,7 +732805,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, @@ -739813,7 +732828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [86926] = 16, + [88510] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739834,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(6543), 1, - sym_identifier, - STATE(6423), 9, + STATE(6440), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -739852,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, @@ -739875,7 +732884,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_group, anon_sym_by, anon_sym_select, - [87004] = 16, + sym__identifier_token, + [88580] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -739896,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(6497), 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(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, @@ -739914,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, - [87082] = 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, @@ -739958,15 +733032,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7772), 1, - sym_grit_metavariable, - STATE(2787), 1, - sym__reserved_identifier, - STATE(6946), 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(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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [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, + 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(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, @@ -739976,30 +733137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [87160] = 16, + [88932] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740020,15 +733158,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(6515), 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(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, @@ -740038,30 +733200,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, - [87238] = 16, + [89020] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740082,15 +733221,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7772), 1, - sym_grit_metavariable, - STATE(2787), 1, - sym__reserved_identifier, - STATE(6578), 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(9122), 1, + anon_sym_group, + ACTIONS(9124), 1, + anon_sym_select, + 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, @@ -740100,30 +733263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [87316] = 16, + [89108] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740144,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(6531), 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(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, @@ -740162,30 +733326,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, - [87394] = 16, + [89196] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740206,15 +733347,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(8136), 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(9146), 1, + anon_sym_group, + ACTIONS(9148), 1, + anon_sym_select, + 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, @@ -740224,30 +733389,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, - [87472] = 16, + [89284] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740268,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(7366), 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(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, @@ -740286,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, - [87550] = 16, + [89372] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740330,15 +733473,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7772), 1, - sym_grit_metavariable, - STATE(2787), 1, - sym__reserved_identifier, - STATE(7859), 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(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, @@ -740348,30 +733515,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [87628] = 16, + [89460] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740392,15 +733536,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7766), 1, - sym__identifier_token, - ACTIONS(7772), 1, - sym_grit_metavariable, - STATE(2787), 1, - sym__reserved_identifier, - STATE(7006), 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(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, @@ -740410,30 +733578,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(7768), 22, - anon_sym_alias, - anon_sym_global, - anon_sym_file, - anon_sym_where, - anon_sym_notnull, - anon_sym_unmanaged, - anon_sym_scoped, - anon_sym_var, - anon_sym_yield, - anon_sym_when, - anon_sym_from, - anon_sym_into, - anon_sym_join, - anon_sym_on, - anon_sym_equals, - anon_sym_let, - anon_sym_orderby, - anon_sym_ascending, - anon_sym_descending, - anon_sym_group, - anon_sym_by, - anon_sym_select, - [87706] = 16, + [89548] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740454,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(6547), 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(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, @@ -740472,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, - [87784] = 14, + [89636] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740516,17 +733662,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8564), 1, - anon_sym_checked, - ACTIONS(8562), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_GT_GT, - 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(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, @@ -740536,24 +733704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8566), 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, - [87856] = 14, + [89724] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740574,17 +733725,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8570), 1, - anon_sym_checked, - ACTIONS(8568), 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(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, @@ -740594,24 +733767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8572), 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, - [87928] = 13, + [89812] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740632,9 +733788,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8576), 1, - sym_grit_metavariable, - 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(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, @@ -740644,31 +733830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8574), 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, - [87998] = 14, + [89900] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740689,17 +733851,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(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, @@ -740709,24 +733893,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, - [88070] = 14, + [89988] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740747,17 +733914,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(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, @@ -740767,24 +733956,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, - [88142] = 14, + [90076] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740805,17 +733977,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(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, @@ -740825,24 +734019,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, - [88214] = 14, + [90164] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740863,17 +734040,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(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, @@ -740883,24 +734082,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, - [88286] = 13, + [90252] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740921,15 +734103,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8562), 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(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, @@ -740939,24 +734145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - ACTIONS(8566), 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, - [88355] = 13, + [90340] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -740977,15 +734166,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(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(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, @@ -740995,24 +734208,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, - [88424] = 13, + [90428] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741033,15 +734229,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - 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(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(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, @@ -741051,24 +734271,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, - [88493] = 13, + [90516] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741089,15 +734292,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(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(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, @@ -741107,24 +734334,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, - [88562] = 13, + [90604] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741145,15 +734355,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(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(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, @@ -741163,24 +734397,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, - [88631] = 13, + [90692] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741201,15 +734418,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(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(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, @@ -741219,24 +734460,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, - [88700] = 25, + [90780] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741257,39 +734481,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(9190), 1, anon_sym_group, - ACTIONS(8626), 1, + ACTIONS(9192), 1, anon_sym_select, - STATE(3839), 1, - sym__query_body, - STATE(3938), 1, + STATE(5605), 1, + sym__select_or_group_clause, + STATE(5731), 1, sym_group_clause, - STATE(3962), 1, + STATE(5746), 1, sym_select_clause, - STATE(5528), 1, - sym__select_or_group_clause, - STATE(6544), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(5748), 1, + sym_query_body, + STATE(6524), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6447), 9, + STATE(6466), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741299,7 +734523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [88788] = 25, + [90868] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741320,39 +734544,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(9194), 1, anon_sym_group, - ACTIONS(8630), 1, + ACTIONS(9196), 1, anon_sym_select, - STATE(3839), 1, - sym__query_body, - STATE(3938), 1, + STATE(3219), 1, sym_group_clause, - STATE(3962), 1, + STATE(3220), 1, sym_select_clause, - STATE(5942), 1, + STATE(3390), 1, + sym_query_body, + STATE(5969), 1, sym__select_or_group_clause, - STATE(6535), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6528), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6448), 9, + STATE(6467), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741362,7 +734586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [88876] = 25, + [90956] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741383,39 +734607,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(9194), 1, anon_sym_group, - ACTIONS(8634), 1, + ACTIONS(9196), 1, anon_sym_select, - STATE(5259), 1, - sym_select_clause, - STATE(5260), 1, + STATE(3209), 1, + sym_query_body, + STATE(3219), 1, sym_group_clause, - STATE(5263), 1, - sym__query_body, - STATE(5452), 1, + STATE(3220), 1, + sym_select_clause, + STATE(5969), 1, sym__select_or_group_clause, - STATE(6512), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6528), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6449), 9, + STATE(6468), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741425,7 +734649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [88964] = 25, + [91044] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741446,39 +734670,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(9142), 1, anon_sym_group, - ACTIONS(8638), 1, + ACTIONS(9144), 1, anon_sym_select, - STATE(3839), 1, - sym__query_body, - STATE(3938), 1, + STATE(4031), 1, sym_group_clause, - STATE(3962), 1, + STATE(4233), 1, sym_select_clause, - STATE(5980), 1, + STATE(4405), 1, + sym_query_body, + STATE(5893), 1, sym__select_or_group_clause, - STATE(6518), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6544), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6450), 9, + STATE(6469), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741488,7 +734712,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89052] = 25, + [91132] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741509,39 +734733,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(9138), 1, anon_sym_group, - ACTIONS(8642), 1, + ACTIONS(9140), 1, anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(4031), 1, sym_group_clause, - STATE(5022), 1, - sym__query_body, - STATE(5859), 1, + STATE(4233), 1, + sym_select_clause, + STATE(4666), 1, + sym_query_body, + STATE(5868), 1, sym__select_or_group_clause, - STATE(6502), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6513), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6451), 9, + STATE(6470), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741551,7 +734775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89140] = 25, + [91220] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741572,39 +734796,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(9182), 1, anon_sym_group, - ACTIONS(8646), 1, + ACTIONS(9184), 1, anon_sym_select, - STATE(5199), 1, - sym__select_or_group_clause, - STATE(5259), 1, - sym_select_clause, - STATE(5260), 1, + STATE(3209), 1, + sym_query_body, + STATE(3219), 1, sym_group_clause, - STATE(5263), 1, - sym__query_body, - STATE(6496), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + 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(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6452), 9, + STATE(6471), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741614,7 +734838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89228] = 25, + [91308] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741635,39 +734859,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(8648), 1, + ACTIONS(9162), 1, anon_sym_group, - ACTIONS(8650), 1, + ACTIONS(9164), 1, anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4826), 1, - sym__query_body, - STATE(4876), 1, + STATE(4031), 1, sym_group_clause, - STATE(5845), 1, + STATE(4233), 1, + sym_select_clause, + STATE(4405), 1, + sym_query_body, + STATE(5459), 1, sym__select_or_group_clause, - STATE(6492), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6542), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6453), 9, + STATE(6472), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741677,7 +734901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89316] = 25, + [91396] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741698,39 +734922,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(8652), 1, + ACTIONS(9178), 1, anon_sym_group, - ACTIONS(8654), 1, + ACTIONS(9180), 1, anon_sym_select, - STATE(3839), 1, - sym__query_body, - STATE(3938), 1, + STATE(3209), 1, + sym_query_body, + STATE(3219), 1, sym_group_clause, - STATE(3962), 1, + STATE(3220), 1, sym_select_clause, - STATE(5735), 1, + STATE(5528), 1, sym__select_or_group_clause, - STATE(6510), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6493), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6454), 9, + STATE(6473), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741740,7 +734964,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89404] = 25, + [91484] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741761,39 +734985,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(8656), 1, + ACTIONS(9198), 1, anon_sym_group, - ACTIONS(8658), 1, + ACTIONS(9200), 1, anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4826), 1, - sym__query_body, - STATE(4876), 1, + STATE(4031), 1, sym_group_clause, - STATE(5570), 1, + STATE(4233), 1, + sym_select_clause, + STATE(4666), 1, + sym_query_body, + STATE(5573), 1, sym__select_or_group_clause, - STATE(6495), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6482), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6455), 9, + STATE(6474), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741803,7 +735027,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89492] = 25, + [91572] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741824,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(8660), 1, + ACTIONS(9202), 1, anon_sym_group, - ACTIONS(8662), 1, + ACTIONS(9204), 1, anon_sym_select, - STATE(3839), 1, - sym__query_body, - STATE(3938), 1, - sym_group_clause, - STATE(3962), 1, + STATE(5184), 1, sym_select_clause, - STATE(5939), 1, + STATE(5187), 1, + sym_group_clause, + STATE(5309), 1, + sym_query_body, + STATE(5346), 1, sym__select_or_group_clause, - STATE(6526), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6500), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6456), 9, + STATE(6475), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741866,7 +735090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89580] = 25, + [91660] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741887,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(8664), 1, + ACTIONS(9174), 1, anon_sym_group, - ACTIONS(8666), 1, + ACTIONS(9176), 1, anon_sym_select, - STATE(3938), 1, + STATE(4031), 1, sym_group_clause, - STATE(3962), 1, + STATE(4233), 1, sym_select_clause, - STATE(4134), 1, - sym__query_body, - STATE(5995), 1, + STATE(4666), 1, + sym_query_body, + STATE(5863), 1, sym__select_or_group_clause, - STATE(6511), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6494), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6457), 9, + STATE(6476), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741929,7 +735153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89668] = 25, + [91748] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -741950,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(8640), 1, + ACTIONS(9206), 1, anon_sym_group, - ACTIONS(8642), 1, + ACTIONS(9208), 1, anon_sym_select, - STATE(4818), 1, + STATE(5101), 1, + sym__select_or_group_clause, + STATE(5184), 1, sym_select_clause, - STATE(4826), 1, - sym__query_body, - STATE(4876), 1, + STATE(5187), 1, sym_group_clause, - STATE(5859), 1, - sym__select_or_group_clause, - STATE(6502), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(5309), 1, + sym_query_body, + STATE(6538), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6458), 9, + STATE(6477), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -741992,7 +735216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89756] = 25, + [91836] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742013,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(8668), 1, + ACTIONS(9170), 1, anon_sym_group, - ACTIONS(8670), 1, + ACTIONS(9172), 1, anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(3219), 1, sym_group_clause, - STATE(5022), 1, - sym__query_body, - STATE(5819), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3390), 1, + sym_query_body, + STATE(5940), 1, sym__select_or_group_clause, - STATE(6490), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6485), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6459), 9, + STATE(6478), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742055,7 +735279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89844] = 25, + [91924] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742076,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(8672), 1, + ACTIONS(9186), 1, anon_sym_group, - ACTIONS(8674), 1, + ACTIONS(9188), 1, anon_sym_select, - STATE(3938), 1, + STATE(3209), 1, + sym_query_body, + STATE(3219), 1, sym_group_clause, - STATE(3962), 1, + STATE(3220), 1, sym_select_clause, - STATE(4134), 1, - sym__query_body, - STATE(5955), 1, + STATE(5986), 1, sym__select_or_group_clause, - STATE(6491), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6505), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6460), 9, + STATE(6479), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742118,7 +735342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [89932] = 25, + [92012] = 25, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742139,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(8676), 1, + ACTIONS(9198), 1, anon_sym_group, - ACTIONS(8678), 1, + ACTIONS(9200), 1, anon_sym_select, - STATE(3839), 1, - sym__query_body, - STATE(3938), 1, + STATE(4031), 1, sym_group_clause, - STATE(3962), 1, + STATE(4233), 1, sym_select_clause, - STATE(5494), 1, + STATE(4405), 1, + sym_query_body, + STATE(5573), 1, sym__select_or_group_clause, - STATE(6506), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6482), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6461), 9, + STATE(6480), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742181,7 +735405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90020] = 25, + [92100] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742202,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(8680), 1, + ACTIONS(9122), 1, anon_sym_group, - ACTIONS(8682), 1, + ACTIONS(9124), 1, anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(3219), 1, sym_group_clause, - STATE(5022), 1, - sym__query_body, - STATE(5471), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3307), 1, sym__select_or_group_clause, - STATE(6528), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6462), 9, + STATE(6481), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742244,7 +735466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90108] = 25, + [92185] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742265,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(8672), 1, + ACTIONS(9198), 1, anon_sym_group, - ACTIONS(8674), 1, + ACTIONS(9200), 1, anon_sym_select, - STATE(3839), 1, - sym__query_body, - STATE(3938), 1, + STATE(4031), 1, sym_group_clause, - STATE(3962), 1, + STATE(4233), 1, sym_select_clause, - STATE(5955), 1, + STATE(5579), 1, sym__select_or_group_clause, - STATE(6491), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6463), 9, + STATE(6482), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742307,7 +735527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90196] = 25, + [92270] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742328,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(8684), 1, + ACTIONS(9178), 1, anon_sym_group, - ACTIONS(8686), 1, + ACTIONS(9180), 1, anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(3219), 1, sym_group_clause, - STATE(5022), 1, - sym__query_body, - STATE(5758), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3257), 1, sym__select_or_group_clause, - STATE(6542), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6529), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6464), 9, + STATE(6483), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742370,7 +735588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90284] = 25, + [92355] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742391,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(8688), 1, + ACTIONS(9150), 1, anon_sym_group, - ACTIONS(8690), 1, + ACTIONS(9152), 1, anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(4031), 1, sym_group_clause, - STATE(5022), 1, - sym__query_body, - STATE(5880), 1, + STATE(4233), 1, + sym_select_clause, + STATE(4384), 1, sym__select_or_group_clause, - STATE(6549), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6489), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6465), 9, + STATE(6484), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742433,7 +735649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90372] = 25, + [92440] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742454,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(8692), 1, + ACTIONS(9170), 1, anon_sym_group, - ACTIONS(8694), 1, + ACTIONS(9172), 1, anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(3219), 1, sym_group_clause, - STATE(5022), 1, - sym__query_body, - STATE(5873), 1, + STATE(3220), 1, + sym_select_clause, + STATE(5990), 1, sym__select_or_group_clause, - STATE(6545), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6466), 9, + STATE(6485), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742496,7 +735710,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90460] = 25, + [92525] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742517,39 +735731,98 @@ 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(9174), 1, anon_sym_group, - ACTIONS(8694), 1, + ACTIONS(9176), 1, anon_sym_select, - STATE(4818), 1, + STATE(4031), 1, + sym_group_clause, + STATE(4233), 1, sym_select_clause, - STATE(4826), 1, - sym__query_body, - STATE(4876), 1, + STATE(4384), 1, + sym__select_or_group_clause, + STATE(6522), 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(6486), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [92610] = 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(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(5873), 1, + STATE(4233), 1, + sym_select_clause, + STATE(5836), 1, sym__select_or_group_clause, - STATE(6545), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6467), 9, + STATE(6487), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742559,7 +735832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90548] = 25, + [92695] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742580,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(8696), 1, + ACTIONS(9146), 1, anon_sym_group, - ACTIONS(8698), 1, + ACTIONS(9148), 1, anon_sym_select, - STATE(5656), 1, - sym__query_body, - STATE(5657), 1, + STATE(3219), 1, sym_group_clause, - STATE(5658), 1, + STATE(3220), 1, sym_select_clause, - STATE(5884), 1, + STATE(5949), 1, sym__select_or_group_clause, - STATE(6519), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6468), 9, + STATE(6488), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742622,7 +735893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90636] = 25, + [92780] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742643,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(8652), 1, + ACTIONS(9150), 1, anon_sym_group, - ACTIONS(8654), 1, + ACTIONS(9152), 1, anon_sym_select, - STATE(3938), 1, + STATE(4031), 1, sym_group_clause, - STATE(3962), 1, - sym_select_clause, - STATE(4134), 1, - sym__query_body, - STATE(5735), 1, + STATE(4184), 1, sym__select_or_group_clause, - STATE(6510), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(4233), 1, + sym_select_clause, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6469), 9, + STATE(6489), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742685,7 +735954,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90724] = 25, + [92865] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742706,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(8700), 1, + ACTIONS(9154), 1, anon_sym_group, - ACTIONS(8702), 1, + ACTIONS(9156), 1, anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(4031), 1, sym_group_clause, - STATE(5022), 1, - sym__query_body, - STATE(5740), 1, + STATE(4233), 1, + sym_select_clause, + STATE(4384), 1, sym__select_or_group_clause, - STATE(6509), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6533), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6470), 9, + STATE(6490), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742748,7 +736015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90812] = 25, + [92950] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742769,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(8704), 1, + ACTIONS(9130), 1, anon_sym_group, - ACTIONS(8706), 1, + ACTIONS(9132), 1, anon_sym_select, - STATE(5638), 1, - sym__select_or_group_clause, - STATE(5656), 1, - sym__query_body, - STATE(5657), 1, + STATE(5731), 1, sym_group_clause, - STATE(5658), 1, + STATE(5746), 1, sym_select_clause, - STATE(6546), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(5886), 1, + sym__select_or_group_clause, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6471), 9, + STATE(6491), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742811,7 +736076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90900] = 25, + [93035] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742832,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(8684), 1, + ACTIONS(9202), 1, anon_sym_group, - ACTIONS(8686), 1, + ACTIONS(9204), 1, anon_sym_select, - STATE(4818), 1, + STATE(5184), 1, sym_select_clause, - STATE(4826), 1, - sym__query_body, - STATE(4876), 1, + STATE(5187), 1, sym_group_clause, - STATE(5758), 1, + STATE(5298), 1, sym__select_or_group_clause, - STATE(6542), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6472), 9, + STATE(6492), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742874,7 +736137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [90988] = 25, + [93120] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742895,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(8676), 1, + ACTIONS(9178), 1, anon_sym_group, - ACTIONS(8678), 1, + ACTIONS(9180), 1, anon_sym_select, - STATE(3938), 1, + STATE(3219), 1, sym_group_clause, - STATE(3962), 1, + STATE(3220), 1, sym_select_clause, - STATE(4134), 1, - sym__query_body, - STATE(5494), 1, + STATE(5522), 1, sym__select_or_group_clause, - STATE(6506), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6473), 9, + STATE(6493), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -742937,7 +736198,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91076] = 25, + [93205] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -742958,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(8700), 1, + ACTIONS(9174), 1, anon_sym_group, - ACTIONS(8702), 1, + ACTIONS(9176), 1, anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4826), 1, - sym__query_body, - STATE(4876), 1, + STATE(4031), 1, sym_group_clause, - STATE(5740), 1, + STATE(4233), 1, + sym_select_clause, + STATE(5804), 1, sym__select_or_group_clause, - STATE(6509), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6474), 9, + STATE(6494), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743000,7 +736259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91164] = 25, + [93290] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743021,39 +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(8660), 1, + ACTIONS(9158), 1, anon_sym_group, - ACTIONS(8662), 1, + ACTIONS(9160), 1, anon_sym_select, - STATE(3938), 1, + STATE(4031), 1, sym_group_clause, - STATE(3962), 1, + STATE(4233), 1, sym_select_clause, - STATE(4134), 1, - sym__query_body, - STATE(5939), 1, + STATE(4384), 1, sym__select_or_group_clause, - STATE(6526), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6496), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6475), 9, + STATE(6495), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743063,7 +736320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91252] = 25, + [93375] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743084,102 +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(8656), 1, + ACTIONS(9158), 1, anon_sym_group, - ACTIONS(8658), 1, + ACTIONS(9160), 1, anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(4031), 1, sym_group_clause, - STATE(5022), 1, - sym__query_body, - STATE(5570), 1, + STATE(4184), 1, sym__select_or_group_clause, - STATE(6495), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6476), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [91340] = 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(8648), 1, - anon_sym_group, - ACTIONS(8650), 1, - anon_sym_select, - STATE(4818), 1, + STATE(4233), 1, sym_select_clause, - STATE(4876), 1, - sym_group_clause, - STATE(5022), 1, - sym__query_body, - STATE(5845), 1, - sym__select_or_group_clause, - STATE(6492), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6477), 9, + STATE(6496), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743189,7 +736381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91428] = 25, + [93460] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743210,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(8628), 1, + ACTIONS(9182), 1, anon_sym_group, - ACTIONS(8630), 1, + ACTIONS(9184), 1, anon_sym_select, - STATE(3938), 1, + STATE(3219), 1, sym_group_clause, - STATE(3962), 1, + STATE(3220), 1, sym_select_clause, - STATE(4134), 1, - sym__query_body, - STATE(5942), 1, + STATE(3257), 1, sym__select_or_group_clause, - STATE(6535), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6518), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6478), 9, + STATE(6497), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743252,7 +736442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91516] = 25, + [93545] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743273,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(8636), 1, + ACTIONS(9194), 1, anon_sym_group, - ACTIONS(8638), 1, + ACTIONS(9196), 1, anon_sym_select, - STATE(3938), 1, + STATE(3219), 1, sym_group_clause, - STATE(3962), 1, + STATE(3220), 1, sym_select_clause, - STATE(4134), 1, - sym__query_body, - STATE(5980), 1, + STATE(3257), 1, sym__select_or_group_clause, - STATE(6518), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6503), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6479), 9, + STATE(6498), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743315,7 +736503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91604] = 25, + [93630] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743336,39 +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(8708), 1, + ACTIONS(9182), 1, anon_sym_group, - ACTIONS(8710), 1, + ACTIONS(9184), 1, anon_sym_select, - STATE(3938), 1, + STATE(3219), 1, sym_group_clause, - STATE(3962), 1, + STATE(3220), 1, sym_select_clause, - STATE(4134), 1, - sym__query_body, - STATE(5479), 1, + STATE(5956), 1, sym__select_or_group_clause, - STATE(6520), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6480), 9, + STATE(6499), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743378,7 +736564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91692] = 25, + [93715] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743399,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(8680), 1, + ACTIONS(9202), 1, anon_sym_group, - ACTIONS(8682), 1, + ACTIONS(9204), 1, anon_sym_select, - STATE(4818), 1, + STATE(5184), 1, sym_select_clause, - STATE(4826), 1, - sym__query_body, - STATE(4876), 1, + STATE(5187), 1, sym_group_clause, - STATE(5471), 1, + STATE(5441), 1, sym__select_or_group_clause, - STATE(6528), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6481), 9, + STATE(6500), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743441,7 +736625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91780] = 25, + [93800] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743462,39 +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(8708), 1, + ACTIONS(9150), 1, anon_sym_group, - ACTIONS(8710), 1, + ACTIONS(9152), 1, anon_sym_select, - STATE(3839), 1, - sym__query_body, - STATE(3938), 1, + STATE(4031), 1, sym_group_clause, - STATE(3962), 1, + STATE(4233), 1, sym_select_clause, - STATE(5479), 1, + STATE(5700), 1, sym__select_or_group_clause, - STATE(6520), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6482), 9, + STATE(6501), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743504,7 +736686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91868] = 25, + [93885] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743525,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(8624), 1, + ACTIONS(9138), 1, anon_sym_group, - ACTIONS(8626), 1, + ACTIONS(9140), 1, anon_sym_select, - STATE(3938), 1, + STATE(4031), 1, sym_group_clause, - STATE(3962), 1, - sym_select_clause, - STATE(4134), 1, - sym__query_body, - STATE(5528), 1, + STATE(4184), 1, sym__select_or_group_clause, - STATE(6544), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(4233), 1, + sym_select_clause, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6483), 9, + STATE(6502), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743567,7 +736747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [91956] = 25, + [93970] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743588,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(8688), 1, + ACTIONS(9194), 1, anon_sym_group, - ACTIONS(8690), 1, + ACTIONS(9196), 1, anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4826), 1, - sym__query_body, - STATE(4876), 1, + STATE(3219), 1, sym_group_clause, - STATE(5880), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3307), 1, sym__select_or_group_clause, - STATE(6549), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6484), 9, + STATE(6503), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743630,7 +736808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92044] = 25, + [94055] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743651,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(8668), 1, + ACTIONS(9166), 1, anon_sym_group, - ACTIONS(8670), 1, + ACTIONS(9168), 1, anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4826), 1, - sym__query_body, - STATE(4876), 1, + STATE(3219), 1, sym_group_clause, - STATE(5819), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3307), 1, sym__select_or_group_clause, - STATE(6490), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6485), 9, + STATE(6504), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743693,7 +736869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92132] = 25, + [94140] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743714,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(8664), 1, + ACTIONS(9186), 1, anon_sym_group, - ACTIONS(8666), 1, + ACTIONS(9188), 1, anon_sym_select, - STATE(3839), 1, - sym__query_body, - STATE(3938), 1, + STATE(3219), 1, sym_group_clause, - STATE(3962), 1, + STATE(3220), 1, sym_select_clause, - STATE(5995), 1, + STATE(5961), 1, sym__select_or_group_clause, - STATE(6511), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6486), 9, + STATE(6505), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743756,7 +736930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92220] = 24, + [94225] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743777,37 +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(8692), 1, + ACTIONS(9138), 1, anon_sym_group, - ACTIONS(8694), 1, + ACTIONS(9140), 1, anon_sym_select, - STATE(4739), 1, - sym__select_or_group_clause, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(4031), 1, sym_group_clause, - STATE(6514), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(4233), 1, + sym_select_clause, + STATE(4384), 1, + sym__select_or_group_clause, + STATE(6502), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6487), 9, + STATE(6506), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743817,7 +736991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92305] = 24, + [94310] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743838,37 +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(8684), 1, + ACTIONS(9146), 1, anon_sym_group, - ACTIONS(8686), 1, + ACTIONS(9148), 1, anon_sym_select, - STATE(4739), 1, - sym__select_or_group_clause, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(3219), 1, sym_group_clause, - STATE(6507), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3257), 1, + sym__select_or_group_clause, + STATE(6526), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6488), 9, + STATE(6507), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -743878,7 +737052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92390] = 24, + [94395] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -743899,98 +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(8668), 1, + ACTIONS(9134), 1, anon_sym_group, - ACTIONS(8670), 1, + ACTIONS(9136), 1, anon_sym_select, - STATE(4739), 1, - sym__select_or_group_clause, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(3219), 1, sym_group_clause, - STATE(6522), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6489), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [92475] = 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(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(4818), 1, + STATE(3220), 1, sym_select_clause, - STATE(4876), 1, - sym_group_clause, - STATE(5816), 1, + STATE(3307), 1, sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6490), 9, + STATE(6508), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744000,7 +737113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92560] = 24, + [94480] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744021,37 +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(8672), 1, + ACTIONS(9130), 1, anon_sym_group, - ACTIONS(8674), 1, + ACTIONS(9132), 1, anon_sym_select, - STATE(3938), 1, + STATE(5731), 1, sym_group_clause, - STATE(3962), 1, + STATE(5746), 1, sym_select_clause, - STATE(5986), 1, + STATE(5777), 1, sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6517), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6491), 9, + STATE(6509), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744061,7 +737174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92645] = 24, + [94565] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744082,98 +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(8648), 1, + ACTIONS(9166), 1, anon_sym_group, - ACTIONS(8650), 1, + ACTIONS(9168), 1, anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(3219), 1, sym_group_clause, - STATE(5841), 1, - sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6492), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [92730] = 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(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(5247), 1, - sym__select_or_group_clause, - STATE(5259), 1, + STATE(3220), 1, sym_select_clause, - STATE(5260), 1, - sym_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(3257), 1, + sym__select_or_group_clause, + STATE(6504), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6493), 9, + STATE(6510), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744183,7 +737235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92815] = 24, + [94650] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744204,37 +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(8652), 1, + ACTIONS(9198), 1, anon_sym_group, - ACTIONS(8654), 1, + ACTIONS(9200), 1, anon_sym_select, - STATE(3938), 1, + STATE(4031), 1, sym_group_clause, - STATE(3955), 1, + STATE(4184), 1, sym__select_or_group_clause, - STATE(3962), 1, + STATE(4233), 1, sym_select_clause, - STATE(6498), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6494), 9, + STATE(6511), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744244,7 +737296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92900] = 24, + [94735] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744265,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(8656), 1, + ACTIONS(9126), 1, anon_sym_group, - ACTIONS(8658), 1, + ACTIONS(9128), 1, anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(4031), 1, sym_group_clause, - STATE(5572), 1, + STATE(4233), 1, + sym_select_clause, + STATE(5808), 1, sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6495), 9, + STATE(6512), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744305,7 +737357,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [92985] = 24, + [94820] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744326,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(8644), 1, + ACTIONS(9138), 1, anon_sym_group, - ACTIONS(8646), 1, + ACTIONS(9140), 1, anon_sym_select, - STATE(5195), 1, - sym__select_or_group_clause, - STATE(5259), 1, - sym_select_clause, - STATE(5260), 1, + STATE(4031), 1, sym_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(4233), 1, + sym_select_clause, + STATE(5866), 1, + sym__select_or_group_clause, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6496), 9, + STATE(6513), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744366,7 +737418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93070] = 24, + [94905] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744387,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(8672), 1, + ACTIONS(9154), 1, anon_sym_group, - ACTIONS(8674), 1, + ACTIONS(9156), 1, anon_sym_select, - STATE(3938), 1, + STATE(4031), 1, sym_group_clause, - STATE(3955), 1, - sym__select_or_group_clause, - STATE(3962), 1, + STATE(4233), 1, sym_select_clause, - STATE(6501), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(5659), 1, + sym__select_or_group_clause, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6497), 9, + STATE(6514), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744427,7 +737479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93155] = 24, + [94990] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744448,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(8652), 1, + ACTIONS(9190), 1, anon_sym_group, - ACTIONS(8654), 1, + ACTIONS(9192), 1, anon_sym_select, - STATE(3865), 1, + STATE(5709), 1, sym__select_or_group_clause, - STATE(3938), 1, + STATE(5731), 1, sym_group_clause, - STATE(3962), 1, + STATE(5746), 1, sym_select_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6498), 9, + STATE(6515), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744488,7 +737540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93240] = 24, + [95075] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744509,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(8648), 1, + ACTIONS(9162), 1, anon_sym_group, - ACTIONS(8650), 1, + ACTIONS(9164), 1, anon_sym_select, - STATE(4739), 1, + STATE(4031), 1, + sym_group_clause, + STATE(4184), 1, sym__select_or_group_clause, - STATE(4818), 1, + STATE(4233), 1, sym_select_clause, - STATE(4876), 1, - sym_group_clause, - STATE(6500), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6499), 9, + STATE(6516), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744549,7 +737601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93325] = 24, + [95160] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744570,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(8648), 1, + ACTIONS(9130), 1, anon_sym_group, - ACTIONS(8650), 1, + ACTIONS(9132), 1, anon_sym_select, - STATE(4749), 1, + STATE(5709), 1, sym__select_or_group_clause, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(5731), 1, sym_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(5746), 1, + sym_select_clause, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6500), 9, + STATE(6517), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744610,7 +737662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93410] = 24, + [95245] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744631,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(8672), 1, + ACTIONS(9182), 1, anon_sym_group, - ACTIONS(8674), 1, + ACTIONS(9184), 1, anon_sym_select, - STATE(3865), 1, - sym__select_or_group_clause, - STATE(3938), 1, + STATE(3219), 1, sym_group_clause, - STATE(3962), 1, + STATE(3220), 1, sym_select_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(3307), 1, + sym__select_or_group_clause, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6501), 9, + STATE(6518), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744671,7 +737723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93495] = 24, + [95330] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744692,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(8640), 1, + ACTIONS(9126), 1, anon_sym_group, - ACTIONS(8642), 1, + ACTIONS(9128), 1, anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(4031), 1, sym_group_clause, - STATE(5853), 1, + STATE(4233), 1, + sym_select_clause, + STATE(4384), 1, sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6520), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6502), 9, + STATE(6519), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744732,7 +737784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93580] = 24, + [95415] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744753,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(8644), 1, + ACTIONS(9126), 1, anon_sym_group, - ACTIONS(8646), 1, + ACTIONS(9128), 1, anon_sym_select, - STATE(5247), 1, + STATE(4031), 1, + sym_group_clause, + STATE(4184), 1, sym__select_or_group_clause, - STATE(5259), 1, + STATE(4233), 1, sym_select_clause, - STATE(5260), 1, - sym_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6503), 9, + STATE(6520), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744793,7 +737845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93665] = 24, + [95500] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744814,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(8624), 1, + ACTIONS(9166), 1, anon_sym_group, - ACTIONS(8626), 1, + ACTIONS(9168), 1, anon_sym_select, - STATE(3865), 1, - sym__select_or_group_clause, - STATE(3938), 1, + STATE(3219), 1, sym_group_clause, - STATE(3962), 1, + STATE(3220), 1, sym_select_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(5480), 1, + sym__select_or_group_clause, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6504), 9, + STATE(6521), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744854,7 +737906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93750] = 24, + [95585] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744875,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(8676), 1, + ACTIONS(9174), 1, anon_sym_group, - ACTIONS(8678), 1, + ACTIONS(9176), 1, anon_sym_select, - STATE(3938), 1, + STATE(4031), 1, sym_group_clause, - STATE(3955), 1, + STATE(4184), 1, sym__select_or_group_clause, - STATE(3962), 1, + STATE(4233), 1, sym_select_clause, - STATE(6552), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6505), 9, + STATE(6522), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -744915,7 +737967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [93835] = 24, + [95670] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -744936,98 +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(8676), 1, + ACTIONS(9190), 1, anon_sym_group, - ACTIONS(8678), 1, + ACTIONS(9192), 1, anon_sym_select, - STATE(3938), 1, + STATE(5731), 1, sym_group_clause, - STATE(3962), 1, + STATE(5746), 1, sym_select_clause, - STATE(5501), 1, + STATE(5777), 1, sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6506), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [93920] = 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(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(4749), 1, - sym__select_or_group_clause, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, - sym_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6515), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6507), 9, + STATE(6523), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745037,7 +738028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94005] = 24, + [95755] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745058,98 +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(8708), 1, + ACTIONS(9190), 1, anon_sym_group, - ACTIONS(8710), 1, + ACTIONS(9192), 1, anon_sym_select, - STATE(3865), 1, + STATE(5596), 1, sym__select_or_group_clause, - STATE(3938), 1, + STATE(5731), 1, sym_group_clause, - STATE(3962), 1, + STATE(5746), 1, sym_select_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6508), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [94090] = 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(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(4818), 1, - sym_select_clause, - STATE(4876), 1, - sym_group_clause, - STATE(5742), 1, - sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6509), 9, + STATE(6524), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745159,7 +738089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94175] = 24, + [95840] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745180,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(8652), 1, + ACTIONS(9186), 1, anon_sym_group, - ACTIONS(8654), 1, + ACTIONS(9188), 1, anon_sym_select, - STATE(3938), 1, + STATE(3219), 1, sym_group_clause, - STATE(3962), 1, + STATE(3220), 1, sym_select_clause, - STATE(5793), 1, + STATE(3257), 1, sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6530), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6510), 9, + STATE(6525), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745220,7 +738150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94260] = 24, + [95925] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745241,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(8664), 1, + ACTIONS(9146), 1, anon_sym_group, - ACTIONS(8666), 1, + ACTIONS(9148), 1, anon_sym_select, - STATE(3938), 1, + STATE(3219), 1, sym_group_clause, - STATE(3962), 1, + STATE(3220), 1, sym_select_clause, - STATE(5936), 1, + STATE(3307), 1, sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6511), 9, + STATE(6526), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745281,7 +738211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94345] = 24, + [96010] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745302,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(8632), 1, + ACTIONS(9162), 1, anon_sym_group, - ACTIONS(8634), 1, + ACTIONS(9164), 1, anon_sym_select, - STATE(5259), 1, - sym_select_clause, - STATE(5260), 1, + STATE(4031), 1, sym_group_clause, - STATE(5459), 1, + STATE(4233), 1, + sym_select_clause, + STATE(4384), 1, sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6516), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6512), 9, + STATE(6527), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745342,7 +738272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94430] = 24, + [96095] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745363,98 +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(8708), 1, + ACTIONS(9194), 1, anon_sym_group, - ACTIONS(8710), 1, + ACTIONS(9196), 1, anon_sym_select, - STATE(3938), 1, + STATE(3219), 1, sym_group_clause, - STATE(3955), 1, - sym__select_or_group_clause, - STATE(3962), 1, + STATE(3220), 1, sym_select_clause, - STATE(6508), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6513), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [94515] = 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(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(4749), 1, + STATE(5978), 1, sym__select_or_group_clause, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, - sym_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6514), 9, + STATE(6528), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745464,7 +738333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94600] = 24, + [96180] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745485,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(8644), 1, + ACTIONS(9178), 1, anon_sym_group, - ACTIONS(8646), 1, + ACTIONS(9180), 1, anon_sym_select, - STATE(5259), 1, - sym_select_clause, - STATE(5260), 1, + STATE(3219), 1, sym_group_clause, - STATE(5305), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3307), 1, sym__select_or_group_clause, - STATE(6503), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6515), 9, + STATE(6529), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745525,7 +738394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94685] = 24, + [96265] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745546,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(8696), 1, + ACTIONS(9186), 1, anon_sym_group, - ACTIONS(8698), 1, + ACTIONS(9188), 1, anon_sym_select, - STATE(5657), 1, + STATE(3219), 1, sym_group_clause, - STATE(5658), 1, + STATE(3220), 1, sym_select_clause, - STATE(5745), 1, + STATE(3307), 1, sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6516), 9, + STATE(6530), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745586,7 +738455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94770] = 24, + [96350] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745607,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(8632), 1, + ACTIONS(9142), 1, anon_sym_group, - ACTIONS(8634), 1, + ACTIONS(9144), 1, anon_sym_select, - STATE(5259), 1, - sym_select_clause, - STATE(5260), 1, + STATE(4031), 1, sym_group_clause, - STATE(5305), 1, + STATE(4184), 1, sym__select_or_group_clause, - STATE(6493), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(4233), 1, + sym_select_clause, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6517), 9, + STATE(6531), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745647,7 +738516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94855] = 24, + [96435] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745668,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(8636), 1, + ACTIONS(9134), 1, anon_sym_group, - ACTIONS(8638), 1, + ACTIONS(9136), 1, anon_sym_select, - STATE(3938), 1, + STATE(3219), 1, sym_group_clause, - STATE(3962), 1, + STATE(3220), 1, sym_select_clause, - STATE(5947), 1, + STATE(3257), 1, sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6508), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6518), 9, + STATE(6532), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745708,7 +738577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [94940] = 24, + [96520] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745729,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(8696), 1, + ACTIONS(9154), 1, anon_sym_group, - ACTIONS(8698), 1, + ACTIONS(9156), 1, anon_sym_select, - STATE(5657), 1, + STATE(4031), 1, sym_group_clause, - STATE(5658), 1, - sym_select_clause, - STATE(5830), 1, + STATE(4184), 1, sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(4233), 1, + sym_select_clause, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6519), 9, + STATE(6533), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745769,7 +738638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95025] = 24, + [96605] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745790,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(8708), 1, + ACTIONS(9170), 1, anon_sym_group, - ACTIONS(8710), 1, + ACTIONS(9172), 1, anon_sym_select, - STATE(3938), 1, + STATE(3219), 1, sym_group_clause, - STATE(3962), 1, + STATE(3220), 1, sym_select_clause, - STATE(5490), 1, + STATE(3257), 1, sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6545), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6520), 9, + STATE(6534), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745830,7 +738699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95110] = 24, + [96690] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745851,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(8640), 1, + ACTIONS(9198), 1, anon_sym_group, - ACTIONS(8642), 1, + ACTIONS(9200), 1, anon_sym_select, - STATE(4749), 1, - sym__select_or_group_clause, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(4031), 1, sym_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(4233), 1, + sym_select_clause, + STATE(4384), 1, + sym__select_or_group_clause, + STATE(6511), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6521), 9, + STATE(6535), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745891,7 +738760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95195] = 24, + [96775] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745912,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(8668), 1, + ACTIONS(9142), 1, anon_sym_group, - ACTIONS(8670), 1, + ACTIONS(9144), 1, anon_sym_select, - STATE(4749), 1, - sym__select_or_group_clause, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(4031), 1, sym_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(4233), 1, + sym_select_clause, + STATE(4384), 1, + sym__select_or_group_clause, + STATE(6531), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6522), 9, + STATE(6536), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -745952,7 +738821,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95280] = 24, + [96860] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -745973,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(8640), 1, + ACTIONS(9122), 1, anon_sym_group, - ACTIONS(8642), 1, + ACTIONS(9124), 1, anon_sym_select, - STATE(4739), 1, - sym__select_or_group_clause, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(3219), 1, sym_group_clause, - STATE(6521), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(3220), 1, + sym_select_clause, + STATE(5493), 1, + sym__select_or_group_clause, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6523), 9, + STATE(6537), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746013,7 +738882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95365] = 24, + [96945] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746034,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(8628), 1, + ACTIONS(9206), 1, anon_sym_group, - ACTIONS(8630), 1, + ACTIONS(9208), 1, anon_sym_select, - STATE(3865), 1, + STATE(5103), 1, sym__select_or_group_clause, - STATE(3938), 1, - sym_group_clause, - STATE(3962), 1, + STATE(5184), 1, sym_select_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(5187), 1, + sym_group_clause, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6524), 9, + STATE(6538), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746074,7 +738943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95450] = 24, + [97030] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746095,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(8688), 1, + ACTIONS(9202), 1, anon_sym_group, - ACTIONS(8690), 1, + ACTIONS(9204), 1, anon_sym_select, - STATE(4749), 1, - sym__select_or_group_clause, - STATE(4818), 1, + STATE(5184), 1, sym_select_clause, - STATE(4876), 1, + STATE(5187), 1, sym_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(5265), 1, + sym__select_or_group_clause, + STATE(6492), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6525), 9, + STATE(6539), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746135,7 +739004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95535] = 24, + [97115] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746156,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(8660), 1, + ACTIONS(9206), 1, anon_sym_group, - ACTIONS(8662), 1, + ACTIONS(9208), 1, anon_sym_select, - STATE(3938), 1, - sym_group_clause, - STATE(3962), 1, + STATE(5184), 1, sym_select_clause, - STATE(5956), 1, + STATE(5187), 1, + sym_group_clause, + STATE(5298), 1, sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6526), 9, + STATE(6540), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746196,7 +739065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95620] = 24, + [97200] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746217,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(8680), 1, + ACTIONS(9206), 1, anon_sym_group, - ACTIONS(8682), 1, + ACTIONS(9208), 1, anon_sym_select, - STATE(4739), 1, - sym__select_or_group_clause, - STATE(4818), 1, + STATE(5184), 1, sym_select_clause, - STATE(4876), 1, + STATE(5187), 1, sym_group_clause, - STATE(6533), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(5265), 1, + sym__select_or_group_clause, + STATE(6540), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6527), 9, + STATE(6541), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746257,7 +739126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95705] = 24, + [97285] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746278,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(8680), 1, + ACTIONS(9162), 1, anon_sym_group, - ACTIONS(8682), 1, + ACTIONS(9164), 1, anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(4031), 1, sym_group_clause, - STATE(5469), 1, + STATE(4233), 1, + sym_select_clause, + STATE(5455), 1, sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6528), 9, + STATE(6542), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746318,7 +739187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95790] = 24, + [97370] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746339,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(8628), 1, + ACTIONS(9122), 1, anon_sym_group, - ACTIONS(8630), 1, + ACTIONS(9124), 1, anon_sym_select, - STATE(3938), 1, + STATE(3219), 1, sym_group_clause, - STATE(3955), 1, - sym__select_or_group_clause, - STATE(3962), 1, + STATE(3220), 1, sym_select_clause, - STATE(6524), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(3257), 1, + sym__select_or_group_clause, + STATE(6481), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6529), 9, + STATE(6543), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746379,7 +739248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95875] = 24, + [97455] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746400,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(8704), 1, + ACTIONS(9142), 1, anon_sym_group, - ACTIONS(8706), 1, + ACTIONS(9144), 1, anon_sym_select, - STATE(5657), 1, + STATE(4031), 1, sym_group_clause, - STATE(5658), 1, + STATE(4233), 1, sym_select_clause, - STATE(5745), 1, + STATE(5889), 1, sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6530), 9, + STATE(6544), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746440,7 +739309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [95960] = 24, + [97540] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746461,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(8688), 1, + ACTIONS(9170), 1, anon_sym_group, - ACTIONS(8690), 1, + ACTIONS(9172), 1, anon_sym_select, - STATE(4739), 1, - sym__select_or_group_clause, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(3219), 1, sym_group_clause, - STATE(6525), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(3220), 1, + sym_select_clause, + STATE(3307), 1, + sym__select_or_group_clause, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6531), 9, + STATE(6545), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746501,7 +739370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96045] = 24, + [97625] = 24, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746522,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(8700), 1, + ACTIONS(9134), 1, anon_sym_group, - ACTIONS(8702), 1, + ACTIONS(9136), 1, anon_sym_select, - STATE(4749), 1, - sym__select_or_group_clause, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, + STATE(3219), 1, sym_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, + STATE(3220), 1, + sym_select_clause, + STATE(5684), 1, + sym__select_or_group_clause, + STATE(6551), 1, + aux_sym_query_body_repeat1, + STATE(6699), 1, sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6532), 9, + STATE(6546), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746562,7 +739431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96130] = 24, + [97710] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746583,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(8680), 1, - anon_sym_group, - ACTIONS(8682), 1, - anon_sym_select, - STATE(4749), 1, - sym__select_or_group_clause, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, - sym_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6533), 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, @@ -746623,7 +739493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96215] = 24, + [97798] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746644,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(8656), 1, - anon_sym_group, - ACTIONS(8658), 1, - anon_sym_select, - STATE(4739), 1, - sym__select_or_group_clause, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, - sym_group_clause, - STATE(6548), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6534), 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, @@ -746684,7 +739555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96300] = 24, + [97886] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746705,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(8628), 1, - anon_sym_group, - ACTIONS(8630), 1, - anon_sym_select, - STATE(3938), 1, - sym_group_clause, - STATE(3962), 1, - sym_select_clause, - STATE(5975), 1, - sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6535), 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, @@ -746745,7 +739617,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96385] = 24, + [97974] = 26, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746766,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(8664), 1, - anon_sym_group, - ACTIONS(8666), 1, - anon_sym_select, - STATE(3865), 1, - sym__select_or_group_clause, - STATE(3938), 1, - sym_group_clause, - STATE(3962), 1, - sym_select_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6536), 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, @@ -746806,7 +739679,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96470] = 24, + [98062] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746827,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(8636), 1, + STATE(6699), 1, + sym__query_clause, + ACTIONS(9235), 2, anon_sym_group, - ACTIONS(8638), 1, anon_sym_select, - STATE(3938), 1, - sym_group_clause, - STATE(3955), 1, - sym__select_or_group_clause, - STATE(3962), 1, - sym_select_clause, - STATE(6540), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, + STATE(6646), 5, sym_from_clause, sym_join_clause, sym_let_clause, sym_order_by_clause, sym_where_clause, - STATE(6537), 9, + STATE(6551), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -746867,7 +739731,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96555] = 24, + aux_sym_query_body_repeat1, + [98134] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746888,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(8696), 1, - anon_sym_group, - ACTIONS(8698), 1, - anon_sym_select, - STATE(5657), 1, - sym_group_clause, - STATE(5658), 1, - sym_select_clause, - STATE(5727), 1, - sym__select_or_group_clause, - STATE(6516), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6538), 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, @@ -746928,7 +739785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96640] = 24, + [98208] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -746949,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(8660), 1, - anon_sym_group, - ACTIONS(8662), 1, - anon_sym_select, - STATE(3938), 1, - sym_group_clause, - STATE(3955), 1, - sym__select_or_group_clause, - STATE(3962), 1, - sym_select_clause, - STATE(6541), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6539), 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, @@ -746989,7 +739838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96725] = 24, + [98282] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747010,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(8636), 1, - anon_sym_group, - ACTIONS(8638), 1, - anon_sym_select, - STATE(3865), 1, - sym__select_or_group_clause, - STATE(3938), 1, - sym_group_clause, - STATE(3962), 1, - sym_select_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6540), 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, @@ -747050,7 +739891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96810] = 24, + [98356] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747071,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(8660), 1, - anon_sym_group, - ACTIONS(8662), 1, - anon_sym_select, - STATE(3865), 1, - sym__select_or_group_clause, - STATE(3938), 1, - sym_group_clause, - STATE(3962), 1, - sym_select_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6541), 9, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, + STATE(6555), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747111,7 +739939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96895] = 24, + [98420] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747132,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(8684), 1, - anon_sym_group, - ACTIONS(8686), 1, - anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, - sym_group_clause, - STATE(5760), 1, - sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6542), 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, @@ -747172,7 +739992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [96980] = 24, + [98494] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747193,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(8624), 1, - anon_sym_group, - ACTIONS(8626), 1, - anon_sym_select, - STATE(3938), 1, - sym_group_clause, - STATE(3955), 1, - sym__select_or_group_clause, - STATE(3962), 1, - sym_select_clause, - STATE(6504), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 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(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, @@ -747233,7 +740045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97065] = 24, + [98568] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747254,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(8624), 1, - anon_sym_group, - ACTIONS(8626), 1, - anon_sym_select, - STATE(3938), 1, - sym_group_clause, - STATE(3962), 1, - sym_select_clause, - STATE(5540), 1, - sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6544), 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, @@ -747294,7 +740098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97150] = 24, + [98642] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747315,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(8692), 1, - anon_sym_group, - ACTIONS(8694), 1, - anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, - sym_group_clause, - STATE(5864), 1, - sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6545), 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, @@ -747355,7 +740151,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97235] = 24, + [98716] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747376,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(8704), 1, - anon_sym_group, - ACTIONS(8706), 1, - anon_sym_select, - STATE(5640), 1, - sym__select_or_group_clause, - STATE(5657), 1, - sym_group_clause, - STATE(5658), 1, - sym_select_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 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(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, @@ -747416,7 +740204,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97320] = 24, + [98790] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747436,38 +740224,30 @@ static const uint16_t ts_small_parse_table[] = { 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(8700), 1, - anon_sym_group, - ACTIONS(8702), 1, - anon_sym_select, - STATE(4739), 1, - sym__select_or_group_clause, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, - sym_group_clause, - STATE(6532), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6547), 9, + sym_comment, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, + anon_sym_where, + 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, @@ -747477,7 +740257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97405] = 24, + [98864] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747498,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(8656), 1, - anon_sym_group, - ACTIONS(8658), 1, - anon_sym_select, - STATE(4749), 1, - sym__select_or_group_clause, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, - sym_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6548), 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, @@ -747538,7 +740310,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97490] = 24, + [98938] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747559,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(8688), 1, - anon_sym_group, - ACTIONS(8690), 1, - anon_sym_select, - STATE(4818), 1, - sym_select_clause, - STATE(4876), 1, - sym_group_clause, - STATE(5878), 1, - sym__select_or_group_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6549), 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, @@ -747599,7 +740363,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97575] = 24, + [99012] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747620,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(8664), 1, - anon_sym_group, - ACTIONS(8666), 1, - anon_sym_select, - STATE(3938), 1, - sym_group_clause, - STATE(3955), 1, - sym__select_or_group_clause, - STATE(3962), 1, - sym_select_clause, - STATE(6536), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6550), 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, @@ -747660,7 +740416,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97660] = 24, + [99086] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747681,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(5657), 1, - sym_group_clause, - STATE(5658), 1, - sym_select_clause, - STATE(5727), 1, - sym__select_or_group_clause, - STATE(6530), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 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(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, @@ -747721,7 +740469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97745] = 24, + [99160] = 21, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747742,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(8676), 1, - anon_sym_group, - ACTIONS(8678), 1, - anon_sym_select, - STATE(3865), 1, - sym__select_or_group_clause, - STATE(3938), 1, - sym_group_clause, - STATE(3962), 1, - sym_select_clause, - STATE(6557), 1, - aux_sym__query_body_repeat1, - STATE(6670), 1, - sym__query_clause, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6552), 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, @@ -747782,7 +740522,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97830] = 26, + [99234] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747803,38 +740543,21 @@ 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(5422), 1, - anon_sym_LBRACK, - ACTIONS(7785), 1, - anon_sym_COLON_COLON, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8714), 1, - anon_sym_EQ, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8718), 1, + ACTIONS(9249), 1, anon_sym_LT, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - STATE(2216), 1, + STATE(5456), 1, sym_type_argument_list, - STATE(2708), 1, - sym_accessor_list, - STATE(6607), 1, - sym_parameter_list, - STATE(7368), 1, - sym_bracketed_argument_list, - STATE(7638), 1, - sym_type_parameter_list, - STATE(7644), 1, - sym_arrow_expression_clause, - ACTIONS(8712), 2, - anon_sym_SEMI, + ACTIONS(3957), 9, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_COMMA, - STATE(6553), 9, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_QMARK, + anon_sym_DOT, + anon_sym_STAR, + STATE(6567), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747844,7 +740567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [97918] = 26, + [99293] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747865,38 +740588,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(5422), 1, - anon_sym_LBRACK, - ACTIONS(7785), 1, - anon_sym_COLON_COLON, - ACTIONS(8297), 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(2216), 1, - sym_type_argument_list, - STATE(2741), 1, - sym_accessor_list, - STATE(6622), 1, - sym_parameter_list, - STATE(7368), 1, - sym_bracketed_argument_list, - STATE(7418), 1, + ACTIONS(9243), 1, + anon_sym_where, + 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, - STATE(8055), 1, - sym_arrow_expression_clause, - ACTIONS(8712), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6554), 9, + sym_base_list, + sym_parameter_list, + STATE(6568), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747906,7 +740618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98006] = 26, + [99364] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747927,38 +740639,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(5422), 1, - anon_sym_LBRACK, - ACTIONS(7785), 1, - anon_sym_COLON_COLON, - ACTIONS(8297), 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(2216), 1, - sym_type_argument_list, - STATE(2743), 1, - sym_accessor_list, - STATE(6602), 1, - sym_parameter_list, - STATE(7368), 1, - sym_bracketed_argument_list, - STATE(7557), 1, + ACTIONS(9243), 1, + anon_sym_where, + 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, - STATE(7820), 1, - sym_arrow_expression_clause, - ACTIONS(8712), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6555), 9, + sym_base_list, + sym_parameter_list, + STATE(6569), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -747968,7 +740669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98094] = 26, + [99435] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -747989,38 +740690,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(5422), 1, - anon_sym_LBRACK, - ACTIONS(7785), 1, - anon_sym_COLON_COLON, - ACTIONS(8297), 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(2216), 1, - sym_type_argument_list, - STATE(2737), 1, - sym_accessor_list, - STATE(6610), 1, - sym_parameter_list, - STATE(7368), 1, - sym_bracketed_argument_list, - STATE(7407), 1, + ACTIONS(9243), 1, + anon_sym_where, + 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, - STATE(8081), 1, - sym_arrow_expression_clause, - ACTIONS(8712), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6556), 9, + sym_base_list, + sym_parameter_list, + STATE(6570), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748030,7 +740720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98182] = 19, + [99506] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748051,28 +740741,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8722), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9243), 1, 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(6670), 1, - sym__query_clause, - ACTIONS(8737), 2, - anon_sym_group, - anon_sym_select, - STATE(6669), 5, - sym_from_clause, - sym_join_clause, - sym_let_clause, - sym_order_by_clause, - sym_where_clause, - STATE(6557), 10, + 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, @@ -748082,8 +740771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__query_body_repeat1, - [98254] = 21, + [99577] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748104,29 +740792,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8741), 1, - anon_sym_LBRACE, - ACTIONS(8743), 1, + ACTIONS(3957), 1, + anon_sym_DOT, + ACTIONS(5765), 1, + anon_sym_LBRACK, + ACTIONS(8283), 1, anon_sym_LT, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6604), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6849), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7862), 1, - sym_declaration_list, - STATE(6818), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6558), 9, + 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, @@ -748136,7 +740824,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98328] = 16, + [99652] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748157,24 +740845,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(8747), 1, - anon_sym_LT, - ACTIONS(8750), 1, - anon_sym_COLON_COLON, - STATE(5462), 1, - sym_type_argument_list, - ACTIONS(3953), 8, - anon_sym_LBRACK, + ACTIONS(9281), 5, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_where, + anon_sym_EQ_GT, + ACTIONS(3694), 6, + anon_sym_LBRACK, + anon_sym_LT, anon_sym_QMARK, - anon_sym_STAR, anon_sym_DOT, - STATE(6559), 9, + anon_sym_COLON_COLON, + anon_sym_STAR, + STATE(6573), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748184,7 +740868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98392] = 21, + [99709] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748205,29 +740889,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, + ACTIONS(3957), 1, + anon_sym_DOT, + ACTIONS(5765), 1, + anon_sym_LBRACK, + ACTIONS(8283), 1, anon_sym_LT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8754), 1, - anon_sym_COLON, - STATE(6570), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6871), 1, - sym_record_base, - STATE(6892), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(8752), 2, - anon_sym_SEMI, + ACTIONS(8316), 1, + anon_sym_COLON_COLON, + ACTIONS(9210), 1, + anon_sym_COMMA, + ACTIONS(9214), 1, anon_sym_LBRACE, - STATE(6706), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6560), 9, + 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, @@ -748237,7 +740921,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98466] = 21, + [99784] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748258,29 +740942,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, + ACTIONS(3913), 1, anon_sym_COLON, - ACTIONS(8741), 1, + 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, - ACTIONS(8743), 1, anon_sym_LT, - ACTIONS(8745), 1, anon_sym_where, - STATE(6604), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6828), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7975), 1, - sym_declaration_list, - STATE(6818), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6561), 9, + STATE(6575), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748290,7 +740966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98540] = 21, + [99843] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748311,29 +740987,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8741), 1, - anon_sym_LBRACE, - ACTIONS(8743), 1, + ACTIONS(9241), 1, anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - STATE(6558), 1, + ACTIONS(9256), 1, + anon_sym_COLON, + ACTIONS(9287), 1, + anon_sym_LBRACE, + STATE(6592), 1, aux_sym__class_declaration_initializer_repeat3, - STATE(6856), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7842), 1, - sym_declaration_list, - STATE(6818), 3, + STATE(6973), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6905), 3, sym_type_parameter_list, sym_base_list, sym_parameter_list, - STATE(6562), 9, + STATE(6576), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748343,7 +741017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98614] = 21, + [99914] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748364,29 +741038,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8743), 1, + ACTIONS(9241), 1, anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8754), 1, + ACTIONS(9256), 1, anon_sym_COLON, - STATE(6632), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6824), 1, - sym_record_base, - STATE(6827), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(8756), 2, - anon_sym_SEMI, + ACTIONS(9289), 1, anon_sym_LBRACE, - STATE(6706), 2, + 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(6563), 9, + STATE(6577), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748396,7 +741068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98688] = 21, + [99985] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748417,29 +741089,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8743), 1, + ACTIONS(9241), 1, anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8754), 1, + ACTIONS(9256), 1, anon_sym_COLON, - STATE(6632), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6847), 1, - sym_record_base, - STATE(6848), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(8758), 2, - anon_sym_SEMI, + ACTIONS(9291), 1, anon_sym_LBRACE, - STATE(6706), 2, + 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, + sym_base_list, sym_parameter_list, - STATE(6564), 9, + STATE(6578), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748449,7 +741119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98762] = 21, + [100056] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748470,29 +741140,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8741), 1, - anon_sym_LBRACE, - ACTIONS(8743), 1, + ACTIONS(3957), 1, + anon_sym_DOT, + ACTIONS(5765), 1, + anon_sym_LBRACK, + ACTIONS(8283), 1, anon_sym_LT, - ACTIONS(8745), 1, - anon_sym_where, - STATE(6561), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6839), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7889), 1, - sym_declaration_list, - STATE(6818), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6565), 9, + 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(9293), 1, + anon_sym_SEMI, + STATE(2214), 1, + sym_type_argument_list, + STATE(2846), 1, + sym_accessor_list, + STATE(7109), 1, + sym_bracketed_argument_list, + STATE(6579), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748502,7 +741172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98836] = 21, + [100131] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748523,29 +741193,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8741), 1, - anon_sym_LBRACE, - ACTIONS(8743), 1, + ACTIONS(9241), 1, anon_sym_LT, - ACTIONS(8745), 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(6786), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7643), 1, - sym_declaration_list, - STATE(6818), 3, + STATE(6994), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6905), 3, sym_type_parameter_list, sym_base_list, sym_parameter_list, - STATE(6566), 9, + STATE(6580), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748555,7 +741223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98910] = 21, + [100202] = 22, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748576,29 +741244,29 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, + ACTIONS(3957), 1, + anon_sym_DOT, + ACTIONS(5765), 1, + anon_sym_LBRACK, + ACTIONS(8283), 1, anon_sym_LT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8754), 1, - anon_sym_COLON, - STATE(6563), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6842), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6843), 1, - sym_record_base, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(8760), 2, - anon_sym_SEMI, + ACTIONS(8316), 1, + anon_sym_COLON_COLON, + ACTIONS(9210), 1, + anon_sym_COMMA, + ACTIONS(9214), 1, anon_sym_LBRACE, - STATE(6706), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6567), 9, + ACTIONS(9279), 1, + anon_sym_EQ, + ACTIONS(9298), 1, + anon_sym_SEMI, + STATE(2214), 1, + sym_type_argument_list, + STATE(2728), 1, + sym_accessor_list, + STATE(7109), 1, + sym_bracketed_argument_list, + STATE(6581), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748608,7 +741276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [98984] = 21, + [100277] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748629,29 +741297,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8739), 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, - ACTIONS(8741), 1, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(8743), 1, anon_sym_LT, - ACTIONS(8745), 1, anon_sym_where, - STATE(6604), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6867), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7841), 1, - sym_declaration_list, - STATE(6818), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6568), 9, + STATE(6582), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748661,7 +741322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99058] = 21, + [100339] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748682,29 +741343,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + ACTIONS(5765), 1, + anon_sym_LBRACK, + ACTIONS(8843), 1, anon_sym_LPAREN, - ACTIONS(8743), 1, + ACTIONS(9212), 1, + anon_sym_EQ, + ACTIONS(9241), 1, anon_sym_LT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8754), 1, - anon_sym_COLON, - STATE(6564), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6801), 1, - sym_record_base, - STATE(6813), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(8762), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6706), 2, - sym_type_parameter_list, + STATE(6937), 1, sym_parameter_list, - STATE(6569), 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, @@ -748714,7 +741372,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99132] = 21, + [100409] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748735,29 +741393,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, + ACTIONS(9303), 1, + anon_sym_COMMA, + STATE(6594), 1, + aux_sym_order_by_clause_repeat1, + ACTIONS(9305), 7, anon_sym_where, - ACTIONS(8754), 1, - anon_sym_COLON, - STATE(6632), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6829), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6858), 1, - sym_record_base, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(8764), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6706), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6570), 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, @@ -748767,7 +741415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99206] = 21, + [100466] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748788,29 +741436,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 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(6632), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6888), 1, - sym_record_base, - STATE(6889), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(8766), 2, + ACTIONS(9307), 1, anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(6706), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6571), 9, + STATE(2629), 1, + sym_block, + STATE(2838), 1, + sym__function_body, + STATE(6596), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6585), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748820,7 +741464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99280] = 21, + [100535] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748841,29 +741485,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 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(6571), 1, - aux_sym__record_declaration_initializer_repeat1, - STATE(6830), 1, - sym_record_base, - STATE(6831), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(8768), 2, + ACTIONS(9307), 1, anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(6706), 2, - sym_type_parameter_list, - sym_parameter_list, - STATE(6572), 9, + STATE(2629), 1, + sym_block, + STATE(2818), 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(6586), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748873,7 +741513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99354] = 22, + [100604] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748894,29 +741534,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(5422), 1, - anon_sym_LBRACK, - ACTIONS(7764), 1, - anon_sym_LT, - ACTIONS(7785), 1, - anon_sym_COLON_COLON, - ACTIONS(8712), 1, - anon_sym_COMMA, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8770), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8773), 1, - anon_sym_EQ, - STATE(2216), 1, - sym_type_argument_list, - STATE(3040), 1, - sym_accessor_list, - STATE(7368), 1, - sym_bracketed_argument_list, - STATE(6573), 9, + ACTIONS(9309), 1, + anon_sym_LBRACE, + 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, @@ -748926,7 +741562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99429] = 20, + [100673] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748947,27 +741583,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8775), 1, + ACTIONS(6234), 1, anon_sym_LBRACE, - STATE(6586), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(7019), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, + anon_sym_where, + 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(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(6818), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6574), 9, + STATE(7654), 1, + sym_arrow_expression_clause, + STATE(6588), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -748977,7 +741611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99500] = 20, + [100742] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -748998,27 +741632,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, - anon_sym_COLON, - ACTIONS(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8777), 1, + ACTIONS(6227), 1, anon_sym_LBRACE, - STATE(6604), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6935), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, + anon_sym_where, + 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(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(6818), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6575), 9, + STATE(7643), 1, + sym_arrow_expression_clause, + STATE(6589), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749028,7 +741660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99571] = 20, + [100811] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749049,27 +741681,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 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(8779), 1, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(6604), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6968), 1, + STATE(2629), 1, + sym_block, + STATE(2745), 1, + sym__function_body, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(6818), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6576), 9, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6590), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749079,7 +741709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99642] = 20, + [100880] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749100,27 +741730,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 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(8781), 1, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(6604), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7048), 1, + STATE(2629), 1, + sym_block, + STATE(2833), 1, + sym__function_body, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(6818), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6577), 9, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6591), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749130,7 +741758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99713] = 20, + [100949] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749151,27 +741779,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8739), 1, + ACTIONS(9315), 1, anon_sym_COLON, - ACTIONS(8743), 1, + ACTIONS(9318), 1, + anon_sym_LPAREN, + ACTIONS(9323), 1, anon_sym_LT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8783), 1, + ACTIONS(9321), 2, anon_sym_LBRACE, - STATE(6576), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6939), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(6818), 3, + anon_sym_where, + STATE(6905), 3, sym_type_parameter_list, sym_base_list, sym_parameter_list, - STATE(6578), 9, + STATE(6592), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749181,7 +741802,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99784] = 14, + aux_sym__class_declaration_initializer_repeat3, + [101010] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749202,21 +741824,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8747), 1, - anon_sym_LT, - STATE(5462), 1, - sym_type_argument_list, - ACTIONS(3953), 9, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(6579), 9, + 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(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6593), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749226,7 +741852,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99843] = 22, + [101079] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749247,29 +741873,17 @@ 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(5422), 1, - anon_sym_LBRACK, - ACTIONS(7764), 1, - anon_sym_LT, - ACTIONS(7785), 1, - anon_sym_COLON_COLON, - ACTIONS(8712), 1, + ACTIONS(9326), 1, anon_sym_COMMA, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8773), 1, - anon_sym_EQ, - ACTIONS(8785), 1, - anon_sym_SEMI, - STATE(2216), 1, - sym_type_argument_list, - STATE(2913), 1, - sym_accessor_list, - STATE(7368), 1, - sym_bracketed_argument_list, - STATE(6580), 9, + ACTIONS(9329), 7, + anon_sym_where, + 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, @@ -749279,7 +741893,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99918] = 22, + aux_sym_order_by_clause_repeat1, + [101134] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749300,29 +741915,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(5422), 1, - anon_sym_LBRACK, - ACTIONS(7764), 1, - anon_sym_LT, - ACTIONS(7785), 1, - anon_sym_COLON_COLON, - ACTIONS(8712), 1, - anon_sym_COMMA, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8773), 1, - anon_sym_EQ, - ACTIONS(8788), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9307), 1, anon_sym_SEMI, - STATE(2216), 1, - sym_type_argument_list, - STATE(2824), 1, - sym_accessor_list, - STATE(7368), 1, - sym_bracketed_argument_list, - STATE(6581), 9, + 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(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6595), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749332,7 +741943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [99993] = 13, + [101203] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749353,20 +741964,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8791), 5, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9307), 1, anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(9309), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - ACTIONS(3700), 6, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - STATE(6582), 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, @@ -749376,7 +741992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100050] = 14, + [101272] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749397,21 +742013,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3913), 1, - anon_sym_COLON, - ACTIONS(3700), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - anon_sym_COLON_COLON, - ACTIONS(3910), 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(6583), 9, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, + anon_sym_LBRACE, + 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, @@ -749421,7 +742041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100109] = 20, + [101341] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749442,27 +742062,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 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(6575), 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(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(6818), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6584), 9, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6598), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749472,7 +742090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100180] = 22, + [101410] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749493,29 +742111,21 @@ 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(5422), 1, - anon_sym_LBRACK, - ACTIONS(7764), 1, + ACTIONS(3955), 1, + anon_sym_COLON, + ACTIONS(9331), 1, anon_sym_LT, - ACTIONS(7785), 1, + ACTIONS(9334), 1, anon_sym_COLON_COLON, - ACTIONS(8712), 1, + STATE(2214), 1, + sym_type_argument_list, + ACTIONS(3957), 5, anon_sym_COMMA, - ACTIONS(8716), 1, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(8773), 1, - anon_sym_EQ, - ACTIONS(8796), 1, - anon_sym_SEMI, - STATE(2216), 1, - sym_type_argument_list, - STATE(3033), 1, - sym_accessor_list, - STATE(7368), 1, - sym_bracketed_argument_list, - STATE(6585), 9, + anon_sym_where, + anon_sym_DOT, + STATE(6599), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749525,7 +742135,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100255] = 20, + [101471] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749546,27 +742156,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 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(8799), 1, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(6604), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6980), 1, + STATE(2629), 1, + sym_block, + STATE(2803), 1, + sym__function_body, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(6818), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6586), 9, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6600), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749576,7 +742184,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100326] = 20, + [101540] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749597,27 +742205,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 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(8801), 1, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(6577), 1, - aux_sym__class_declaration_initializer_repeat3, - STATE(6988), 1, + STATE(2629), 1, + sym_block, + STATE(2844), 1, + sym__function_body, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(6818), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6587), 9, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6601), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749627,7 +742233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100397] = 16, + [101609] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749648,22 +742254,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, + ACTIONS(3968), 1, + anon_sym_COLON_COLON, + ACTIONS(8151), 1, + anon_sym_LT, + STATE(5456), 1, + sym_type_argument_list, + ACTIONS(9336), 2, + anon_sym_COMMA, + anon_sym_GT, + ACTIONS(3957), 4, anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, anon_sym_QMARK, - ACTIONS(8803), 1, anon_sym_DOT, - ACTIONS(4318), 6, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6588), 9, + anon_sym_STAR, + STATE(6602), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749673,7 +742278,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100459] = 20, + [101670] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749694,26 +742299,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_EQ_GT, - ACTIONS(5422), 1, - anon_sym_LBRACK, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8714), 1, - anon_sym_EQ, - ACTIONS(8743), 1, - anon_sym_LT, - STATE(6937), 1, - sym_parameter_list, - STATE(7368), 1, - sym_bracketed_argument_list, - STATE(7477), 1, - sym_type_parameter_list, - ACTIONS(8712), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6589), 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, @@ -749723,7 +742321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100529] = 14, + [101727] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749744,19 +742342,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8807), 1, - anon_sym_into, - STATE(6705), 1, - sym_join_into_clause, - ACTIONS(8805), 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(6590), 9, + ACTIONS(9307), 1, + anon_sym_SEMI, + 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, @@ -749766,7 +742370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100586] = 20, + [101796] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749787,25 +742391,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(2955), 1, + STATE(2810), 1, sym__function_body, - STATE(6606), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6591), 9, + STATE(6605), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749815,7 +742419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100655] = 20, + [101865] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749836,25 +742440,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7412), 1, + ACTIONS(6234), 1, anon_sym_LBRACE, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8813), 1, + ACTIONS(9311), 1, anon_sym_SEMI, - STATE(2128), 1, - sym__function_body, - STATE(2157), 1, + STATE(1977), 1, sym_block, - STATE(6768), 1, + STATE(1982), 1, + sym__function_body, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(8059), 1, + STATE(7654), 1, sym_arrow_expression_clause, - STATE(6592), 9, + STATE(6606), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749864,7 +742468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100724] = 20, + [101934] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749885,25 +742489,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(3042), 1, + STATE(2899), 1, sym__function_body, - STATE(6768), 1, + STATE(6615), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6593), 9, + STATE(6607), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749913,7 +742517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100793] = 13, + [102003] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749934,17 +742538,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8815), 1, - anon_sym_COMMA, - ACTIONS(8818), 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(6594), 10, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(2629), 1, + sym_block, + STATE(2722), 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(6608), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -749954,8 +742566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_order_by_clause_repeat1, - [100848] = 20, + [102072] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -749976,25 +742587,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(2862), 1, + STATE(2706), 1, sym__function_body, - STATE(6768), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6595), 9, + STATE(6609), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750004,7 +742615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100917] = 20, + [102141] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750025,25 +742636,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(2791), 1, + STATE(2762), 1, sym__function_body, - STATE(6768), 1, + STATE(6600), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6596), 9, + STATE(6610), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750053,7 +742664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [100986] = 20, + [102210] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750074,25 +742685,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(7536), 1, + anon_sym_LBRACE, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8809), 1, + ACTIONS(9343), 1, anon_sym_SEMI, - ACTIONS(8811), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(3052), 1, + STATE(2122), 1, sym__function_body, - STATE(6636), 1, + STATE(2160), 1, + sym_block, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(8054), 1, sym_arrow_expression_clause, - STATE(6597), 9, + STATE(6611), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750102,7 +742713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101055] = 20, + [102279] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750123,25 +742734,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6899), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8820), 1, + ACTIONS(5765), 1, + anon_sym_LBRACK, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + anon_sym_LT, + ACTIONS(9279), 1, + anon_sym_EQ, + STATE(6981), 1, + sym_parameter_list, + STATE(7109), 1, + sym_bracketed_argument_list, + STATE(7618), 1, + sym_type_parameter_list, + ACTIONS(9210), 2, anon_sym_SEMI, - STATE(2038), 1, - sym_block, - STATE(2064), 1, - sym__function_body, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7956), 1, - sym_arrow_expression_clause, - STATE(6598), 9, + anon_sym_COMMA, + STATE(6612), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750151,7 +742761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101124] = 20, + [102346] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750172,25 +742782,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7206), 1, anon_sym_LBRACE, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8822), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - STATE(1978), 1, - sym__function_body, - STATE(1986), 1, + STATE(2629), 1, sym_block, - STATE(6633), 1, + STATE(6627), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(8025), 1, + STATE(7534), 1, + sym__function_body, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6599), 9, + STATE(6613), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750200,7 +742810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101193] = 20, + [102415] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750221,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(3050), 1, + STATE(2766), 1, sym__function_body, - STATE(6637), 1, + STATE(6621), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6600), 9, + STATE(6614), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750249,7 +742859,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101262] = 20, + [102484] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750270,25 +742880,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7412), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8813), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - STATE(2156), 1, - sym__function_body, - STATE(2157), 1, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(2629), 1, sym_block, - STATE(6592), 1, + STATE(2890), 1, + sym__function_body, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(8059), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6601), 9, + STATE(6615), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750298,7 +742908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101331] = 20, + [102553] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750319,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(3041), 1, + STATE(2824), 1, sym__function_body, - STATE(6635), 1, + STATE(6586), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6602), 9, + STATE(6616), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750347,7 +742957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101400] = 20, + [102622] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750368,25 +742978,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(6227), 1, + anon_sym_LBRACE, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8809), 1, + ACTIONS(9313), 1, anon_sym_SEMI, - ACTIONS(8811), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(3037), 1, + STATE(2046), 1, sym__function_body, - STATE(6627), 1, + STATE(2050), 1, + sym_block, + STATE(6589), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(7643), 1, sym_arrow_expression_clause, - STATE(6603), 9, + STATE(6617), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [102691] = 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(9303), 1, + anon_sym_COMMA, + STATE(6584), 1, + aux_sym_order_by_clause_repeat1, + ACTIONS(9345), 7, + anon_sym_where, + 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, @@ -750396,7 +743049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101469] = 16, + [102748] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750417,20 +743070,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8824), 1, - anon_sym_COLON, - ACTIONS(8827), 1, - anon_sym_LPAREN, - ACTIONS(8832), 1, - anon_sym_LT, - ACTIONS(8830), 2, - anon_sym_LBRACE, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9243), 1, anon_sym_where, - STATE(6818), 3, - sym_type_parameter_list, - sym_base_list, - sym_parameter_list, - STATE(6604), 10, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(2629), 1, + sym_block, + STATE(2863), 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(6619), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750440,8 +743098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__class_declaration_initializer_repeat3, - [101530] = 20, + [102817] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750462,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(2909), 1, + STATE(2699), 1, sym__function_body, - STATE(6617), 1, + STATE(6629), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6605), 9, + STATE(6620), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750490,7 +743147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101599] = 20, + [102886] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750511,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(3015), 1, + STATE(2764), 1, sym__function_body, - STATE(6768), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6606), 9, + STATE(6621), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750539,7 +743196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101668] = 20, + [102955] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750560,25 +743217,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(2980), 1, + STATE(2774), 1, sym__function_body, - STATE(6613), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6607), 9, + STATE(6622), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750588,7 +743245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101737] = 20, + [103024] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750609,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(2877), 1, + STATE(2820), 1, sym__function_body, - STATE(6768), 1, + STATE(6609), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6608), 9, + STATE(6623), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750637,7 +743294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101806] = 20, + [103093] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750658,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(2872), 1, + STATE(2889), 1, sym__function_body, - STATE(6624), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6609), 9, + STATE(6624), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750686,7 +743343,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101875] = 20, + [103162] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750707,25 +743364,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(2894), 1, + STATE(2910), 1, sym__function_body, - STATE(6626), 1, + STATE(6593), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6610), 9, + STATE(6625), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750735,7 +743392,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [101944] = 20, + [103231] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750756,25 +743413,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(7536), 1, + anon_sym_LBRACE, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9243), 1, anon_sym_where, - ACTIONS(8809), 1, + ACTIONS(9343), 1, anon_sym_SEMI, - ACTIONS(8811), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(2878), 1, + STATE(2157), 1, sym__function_body, - STATE(6614), 1, + STATE(2160), 1, + sym_block, + STATE(6611), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(8054), 1, sym_arrow_expression_clause, - STATE(6611), 9, + STATE(6626), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750784,7 +743441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102013] = 20, + [103300] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750805,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, - anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(2856), 1, - sym__function_body, - STATE(6768), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(7595), 1, + sym__function_body, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6612), 9, + STATE(6627), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750833,7 +743490,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102082] = 20, + [103369] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750854,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(2922), 1, + STATE(2750), 1, sym__function_body, - STATE(6768), 1, + STATE(6622), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6613), 9, + STATE(6628), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750882,7 +743539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102151] = 20, + [103438] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750903,25 +743560,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(2854), 1, + STATE(2829), 1, sym__function_body, - STATE(6768), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6614), 9, + STATE(6629), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750931,7 +743588,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102220] = 16, + [103507] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750952,21 +743609,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3960), 1, - anon_sym_COLON_COLON, - ACTIONS(7683), 1, + ACTIONS(9349), 1, + anon_sym_LPAREN, + ACTIONS(9352), 1, anon_sym_LT, - STATE(5462), 1, - sym_type_argument_list, - ACTIONS(8835), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3953), 4, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_DOT, - STATE(6615), 9, + STATE(6713), 2, + sym_type_parameter_list, + sym_parameter_list, + ACTIONS(9347), 4, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_where, + STATE(6630), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -750976,7 +743631,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102281] = 20, + aux_sym__record_declaration_initializer_repeat1, + [103566] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -750997,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(2936), 1, + STATE(2880), 1, sym__function_body, - STATE(6630), 1, + STATE(6590), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6616), 9, + STATE(6631), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751025,7 +743681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102350] = 20, + [103635] = 20, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751046,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(2820), 1, + STATE(2891), 1, sym__function_body, - STATE(6768), 1, + STATE(6605), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6617), 9, + STATE(6632), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751074,7 +743730,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102419] = 20, + [103704] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751095,25 +743751,21 @@ 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(8809), 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, - ACTIONS(8811), 1, anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(2814), 1, - sym__function_body, - STATE(6608), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6618), 9, + anon_sym_where, + STATE(6633), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751123,7 +743775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102488] = 20, + [103766] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751144,25 +743796,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6899), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, + ACTIONS(9359), 8, + anon_sym_COMMA, anon_sym_where, - ACTIONS(8820), 1, - anon_sym_SEMI, - STATE(2038), 1, - sym_block, - STATE(2073), 1, - sym__function_body, - STATE(6598), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7956), 1, - sym_arrow_expression_clause, - STATE(6619), 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, @@ -751172,7 +743815,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102557] = 14, + [103818] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751193,11 +743836,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8838), 1, + ACTIONS(9361), 8, anon_sym_COMMA, - STATE(6631), 1, - aux_sym_order_by_clause_repeat1, - ACTIONS(8840), 7, anon_sym_where, anon_sym_from, anon_sym_join, @@ -751205,7 +743845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(6620), 9, + STATE(6635), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751215,7 +743855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102614] = 20, + [103870] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751236,25 +743876,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7208), 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(8809), 1, - anon_sym_SEMI, - STATE(2654), 1, - sym_block, - STATE(6629), 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(7024), 1, + STATE(6932), 1, + sym_base_list, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7530), 1, - sym__function_body, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6621), 9, + STATE(6636), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751264,7 +743902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102683] = 20, + [103936] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751285,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9214), 1, anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(2961), 1, - sym__function_body, - STATE(6593), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7765), 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(6622), 9, + STATE(6637), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751313,7 +743949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102752] = 19, + [104002] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751334,24 +743970,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5422), 1, - anon_sym_LBRACK, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, + ACTIONS(9331), 1, anon_sym_LT, - ACTIONS(8773), 1, - anon_sym_EQ, - STATE(6934), 1, - sym_parameter_list, - STATE(7368), 1, - sym_bracketed_argument_list, - STATE(7567), 1, - sym_type_parameter_list, - ACTIONS(8712), 2, - anon_sym_SEMI, + STATE(2214), 1, + sym_type_argument_list, + ACTIONS(3957), 6, + anon_sym_COLON, anon_sym_COMMA, - STATE(6623), 9, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_DOT, + STATE(6638), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751361,7 +743991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102819] = 20, + [104058] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751382,25 +744012,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9214), 1, anon_sym_LBRACE, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9241), 1, + anon_sym_LT, STATE(2654), 1, - sym_block, - STATE(2948), 1, - sym__function_body, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7765), 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(6624), 9, + STATE(6639), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751410,7 +744038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102888] = 20, + [104124] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751431,25 +744059,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9369), 1, + anon_sym_COMMA, + 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, - STATE(2654), 1, - sym_block, - STATE(2882), 1, - sym__function_body, - STATE(6595), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6625), 9, + anon_sym_LT, + anon_sym_where, + STATE(6640), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751459,7 +744082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [102957] = 20, + [104184] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751480,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9214), 1, anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(2842), 1, - sym__function_body, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7765), 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(6626), 9, + STATE(6641), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751508,7 +744129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103026] = 20, + [104250] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751529,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9363), 1, + anon_sym_COLON, + ACTIONS(9374), 1, anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(2971), 1, - sym__function_body, - STATE(6768), 1, + STATE(6759), 1, + sym_type_parameter_list, + STATE(6957), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6958), 1, + sym_base_list, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6627), 9, + STATE(6642), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751557,7 +744176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103095] = 20, + [104316] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751578,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9214), 1, anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(2846), 1, - sym__function_body, - STATE(6596), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7765), 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(6628), 9, + STATE(6643), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751606,7 +744223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103164] = 20, + [104382] = 19, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751627,25 +744244,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7208), 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(8809), 1, - anon_sym_SEMI, - STATE(2654), 1, - sym_block, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + 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(7491), 1, - sym__function_body, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6629), 9, + 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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [104448] = 17, + 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(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, @@ -751655,7 +744314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103233] = 20, + [104509] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751676,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(2939), 1, - sym__function_body, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6630), 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, @@ -751704,7 +744353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103302] = 14, + [104560] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751725,19 +744374,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8838), 1, + ACTIONS(9369), 1, anon_sym_COMMA, - STATE(6594), 1, - aux_sym_order_by_clause_repeat1, - ACTIONS(8842), 7, + STATE(6689), 1, + aux_sym_base_list_repeat1, + ACTIONS(9388), 5, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6631), 9, + STATE(6647), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751747,7 +744394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103359] = 15, + [104615] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751768,19 +744415,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8846), 1, - anon_sym_LPAREN, - ACTIONS(8849), 1, - anon_sym_LT, - STATE(6706), 2, - sym_type_parameter_list, - sym_parameter_list, - ACTIONS(8844), 4, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_where, - STATE(6632), 10, + 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, @@ -751790,8 +744438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__record_declaration_initializer_repeat1, - [103418] = 20, + [104676] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751812,25 +744459,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8822), 1, - anon_sym_SEMI, - STATE(1957), 1, - sym__function_body, - STATE(1986), 1, - sym_block, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(8025), 1, - sym_arrow_expression_clause, - STATE(6633), 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, @@ -751840,7 +744482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103487] = 16, + [104737] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751861,21 +744503,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(2216), 1, - sym_type_argument_list, - ACTIONS(3953), 5, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_DOT, - STATE(6634), 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, @@ -751885,7 +744526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103548] = 20, + [104798] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751906,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 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(2654), 1, - sym_block, - STATE(2957), 1, - sym__function_body, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6635), 9, + anon_sym_LT, + anon_sym_where, + STATE(6651), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -751934,7 +744567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103617] = 20, + [104853] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -751955,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(3058), 1, - sym__function_body, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6636), 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, @@ -751983,7 +744611,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103686] = 20, + [104914] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752004,25 +744632,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(3057), 1, - sym__function_body, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6637), 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, @@ -752032,7 +744655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103755] = 20, + [104975] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752053,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(6234), 1, anon_sym_LBRACE, - STATE(2654), 1, + ACTIONS(9406), 1, + anon_sym_LPAREN, + ACTIONS(9408), 1, + anon_sym_when, + STATE(1945), 1, sym_block, - STATE(3008), 1, - sym__function_body, - STATE(6612), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6638), 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, @@ -752081,7 +744699,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103824] = 12, + [105036] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752102,16 +744720,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8857), 8, + ACTIONS(9410), 1, + anon_sym_DOT, + ACTIONS(4361), 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(6639), 9, + STATE(6655), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [105089] = 17, + 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(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, @@ -752121,7 +744783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103876] = 12, + [105150] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752142,8 +744804,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8859), 8, - anon_sym_COMMA, + ACTIONS(9414), 7, anon_sym_where, anon_sym_from, anon_sym_join, @@ -752151,7 +744812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orderby, anon_sym_group, anon_sym_select, - STATE(6640), 9, + STATE(6657), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752161,7 +744822,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103928] = 19, + [105201] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752182,23 +744843,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(8861), 1, - anon_sym_COLON, - ACTIONS(8863), 1, + ACTIONS(7206), 1, anon_sym_LBRACE, - STATE(6731), 1, - sym_type_parameter_list, - STATE(7015), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7022), 1, - sym_base_list, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(6641), 9, + 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(7303), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6658), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752208,7 +744866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [103994] = 17, + [105262] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752229,21 +744887,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5520), 1, - anon_sym_LPAREN, - ACTIONS(7951), 1, - anon_sym_DOT, - ACTIONS(8867), 1, - anon_sym_COMMA, - STATE(6857), 1, - aux_sym_record_base_repeat1, - STATE(7021), 1, - sym_argument_list, - ACTIONS(8865), 3, + ACTIONS(9416), 7, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_LT, anon_sym_where, - STATE(6642), 9, + anon_sym_EQ_GT, + STATE(6659), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752253,7 +744905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104056] = 19, + [105313] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752274,23 +744926,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(8861), 1, - anon_sym_COLON, - ACTIONS(8869), 1, - anon_sym_LBRACE, - STATE(6714), 1, - sym_type_parameter_list, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7037), 1, - sym_base_list, - STATE(7047), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6643), 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, @@ -752300,7 +744949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104122] = 19, + [105374] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752321,23 +744970,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(9422), 7, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LPAREN, - ACTIONS(8716), 1, anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8743), 1, anon_sym_LT, - STATE(2744), 1, - sym_accessor_list, - STATE(6625), 1, - sym_parameter_list, - STATE(7535), 1, - sym_type_parameter_list, - STATE(7852), 1, - sym_arrow_expression_clause, - STATE(6644), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6661), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752347,44 +744988,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104188] = 19, - 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(8297), 1, - anon_sym_LPAREN, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8743), 1, - anon_sym_LT, - STATE(2721), 1, - sym_accessor_list, - STATE(6600), 1, - sym_parameter_list, - STATE(7571), 1, - sym_type_parameter_list, - STATE(7801), 1, - sym_arrow_expression_clause, - STATE(6645), 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, @@ -752394,7 +745032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104254] = 19, + [105486] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752415,23 +745053,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8743), 1, - anon_sym_LT, - STATE(2704), 1, - sym_accessor_list, - STATE(6591), 1, - sym_parameter_list, - STATE(7394), 1, - sym_type_parameter_list, - STATE(8097), 1, - sym_arrow_expression_clause, - STATE(6646), 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, @@ -752441,7 +745076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104320] = 19, + [105547] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752462,23 +745097,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8716), 1, - anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8743), 1, - anon_sym_LT, - STATE(2782), 1, - sym_accessor_list, - STATE(6605), 1, - sym_parameter_list, - STATE(7618), 1, - sym_type_parameter_list, - STATE(7692), 1, - sym_arrow_expression_clause, - STATE(6647), 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, @@ -752488,7 +745120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104386] = 14, + [105608] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752509,18 +745141,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(2216), 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(6648), 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, @@ -752530,44 +745164,128 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104442] = 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(8743), 1, - anon_sym_LT, - ACTIONS(8745), 1, - anon_sym_where, - ACTIONS(8861), 1, - anon_sym_COLON, - ACTIONS(8871), 1, - anon_sym_LBRACE, - STATE(6736), 1, - sym_type_parameter_list, - STATE(7001), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7002), 1, - sym_base_list, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(6649), 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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [105730] = 16, + 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(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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + aux_sym_string_literal_repeat1, + [105789] = 17, + 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(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, @@ -752577,7 +745295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104508] = 16, + [105850] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752598,20 +745316,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_COMMA, - ACTIONS(8877), 1, - anon_sym_LPAREN, - STATE(6651), 1, - aux_sym_base_list_repeat1, - STATE(6653), 1, - sym_argument_list, - ACTIONS(8873), 4, - anon_sym_COLON, + ACTIONS(6227), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6650), 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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [105911] = 17, + 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(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, @@ -752621,7 +745383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104568] = 14, + [105972] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752642,17 +745404,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_COMMA, - STATE(6678), 1, - aux_sym_base_list_repeat1, - ACTIONS(8880), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6651), 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, @@ -752662,7 +745427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104623] = 17, + [106033] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752683,20 +745448,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8884), 1, - sym_interpolation_end_quote, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - STATE(6699), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6985), 1, - sym__interpolated_string_content, - STATE(7045), 1, - sym_interpolation, - ACTIONS(8882), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6652), 9, + ACTIONS(7536), 1, + anon_sym_LBRACE, + 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, @@ -752706,7 +745471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104684] = 14, + [106094] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752727,17 +745492,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_COMMA, - STATE(6679), 1, - aux_sym_base_list_repeat1, - ACTIONS(8888), 5, - anon_sym_COLON, + ACTIONS(9451), 1, anon_sym_LPAREN, + STATE(6700), 1, + sym_argument_list, + ACTIONS(9449), 5, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_LT, anon_sym_where, - STATE(6653), 9, + STATE(6673), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752747,7 +745512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104739] = 17, + [106149] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752768,20 +745533,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6899), 1, - anon_sym_LBRACE, - ACTIONS(8890), 1, - anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_when, - STATE(1999), 1, - sym_block, - STATE(6702), 1, - aux_sym_catch_clause_repeat1, - STATE(7130), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6654), 9, + ACTIONS(9454), 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, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752791,41 +745551,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104800] = 17, - ACTIONS(8511), 1, + [106200] = 17, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8894), 1, - anon_sym_DQUOTE, - ACTIONS(8896), 1, + ACTIONS(9380), 1, aux_sym_string_literal_content_token1, - ACTIONS(8898), 1, + ACTIONS(9382), 1, aux_sym_string_literal_content_token2, - STATE(6698), 1, + ACTIONS(9456), 1, + anon_sym_DQUOTE, + STATE(6667), 1, aux_sym_string_literal_repeat1, - STATE(6816), 1, + STATE(6788), 1, sym_string_literal_content, - ACTIONS(8900), 2, + ACTIONS(9384), 2, sym_escape_sequence, sym_grit_metavariable, - STATE(6655), 9, + STATE(6675), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752835,7 +745595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104861] = 17, + [106261] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752858,18 +745618,18 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(3217), 1, anon_sym_LBRACK, - ACTIONS(5464), 1, + ACTIONS(5208), 1, aux_sym_preproc_else_token1, - ACTIONS(5466), 1, + ACTIONS(5210), 1, aux_sym_preproc_elif_token1, - ACTIONS(8902), 1, + ACTIONS(9458), 1, aux_sym_preproc_if_token3, - STATE(6794), 1, + STATE(6851), 1, sym_attribute_list, - STATE(7713), 2, + STATE(7741), 2, sym_preproc_else_in_attribute_list, sym_preproc_elif_in_attribute_list, - STATE(6656), 9, + STATE(6676), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752879,7 +745639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104922] = 17, + [106322] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752900,20 +745660,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(8904), 1, - sym_interpolation_end_quote, - STATE(6699), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6985), 1, - sym__interpolated_string_content, - STATE(7045), 1, - sym_interpolation, - ACTIONS(8882), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6657), 9, + ACTIONS(6234), 1, + anon_sym_LBRACE, + ACTIONS(9406), 1, + anon_sym_LPAREN, + ACTIONS(9408), 1, + anon_sym_when, + STATE(1943), 1, + sym_block, + STATE(6654), 1, + aux_sym_catch_clause_repeat1, + STATE(7303), 2, + sym_catch_declaration, + sym_catch_filter_clause, + STATE(6677), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752923,7 +745683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [104983] = 17, + [106383] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752944,20 +745704,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(8906), 1, + ACTIONS(9463), 1, sym_interpolation_end_quote, - STATE(6699), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6985), 1, + ACTIONS(9465), 1, + sym_interpolation_open_brace, + STATE(6930), 1, sym__interpolated_string_content, - STATE(7045), 1, + STATE(6966), 1, sym_interpolation, - ACTIONS(8882), 2, + ACTIONS(9460), 2, sym_interpolation_string_content, sym_escape_sequence, - STATE(6658), 9, + STATE(6678), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -752967,7 +745725,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105044] = 17, + aux_sym_interpolated_string_expression_repeat1, + [106442] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -752988,20 +745747,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(5464), 1, - aux_sym_preproc_else_token1, - ACTIONS(5466), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8908), 1, - aux_sym_preproc_if_token3, - STATE(6795), 1, - sym_attribute_list, - STATE(7879), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6659), 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, @@ -753011,7 +745770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105105] = 17, + [106503] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753032,20 +745791,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7208), 1, + 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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [106564] = 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(6227), 1, anon_sym_LBRACE, - ACTIONS(8890), 1, + ACTIONS(9406), 1, anon_sym_LPAREN, - ACTIONS(8892), 1, + ACTIONS(9408), 1, anon_sym_when, - STATE(6665), 1, - aux_sym_catch_clause_repeat1, - STATE(6994), 1, + STATE(1989), 1, sym_block, - STATE(7130), 2, + STATE(6708), 1, + aux_sym_catch_clause_repeat1, + STATE(7303), 2, sym_catch_declaration, sym_catch_filter_clause, - STATE(6660), 9, + STATE(6681), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753055,7 +745858,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105166] = 17, + [106625] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753076,20 +745879,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, + ACTIONS(9394), 1, sym_interpolation_open_brace, - ACTIONS(8910), 1, + ACTIONS(9470), 1, sym_interpolation_end_quote, - STATE(6652), 1, + STATE(6678), 1, aux_sym_interpolated_string_expression_repeat1, - STATE(6985), 1, + STATE(6930), 1, sym__interpolated_string_content, - STATE(7045), 1, + STATE(6966), 1, sym_interpolation, - ACTIONS(8882), 2, + ACTIONS(9390), 2, sym_interpolation_string_content, sym_escape_sequence, - STATE(6661), 9, + STATE(6682), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753099,41 +745902,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105227] = 17, - ACTIONS(8511), 1, + [106686] = 17, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8896), 1, + ACTIONS(9380), 1, aux_sym_string_literal_content_token1, - ACTIONS(8898), 1, + ACTIONS(9382), 1, aux_sym_string_literal_content_token2, - ACTIONS(8912), 1, + ACTIONS(9472), 1, anon_sym_DQUOTE, - STATE(6687), 1, + STATE(6675), 1, aux_sym_string_literal_repeat1, - STATE(6816), 1, + STATE(6788), 1, sym_string_literal_content, - ACTIONS(8900), 2, + ACTIONS(9384), 2, sym_escape_sequence, sym_grit_metavariable, - STATE(6662), 9, + STATE(6683), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753143,7 +745946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105288] = 17, + [106747] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753164,20 +745967,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(8914), 1, - sym_interpolation_end_quote, - STATE(6658), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6985), 1, - sym__interpolated_string_content, - STATE(7045), 1, - sym_interpolation, - ACTIONS(8882), 2, - sym_interpolation_string_content, + ACTIONS(9474), 7, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + 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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [106798] = 17, + 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(9380), 1, + aux_sym_string_literal_content_token1, + ACTIONS(9382), 1, + aux_sym_string_literal_content_token2, + ACTIONS(9476), 1, + anon_sym_DQUOTE, + STATE(6645), 1, + aux_sym_string_literal_repeat1, + STATE(6788), 1, + sym_string_literal_content, + ACTIONS(9384), 2, sym_escape_sequence, - STATE(6663), 9, + sym_grit_metavariable, + STATE(6685), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [106859] = 17, + 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(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, @@ -753187,7 +746073,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105349] = 17, + [106920] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753208,20 +746094,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(8916), 1, - sym_interpolation_end_quote, - STATE(6686), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6985), 1, - sym__interpolated_string_content, - STATE(7045), 1, - sym_interpolation, - ACTIONS(8882), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6664), 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, @@ -753231,7 +746117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105410] = 17, + [106981] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753252,20 +746138,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7208), 1, - anon_sym_LBRACE, - ACTIONS(8890), 1, - anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_when, - STATE(6762), 1, - aux_sym_catch_clause_repeat1, - STATE(7017), 1, - sym_block, - STATE(7130), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6665), 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, @@ -753275,7 +746161,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105471] = 12, + [107042] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753296,15 +746182,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8918), 7, - anon_sym_SEMI, + ACTIONS(9484), 1, + anon_sym_COMMA, + ACTIONS(9482), 5, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LT, anon_sym_where, - anon_sym_EQ_GT, - STATE(6666), 9, + STATE(6689), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753314,41 +746200,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105522] = 17, - ACTIONS(8511), 1, + aux_sym_base_list_repeat1, + [107095] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(8896), 1, - aux_sym_string_literal_content_token1, - ACTIONS(8898), 1, - aux_sym_string_literal_content_token2, - ACTIONS(8920), 1, - anon_sym_DQUOTE, - STATE(6698), 1, - aux_sym_string_literal_repeat1, - STATE(6816), 1, - sym_string_literal_content, - ACTIONS(8900), 2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6667), 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, @@ -753358,7 +746242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105583] = 17, + [107150] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753379,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(5464), 1, - aux_sym_preproc_else_token1, - ACTIONS(5466), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8922), 1, - aux_sym_preproc_if_token3, - STATE(6876), 1, - sym_attribute_list, - STATE(7724), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6668), 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, @@ -753402,7 +746286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105644] = 12, + [107211] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753423,15 +746307,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8924), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6669), 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, @@ -753441,7 +746330,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105695] = 12, + [107272] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753462,15 +746351,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8926), 7, + ACTIONS(9491), 7, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6670), 9, + anon_sym_EQ_GT, + STATE(6693), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753480,41 +746369,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105746] = 17, - ACTIONS(8511), 1, + [107323] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(8896), 1, - aux_sym_string_literal_content_token1, - ACTIONS(8898), 1, - aux_sym_string_literal_content_token2, - ACTIONS(8928), 1, - anon_sym_DQUOTE, - STATE(6698), 1, - aux_sym_string_literal_repeat1, - STATE(6816), 1, - sym_string_literal_content, - ACTIONS(8900), 2, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9493), 1, + sym_interpolation_end_quote, + STATE(6664), 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, - sym_grit_metavariable, - STATE(6671), 9, + STATE(6694), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753524,7 +746413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105807] = 17, + [107384] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753545,20 +746434,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(8930), 1, - sym_interpolation_end_quote, - STATE(6657), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6985), 1, - sym__interpolated_string_content, - STATE(7045), 1, - sym_interpolation, - ACTIONS(8882), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6672), 9, + 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, @@ -753568,7 +746452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105868] = 12, + [107435] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753589,15 +746473,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8932), 7, - anon_sym_where, - anon_sym_from, - anon_sym_join, - anon_sym_let, - anon_sym_orderby, - anon_sym_group, - anon_sym_select, - STATE(6673), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9495), 1, + sym_interpolation_end_quote, + STATE(6682), 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(6696), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753607,41 +746496,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105919] = 17, - ACTIONS(8511), 1, + [107496] = 17, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8896), 1, + ACTIONS(9380), 1, aux_sym_string_literal_content_token1, - ACTIONS(8898), 1, + ACTIONS(9382), 1, aux_sym_string_literal_content_token2, - ACTIONS(8934), 1, + ACTIONS(9497), 1, anon_sym_DQUOTE, - STATE(6671), 1, + STATE(6667), 1, aux_sym_string_literal_repeat1, - STATE(6816), 1, + STATE(6788), 1, sym_string_literal_content, - ACTIONS(8900), 2, + ACTIONS(9384), 2, sym_escape_sequence, sym_grit_metavariable, - STATE(6674), 9, + STATE(6697), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753651,41 +746540,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [105980] = 17, - ACTIONS(8511), 1, + [107557] = 17, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(8896), 1, + ACTIONS(9380), 1, aux_sym_string_literal_content_token1, - ACTIONS(8898), 1, + ACTIONS(9382), 1, aux_sym_string_literal_content_token2, - ACTIONS(8936), 1, + ACTIONS(9499), 1, anon_sym_DQUOTE, - STATE(6655), 1, + STATE(6656), 1, aux_sym_string_literal_repeat1, - STATE(6816), 1, + STATE(6788), 1, sym_string_literal_content, - ACTIONS(8900), 2, + ACTIONS(9384), 2, sym_escape_sequence, sym_grit_metavariable, - STATE(6675), 9, + STATE(6698), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753695,7 +746584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106041] = 17, + [107618] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753716,20 +746605,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_LBRACE, - ACTIONS(8890), 1, - anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_when, - STATE(1942), 1, - sym_block, - STATE(6762), 1, - aux_sym_catch_clause_repeat1, - STATE(7130), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6676), 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, @@ -753739,7 +746623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106102] = 17, + [107669] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753760,20 +746644,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7412), 1, - anon_sym_LBRACE, - ACTIONS(8890), 1, + ACTIONS(9503), 6, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_when, - STATE(2114), 1, - sym_block, - STATE(6704), 1, - aux_sym_catch_clause_repeat1, - STATE(7130), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6677), 9, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6700), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753783,7 +746661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106163] = 13, + [107719] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753804,15 +746682,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8940), 1, - anon_sym_COMMA, - ACTIONS(8938), 5, - anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9505), 1, + anon_sym_SEMI, + ACTIONS(9507), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6678), 10, + 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, @@ -753822,8 +746704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_base_list_repeat1, - [106216] = 14, + [107779] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753844,17 +746725,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8875), 1, - anon_sym_COMMA, - STATE(6678), 1, - aux_sym_base_list_repeat1, - ACTIONS(8943), 5, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9363), 1, anon_sym_COLON, - anon_sym_LPAREN, + ACTIONS(9509), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6679), 9, + STATE(6922), 1, + sym_base_list, + STATE(6971), 1, + 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, @@ -753864,7 +746747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106271] = 14, + [107839] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753885,17 +746768,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8947), 1, - anon_sym_LPAREN, - STATE(6740), 1, - sym_argument_list, - ACTIONS(8945), 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(6680), 9, + anon_sym_EQ_GT, + STATE(6703), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -753905,7 +746787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106326] = 13, + [107893] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -753926,16 +746808,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8950), 1, - anon_sym_DOT, - ACTIONS(4363), 6, - anon_sym_COLON, - anon_sym_COMMA, - 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(6681), 9, + 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, @@ -753945,41 +746830,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106379] = 17, - ACTIONS(8511), 1, + [107953] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(8896), 1, - aux_sym_string_literal_content_token1, - ACTIONS(8898), 1, - aux_sym_string_literal_content_token2, - ACTIONS(8952), 1, - anon_sym_DQUOTE, - STATE(6667), 1, - aux_sym_string_literal_repeat1, - STATE(6816), 1, - sym_string_literal_content, - ACTIONS(8900), 2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6682), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9493), 1, + sym_interpolation_end_quote, + ACTIONS(9515), 1, + sym_interpolation_string_content, + 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, @@ -753989,7 +746873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106440] = 17, + [108013] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754010,108 +746894,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3217), 1, + ACTIONS(9517), 6, + anon_sym_SEMI, + anon_sym_EQ, anon_sym_LBRACK, - ACTIONS(5464), 1, - aux_sym_preproc_else_token1, - ACTIONS(5466), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8954), 1, - aux_sym_preproc_if_token3, - STATE(6788), 1, - sym_attribute_list, - STATE(7921), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6683), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [106501] = 17, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(8896), 1, - aux_sym_string_literal_content_token1, - ACTIONS(8898), 1, - aux_sym_string_literal_content_token2, - ACTIONS(8956), 1, - anon_sym_DQUOTE, - STATE(6703), 1, - aux_sym_string_literal_repeat1, - STATE(6816), 1, - sym_string_literal_content, - ACTIONS(8900), 2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6684), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [106562] = 17, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(8896), 1, - aux_sym_string_literal_content_token1, - ACTIONS(8898), 1, - aux_sym_string_literal_content_token2, - ACTIONS(8958), 1, - anon_sym_DQUOTE, - STATE(6701), 1, - aux_sym_string_literal_repeat1, - STATE(6816), 1, - sym_string_literal_content, - ACTIONS(8900), 2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6685), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_in, + STATE(6706), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754121,7 +746911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106623] = 17, + [108063] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754142,20 +746932,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(8960), 1, - sym_interpolation_end_quote, - STATE(6699), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6985), 1, - sym__interpolated_string_content, - STATE(7045), 1, - sym_interpolation, - ACTIONS(8882), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6686), 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, @@ -754165,41 +746949,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106684] = 17, - ACTIONS(8511), 1, + [108113] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(8896), 1, - aux_sym_string_literal_content_token1, - ACTIONS(8898), 1, - aux_sym_string_literal_content_token2, - ACTIONS(8962), 1, - anon_sym_DQUOTE, - STATE(6698), 1, - aux_sym_string_literal_repeat1, - STATE(6816), 1, - sym_string_literal_content, - ACTIONS(8900), 2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6687), 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, @@ -754209,7 +746989,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106745] = 17, + aux_sym_catch_clause_repeat1, + [108169] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754230,20 +747011,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_LBRACE, - ACTIONS(8890), 1, - anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_when, - STATE(1945), 1, - sym_block, - STATE(6676), 1, - aux_sym_catch_clause_repeat1, - STATE(7130), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6688), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9489), 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(6709), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754253,7 +747033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106806] = 17, + [108229] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754274,20 +747054,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8964), 1, - anon_sym_catch, - ACTIONS(8966), 1, - anon_sym_finally, - STATE(6697), 1, - aux_sym_try_statement_repeat1, - STATE(6981), 1, - sym_catch_clause, - STATE(7494), 1, - sym_finally_clause, - ACTIONS(3342), 2, - anon_sym_while, - anon_sym_else, - STATE(6689), 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, @@ -754297,7 +747076,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106867] = 12, + [108289] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754318,15 +747097,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8968), 7, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6690), 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, @@ -754336,7 +747119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106918] = 17, + [108349] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754357,20 +747140,17 @@ 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(5464), 1, - aux_sym_preproc_else_token1, - ACTIONS(5466), 1, - aux_sym_preproc_elif_token1, - STATE(6897), 1, - sym_attribute_list, - STATE(7885), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6691), 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, @@ -754380,7 +747160,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [106979] = 12, + aux_sym_interpolated_string_expression_repeat3, + [108407] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754401,15 +747182,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8970), 7, + ACTIONS(9543), 6, anon_sym_SEMI, anon_sym_COLON, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_LT, anon_sym_where, - anon_sym_EQ_GT, - STATE(6692), 9, + STATE(6713), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754419,7 +747199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107030] = 17, + [108457] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754440,20 +747220,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(8972), 1, - sym_interpolation_end_quote, - STATE(6695), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6985), 1, - sym__interpolated_string_content, - STATE(7045), 1, - sym_interpolation, - ACTIONS(8882), 2, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6693), 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(2709), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6714), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754463,7 +747242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107091] = 12, + [108517] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754484,15 +747263,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8974), 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(6694), 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, @@ -754502,7 +747285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107142] = 17, + [108577] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754523,20 +747306,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(8976), 1, + ACTIONS(9545), 1, sym_interpolation_end_quote, - STATE(6699), 1, - aux_sym_interpolated_string_expression_repeat1, - STATE(6985), 1, - sym__interpolated_string_content, - STATE(7045), 1, - sym_interpolation, - ACTIONS(8882), 2, + ACTIONS(9547), 1, + sym_interpolation_open_brace, + ACTIONS(9550), 1, sym_interpolation_string_content, - sym_escape_sequence, - STATE(6695), 9, + 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, @@ -754546,7 +747326,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107203] = 17, + aux_sym_interpolated_string_expression_repeat2, + [108635] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754567,20 +747348,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(5464), 1, - aux_sym_preproc_else_token1, - ACTIONS(5466), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8978), 1, - aux_sym_preproc_if_token3, - STATE(6840), 1, - sym_attribute_list, - STATE(8040), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6696), 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, @@ -754590,7 +747370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107264] = 17, + [108695] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754611,20 +747391,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8964), 1, - anon_sym_catch, - ACTIONS(8966), 1, - anon_sym_finally, - STATE(6756), 1, - aux_sym_try_statement_repeat1, - STATE(6981), 1, - sym_catch_clause, - STATE(7465), 1, - sym_finally_clause, - ACTIONS(3350), 2, - anon_sym_while, - anon_sym_else, - STATE(6697), 9, + ACTIONS(9555), 1, + anon_sym_COMMA, + ACTIONS(9553), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6718), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754634,39 +747408,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107325] = 16, - ACTIONS(8511), 1, + aux_sym_type_parameter_constraints_clause_repeat1, + [108747] = 17, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(8980), 1, - anon_sym_DQUOTE, - ACTIONS(8982), 1, - aux_sym_string_literal_content_token1, - ACTIONS(8985), 1, - aux_sym_string_literal_content_token2, - STATE(6816), 1, - sym_string_literal_content, - ACTIONS(8988), 2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6698), 10, + 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, @@ -754676,8 +747452,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_string_literal_repeat1, - [107384] = 16, + [108807] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754698,18 +747473,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8994), 1, - sym_interpolation_end_quote, - ACTIONS(8996), 1, + ACTIONS(9394), 1, sym_interpolation_open_brace, - STATE(6985), 1, - sym__interpolated_string_content, - STATE(7045), 1, - sym_interpolation, - ACTIONS(8991), 2, + ACTIONS(9428), 1, + sym_interpolation_end_quote, + ACTIONS(9515), 1, sym_interpolation_string_content, - sym_escape_sequence, - STATE(6699), 10, + 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, @@ -754719,8 +747495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_interpolated_string_expression_repeat1, - [107443] = 12, + [108867] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754741,59 +747516,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4426), 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(6700), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [107494] = 17, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(8896), 1, - aux_sym_string_literal_content_token1, - ACTIONS(8898), 1, - aux_sym_string_literal_content_token2, - ACTIONS(8999), 1, - anon_sym_DQUOTE, - STATE(6698), 1, - aux_sym_string_literal_repeat1, - STATE(6816), 1, - sym_string_literal_content, - ACTIONS(8900), 2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6701), 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, @@ -754803,7 +747538,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107555] = 17, + [108927] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754824,64 +747559,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6899), 1, - anon_sym_LBRACE, - ACTIONS(8890), 1, - anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_when, - STATE(1992), 1, - sym_block, - STATE(6762), 1, - aux_sym_catch_clause_repeat1, - STATE(7130), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6702), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [107616] = 17, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(8896), 1, - aux_sym_string_literal_content_token1, - ACTIONS(8898), 1, - aux_sym_string_literal_content_token2, - ACTIONS(9001), 1, - anon_sym_DQUOTE, - STATE(6698), 1, - aux_sym_string_literal_repeat1, - STATE(6816), 1, - sym_string_literal_content, - ACTIONS(8900), 2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6703), 9, + 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(6722), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -754891,7 +747580,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107677] = 17, + [108985] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754912,20 +747601,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7412), 1, - anon_sym_LBRACE, - ACTIONS(8890), 1, - anon_sym_LPAREN, - ACTIONS(8892), 1, - anon_sym_when, - STATE(2115), 1, - sym_block, - STATE(6762), 1, - aux_sym_catch_clause_repeat1, - STATE(7130), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6704), 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, @@ -754935,7 +747623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107738] = 12, + [109045] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754956,15 +747644,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(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, + anon_sym_LBRACE, + 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, @@ -754974,7 +747666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107789] = 12, + [109105] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -754995,14 +747687,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9005), 6, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6706), 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, @@ -755012,7 +747706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107839] = 17, + [109159] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755033,19 +747727,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(2868), 1, + STATE(2747), 1, sym__function_body, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6707), 9, + STATE(6726), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755055,7 +747749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107899] = 17, + [109219] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755076,19 +747770,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(9560), 1, anon_sym_EQ_GT, - ACTIONS(9007), 1, - anon_sym_SEMI, - ACTIONS(9009), 1, - anon_sym_LBRACE, - STATE(4802), 1, - sym__function_body, - STATE(4886), 1, - sym_block, - STATE(8071), 1, - sym_arrow_expression_clause, - STATE(6708), 9, + 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, @@ -755098,7 +747792,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [107959] = 17, + [109279] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755119,19 +747813,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(2928), 1, - sym__function_body, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6709), 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, @@ -755141,7 +747835,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108019] = 17, + [109339] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755162,19 +747856,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(2890), 1, - sym__function_body, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6710), 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, @@ -755184,7 +747877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108079] = 17, + [109397] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755205,19 +747898,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(2889), 1, + STATE(2815), 1, sym__function_body, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6711), 9, + STATE(6730), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755227,7 +747920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108139] = 16, + [109457] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755248,18 +747941,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7755), 1, - anon_sym_DOT, - ACTIONS(9011), 1, - anon_sym_QMARK, - ACTIONS(4318), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6712), 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(2794), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6731), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755269,7 +747963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108197] = 17, + [109517] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755290,19 +747984,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8884), 1, - sym_interpolation_end_quote, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(9013), 1, - sym_interpolation_string_content, - STATE(6755), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(7124), 1, - sym__interpolated_verbatim_string_content, - STATE(7352), 1, - sym_interpolation, - STATE(6713), 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, @@ -755312,7 +748001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108257] = 17, + [109567] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755333,19 +748022,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(8861), 1, - anon_sym_COLON, - ACTIONS(9015), 1, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9307), 1, + anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(7013), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7016), 1, - sym_base_list, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(6714), 9, + 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, @@ -755355,7 +748044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108317] = 17, + [109627] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755376,19 +748065,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(9017), 1, - sym_interpolation_end_quote, - ACTIONS(9019), 1, - sym_interpolation_string_content, - STATE(6759), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(7310), 1, - sym_interpolation, - STATE(7371), 1, - sym__interpolated_raw_string_content, - STATE(6715), 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, @@ -755398,7 +748082,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108377] = 14, + [109677] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755419,16 +748103,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3958), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(9021), 1, - anon_sym_EQ, - ACTIONS(4163), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_or, - STATE(6716), 9, + ACTIONS(9505), 1, + anon_sym_SEMI, + ACTIONS(9507), 1, + anon_sym_LBRACE, + STATE(4033), 1, + sym__function_body, + STATE(4093), 1, + sym_block, + STATE(8070), 1, + sym_arrow_expression_clause, + STATE(6735), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755438,7 +748125,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108431] = 12, + [109737] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755459,14 +748146,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9023), 6, - anon_sym_SEMI, - anon_sym_EQ, + 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, - anon_sym_RPAREN, - anon_sym_in, - STATE(6717), 9, + STATE(6736), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755476,7 +748168,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108481] = 17, + [109797] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755497,19 +748189,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4318), 1, - anon_sym_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7755), 1, - anon_sym_DOT, - ACTIONS(9011), 1, - anon_sym_QMARK, - ACTIONS(9025), 1, - anon_sym_COMMA, - STATE(6718), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9363), 1, + anon_sym_COLON, + ACTIONS(9578), 1, + anon_sym_LBRACE, + 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, @@ -755519,7 +748211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108541] = 13, + [109857] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755540,14 +748232,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9029), 1, + ACTIONS(8524), 1, + anon_sym_DOT, + ACTIONS(9357), 1, anon_sym_COMMA, - ACTIONS(9027), 4, + STATE(6839), 1, + aux_sym_record_base_repeat1, + ACTIONS(9580), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_where, - anon_sym_EQ_GT, - STATE(6719), 10, + STATE(6738), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755557,8 +748252,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, - [108593] = 17, + [109913] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755579,19 +748273,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(2965), 1, - sym__function_body, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6720), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9531), 1, + sym_interpolation_string_content, + ACTIONS(9582), 1, + sym_interpolation_end_quote, + STATE(6728), 1, + aux_sym_interpolated_string_expression_repeat3, + STATE(7299), 1, + sym__interpolated_raw_string_content, + STATE(7301), 1, + sym_interpolation, + STATE(6739), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755601,7 +748295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108653] = 12, + [109973] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755622,14 +748316,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9032), 6, - anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - STATE(6721), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9531), 1, + sym_interpolation_string_content, + 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(6740), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755639,7 +748338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108703] = 16, + [110033] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755660,18 +748359,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7764), 1, - anon_sym_LT, - ACTIONS(7785), 1, - anon_sym_COLON_COLON, - ACTIONS(9034), 1, - anon_sym_EQ, - STATE(2216), 1, - sym_type_argument_list, - ACTIONS(3953), 2, - anon_sym_SEMI, - anon_sym_DOT, - STATE(6722), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9468), 1, + sym_interpolation_end_quote, + 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(6741), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755681,7 +748381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108761] = 14, + [110093] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755702,16 +748402,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9038), 1, - anon_sym_COMMA, - STATE(6764), 1, - aux_sym_type_parameter_constraints_clause_repeat1, - ACTIONS(9036), 4, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9307), 1, anon_sym_SEMI, + ACTIONS(9309), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6723), 9, + STATE(2629), 1, + sym_block, + STATE(2909), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6742), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755721,7 +748424,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108815] = 13, + [110153] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755742,15 +748445,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9042), 1, - anon_sym_QMARK, - ACTIONS(9040), 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(6724), 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, @@ -755760,7 +748467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108867] = 17, + [110213] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755781,19 +748488,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(3053), 1, - sym__function_body, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6725), 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, @@ -755803,7 +748510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108927] = 17, + [110273] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755824,19 +748531,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9044), 1, + ACTIONS(9590), 1, + anon_sym_QMARK, + ACTIONS(9588), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_where, anon_sym_EQ_GT, - ACTIONS(9046), 1, - anon_sym_when, - ACTIONS(9048), 1, - anon_sym_and, - ACTIONS(9050), 1, - anon_sym_or, - STATE(1277), 1, - sym_switch_arrow, - STATE(7568), 1, - sym_when_clause, - STATE(6726), 9, + STATE(6745), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755846,7 +748549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [108987] = 17, + [110325] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755867,19 +748570,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(9019), 1, - sym_interpolation_string_content, - ACTIONS(9052), 1, - sym_interpolation_end_quote, - STATE(6730), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(7310), 1, - sym_interpolation, - STATE(7371), 1, - sym__interpolated_raw_string_content, - STATE(6727), 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, @@ -755889,7 +748587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109047] = 17, + [110375] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755910,19 +748608,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(8976), 1, - sym_interpolation_end_quote, - ACTIONS(9013), 1, - sym_interpolation_string_content, - STATE(6755), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(7124), 1, - sym__interpolated_verbatim_string_content, - STATE(7352), 1, - sym_interpolation, - STATE(6728), 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(2721), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6747), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755932,7 +748630,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109107] = 12, + [110435] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755953,14 +748651,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9054), 6, + ACTIONS(9596), 1, + anon_sym_where, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9594), 3, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - STATE(6729), 9, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6748), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -755970,7 +748669,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109157] = 17, + aux_sym__class_declaration_initializer_repeat4, + [110489] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -755991,19 +748691,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(9019), 1, - sym_interpolation_string_content, - ACTIONS(9056), 1, - sym_interpolation_end_quote, - STATE(6759), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(7310), 1, - sym_interpolation, - STATE(7371), 1, - sym__interpolated_raw_string_content, - STATE(6730), 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(2837), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6749), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756013,7 +748713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109217] = 17, + [110549] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756034,19 +748734,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, - ACTIONS(8861), 1, - anon_sym_COLON, - ACTIONS(9058), 1, + 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, - STATE(6929), 1, - sym_base_list, - STATE(6972), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(6731), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6750), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756056,7 +748753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109277] = 17, + [110603] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756077,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(2973), 1, - sym__function_body, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6732), 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, @@ -756099,7 +748796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109337] = 17, + [110663] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756120,19 +748817,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(9007), 1, - anon_sym_SEMI, - ACTIONS(9009), 1, - anon_sym_LBRACE, - STATE(4799), 1, - sym__function_body, - STATE(4886), 1, - sym_block, - STATE(8071), 1, - sym_arrow_expression_clause, - STATE(6733), 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, @@ -756142,7 +748839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109397] = 17, + [110723] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756163,19 +748860,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(2934), 1, - sym__function_body, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6734), 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, @@ -756185,7 +748878,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109457] = 17, + aux_sym_try_statement_repeat1, + [110777] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756206,19 +748900,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, + ACTIONS(9394), 1, sym_interpolation_open_brace, - ACTIONS(8972), 1, - sym_interpolation_end_quote, - ACTIONS(9013), 1, + ACTIONS(9531), 1, sym_interpolation_string_content, - STATE(6728), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(7124), 1, - sym__interpolated_verbatim_string_content, - STATE(7352), 1, + 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(6735), 9, + STATE(6754), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756228,40 +748922,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109517] = 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(8745), 1, - anon_sym_where, - ACTIONS(8861), 1, - anon_sym_COLON, - ACTIONS(9060), 1, - anon_sym_LBRACE, - STATE(6989), 1, - sym_base_list, - STATE(6990), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(6736), 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, @@ -756271,40 +748961,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109577] = 17, - 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(8720), 1, - anon_sym_EQ_GT, - ACTIONS(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(3007), 1, - sym__function_body, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6737), 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, @@ -756314,7 +749000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109637] = 17, + [110941] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756335,19 +749021,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(2962), 1, - sym__function_body, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6738), 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, @@ -756357,7 +749043,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109697] = 17, + [111001] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756378,19 +749064,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(8960), 1, - sym_interpolation_end_quote, - ACTIONS(9013), 1, - sym_interpolation_string_content, - STATE(6755), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(7124), 1, - sym__interpolated_verbatim_string_content, - STATE(7352), 1, - sym_interpolation, - STATE(6739), 9, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + 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, @@ -756400,7 +749084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109757] = 12, + [111057] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756421,14 +749105,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9062), 6, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9363), 1, anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(9610), 1, anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6740), 9, + 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, @@ -756438,7 +749127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109807] = 17, + [111117] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756459,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(2825), 1, + STATE(2691), 1, sym__function_body, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6741), 9, + STATE(6760), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756481,7 +749170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109867] = 17, + [111177] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756502,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 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(2654), 1, - sym_block, - STATE(2994), 1, - sym__function_body, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6742), 9, + anon_sym_where, + STATE(6761), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756524,7 +749212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109927] = 17, + [111235] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756545,19 +749233,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(9007), 1, + 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, - ACTIONS(9009), 1, - anon_sym_LBRACE, - STATE(4803), 1, - sym__function_body, - STATE(4886), 1, - sym_block, - STATE(8071), 1, - sym_arrow_expression_clause, - STATE(6743), 9, + anon_sym_DOT, + STATE(6762), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756567,36 +749254,39 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [109987] = 13, - ACTIONS(3189), 1, - aux_sym_preproc_if_token2, - ACTIONS(8511), 1, + [111293] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(3187), 5, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6744), 9, + 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, @@ -756606,7 +749296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110039] = 17, + [111351] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756627,19 +749317,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(9019), 1, - sym_interpolation_string_content, - ACTIONS(9064), 1, - sym_interpolation_end_quote, - STATE(6751), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(7310), 1, - sym_interpolation, - STATE(7371), 1, - sym__interpolated_raw_string_content, - STATE(6745), 9, + ACTIONS(8283), 1, + anon_sym_LT, + ACTIONS(8316), 1, + anon_sym_COLON_COLON, + ACTIONS(9618), 1, + anon_sym_EQ, + 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, @@ -756649,7 +749338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110099] = 16, + [111409] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756670,18 +749359,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7764), 1, - anon_sym_LT, - ACTIONS(7785), 1, - anon_sym_COLON_COLON, - ACTIONS(9066), 1, - anon_sym_EQ, - STATE(2216), 1, - sym_type_argument_list, - ACTIONS(3953), 2, + ACTIONS(9620), 6, anon_sym_SEMI, - anon_sym_DOT, - STATE(6746), 9, + anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_where, + STATE(6765), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756691,7 +749376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110157] = 17, + [111459] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756712,19 +749397,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, + ACTIONS(9394), 1, sym_interpolation_open_brace, - ACTIONS(8904), 1, + ACTIONS(9447), 1, sym_interpolation_end_quote, - ACTIONS(9013), 1, + ACTIONS(9515), 1, sym_interpolation_string_content, - STATE(6755), 1, + STATE(6723), 1, aux_sym_interpolated_string_expression_repeat2, - STATE(7124), 1, + STATE(7314), 1, sym__interpolated_verbatim_string_content, - STATE(7352), 1, + STATE(7315), 1, sym_interpolation, - STATE(6747), 9, + STATE(6766), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756734,7 +749419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110217] = 17, + [111519] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756755,19 +749440,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(8809), 1, + ACTIONS(9307), 1, anon_sym_SEMI, - ACTIONS(8811), 1, + ACTIONS(9309), 1, anon_sym_LBRACE, - STATE(2654), 1, + STATE(2629), 1, sym_block, - STATE(2956), 1, + STATE(2904), 1, sym__function_body, - STATE(7765), 1, + STATE(7773), 1, sym_arrow_expression_clause, - STATE(6748), 9, + STATE(6767), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756777,7 +749462,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110277] = 16, + [111579] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756798,18 +749483,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3958), 1, + ACTIONS(9218), 1, anon_sym_EQ_GT, - ACTIONS(5422), 1, - anon_sym_LBRACK, - ACTIONS(8714), 1, - anon_sym_EQ, - STATE(7368), 1, - sym_bracketed_argument_list, - ACTIONS(8712), 2, + ACTIONS(9307), 1, anon_sym_SEMI, - anon_sym_COMMA, - STATE(6749), 9, + ACTIONS(9309), 1, + anon_sym_LBRACE, + 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, @@ -756819,7 +749505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110335] = 12, + [111639] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756840,14 +749526,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9068), 6, + ACTIONS(9218), 1, + anon_sym_EQ_GT, + ACTIONS(9307), 1, anon_sym_SEMI, - anon_sym_EQ, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_in, - STATE(6750), 9, + ACTIONS(9309), 1, + anon_sym_LBRACE, + STATE(2629), 1, + sym_block, + STATE(2897), 1, + sym__function_body, + STATE(7773), 1, + sym_arrow_expression_clause, + STATE(6769), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756857,7 +749548,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110385] = 17, + [111699] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756878,19 +749569,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, + ACTIONS(9394), 1, sym_interpolation_open_brace, - ACTIONS(9019), 1, + ACTIONS(9531), 1, sym_interpolation_string_content, - ACTIONS(9070), 1, + ACTIONS(9622), 1, sym_interpolation_end_quote, - STATE(6759), 1, + STATE(6771), 1, aux_sym_interpolated_string_expression_repeat3, - STATE(7310), 1, - sym_interpolation, - STATE(7371), 1, + STATE(7299), 1, sym__interpolated_raw_string_content, - STATE(6751), 9, + STATE(7301), 1, + sym_interpolation, + STATE(6770), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756900,7 +749591,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110445] = 12, + [111759] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756921,14 +749612,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9072), 6, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6752), 9, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9531), 1, + sym_interpolation_string_content, + ACTIONS(9624), 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(6771), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756938,7 +749634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110495] = 17, + [111819] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -756959,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(8809), 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(8811), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(3032), 1, - sym__function_body, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6753), 9, + anon_sym_DOT, + STATE(6772), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -756981,7 +749676,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110555] = 17, + [111877] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757002,19 +749697,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(8916), 1, + ACTIONS(9392), 1, sym_interpolation_end_quote, - ACTIONS(9013), 1, + ACTIONS(9394), 1, + sym_interpolation_open_brace, + ACTIONS(9515), 1, sym_interpolation_string_content, - STATE(6739), 1, + STATE(6774), 1, aux_sym_interpolated_string_expression_repeat2, - STATE(7124), 1, + STATE(7314), 1, sym__interpolated_verbatim_string_content, - STATE(7352), 1, + STATE(7315), 1, sym_interpolation, - STATE(6754), 9, + STATE(6773), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757024,7 +749719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110615] = 16, + [111937] = 17, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757045,17 +749740,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9074), 1, - sym_interpolation_end_quote, - ACTIONS(9076), 1, + ACTIONS(9394), 1, sym_interpolation_open_brace, - ACTIONS(9079), 1, + ACTIONS(9396), 1, + sym_interpolation_end_quote, + ACTIONS(9515), 1, sym_interpolation_string_content, - STATE(7124), 1, + STATE(6716), 1, + aux_sym_interpolated_string_expression_repeat2, + STATE(7314), 1, sym__interpolated_verbatim_string_content, - STATE(7352), 1, + STATE(7315), 1, sym_interpolation, - STATE(6755), 10, + STATE(6774), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757065,37 +749762,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_interpolated_string_expression_repeat2, - [110673] = 14, - 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(9082), 1, - anon_sym_catch, - STATE(6981), 1, - sym_catch_clause, - ACTIONS(3360), 3, - anon_sym_while, - anon_sym_finally, - anon_sym_else, - STATE(6756), 10, + 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, @@ -757105,8 +749802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_try_statement_repeat1, - [110727] = 16, + [112052] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757127,18 +749823,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7764), 1, - anon_sym_LT, - ACTIONS(7785), 1, - anon_sym_COLON_COLON, - ACTIONS(9085), 1, - anon_sym_EQ, - STATE(2216), 1, - sym_type_argument_list, - ACTIONS(3953), 2, + ACTIONS(9638), 1, + anon_sym_COLON, + STATE(7099), 1, + sym_constructor_initializer, + ACTIONS(9636), 3, anon_sym_SEMI, - anon_sym_DOT, - STATE(6757), 9, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6776), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757148,7 +749841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110785] = 17, + [112105] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757169,19 +749862,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(8930), 1, - sym_interpolation_end_quote, - ACTIONS(9013), 1, - sym_interpolation_string_content, - STATE(6747), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(7124), 1, - sym__interpolated_verbatim_string_content, - STATE(7352), 1, - sym_interpolation, - STATE(6758), 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, @@ -757191,7 +749878,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110845] = 16, + [112154] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757212,17 +749899,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9087), 1, - sym_interpolation_end_quote, - ACTIONS(9089), 1, - sym_interpolation_open_brace, - ACTIONS(9092), 1, - sym_interpolation_string_content, - STATE(7310), 1, - sym_interpolation, - STATE(7371), 1, - sym__interpolated_raw_string_content, - STATE(6759), 10, + 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, @@ -757232,8 +749919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_interpolated_string_expression_repeat3, - [110903] = 15, + [112211] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757254,17 +749940,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_EQ_GT, - ACTIONS(9021), 1, - anon_sym_EQ, - ACTIONS(9095), 1, - anon_sym_RPAREN, - ACTIONS(4163), 3, - anon_sym_COMMA, - anon_sym_and, - anon_sym_or, - STATE(6760), 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, @@ -757274,40 +749960,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [110959] = 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(8886), 1, - sym_interpolation_open_brace, - ACTIONS(9019), 1, - sym_interpolation_string_content, - ACTIONS(9097), 1, - sym_interpolation_end_quote, - STATE(6763), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(7310), 1, - sym_interpolation, - STATE(7371), 1, - sym__interpolated_raw_string_content, - STATE(6761), 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, @@ -757317,7 +749999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111019] = 15, + [112321] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757338,16 +750020,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9099), 1, - anon_sym_LPAREN, - ACTIONS(9102), 1, - anon_sym_LBRACE, - ACTIONS(9104), 1, - anon_sym_when, - STATE(7130), 2, - sym_catch_declaration, - sym_catch_filter_clause, - STATE(6762), 10, + 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, @@ -757357,41 +750040,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_catch_clause_repeat1, - [111075] = 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(8886), 1, - sym_interpolation_open_brace, - ACTIONS(9019), 1, - sym_interpolation_string_content, - ACTIONS(9107), 1, - sym_interpolation_end_quote, - STATE(6759), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(7310), 1, - sym_interpolation, - STATE(7371), 1, - sym__interpolated_raw_string_content, - STATE(6763), 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, @@ -757401,7 +750080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111135] = 14, + [112433] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757422,16 +750101,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9038), 1, - anon_sym_COMMA, - STATE(6719), 1, - aux_sym_type_parameter_constraints_clause_repeat1, - ACTIONS(9109), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6764), 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, @@ -757441,7 +750119,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111189] = 15, + aux_sym_switch_body_repeat1, + [112488] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757462,17 +750141,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7951), 1, - anon_sym_DOT, - ACTIONS(8867), 1, - anon_sym_COMMA, - STATE(6837), 1, - aux_sym_record_base_repeat1, - ACTIONS(9111), 3, - anon_sym_SEMI, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9666), 1, anon_sym_LBRACE, - anon_sym_where, - STATE(6765), 9, + STATE(4491), 1, + sym_block, + STATE(7380), 1, + sym_parameter_list, + STATE(6784), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757482,39 +750161,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111245] = 16, - ACTIONS(3), 1, + [112545] = 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(7764), 1, - anon_sym_LT, - ACTIONS(7785), 1, - anon_sym_COLON_COLON, - ACTIONS(9113), 1, - anon_sym_EQ, - STATE(2216), 1, - sym_type_argument_list, - ACTIONS(3953), 2, - anon_sym_SEMI, - anon_sym_DOT, - STATE(6766), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + 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, @@ -757524,7 +750201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111303] = 17, + [112600] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757545,19 +750222,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(8914), 1, - sym_interpolation_end_quote, - ACTIONS(9013), 1, - sym_interpolation_string_content, - STATE(6773), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(7124), 1, - sym__interpolated_verbatim_string_content, - STATE(7352), 1, - sym_interpolation, - STATE(6767), 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(9670), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6786), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757567,7 +750241,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111363] = 14, + [112655] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757588,15 +750262,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9117), 1, + ACTIONS(9243), 1, anon_sym_where, - STATE(7024), 1, + STATE(6877), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, sym_type_parameter_constraints_clause, - ACTIONS(9115), 3, + ACTIONS(9670), 2, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6768), 10, + STATE(6787), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757606,40 +750281,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__class_declaration_initializer_repeat4, - [111417] = 16, - ACTIONS(3), 1, + [112710] = 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(5520), 1, - anon_sym_LPAREN, - ACTIONS(9120), 1, - anon_sym_COMMA, - STATE(7023), 1, - aux_sym_base_list_repeat1, - STATE(7030), 1, - sym_argument_list, - ACTIONS(8873), 2, - anon_sym_LBRACE, - anon_sym_where, - STATE(6769), 9, + 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, @@ -757649,7 +750318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111475] = 17, + [112759] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757670,19 +750339,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(8910), 1, - sym_interpolation_end_quote, - ACTIONS(9013), 1, - sym_interpolation_string_content, - STATE(6713), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(7124), 1, - sym__interpolated_verbatim_string_content, - STATE(7352), 1, - sym_interpolation, - STATE(6770), 9, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9674), 1, + anon_sym_LBRACE, + STATE(3321), 1, + sym_block, + STATE(7440), 1, + sym_parameter_list, + STATE(6789), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757692,40 +750359,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111535] = 17, - ACTIONS(3), 1, + [112816] = 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(8886), 1, - sym_interpolation_open_brace, - ACTIONS(9019), 1, - sym_interpolation_string_content, - ACTIONS(9122), 1, - sym_interpolation_end_quote, - STATE(6772), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(7310), 1, - sym_interpolation, - STATE(7371), 1, - sym__interpolated_raw_string_content, - STATE(6771), 9, + 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, @@ -757735,40 +750399,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111595] = 17, - ACTIONS(3), 1, + [112871] = 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(8886), 1, - sym_interpolation_open_brace, - ACTIONS(9019), 1, - sym_interpolation_string_content, - ACTIONS(9124), 1, - sym_interpolation_end_quote, - STATE(6759), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(7310), 1, - sym_interpolation, - STATE(7371), 1, - sym__interpolated_raw_string_content, - STATE(6772), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9650), 1, + anon_sym_PIPE_PIPE, + 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, @@ -757778,7 +750439,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111655] = 17, + [112926] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757799,19 +750460,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8886), 1, - sym_interpolation_open_brace, - ACTIONS(8906), 1, - sym_interpolation_end_quote, - ACTIONS(9013), 1, - sym_interpolation_string_content, - STATE(6755), 1, - aux_sym_interpolated_string_expression_repeat2, - STATE(7124), 1, - sym__interpolated_verbatim_string_content, - STATE(7352), 1, - sym_interpolation, - STATE(6773), 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(7712), 1, + sym_declaration_list, + STATE(6792), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757821,40 +750480,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111715] = 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(8886), 1, - sym_interpolation_open_brace, - ACTIONS(9019), 1, - sym_interpolation_string_content, - ACTIONS(9126), 1, - sym_interpolation_end_quote, - STATE(6715), 1, - aux_sym_interpolated_string_expression_repeat3, - STATE(7310), 1, - sym_interpolation, - STATE(7371), 1, - sym__interpolated_raw_string_content, - STATE(6774), 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, @@ -757864,7 +750518,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111775] = 17, + [113034] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757885,19 +750539,16 @@ 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(8809), 1, + 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, - ACTIONS(8811), 1, anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(2912), 1, - sym__function_body, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6775), 9, + STATE(6794), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757907,7 +750558,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111835] = 17, + [113089] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757928,19 +750579,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(2997), 1, - sym__function_body, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6776), 9, + ACTIONS(9680), 1, + anon_sym_COMMA, + ACTIONS(9682), 1, + anon_sym_RBRACK, + ACTIONS(9684), 1, + anon_sym_and, + ACTIONS(9686), 1, + anon_sym_or, + STATE(7073), 1, + aux_sym_list_pattern_repeat1, + STATE(6795), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757950,7 +750599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111895] = 17, + [113146] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -757971,19 +750620,16 @@ 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(9007), 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(9678), 2, anon_sym_SEMI, - ACTIONS(9009), 1, anon_sym_LBRACE, - STATE(4827), 1, - sym__function_body, - STATE(4886), 1, - sym_block, - STATE(8071), 1, - sym_arrow_expression_clause, - STATE(6777), 9, + STATE(6796), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -757993,35 +750639,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [111955] = 12, - 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(9128), 6, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6778), 9, + 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, @@ -758031,36 +750679,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112005] = 13, - ACTIONS(3700), 1, - aux_sym_preproc_if_token2, - ACTIONS(8511), 1, + [113256] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(3702), 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(6779), 9, + 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, @@ -758070,7 +750719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112057] = 17, + [113311] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758091,19 +750740,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(8809), 1, - anon_sym_SEMI, - ACTIONS(8811), 1, - anon_sym_LBRACE, - STATE(2654), 1, - sym_block, - STATE(3021), 1, - sym__function_body, - STATE(7765), 1, - sym_arrow_expression_clause, - STATE(6780), 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, @@ -758113,7 +750760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112117] = 15, + [113368] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758134,16 +750781,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5422), 1, - anon_sym_LBRACK, - ACTIONS(8773), 1, - anon_sym_EQ, - STATE(7368), 1, - sym_bracketed_argument_list, - ACTIONS(8712), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6781), 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(7707), 1, + sym_declaration_list, + STATE(6800), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758153,38 +750801,77 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112172] = 16, - 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(7210), 1, - anon_sym_STAR, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(9130), 1, - anon_sym_LBRACE, - STATE(5268), 1, - sym_block, - STATE(7406), 1, - sym_parameter_list, - STATE(6782), 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, @@ -758194,7 +750881,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112229] = 16, + [113535] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758215,17 +750902,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9132), 1, - anon_sym_COMMA, - ACTIONS(9134), 1, - anon_sym_RBRACK, - ACTIONS(9136), 1, - anon_sym_and, - ACTIONS(9138), 1, - anon_sym_or, - STATE(7106), 1, - aux_sym_list_pattern_repeat1, - STATE(6783), 9, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9674), 1, + anon_sym_LBRACE, + STATE(3273), 1, + sym_block, + STATE(7499), 1, + sym_parameter_list, + STATE(6803), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758235,7 +750922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112286] = 16, + [113592] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758256,17 +750943,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_EQ_GT, - ACTIONS(8297), 1, + ACTIONS(6063), 1, anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_LT, - STATE(7038), 1, - sym_parameter_list, - STATE(7560), 1, - sym_type_parameter_list, - STATE(6784), 9, + 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, @@ -758276,7 +750963,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112343] = 14, + [113649] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758297,15 +750984,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5520), 1, - anon_sym_LPAREN, - STATE(6740), 1, - sym_argument_list, - ACTIONS(8945), 3, + ACTIONS(9553), 5, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_where, - STATE(6785), 9, + anon_sym_EQ_GT, + STATE(6805), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758315,7 +751000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112396] = 16, + [113698] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758336,17 +751021,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(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7813), 1, - sym_declaration_list, - STATE(6786), 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, @@ -758356,37 +751040,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112453] = 15, - ACTIONS(8511), 1, + [113753] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9142), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9144), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9146), 1, + ACTIONS(9706), 1, aux_sym_preproc_if_token2, - ACTIONS(9140), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6787), 9, + STATE(6807), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758396,7 +751080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112508] = 15, + [113808] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758417,16 +751101,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5464), 1, - aux_sym_preproc_else_token1, - ACTIONS(5466), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8025), 1, - aux_sym_preproc_if_token3, - STATE(7891), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6788), 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, @@ -758436,37 +751121,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112563] = 15, - ACTIONS(8511), 1, + [113865] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9148), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6789), 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(9708), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6809), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758476,37 +751161,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112618] = 15, - ACTIONS(8511), 1, + [113920] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9150), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6790), 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, @@ -758516,37 +751201,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112673] = 15, - ACTIONS(8511), 1, + [113975] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9152), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6791), 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, @@ -758556,37 +751241,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112728] = 15, - ACTIONS(8511), 1, + [114030] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9142), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9144), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9154), 1, + ACTIONS(9712), 1, aux_sym_preproc_if_token2, - ACTIONS(9140), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6792), 9, + STATE(6812), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758596,37 +751281,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112783] = 15, - ACTIONS(8511), 1, + [114085] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9156), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6793), 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, @@ -758636,7 +751322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112838] = 15, + [114142] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758657,16 +751343,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5464), 1, - aux_sym_preproc_else_token1, - ACTIONS(5466), 1, - aux_sym_preproc_elif_token1, - ACTIONS(8313), 1, - aux_sym_preproc_if_token3, - STATE(7946), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6794), 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(9716), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6814), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758676,37 +751362,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112893] = 15, - ACTIONS(3), 1, + [114197] = 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(5464), 1, - aux_sym_preproc_else_token1, - ACTIONS(5466), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9158), 1, - aux_sym_preproc_if_token3, - STATE(7787), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6795), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9718), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6815), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758716,38 +751402,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [112948] = 16, - ACTIONS(3), 1, + [114252] = 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(7210), 1, - anon_sym_STAR, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(9160), 1, - anon_sym_LBRACE, - STATE(5680), 1, - sym_block, - STATE(7641), 1, - sym_parameter_list, - STATE(6796), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9720), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6816), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758757,7 +751442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113005] = 16, + [114307] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758778,17 +751463,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9162), 1, - anon_sym_RBRACE, - ACTIONS(9164), 1, - anon_sym_case, - ACTIONS(9166), 1, - anon_sym_default, - STATE(6885), 1, - aux_sym_switch_body_repeat1, - STATE(7156), 1, - sym_switch_section, - STATE(6797), 9, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9722), 1, + anon_sym_LBRACE, + STATE(4234), 1, + sym_block, + STATE(7455), 1, + sym_parameter_list, + STATE(6817), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758798,7 +751483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113062] = 16, + [114364] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758819,17 +751504,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7210), 1, - anon_sym_STAR, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(9160), 1, - anon_sym_LBRACE, - STATE(5649), 1, - sym_block, - STATE(7383), 1, - sym_parameter_list, - STATE(6798), 9, + ACTIONS(9684), 1, + anon_sym_and, + ACTIONS(9686), 1, + anon_sym_or, + ACTIONS(9724), 1, + anon_sym_COMMA, + 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, @@ -758839,37 +751524,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113119] = 15, - ACTIONS(8511), 1, + [114421] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9168), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6799), 9, + ACTIONS(8524), 1, + anon_sym_DOT, + ACTIONS(9728), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_where, + STATE(6819), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758879,7 +751562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113174] = 14, + [114472] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758900,15 +751583,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9172), 1, - anon_sym_COLON, - STATE(7095), 1, - sym_constructor_initializer, - ACTIONS(9170), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6800), 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, @@ -758918,7 +751603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113227] = 15, + [114529] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758939,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(6845), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - ACTIONS(9174), 2, + ACTIONS(9732), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6801), 9, + STATE(6821), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758958,7 +751643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113282] = 16, + [114584] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -758979,17 +751664,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7210), 1, - anon_sym_STAR, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(9176), 1, + 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(3766), 1, - sym_block, - STATE(7585), 1, - sym_parameter_list, - STATE(6802), 9, + STATE(6822), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -758999,7 +751683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113339] = 16, + [114639] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759020,17 +751704,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7208), 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(9734), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(7210), 1, - anon_sym_STAR, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(4139), 1, - sym_block, - STATE(7391), 1, - sym_parameter_list, - STATE(6803), 9, + STATE(6823), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759040,7 +751723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113396] = 16, + [114694] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759061,17 +751744,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9136), 1, - anon_sym_and, - ACTIONS(9138), 1, - anon_sym_or, - ACTIONS(9178), 1, - anon_sym_COMMA, - ACTIONS(9180), 1, - anon_sym_RBRACK, - STATE(7219), 1, - aux_sym_list_pattern_repeat1, - STATE(6804), 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, @@ -759081,37 +751764,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113453] = 15, - ACTIONS(8511), 1, + [114751] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9142), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9144), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9182), 1, + ACTIONS(9738), 1, aux_sym_preproc_if_token2, - ACTIONS(9140), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6805), 9, + STATE(6825), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759121,7 +751804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113508] = 13, + [114806] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759142,13 +751825,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9186), 1, - anon_sym_COMMA, - ACTIONS(9184), 3, + ACTIONS(9740), 5, anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, anon_sym_where, - STATE(6806), 10, + anon_sym_EQ_GT, + STATE(6826), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759158,8 +751841,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_record_base_repeat1, - [113559] = 13, + [114855] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759180,54 +751862,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7951), 1, - anon_sym_DOT, - ACTIONS(9184), 4, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9742), 1, anon_sym_LBRACE, - anon_sym_where, - STATE(6807), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [113610] = 15, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9189), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6808), 9, + STATE(5774), 1, + sym_block, + STATE(7543), 1, + sym_parameter_list, + STATE(6827), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759237,7 +751882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113665] = 15, + [114912] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759258,16 +751903,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(6768), 1, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - ACTIONS(9191), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6809), 9, + STATE(8069), 1, + sym_declaration_list, + STATE(6828), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759277,7 +751923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113720] = 12, + [114969] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759298,13 +751944,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9193), 5, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7206), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6810), 9, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(3421), 1, + sym_block, + STATE(7553), 1, + sym_parameter_list, + STATE(6829), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759314,37 +751964,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113769] = 15, - ACTIONS(8511), 1, + [115026] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9195), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6811), 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, @@ -759354,37 +752005,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113824] = 15, - ACTIONS(8511), 1, + [115083] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9197), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6812), 9, + ACTIONS(6063), 1, + anon_sym_LPAREN, + STATE(6700), 1, + sym_argument_list, + ACTIONS(9449), 3, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_where, + STATE(6831), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759394,7 +752044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113879] = 15, + [115136] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759415,16 +752065,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(6768), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - ACTIONS(9174), 2, + ACTIONS(9746), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6813), 9, + STATE(6832), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759434,34 +752084,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113934] = 12, - ACTIONS(8511), 1, + [115191] = 13, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9199), 5, - anon_sym_DQUOTE, - aux_sym_string_literal_content_token1, - aux_sym_string_literal_content_token2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6814), 9, + ACTIONS(9750), 1, + aux_sym_preproc_if_token2, + ACTIONS(9748), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6833), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759471,34 +752122,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [113983] = 12, - ACTIONS(8511), 1, + [115242] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9199), 5, - anon_sym_DQUOTE, - aux_sym_string_literal_content_token1, - aux_sym_string_literal_content_token2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6815), 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, @@ -759508,34 +752163,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114032] = 12, - ACTIONS(8511), 1, + [115299] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9201), 5, - anon_sym_DQUOTE, - aux_sym_string_literal_content_token1, - aux_sym_string_literal_content_token2, - sym_escape_sequence, - sym_grit_metavariable, - STATE(6816), 9, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + 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, @@ -759545,7 +752201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114081] = 16, + [115350] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759566,17 +752222,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7210), 1, - anon_sym_STAR, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(9203), 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(9756), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(4843), 1, - sym_block, - STATE(7484), 1, - sym_parameter_list, - STATE(6817), 9, + STATE(6836), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759586,34 +752241,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114138] = 12, - ACTIONS(3), 1, + [115405] = 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(9205), 5, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_where, - STATE(6818), 9, + ACTIONS(9652), 1, + aux_sym_preproc_if_token2, + ACTIONS(9650), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + STATE(6837), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759623,7 +752279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114187] = 16, + [115456] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759644,57 +752300,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7210), 1, - anon_sym_STAR, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(9176), 1, + ACTIONS(9638), 1, + anon_sym_COLON, + STATE(7090), 1, + sym_constructor_initializer, + ACTIONS(9758), 3, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(3859), 1, - sym_block, - STATE(7605), 1, - sym_parameter_list, - STATE(6819), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [114244] = 15, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9207), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6820), 9, + anon_sym_EQ_GT, + STATE(6838), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759704,37 +752318,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114299] = 15, - ACTIONS(8511), 1, + [115509] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9209), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6821), 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, @@ -759744,37 +752357,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114354] = 15, - ACTIONS(8511), 1, + [115562] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9142), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9144), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9211), 1, + ACTIONS(9762), 1, aux_sym_preproc_if_token2, - ACTIONS(9140), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6822), 9, + STATE(6840), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759784,7 +752397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114409] = 16, + [115617] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759805,17 +752418,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7208), 1, + 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, - ACTIONS(7210), 1, - anon_sym_STAR, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(4138), 1, - sym_block, - STATE(7516), 1, - sym_parameter_list, - STATE(6823), 9, + STATE(6841), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759825,7 +752437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114466] = 15, + [115672] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759846,16 +752458,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(6882), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9213), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6824), 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, @@ -759865,7 +752477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114521] = 15, + [115727] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759886,16 +752498,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(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9215), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6825), 9, + 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, @@ -759905,7 +752517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114576] = 16, + [115782] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759926,17 +752538,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9136), 1, - anon_sym_and, - ACTIONS(9138), 1, - anon_sym_or, - ACTIONS(9217), 1, - anon_sym_COMMA, - ACTIONS(9219), 1, - anon_sym_RBRACK, - STATE(7363), 1, - aux_sym_list_pattern_repeat1, - STATE(6826), 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, @@ -759946,7 +752557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114633] = 15, + [115837] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -759967,16 +752578,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(6768), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - ACTIONS(9213), 2, + ACTIONS(9764), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6827), 9, + STATE(6845), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -759986,7 +752597,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114688] = 16, + [115892] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760007,17 +752618,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(6768), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7784), 1, - sym_declaration_list, - STATE(6828), 9, + ACTIONS(9770), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6846), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760027,37 +752637,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114745] = 15, - ACTIONS(3), 1, + [115947] = 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(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9221), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6829), 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, @@ -760067,7 +752677,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114800] = 15, + [116002] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760088,16 +752698,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(6887), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9223), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6830), 9, + ACTIONS(5206), 1, + aux_sym_preproc_if_token3, + ACTIONS(5208), 1, + aux_sym_preproc_else_token1, + ACTIONS(5210), 1, + aux_sym_preproc_elif_token1, + STATE(7790), 2, + sym_preproc_else_in_attribute_list, + sym_preproc_elif_in_attribute_list, + STATE(6848), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760107,7 +752717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114855] = 15, + [116057] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760128,16 +752738,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(6768), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - ACTIONS(9223), 2, + ACTIONS(9774), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6831), 9, + STATE(6849), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760147,7 +752757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114910] = 16, + [116112] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760168,17 +752778,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7210), 1, - anon_sym_STAR, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(9225), 1, - anon_sym_LBRACE, - STATE(5023), 1, - sym_block, - STATE(7395), 1, - sym_parameter_list, - STATE(6832), 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, @@ -760188,7 +752796,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [114967] = 15, + [116165] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760209,16 +752817,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7987), 1, + ACTIONS(5208), 1, aux_sym_preproc_else_token1, - ACTIONS(7989), 1, + ACTIONS(5210), 1, aux_sym_preproc_elif_token1, - ACTIONS(9227), 1, + ACTIONS(8587), 1, aux_sym_preproc_if_token3, - STATE(7777), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(6833), 9, + 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, @@ -760228,7 +752836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115022] = 16, + [116220] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760249,17 +752857,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(7755), 1, - anon_sym_DOT, - ACTIONS(9025), 1, + ACTIONS(9357), 1, anon_sym_COMMA, - STATE(6834), 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, @@ -760269,37 +752875,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115079] = 15, - ACTIONS(8511), 1, + [116273] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9229), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6835), 9, + ACTIONS(9243), 1, + anon_sym_where, + STATE(6836), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + ACTIONS(9746), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6853), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760309,7 +752915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115134] = 15, + [116328] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760330,16 +752936,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(7206), 1, + anon_sym_LBRACE, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9782), 1, anon_sym_STAR, - ACTIONS(9011), 1, - anon_sym_QMARK, - ACTIONS(4318), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(6836), 9, + STATE(3421), 1, + sym_block, + STATE(7553), 1, + sym_parameter_list, + STATE(6854), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760349,7 +752956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115189] = 14, + [116385] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760370,15 +752977,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8867), 1, - anon_sym_COMMA, - STATE(6806), 1, - aux_sym_record_base_repeat1, - ACTIONS(9231), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - STATE(6837), 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, @@ -760388,37 +752993,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115242] = 15, - ACTIONS(3), 1, + [116434] = 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(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9233), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6838), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9784), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6856), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760428,7 +753033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115297] = 16, + [116489] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760449,17 +753054,14 @@ 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(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7967), 1, - sym_declaration_list, - STATE(6839), 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, @@ -760469,7 +753071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115354] = 15, + [116540] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760490,16 +753092,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_if_token3, - ACTIONS(5464), 1, - aux_sym_preproc_else_token1, - ACTIONS(5466), 1, - aux_sym_preproc_elif_token1, - STATE(7704), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6840), 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(7950), 1, + sym_declaration_list, + STATE(6858), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760509,37 +753112,38 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115409] = 15, - ACTIONS(8511), 1, + [116597] = 16, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9235), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6841), 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, @@ -760549,37 +753153,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115464] = 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(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9237), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6842), 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, @@ -760589,7 +753193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115519] = 15, + [116709] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760610,16 +753214,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(6838), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9237), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6843), 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, @@ -760629,7 +753230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115574] = 16, + [116758] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760650,17 +753251,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9164), 1, - anon_sym_case, - ACTIONS(9166), 1, - anon_sym_default, - ACTIONS(9239), 1, - anon_sym_RBRACE, - STATE(6880), 1, - aux_sym_switch_body_repeat1, - STATE(7156), 1, - sym_switch_section, - STATE(6844), 9, + ACTIONS(9788), 5, + anon_sym_RPAREN, + 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, @@ -760670,7 +753267,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115631] = 15, + [116807] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760691,16 +753288,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(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9241), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6845), 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, @@ -760710,37 +753308,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115686] = 15, - ACTIONS(8511), 1, + [116864] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9142), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9144), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9243), 1, + ACTIONS(9794), 1, aux_sym_preproc_if_token2, - ACTIONS(9140), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6846), 9, + STATE(6864), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760750,7 +753348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115741] = 15, + [116919] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760771,16 +753369,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(6809), 1, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - ACTIONS(9245), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6847), 9, + STATE(7968), 1, + sym_declaration_list, + STATE(6865), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760790,7 +753389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115796] = 15, + [116976] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760811,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(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9245), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6848), 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, @@ -760830,7 +753429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115851] = 16, + [117031] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760851,17 +753450,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8741), 1, + ACTIONS(9588), 5, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(8745), 1, anon_sym_where, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(8005), 1, - sym_declaration_list, - STATE(6849), 9, + anon_sym_EQ_GT, + STATE(6867), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760871,7 +753466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115908] = 14, + [117080] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760892,15 +753487,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9251), 1, - anon_sym_AMP_AMP, - ACTIONS(9247), 2, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - ACTIONS(9249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6850), 9, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9722), 1, + anon_sym_LBRACE, + STATE(4429), 1, + sym_block, + STATE(7436), 1, + sym_parameter_list, + STATE(6868), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760910,7 +753507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [115961] = 13, + [117137] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -760931,14 +753528,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(9247), 3, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6851), 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, @@ -760948,34 +753546,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116012] = 12, - ACTIONS(3), 1, + [117190] = 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(9247), 5, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(9630), 1, anon_sym_AMP_AMP, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - STATE(6852), 9, + ACTIONS(9802), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6870), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -760985,7 +753586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116061] = 12, + [117245] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761006,13 +753607,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9253), 5, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6853), 9, + 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, @@ -761022,37 +753627,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116110] = 15, - ACTIONS(8511), 1, + [117302] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9142), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9144), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9255), 1, + ACTIONS(9806), 1, aux_sym_preproc_if_token2, - ACTIONS(9140), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6854), 9, + STATE(6872), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761062,37 +753667,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116165] = 15, - ACTIONS(8511), 1, + [117357] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9257), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6855), 9, + ACTIONS(9684), 1, + anon_sym_and, + ACTIONS(8039), 4, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_or, + STATE(6873), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761102,7 +753705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116220] = 16, + [117408] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761123,17 +753726,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(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7865), 1, - sym_declaration_list, - STATE(6856), 9, + 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, @@ -761143,36 +753746,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116277] = 14, - ACTIONS(3), 1, + [117465] = 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(8867), 1, - anon_sym_COMMA, - STATE(6806), 1, - aux_sym_record_base_repeat1, - ACTIONS(9259), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - STATE(6857), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9808), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6875), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761182,7 +753786,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116330] = 15, + [117520] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761203,16 +753807,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(6865), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9221), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6858), 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, @@ -761222,7 +753827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116385] = 16, + [117577] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761243,17 +753848,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7208), 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(9810), 2, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(9261), 1, - anon_sym_STAR, - STATE(4138), 1, - sym_block, - STATE(7516), 1, - sym_parameter_list, - STATE(6859), 9, + STATE(6877), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761263,7 +753867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116442] = 16, + [117632] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761283,18 +753887,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(19), 1, aux_sym_preproc_undef_token1, ACTIONS(21), 1, - sym_comment, - ACTIONS(9164), 1, - anon_sym_case, - ACTIONS(9166), 1, - anon_sym_default, - ACTIONS(9263), 1, - anon_sym_RBRACE, - STATE(6885), 1, - aux_sym_switch_body_repeat1, - STATE(7156), 1, - sym_switch_section, - STATE(6860), 9, + sym_comment, + 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, @@ -761304,7 +753908,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116499] = 16, + [117689] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761325,17 +753929,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7210), 1, - anon_sym_STAR, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(9203), 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(9816), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(4794), 1, - sym_block, - STATE(7626), 1, - sym_parameter_list, - STATE(6861), 9, + STATE(6879), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761345,35 +753948,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116556] = 13, - ACTIONS(8511), 1, + [117744] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9253), 1, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9818), 1, aux_sym_preproc_if_token2, - ACTIONS(9265), 4, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6862), 9, + STATE(6880), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761383,35 +753988,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116607] = 13, - ACTIONS(8511), 1, + [117799] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9247), 1, - aux_sym_preproc_if_token2, - ACTIONS(9267), 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(6863), 9, + ACTIONS(9776), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6881), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761421,36 +754028,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116658] = 14, - ACTIONS(8511), 1, + [117854] = 13, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9247), 1, + ACTIONS(9826), 1, aux_sym_preproc_if_token2, - ACTIONS(9140), 2, + ACTIONS(9824), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(9267), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - STATE(6864), 9, + STATE(6882), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761460,7 +754066,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116711] = 15, + [117905] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761481,16 +754087,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(6768), 1, + STATE(6908), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - ACTIONS(9269), 2, + ACTIONS(9816), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6865), 9, + STATE(6883), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761500,7 +754106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116766] = 14, + [117960] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761521,15 +754127,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9172), 1, + ACTIONS(9638), 1, anon_sym_COLON, - STATE(7186), 1, + STATE(7257), 1, sym_constructor_initializer, - ACTIONS(9271), 3, + ACTIONS(9828), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ_GT, - STATE(6866), 9, + STATE(6884), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761539,7 +754145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116819] = 16, + [118013] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761560,17 +754166,57 @@ 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(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7771), 1, - sym_declaration_list, - STATE(6867), 9, + 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, + 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, + [118070] = 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(9830), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6886), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761580,7 +754226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116876] = 13, + [118125] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761601,14 +754247,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_EQ_GT, - ACTIONS(4163), 4, + 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_RBRACK, - anon_sym_and, - anon_sym_or, - STATE(6868), 9, + anon_sym_RPAREN, + STATE(6887), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761618,7 +754266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116927] = 15, + [118180] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761639,16 +754287,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9251), 1, - anon_sym_AMP_AMP, - ACTIONS(9273), 1, - anon_sym_RPAREN, - ACTIONS(9275), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6869), 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, @@ -761658,7 +754306,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [116982] = 15, + [118235] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761679,16 +754327,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7951), 1, - anon_sym_DOT, - ACTIONS(9277), 1, - anon_sym_LPAREN, - STATE(7421), 1, - sym_attribute_argument_list, - ACTIONS(8244), 2, + 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_RBRACK, - STATE(6870), 9, + anon_sym_GT, + STATE(6889), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761698,7 +754346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117037] = 15, + [118290] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761719,16 +754367,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(6825), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9279), 2, + 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_LBRACE, - STATE(6871), 9, + anon_sym_COMMA, + STATE(6890), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761738,37 +754386,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117092] = 15, - ACTIONS(8511), 1, + [118345] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9247), 1, - aux_sym_preproc_if_token2, - ACTIONS(9267), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6872), 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(9838), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(6891), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761778,37 +754426,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117147] = 15, - ACTIONS(8511), 1, + [118400] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9142), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9144), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9281), 1, + ACTIONS(9840), 1, aux_sym_preproc_if_token2, - ACTIONS(9140), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6873), 9, + STATE(6892), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761818,7 +754466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117202] = 16, + [118455] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761839,17 +754487,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5520), 1, - anon_sym_LPAREN, - ACTIONS(8873), 1, - anon_sym_LBRACE, - ACTIONS(9283), 1, + ACTIONS(9842), 1, anon_sym_COMMA, - STATE(7142), 1, - aux_sym_base_list_repeat1, - STATE(7158), 1, - sym_argument_list, - STATE(6874), 9, + ACTIONS(9728), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + STATE(6893), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761859,7 +754503,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117259] = 15, + aux_sym_record_base_repeat1, + [118506] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761880,16 +754525,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5422), 1, - anon_sym_LBRACK, - ACTIONS(9285), 1, - anon_sym_EQ, - STATE(7157), 1, - sym_bracketed_argument_list, - ACTIONS(9287), 2, + ACTIONS(9684), 1, + anon_sym_and, + ACTIONS(9686), 1, + anon_sym_or, + ACTIONS(8003), 3, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6875), 9, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(6894), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761899,37 +754543,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117314] = 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(5464), 1, - aux_sym_preproc_else_token1, - ACTIONS(5466), 1, - aux_sym_preproc_elif_token1, - ACTIONS(5714), 1, - aux_sym_preproc_if_token3, - STATE(7711), 2, - sym_preproc_else_in_attribute_list, - sym_preproc_elif_in_attribute_list, - STATE(6876), 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, @@ -761939,7 +754583,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117369] = 12, + [118614] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761960,13 +754604,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9289), 5, + 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_COMMA, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6877), 9, + STATE(6896), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -761976,7 +754623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117418] = 13, + [118669] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -761997,14 +754644,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9136), 1, - anon_sym_and, - ACTIONS(7679), 4, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_or, - STATE(6878), 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, @@ -762014,34 +754663,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117469] = 12, - ACTIONS(3), 1, + [118724] = 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(9027), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6879), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9849), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6898), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762051,38 +754703,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117518] = 16, - 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(9164), 1, - anon_sym_case, - ACTIONS(9166), 1, - anon_sym_default, - ACTIONS(9291), 1, - anon_sym_RBRACE, - STATE(6885), 1, - aux_sym_switch_body_repeat1, - STATE(7156), 1, - sym_switch_section, - STATE(6880), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9851), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6899), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762092,38 +754743,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117575] = 16, - ACTIONS(3), 1, + [118834] = 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(7210), 1, - anon_sym_STAR, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(9130), 1, - anon_sym_LBRACE, - STATE(5423), 1, - sym_block, - STATE(7470), 1, - sym_parameter_list, - STATE(6881), 9, + ACTIONS(9630), 1, + anon_sym_AMP_AMP, + ACTIONS(9632), 1, + anon_sym_PIPE_PIPE, + ACTIONS(9853), 1, + aux_sym_preproc_if_token2, + ACTIONS(9628), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + STATE(6900), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762133,7 +754783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117632] = 15, + [118889] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762154,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(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9293), 2, - anon_sym_SEMI, + ACTIONS(7208), 1, + anon_sym_STAR, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9666), 1, anon_sym_LBRACE, - STATE(6882), 9, + STATE(4719), 1, + sym_block, + STATE(7405), 1, + sym_parameter_list, + STATE(6901), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762173,38 +754824,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117687] = 16, - 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(9295), 1, - anon_sym_COLON, - ACTIONS(9297), 1, - anon_sym_when, - ACTIONS(9299), 1, - anon_sym_and, - ACTIONS(9301), 1, - anon_sym_or, - STATE(8066), 1, - sym_when_clause, - STATE(6883), 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, @@ -762214,7 +754864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117744] = 15, + [119001] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762235,16 +754885,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5422), 1, - anon_sym_LBRACK, - ACTIONS(9303), 1, - anon_sym_EQ, - STATE(7173), 1, - sym_bracketed_argument_list, - ACTIONS(8712), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6884), 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, @@ -762254,7 +754905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117799] = 15, + [119058] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762275,15 +754926,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9305), 1, - anon_sym_RBRACE, - ACTIONS(9307), 1, + ACTIONS(9644), 1, anon_sym_case, - ACTIONS(9310), 1, + ACTIONS(9646), 1, anon_sym_default, - STATE(7156), 1, + ACTIONS(9857), 1, + anon_sym_RBRACE, + STATE(6778), 1, + aux_sym_switch_body_repeat1, + STATE(7309), 1, sym_switch_section, - STATE(6885), 10, + STATE(6904), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762293,8 +754946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_switch_body_repeat1, - [117854] = 12, + [119115] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762315,13 +754967,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9313), 5, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(9859), 5, + anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_LT, anon_sym_where, - anon_sym_EQ_GT, - STATE(6886), 9, + STATE(6905), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762331,7 +754983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117903] = 15, + [119164] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762352,16 +755004,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(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9315), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6887), 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, @@ -762371,7 +755023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [117958] = 15, + [119219] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762392,16 +755044,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(6905), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9317), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6888), 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, @@ -762411,7 +755064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118013] = 15, + [119276] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762432,16 +755085,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(6768), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - ACTIONS(9317), 2, + ACTIONS(9865), 2, anon_sym_SEMI, anon_sym_LBRACE, - STATE(6889), 9, + STATE(6908), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762451,7 +755104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118068] = 16, + [119331] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762472,17 +755125,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9136), 1, - anon_sym_and, - ACTIONS(9138), 1, - anon_sym_or, - ACTIONS(9319), 1, + ACTIONS(9867), 5, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(9321), 1, - anon_sym_RBRACK, - STATE(7346), 1, - aux_sym_list_pattern_repeat1, - STATE(6890), 9, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6909), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762492,37 +755141,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118125] = 15, - ACTIONS(8511), 1, + [119380] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9323), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6891), 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, @@ -762532,37 +755181,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118180] = 15, - 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(8745), 1, - anon_sym_where, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - ACTIONS(9279), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6892), 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, @@ -762572,36 +755219,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118235] = 14, - 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(9136), 1, - anon_sym_and, - ACTIONS(9138), 1, - anon_sym_or, - ACTIONS(7667), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(6893), 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, @@ -762611,34 +755259,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118288] = 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(9040), 5, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6894), 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, @@ -762648,37 +755296,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118337] = 15, - ACTIONS(8511), 1, + [119590] = 12, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9325), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - 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(6914), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762688,7 +755333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118392] = 14, + [119639] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762709,15 +755354,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9172), 1, - anon_sym_COLON, - STATE(7302), 1, - sym_constructor_initializer, - ACTIONS(9327), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6896), 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, @@ -762727,7 +755370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118445] = 15, + [119688] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762748,16 +755391,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5464), 1, + ACTIONS(5208), 1, aux_sym_preproc_else_token1, - ACTIONS(5466), 1, + ACTIONS(5210), 1, aux_sym_preproc_elif_token1, - ACTIONS(5468), 1, + ACTIONS(8902), 1, aux_sym_preproc_if_token3, - STATE(7764), 2, + STATE(7853), 2, sym_preproc_else_in_attribute_list, sym_preproc_elif_in_attribute_list, - STATE(6897), 9, + STATE(6916), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762767,37 +755410,37 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118500] = 15, - ACTIONS(8511), 1, + [119743] = 15, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9142), 1, + ACTIONS(9630), 1, anon_sym_AMP_AMP, - ACTIONS(9144), 1, + ACTIONS(9632), 1, anon_sym_PIPE_PIPE, - ACTIONS(9329), 1, + ACTIONS(9875), 1, aux_sym_preproc_if_token2, - ACTIONS(9140), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6898), 9, + STATE(6917), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762807,7 +755450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118555] = 16, + [119798] = 16, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762828,17 +755471,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9164), 1, - anon_sym_case, - ACTIONS(9166), 1, - anon_sym_default, - ACTIONS(9331), 1, - anon_sym_RBRACE, - STATE(6917), 1, - aux_sym_switch_body_repeat1, - STATE(7156), 1, - sym_switch_section, - STATE(6899), 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(8098), 1, + sym_declaration_list, + STATE(6918), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762848,37 +755491,75 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118612] = 15, - ACTIONS(8511), 1, + [119855] = 13, + ACTIONS(5879), 1, + aux_sym_preproc_if_token2, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(9142), 1, + ACTIONS(5881), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_AMP_AMP, - ACTIONS(9144), 1, anon_sym_PIPE_PIPE, - ACTIONS(9333), 1, + STATE(6919), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [119906] = 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(9877), 1, aux_sym_preproc_if_token2, - ACTIONS(9140), 2, + ACTIONS(9628), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - STATE(6900), 9, + STATE(6920), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762888,7 +755569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118667] = 16, + [119961] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762909,17 +755590,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7210), 1, - anon_sym_STAR, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(9225), 1, + ACTIONS(9879), 4, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(4981), 1, - sym_block, - STATE(7489), 1, - sym_parameter_list, - STATE(6901), 9, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6921), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -762929,7 +755605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118724] = 14, + [120009] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762950,15 +755626,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9172), 1, - anon_sym_COLON, - STATE(7331), 1, - sym_constructor_initializer, - ACTIONS(9335), 3, - anon_sym_SEMI, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9881), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6902), 9, + 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, @@ -762968,7 +755644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118777] = 12, + [120063] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -762989,13 +755665,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9337), 5, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6903), 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, @@ -763005,7 +755683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118826] = 16, + [120117] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763026,17 +755704,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4318), 1, - anon_sym_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(9011), 1, - anon_sym_QMARK, - ACTIONS(9025), 1, - anon_sym_COMMA, - STATE(6904), 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, @@ -763046,7 +755719,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118883] = 15, + [120165] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763067,16 +755740,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, - STATE(6768), 1, + ACTIONS(9885), 1, + anon_sym_LBRACE, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - ACTIONS(9339), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(6905), 9, + STATE(6925), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763086,37 +755758,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118938] = 15, - ACTIONS(8511), 1, + [120219] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9341), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6906), 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, @@ -763126,35 +755797,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [118993] = 13, - ACTIONS(6375), 1, - aux_sym_preproc_if_token2, - ACTIONS(8511), 1, + [120273] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(6377), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6907), 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, @@ -763164,7 +755836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119044] = 15, + [120327] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763185,16 +755857,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5422), 1, - anon_sym_LBRACK, - ACTIONS(9343), 1, - anon_sym_EQ, - STATE(7164), 1, - sym_bracketed_argument_list, - ACTIONS(9287), 2, - anon_sym_SEMI, - anon_sym_COMMA, - STATE(6908), 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, @@ -763204,35 +755875,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119099] = 13, - ACTIONS(8511), 1, + [120381] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9337), 1, - aux_sym_preproc_if_token2, - ACTIONS(9345), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6909), 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, @@ -763242,37 +755914,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119150] = 15, - ACTIONS(8511), 1, + [120435] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9347), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6910), 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, @@ -763282,7 +755950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119205] = 15, + [120483] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763303,16 +755971,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7987), 1, - aux_sym_preproc_else_token1, - ACTIONS(7989), 1, - aux_sym_preproc_elif_token1, - ACTIONS(9349), 1, - aux_sym_preproc_if_token3, - STATE(7652), 2, - sym_preproc_else_in_enum_member_declaration, - sym_preproc_elif_in_enum_member_declaration, - STATE(6911), 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, @@ -763322,37 +755986,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119260] = 15, - ACTIONS(8511), 1, + [120531] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9351), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6912), 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, @@ -763362,7 +756025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119315] = 16, + [120585] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763383,17 +756046,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9164), 1, - anon_sym_case, - ACTIONS(9166), 1, - anon_sym_default, - ACTIONS(9353), 1, - anon_sym_RBRACE, - STATE(6860), 1, - aux_sym_switch_body_repeat1, - STATE(7156), 1, - sym_switch_section, - STATE(6913), 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, @@ -763403,37 +756064,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119372] = 15, - ACTIONS(8511), 1, + [120639] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9355), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6914), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + ACTIONS(9241), 1, + 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, @@ -763443,35 +756103,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119427] = 13, - ACTIONS(8511), 1, + [120693] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9359), 1, - aux_sym_preproc_if_token2, - ACTIONS(9357), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6915), 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, @@ -763481,7 +756141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119478] = 16, + [120745] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763502,17 +756162,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9164), 1, - anon_sym_case, - ACTIONS(9166), 1, - anon_sym_default, - ACTIONS(9361), 1, - anon_sym_RBRACE, - STATE(6797), 1, - aux_sym_switch_body_repeat1, - STATE(7156), 1, - sym_switch_section, - STATE(6916), 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, @@ -763522,7 +756180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119535] = 16, + [120799] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763543,17 +756201,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9164), 1, - anon_sym_case, - ACTIONS(9166), 1, - anon_sym_default, - ACTIONS(9363), 1, - anon_sym_RBRACE, - STATE(6885), 1, - aux_sym_switch_body_repeat1, - STATE(7156), 1, - sym_switch_section, - STATE(6917), 9, + ACTIONS(9911), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6937), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763563,35 +756216,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119592] = 13, - ACTIONS(6325), 1, - aux_sym_preproc_if_token2, - ACTIONS(8511), 1, + [120847] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(6327), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6918), 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, @@ -763601,7 +756254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119643] = 16, + [120899] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763622,17 +756275,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9136), 1, - anon_sym_and, - ACTIONS(9138), 1, - anon_sym_or, - ACTIONS(9365), 1, - anon_sym_COMMA, - ACTIONS(9367), 1, - anon_sym_RBRACK, - STATE(7207), 1, - aux_sym_list_pattern_repeat1, - STATE(6919), 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, @@ -763642,37 +756293,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119700] = 15, - ACTIONS(8511), 1, + [120953] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9369), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6920), 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, @@ -763682,37 +756329,36 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119755] = 15, - ACTIONS(8511), 1, + [121001] = 15, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9371), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6921), 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, @@ -763722,37 +756368,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119810] = 15, - ACTIONS(8511), 1, + [121055] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9373), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6922), 9, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(9570), 1, + anon_sym_QMARK, + ACTIONS(4331), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(6942), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763762,7 +756406,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119865] = 16, + [121107] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763783,17 +756427,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4318), 1, - anon_sym_LPAREN, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(9375), 1, - anon_sym_DOT, - STATE(6923), 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, @@ -763803,37 +756445,35 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119922] = 15, - ACTIONS(8511), 1, + [121161] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_AMP_AMP, - ACTIONS(9144), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9377), 1, - aux_sym_preproc_if_token2, - ACTIONS(9140), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6924), 9, + ACTIONS(9684), 1, + anon_sym_and, + ACTIONS(9686), 1, + anon_sym_or, + ACTIONS(9919), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(6944), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763843,7 +756483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [119977] = 15, + [121213] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763864,16 +756504,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9251), 1, - anon_sym_AMP_AMP, - ACTIONS(9275), 1, - anon_sym_PIPE_PIPE, - ACTIONS(9379), 1, - anon_sym_RPAREN, - ACTIONS(9249), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - STATE(6925), 9, + ACTIONS(9921), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6945), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763883,7 +756519,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120032] = 12, + [121261] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763904,13 +756540,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9359), 5, + ACTIONS(9907), 1, + anon_sym_and, + ACTIONS(8039), 3, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - STATE(6926), 9, + anon_sym_or, + STATE(6946), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763920,7 +756556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120081] = 15, + [121311] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763941,15 +756577,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9381), 1, - anon_sym_LT, - ACTIONS(9383), 1, - anon_sym_unmanaged, - ACTIONS(9385), 1, - anon_sym_managed, - STATE(8054), 1, - sym_calling_convention, - STATE(6927), 9, + ACTIONS(9923), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6947), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -763959,7 +756592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120135] = 15, + [121359] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -763980,15 +756613,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9387), 1, - anon_sym_COMMA, - ACTIONS(9389), 1, - anon_sym_RPAREN, - ACTIONS(9391), 1, - anon_sym_and, - ACTIONS(9393), 1, - anon_sym_or, - STATE(6928), 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, @@ -763998,7 +756628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120189] = 15, + [121407] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764019,15 +756649,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(9395), 1, - anon_sym_LBRACE, - STATE(6974), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(6929), 9, + ACTIONS(9925), 1, + anon_sym_COMMA, + ACTIONS(9928), 2, + anon_sym_RBRACK, + anon_sym_GT, + STATE(6949), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764037,7 +756664,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120243] = 14, + aux_sym_type_argument_list_repeat1, + [121457] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764058,14 +756686,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9397), 1, - anon_sym_LPAREN, - ACTIONS(9401), 1, - sym_integer_literal, - ACTIONS(9399), 2, - anon_sym_default, - anon_sym_hidden, - STATE(6930), 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, @@ -764075,7 +756703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120295] = 15, + [121509] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764096,15 +756724,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_EQ_GT, - ACTIONS(9021), 1, - anon_sym_EQ, - ACTIONS(9095), 1, - anon_sym_RPAREN, - ACTIONS(9403), 1, - anon_sym_COMMA, - STATE(6931), 9, + ACTIONS(8524), 1, + anon_sym_DOT, + ACTIONS(9258), 1, + anon_sym_LBRACE, + ACTIONS(9930), 1, + anon_sym_SEMI, + STATE(8019), 1, + sym_declaration_list, + STATE(6951), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764114,7 +756742,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120349] = 15, + [121563] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764135,15 +756763,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9387), 1, - anon_sym_COMMA, - ACTIONS(9391), 1, - anon_sym_and, - ACTIONS(9393), 1, - anon_sym_or, - ACTIONS(9407), 1, - anon_sym_RPAREN, - STATE(6932), 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, @@ -764153,7 +756781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120403] = 14, + [121617] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764174,14 +756802,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9136), 1, - anon_sym_and, - ACTIONS(9138), 1, - anon_sym_or, - ACTIONS(9387), 2, + ACTIONS(9932), 1, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(6933), 9, + ACTIONS(9482), 2, + anon_sym_LBRACE, + anon_sym_where, + STATE(6953), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764191,7 +756817,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120455] = 12, + aux_sym_base_list_repeat1, + [121667] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764212,12 +756839,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9409), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6934), 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, @@ -764227,7 +756857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120503] = 15, + [121721] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764248,15 +756878,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(9411), 1, - anon_sym_LBRACE, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(6935), 9, + ACTIONS(9564), 1, + anon_sym_and, + ACTIONS(9566), 1, + anon_sym_or, + ACTIONS(8003), 2, + anon_sym_EQ_GT, + anon_sym_when, + STATE(6955), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764266,7 +756895,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120557] = 15, + [121773] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764287,15 +756916,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4318), 1, - anon_sym_GT, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(9011), 1, - anon_sym_QMARK, - ACTIONS(9025), 1, + ACTIONS(9612), 1, anon_sym_COMMA, - STATE(6936), 9, + STATE(6953), 1, + aux_sym_base_list_repeat1, + ACTIONS(9487), 2, + anon_sym_LBRACE, + anon_sym_where, + STATE(6956), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764305,7 +756933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120611] = 12, + [121825] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764326,12 +756954,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9413), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(9243), 1, anon_sym_where, - anon_sym_EQ_GT, - STATE(6937), 9, + 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, @@ -764341,7 +756972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120659] = 15, + [121879] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764362,15 +756993,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(7755), 1, - anon_sym_DOT, - STATE(6938), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9935), 1, + anon_sym_LBRACE, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7027), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6958), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764380,7 +757011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120713] = 15, + [121933] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764401,15 +757032,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(8779), 1, - anon_sym_LBRACE, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(6939), 9, + ACTIONS(9907), 1, + anon_sym_and, + ACTIONS(9909), 1, + anon_sym_or, + ACTIONS(9919), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(6959), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764419,7 +757049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120767] = 15, + [121985] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764440,15 +757070,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(2958), 1, - sym_accessor_list, - STATE(7864), 1, - sym_arrow_expression_clause, - STATE(6940), 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, @@ -764458,7 +757088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120821] = 15, + [122039] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764479,15 +757109,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4318), 1, - anon_sym_GT, - ACTIONS(7743), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - ACTIONS(7745), 1, + ACTIONS(8191), 1, anon_sym_STAR, - ACTIONS(9025), 1, - anon_sym_COMMA, - STATE(6941), 9, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(8267), 1, + anon_sym_DOT, + STATE(6961), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764497,7 +757127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120875] = 12, + [122093] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764518,12 +757148,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4338), 4, - anon_sym_LBRACK, + ACTIONS(9939), 1, + anon_sym_EQ, + ACTIONS(9608), 3, anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6942), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6962), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764533,7 +757164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120923] = 12, + [122143] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764554,12 +757185,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(9941), 1, + anon_sym_EQ, + ACTIONS(9943), 3, anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6943), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(6963), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764569,7 +757201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [120971] = 14, + [122193] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764590,14 +757222,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_EQ_GT, - ACTIONS(9415), 1, - anon_sym_EQ, - ACTIONS(9417), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(6944), 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, @@ -764607,7 +757240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121023] = 15, + [122247] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764628,15 +757261,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(9419), 1, - anon_sym_SEMI, - STATE(6970), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(6945), 9, + ACTIONS(9905), 1, + anon_sym_COMMA, + ACTIONS(9907), 1, + anon_sym_and, + ACTIONS(9909), 1, + anon_sym_or, + ACTIONS(9947), 1, + anon_sym_RPAREN, + STATE(6965), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764646,7 +757279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121077] = 15, + [122301] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764667,15 +757300,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9421), 1, - anon_sym_COLON, - ACTIONS(9423), 1, - anon_sym_LBRACE, - STATE(7555), 1, - sym_base_list, - STATE(7829), 1, - sym_enum_member_declaration_list, - STATE(6946), 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, @@ -764685,7 +757315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121131] = 13, + [122349] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764706,13 +757336,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9425), 1, - anon_sym_EQ, - ACTIONS(9427), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6947), 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, @@ -764722,7 +757354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121181] = 15, + [122403] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764743,15 +757375,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8716), 1, + ACTIONS(9953), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(8720), 1, + anon_sym_where, anon_sym_EQ_GT, - STATE(2908), 1, - sym_accessor_list, - STATE(7854), 1, - sym_arrow_expression_clause, - STATE(6948), 9, + STATE(6968), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764761,7 +757390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121235] = 13, + [122451] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764782,13 +757411,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9299), 1, - anon_sym_and, - ACTIONS(7679), 3, - anon_sym_COLON, - anon_sym_when, - anon_sym_or, - STATE(6949), 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, @@ -764798,7 +757426,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121285] = 15, + [122499] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764819,15 +757447,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, + ACTIONS(9889), 1, + anon_sym_unmanaged, + ACTIONS(9891), 1, + anon_sym_managed, + ACTIONS(9957), 1, anon_sym_LT, - STATE(6997), 1, - sym_parameter_list, - STATE(7480), 1, - sym_type_parameter_list, - STATE(6950), 9, + STATE(7996), 1, + sym_calling_convention, + STATE(6970), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764837,7 +757465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121339] = 12, + [122553] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764858,12 +757486,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4342), 4, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6951), 9, + ACTIONS(9959), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6971), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764873,7 +757501,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121387] = 15, + [122601] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764894,15 +757522,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(8777), 1, - anon_sym_LBRACE, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(6952), 9, + 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, @@ -764912,7 +757540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121441] = 12, + [122655] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764933,12 +757561,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4355), 4, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6953), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9963), 1, + anon_sym_LBRACE, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(6973), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764948,7 +757579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121489] = 15, + [122709] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -764969,15 +757600,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(9429), 1, + ACTIONS(9965), 4, anon_sym_SEMI, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7028), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6954), 9, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_where, + STATE(6974), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -764987,7 +757615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121543] = 15, + [122757] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765008,15 +757636,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9387), 1, + ACTIONS(4331), 1, + anon_sym_GT, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(9570), 1, + anon_sym_QMARK, + ACTIONS(9576), 1, anon_sym_COMMA, - ACTIONS(9391), 1, - anon_sym_and, - ACTIONS(9393), 1, - anon_sym_or, - ACTIONS(9431), 1, - anon_sym_RPAREN, - STATE(6955), 9, + STATE(6975), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765026,7 +757654,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121597] = 12, + [122811] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765047,12 +757675,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4322), 4, - anon_sym_LBRACK, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_STAR, - STATE(6956), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9289), 1, + anon_sym_LBRACE, + 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, @@ -765062,7 +757693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121645] = 13, + [122865] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765083,13 +757714,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9048), 1, - anon_sym_and, - ACTIONS(7679), 3, - anon_sym_EQ_GT, - anon_sym_when, - anon_sym_or, - STATE(6957), 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, @@ -765099,7 +757731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121695] = 14, + [122917] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765120,14 +757752,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9299), 1, - anon_sym_and, - ACTIONS(9301), 1, - anon_sym_or, - ACTIONS(7667), 2, - anon_sym_COLON, - anon_sym_when, - STATE(6958), 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, @@ -765137,7 +757770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121747] = 13, + [122971] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765158,13 +757791,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9433), 1, - anon_sym_EQ, - ACTIONS(9435), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6959), 9, + ACTIONS(9969), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(6979), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765174,7 +757806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121797] = 13, + [123019] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765195,13 +757827,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9437), 1, - anon_sym_EQ, - ACTIONS(9439), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(6960), 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, @@ -765211,7 +757843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121847] = 15, + [123069] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765232,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(3045), 1, - sym_accessor_list, - STATE(7809), 1, - sym_arrow_expression_clause, - STATE(6961), 9, + STATE(6981), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765250,7 +757879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121901] = 15, + [123117] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765271,15 +757900,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7951), 1, - anon_sym_DOT, - ACTIONS(8741), 1, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9881), 1, anon_sym_LBRACE, - ACTIONS(9441), 1, - anon_sym_SEMI, - STATE(7980), 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(6982), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765289,7 +757918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [121955] = 14, + [123171] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765310,14 +757939,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9120), 1, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + ACTIONS(9973), 1, + anon_sym_EQ, + ACTIONS(9975), 1, anon_sym_COMMA, - STATE(6964), 1, - aux_sym_base_list_repeat1, - ACTIONS(8943), 2, - anon_sym_LBRACE, - anon_sym_where, - STATE(6963), 9, + ACTIONS(9978), 1, + anon_sym_RPAREN, + STATE(6983), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765327,7 +757957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122007] = 13, + [123225] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765348,12 +757978,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9443), 1, - anon_sym_COMMA, - ACTIONS(8938), 2, + ACTIONS(9214), 1, anon_sym_LBRACE, - anon_sym_where, - STATE(6964), 10, + 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, @@ -765363,8 +757996,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_base_list_repeat1, - [122057] = 15, + [123279] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765385,15 +758017,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9421), 1, - anon_sym_COLON, - ACTIONS(9423), 1, + ACTIONS(9214), 1, anon_sym_LBRACE, - STATE(7575), 1, - sym_base_list, - STATE(8026), 1, - sym_enum_member_declaration_list, - STATE(6965), 9, + 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, @@ -765403,7 +758035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122111] = 15, + [123333] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765424,15 +758056,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9383), 1, - anon_sym_unmanaged, - ACTIONS(9385), 1, - anon_sym_managed, - ACTIONS(9446), 1, - anon_sym_LT, - STATE(7985), 1, - sym_calling_convention, - STATE(6966), 9, + ACTIONS(4337), 4, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_STAR, + STATE(6986), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765442,7 +758071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122165] = 15, + [123381] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765463,15 +758092,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9383), 1, - anon_sym_unmanaged, - ACTIONS(9385), 1, - anon_sym_managed, - ACTIONS(9448), 1, - anon_sym_LT, - STATE(7700), 1, - sym_calling_convention, - STATE(6967), 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, @@ -765481,7 +758110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122219] = 15, + [123435] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765502,15 +758131,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(9450), 1, + ACTIONS(9982), 1, anon_sym_LBRACE, - STATE(6768), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(6968), 9, + STATE(6988), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765520,7 +758149,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122273] = 15, + [123489] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765541,15 +758170,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9387), 1, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + ACTIONS(9984), 1, + anon_sym_EQ, + ACTIONS(9943), 2, anon_sym_COMMA, - ACTIONS(9391), 1, - anon_sym_and, - ACTIONS(9393), 1, - anon_sym_or, - ACTIONS(9452), 1, anon_sym_RPAREN, - STATE(6969), 9, + STATE(6989), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765559,7 +758187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122327] = 15, + [123541] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765580,15 +758208,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(9454), 1, - anon_sym_SEMI, - STATE(6768), 1, + ACTIONS(9986), 1, + anon_sym_LBRACE, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(6970), 9, + STATE(6990), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765598,7 +758226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122381] = 15, + [123595] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765619,15 +758247,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9387), 1, - anon_sym_COMMA, - ACTIONS(9391), 1, + ACTIONS(7014), 2, anon_sym_and, - ACTIONS(9393), 1, anon_sym_or, - ACTIONS(9456), 1, + ACTIONS(7030), 2, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(6971), 9, + STATE(6991), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765637,7 +758263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122435] = 15, + [123645] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765658,15 +758284,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(9395), 1, + ACTIONS(9897), 1, + anon_sym_COLON, + ACTIONS(9899), 1, anon_sym_LBRACE, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(6972), 9, + 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, @@ -765676,7 +758302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122489] = 15, + [123699] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765697,15 +758323,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9421), 1, - anon_sym_COLON, - ACTIONS(9423), 1, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9986), 1, anon_sym_LBRACE, - STATE(7579), 1, - sym_base_list, - STATE(7881), 1, - sym_enum_member_declaration_list, - STATE(6973), 9, + 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, @@ -765715,7 +758341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122543] = 15, + [123753] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765736,15 +758362,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(9458), 1, + ACTIONS(9268), 1, anon_sym_LBRACE, - STATE(6768), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(6974), 9, + STATE(6994), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765754,7 +758380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122597] = 14, + [123807] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765775,14 +758401,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9136), 1, + ACTIONS(9905), 1, + anon_sym_COMMA, + ACTIONS(9907), 1, anon_sym_and, - ACTIONS(9138), 1, + ACTIONS(9909), 1, anon_sym_or, - ACTIONS(2147), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(6975), 9, + ACTIONS(9988), 1, + anon_sym_RPAREN, + STATE(6995), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765792,7 +758419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122649] = 13, + [123861] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765813,13 +758440,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9460), 1, - anon_sym_COMMA, - ACTIONS(8865), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - STATE(6976), 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, @@ -765829,7 +758455,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122699] = 14, + [123909] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765850,14 +758476,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9136), 1, - anon_sym_and, - ACTIONS(9138), 1, - anon_sym_or, - ACTIONS(9462), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(6977), 9, + ACTIONS(9897), 1, + anon_sym_COLON, + ACTIONS(9899), 1, + anon_sym_LBRACE, + 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, @@ -765867,7 +758494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122751] = 13, + [123963] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765888,13 +758515,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9464), 1, - anon_sym_EQ, - ACTIONS(9417), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(6978), 9, + ACTIONS(9696), 1, + anon_sym_and, + ACTIONS(9698), 1, + anon_sym_or, + ACTIONS(8003), 2, + anon_sym_COLON, + anon_sym_when, + STATE(6998), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765904,7 +758532,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122801] = 15, + [124015] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765925,15 +758553,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(9466), 1, - anon_sym_LBRACE, - STATE(6768), 1, + ACTIONS(9990), 1, + anon_sym_SEMI, + STATE(6927), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(6979), 9, + STATE(6999), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -765943,7 +758571,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122855] = 15, + [124069] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -765964,15 +758592,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(9468), 1, + ACTIONS(9214), 1, anon_sym_LBRACE, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(6980), 9, + 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, @@ -765982,7 +758610,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122909] = 12, + [124123] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766003,12 +758631,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3377), 4, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - anon_sym_else, - STATE(6981), 9, + ACTIONS(9905), 1, + anon_sym_COMMA, + ACTIONS(9907), 1, + anon_sym_and, + ACTIONS(9909), 1, + anon_sym_or, + ACTIONS(9992), 1, + anon_sym_RPAREN, + STATE(7001), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766018,7 +758649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [122957] = 15, + [124177] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766039,15 +758670,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(9470), 1, + ACTIONS(9994), 1, + anon_sym_COMMA, + ACTIONS(9355), 3, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(6982), 9, + anon_sym_where, + STATE(7002), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766057,7 +758686,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123011] = 15, + [124227] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766078,15 +758707,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8716), 1, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(9996), 1, anon_sym_LBRACE, - ACTIONS(8720), 1, - anon_sym_EQ_GT, - STATE(3022), 1, - sym_accessor_list, - STATE(8105), 1, - sym_arrow_expression_clause, - STATE(6983), 9, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7003), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766096,7 +758725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123065] = 12, + [124281] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766117,12 +758746,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9472), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6984), 9, + 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, @@ -766132,7 +758762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123113] = 12, + [124331] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766153,12 +758783,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9474), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6985), 9, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(10002), 1, + anon_sym_SEMI, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7005), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766168,7 +758801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123161] = 15, + [124385] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766189,15 +758822,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9383), 1, - anon_sym_unmanaged, - ACTIONS(9385), 1, - anon_sym_managed, - ACTIONS(9476), 1, - anon_sym_LT, - STATE(8012), 1, - sym_calling_convention, - STATE(6986), 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, @@ -766207,7 +758837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123215] = 15, + [124433] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766228,15 +758858,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, + ACTIONS(4349), 4, anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(9025), 1, anon_sym_COMMA, - STATE(6987), 9, + anon_sym_GT, + anon_sym_STAR, + STATE(7007), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766246,7 +758873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123269] = 15, + [124481] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766267,15 +758894,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(8781), 1, + ACTIONS(9897), 1, + anon_sym_COLON, + ACTIONS(9899), 1, anon_sym_LBRACE, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(6988), 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, @@ -766285,7 +758912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123323] = 15, + [124535] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766306,15 +758933,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(9478), 1, + ACTIONS(9214), 1, anon_sym_LBRACE, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7049), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6989), 9, + 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, @@ -766324,7 +758951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123377] = 15, + [124589] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766345,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(9478), 1, + ACTIONS(10004), 1, anon_sym_LBRACE, - STATE(6768), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(6990), 9, + STATE(7010), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766363,7 +758990,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123431] = 15, + [124643] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766384,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(9480), 1, + ACTIONS(9897), 1, + anon_sym_COLON, + ACTIONS(9899), 1, anon_sym_LBRACE, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(6991), 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, @@ -766402,7 +759029,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123485] = 12, + [124697] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766423,12 +759050,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9482), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6992), 9, + ACTIONS(4316), 4, + anon_sym_LBRACK, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_STAR, + STATE(7012), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766438,7 +759065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123533] = 15, + [124745] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766459,15 +759086,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(9484), 1, - anon_sym_SEMI, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7035), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(6993), 9, + ACTIONS(9905), 1, + anon_sym_COMMA, + ACTIONS(9907), 1, + anon_sym_and, + ACTIONS(9909), 1, + anon_sym_or, + ACTIONS(10006), 1, + anon_sym_RPAREN, + STATE(7013), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766477,7 +759104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123587] = 12, + [124799] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766498,12 +759125,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3385), 4, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - anon_sym_else, - STATE(6994), 9, + 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, @@ -766513,7 +759141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123635] = 12, + [124849] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766534,12 +759162,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9486), 4, - anon_sym_SEMI, + ACTIONS(9897), 1, + anon_sym_COLON, + ACTIONS(9899), 1, anon_sym_LBRACE, - anon_sym_where, - anon_sym_EQ_GT, - STATE(6995), 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, @@ -766549,7 +759180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123683] = 12, + [124903] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766570,12 +759201,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9488), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(9243), 1, anon_sym_where, - anon_sym_EQ_GT, - STATE(6996), 9, + ACTIONS(10010), 1, + anon_sym_LBRACE, + STATE(6748), 1, + aux_sym__class_declaration_initializer_repeat4, + STATE(6971), 1, + sym_type_parameter_constraints_clause, + STATE(7016), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766585,7 +759219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123731] = 12, + [124957] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766606,12 +759240,14 @@ 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(6997), 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, @@ -766621,7 +759257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123779] = 12, + [125009] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766642,12 +759278,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9492), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(6998), 9, + ACTIONS(10012), 1, + anon_sym_EQ, + 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, @@ -766657,7 +759294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123827] = 13, + [125059] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766678,12 +759315,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9494), 1, - anon_sym_COMMA, - ACTIONS(9497), 2, - anon_sym_RBRACK, - anon_sym_GT, - STATE(6999), 10, + 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, @@ -766693,8 +759333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_type_argument_list_repeat1, - [123877] = 15, + [125113] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766715,15 +759354,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(9897), 1, + anon_sym_COLON, + ACTIONS(9899), 1, + anon_sym_LBRACE, + 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(8743), 1, + ACTIONS(9241), 1, anon_sym_LT, - STATE(7474), 1, - sym_type_parameter_list, - STATE(7478), 1, + STATE(6947), 1, sym_parameter_list, - STATE(7000), 9, + STATE(7428), 1, + sym_type_parameter_list, + STATE(7021), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766733,7 +759411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123931] = 15, + [125221] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766754,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(9499), 1, + ACTIONS(10016), 1, anon_sym_LBRACE, - STATE(6768), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7001), 9, + STATE(7022), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766772,7 +759450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [123985] = 15, + [125275] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766793,15 +759471,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(9499), 1, + ACTIONS(9287), 1, anon_sym_LBRACE, - STATE(6991), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7002), 9, + STATE(7023), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -766811,7 +759489,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124039] = 14, + [125329] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766832,14 +759510,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(9011), 1, - anon_sym_QMARK, - ACTIONS(4318), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7003), 9, + ACTIONS(9214), 1, + anon_sym_LBRACE, + 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, @@ -766849,7 +759528,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124091] = 12, + [125383] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766870,12 +759549,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9501), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(9243), 1, anon_sym_where, - anon_sym_EQ_GT, - STATE(7004), 9, + ACTIONS(10018), 1, + anon_sym_LBRACE, + 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, @@ -766885,7 +759567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124139] = 15, + [125437] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766906,15 +759588,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_EQ_GT, - ACTIONS(9503), 1, - anon_sym_EQ, - ACTIONS(9505), 1, - anon_sym_COMMA, - ACTIONS(9508), 1, - anon_sym_RPAREN, - STATE(7005), 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, @@ -766924,7 +759606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124193] = 15, + [125491] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766945,15 +759627,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9421), 1, - anon_sym_COLON, - ACTIONS(9423), 1, + ACTIONS(9243), 1, + anon_sym_where, + ACTIONS(10020), 1, anon_sym_LBRACE, - STATE(7559), 1, - sym_base_list, - STATE(8014), 1, - sym_enum_member_declaration_list, - STATE(7006), 9, + 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, @@ -766963,7 +759645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124247] = 14, + [125545] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -766984,14 +759666,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9048), 1, - anon_sym_and, - ACTIONS(9050), 1, - anon_sym_or, - ACTIONS(7667), 2, - anon_sym_EQ_GT, - anon_sym_when, - STATE(7007), 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, @@ -767001,7 +759684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124299] = 15, + [125599] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767022,15 +759705,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9383), 1, + ACTIONS(9889), 1, anon_sym_unmanaged, - ACTIONS(9385), 1, + ACTIONS(9891), 1, anon_sym_managed, - ACTIONS(9510), 1, + ACTIONS(10022), 1, anon_sym_LT, - STATE(8029), 1, + STATE(7961), 1, sym_calling_convention, - STATE(7008), 9, + STATE(7029), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767040,7 +759723,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124353] = 15, + [125653] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767061,15 +759744,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9421), 1, - anon_sym_COLON, - ACTIONS(9423), 1, - anon_sym_LBRACE, - STATE(7505), 1, - sym_base_list, - STATE(7674), 1, - sym_enum_member_declaration_list, - STATE(7009), 9, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + 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, @@ -767079,7 +759762,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124407] = 15, + [125707] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767100,15 +759783,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(9512), 1, - anon_sym_LBRACE, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7010), 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, @@ -767118,7 +759799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124461] = 15, + [125757] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767139,15 +759820,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9421), 1, - anon_sym_COLON, - ACTIONS(9423), 1, + ACTIONS(9214), 1, anon_sym_LBRACE, - STATE(7508), 1, - sym_base_list, - STATE(7721), 1, - sym_enum_member_declaration_list, - STATE(7011), 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, @@ -767157,7 +759838,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124515] = 14, + [125811] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767178,14 +759859,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9391), 1, - anon_sym_and, - ACTIONS(9393), 1, - anon_sym_or, - ACTIONS(9387), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7012), 9, + ACTIONS(10032), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_where, + anon_sym_EQ_GT, + STATE(7033), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767195,7 +759874,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124567] = 15, + [125859] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767216,15 +759895,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(9514), 1, - anon_sym_LBRACE, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7013), 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, @@ -767234,7 +759913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124621] = 15, + [125913] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767255,15 +759934,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, + ACTIONS(9564), 1, + anon_sym_and, + ACTIONS(8039), 3, anon_sym_EQ_GT, - STATE(3023), 1, - sym_accessor_list, - STATE(7651), 1, - sym_arrow_expression_clause, - STATE(7014), 9, + anon_sym_when, + anon_sym_or, + STATE(7035), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767273,7 +759950,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124675] = 15, + [125963] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767294,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(9516), 1, + ACTIONS(9291), 1, anon_sym_LBRACE, - STATE(6768), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7015), 9, + STATE(7036), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767312,7 +759989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124729] = 15, + [126017] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767333,51 +760010,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(9514), 1, + ACTIONS(10036), 1, anon_sym_LBRACE, - STATE(6982), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7016), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [124783] = 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(3373), 4, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - anon_sym_else, - STATE(7017), 9, + STATE(7037), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767387,7 +760028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124831] = 15, + [126071] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767408,15 +760049,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9421), 1, + ACTIONS(9897), 1, anon_sym_COLON, - ACTIONS(9423), 1, + ACTIONS(9899), 1, anon_sym_LBRACE, - STATE(7498), 1, + STATE(7484), 1, sym_base_list, - STATE(8133), 1, + STATE(7901), 1, sym_enum_member_declaration_list, - STATE(7018), 9, + STATE(7038), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767426,7 +760067,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124885] = 15, + [126125] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767447,15 +760088,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(8799), 1, + ACTIONS(10038), 1, anon_sym_LBRACE, - STATE(6768), 1, + STATE(6748), 1, aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, + STATE(6971), 1, sym_type_parameter_constraints_clause, - STATE(7019), 9, + STATE(7039), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767465,7 +760106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124939] = 15, + [126179] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767486,15 +760127,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9383), 1, - anon_sym_unmanaged, - ACTIONS(9385), 1, - anon_sym_managed, - ACTIONS(9518), 1, - anon_sym_LT, - STATE(7950), 1, - sym_calling_convention, - STATE(7020), 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, @@ -767504,7 +760145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [124993] = 12, + [126233] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767525,12 +760166,12 @@ 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_COMMA, - anon_sym_LBRACE, - anon_sym_where, - STATE(7021), 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, @@ -767540,7 +760181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125041] = 15, + [126281] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767561,15 +760202,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(9516), 1, - anon_sym_LBRACE, - STATE(6979), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7022), 9, + ACTIONS(9907), 1, + anon_sym_and, + ACTIONS(9909), 1, + anon_sym_or, + ACTIONS(8003), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7042), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767579,7 +760219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125095] = 14, + [126333] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767600,14 +760240,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9120), 1, + ACTIONS(10042), 1, + anon_sym_EQ, + ACTIONS(10044), 3, anon_sym_COMMA, - STATE(6964), 1, - aux_sym_base_list_repeat1, - ACTIONS(8880), 2, - anon_sym_LBRACE, - anon_sym_where, - STATE(7023), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(7043), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767617,7 +760256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125147] = 12, + [126383] = 15, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767638,51 +760277,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9522), 4, - anon_sym_SEMI, + ACTIONS(9214), 1, anon_sym_LBRACE, - anon_sym_where, + ACTIONS(9218), 1, anon_sym_EQ_GT, - STATE(7024), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [125195] = 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(9383), 1, - anon_sym_unmanaged, - ACTIONS(9385), 1, - anon_sym_managed, - ACTIONS(9524), 1, - anon_sym_LT, - STATE(8042), 1, - sym_calling_convention, - STATE(7025), 9, + 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, @@ -767692,7 +760295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125249] = 15, + [126437] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767713,15 +760316,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9383), 1, - anon_sym_unmanaged, - ACTIONS(9385), 1, - anon_sym_managed, - ACTIONS(9526), 1, - anon_sym_LT, - STATE(7857), 1, - sym_calling_convention, - STATE(7026), 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, @@ -767731,7 +760333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125303] = 13, + [126489] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767752,13 +760354,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9528), 1, - anon_sym_EQ, - ACTIONS(9095), 3, + ACTIONS(2923), 1, anon_sym_COMMA, + ACTIONS(10052), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(7027), 9, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7046), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767768,7 +760370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125353] = 15, + [126540] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767789,15 +760391,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(9530), 1, - anon_sym_SEMI, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7028), 9, + ACTIONS(10054), 1, + anon_sym_COMMA, + ACTIONS(10056), 1, + anon_sym_GT, + STATE(7234), 1, + aux_sym_type_parameter_list_repeat1, + STATE(7047), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767807,7 +760407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125407] = 15, + [126591] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767828,15 +760428,11 @@ 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(2883), 1, - sym_accessor_list, - STATE(7733), 1, - sym_arrow_expression_clause, - STATE(7029), 9, + ACTIONS(10058), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_GT, + STATE(7048), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767846,7 +760442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125461] = 14, + [126638] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767867,14 +760463,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9120), 1, + ACTIONS(10060), 1, anon_sym_COMMA, - STATE(6963), 1, - aux_sym_base_list_repeat1, - ACTIONS(8888), 2, - anon_sym_LBRACE, - anon_sym_where, - STATE(7030), 9, + ACTIONS(10062), 1, + anon_sym_RPAREN, + STATE(7274), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7049), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767884,7 +760479,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125513] = 15, + [126689] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767905,15 +760500,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_LT, - STATE(7386), 1, - sym_type_parameter_list, - STATE(7387), 1, - sym_parameter_list, - STATE(7031), 9, + ACTIONS(9482), 1, + anon_sym_LBRACE, + ACTIONS(10064), 1, + anon_sym_COMMA, + STATE(7050), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -767923,7 +760514,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125567] = 15, + aux_sym_base_list_repeat1, + [126738] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767944,15 +760536,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7951), 1, - anon_sym_DOT, - ACTIONS(8741), 1, - anon_sym_LBRACE, - ACTIONS(9532), 1, - anon_sym_SEMI, - STATE(7756), 1, - sym_declaration_list, - STATE(7032), 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, @@ -767962,7 +760550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125621] = 15, + [126785] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -767983,15 +760571,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9421), 1, - anon_sym_COLON, - ACTIONS(9423), 1, - anon_sym_LBRACE, - STATE(7524), 1, - sym_base_list, - STATE(7755), 1, - sym_enum_member_declaration_list, - STATE(7033), 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, @@ -768001,7 +760587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125675] = 13, + [126836] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768022,13 +760608,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7057), 2, - anon_sym_and, - anon_sym_or, - ACTIONS(7130), 2, + ACTIONS(10073), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7034), 9, + 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, @@ -768038,7 +760624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125725] = 15, + [126887] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768059,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(9534), 1, - anon_sym_SEMI, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7035), 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, @@ -768077,7 +760661,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125779] = 15, + [126938] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768098,15 +760682,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(2815), 1, - sym_accessor_list, - STATE(7693), 1, - sym_arrow_expression_clause, - STATE(7036), 9, + ACTIONS(10081), 1, + anon_sym_COMMA, + ACTIONS(10083), 1, + anon_sym_RPAREN, + STATE(7321), 1, + aux_sym_tuple_expression_repeat1, + STATE(7055), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768116,7 +760698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125833] = 15, + [126989] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768137,15 +760719,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(9536), 1, - anon_sym_LBRACE, - STATE(7010), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7037), 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, @@ -768155,7 +760735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125887] = 12, + [127040] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768176,12 +760756,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(7038), 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, @@ -768191,7 +760772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125935] = 13, + [127091] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768212,13 +760793,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9540), 1, - anon_sym_EQ, - ACTIONS(9542), 3, - aux_sym_preproc_if_token3, - aux_sym_preproc_else_token1, - aux_sym_preproc_elif_token1, - STATE(7039), 9, + ACTIONS(9487), 1, + anon_sym_LBRACE, + 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, @@ -768228,7 +760809,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [125985] = 14, + [127142] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768249,14 +760830,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9391), 1, - anon_sym_and, - ACTIONS(9393), 1, - anon_sym_or, - ACTIONS(9462), 2, + ACTIONS(10091), 1, anon_sym_COMMA, + ACTIONS(10093), 1, anon_sym_RPAREN, - STATE(7040), 9, + STATE(7065), 1, + aux_sym_argument_list_repeat1, + STATE(7059), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768266,7 +760846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126037] = 15, + [127193] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768287,15 +760867,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(2891), 1, - sym_accessor_list, - STATE(7686), 1, - sym_arrow_expression_clause, - STATE(7041), 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, @@ -768305,7 +760883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126091] = 13, + [127244] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768326,13 +760904,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9391), 1, - anon_sym_and, - ACTIONS(7679), 3, + ACTIONS(2923), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_or, - STATE(7042), 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, @@ -768342,7 +760920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126141] = 14, + [127295] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768363,14 +760941,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9391), 1, - anon_sym_and, - ACTIONS(9393), 1, - anon_sym_or, - ACTIONS(7667), 2, + ACTIONS(10099), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7043), 9, + 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, @@ -768380,7 +760957,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126193] = 15, + [127346] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768401,15 +760978,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9421), 1, - anon_sym_COLON, - ACTIONS(9423), 1, - anon_sym_LBRACE, - STATE(7485), 1, - sym_base_list, - STATE(8065), 1, - sym_enum_member_declaration_list, - STATE(7044), 9, + ACTIONS(5678), 1, + anon_sym_COMMA, + 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, @@ -768419,7 +760994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126247] = 12, + [127397] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768440,12 +761015,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9544), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(7045), 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, @@ -768455,7 +761031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126295] = 13, + [127448] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768476,13 +761052,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_EQ_GT, - ACTIONS(9546), 3, + ACTIONS(10091), 1, anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(10109), 1, anon_sym_RPAREN, - STATE(7046), 9, + STATE(7221), 1, + aux_sym_argument_list_repeat1, + STATE(7065), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768492,7 +761068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126345] = 15, + [127499] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768513,15 +761089,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(9536), 1, - anon_sym_LBRACE, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7047), 9, + ACTIONS(10111), 1, + anon_sym_COMMA, + ACTIONS(10113), 1, + anon_sym_RBRACE, + STATE(7213), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7066), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768531,7 +761105,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126399] = 15, + [127550] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768552,15 +761126,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(9548), 1, - anon_sym_LBRACE, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7048), 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, @@ -768570,7 +761142,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126453] = 15, + [127601] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768591,15 +761163,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, - anon_sym_LBRACE, - STATE(6768), 1, - aux_sym__class_declaration_initializer_repeat4, - STATE(7024), 1, - sym_type_parameter_constraints_clause, - STATE(7049), 9, + ACTIONS(10119), 1, + anon_sym_COMMA, + 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, @@ -768609,7 +761179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126507] = 12, + [127652] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768630,12 +761200,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9552), 4, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - sym_escape_sequence, - STATE(7050), 9, + ACTIONS(2923), 1, + anon_sym_COMMA, + ACTIONS(10123), 1, + anon_sym_RBRACK, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7069), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [127703] = 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(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, @@ -768645,7 +761253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126555] = 15, + [127754] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768666,52 +761274,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_LT, - STATE(7499), 1, - sym_parameter_list, - STATE(7514), 1, - sym_type_parameter_list, - STATE(7051), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [126609] = 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(9556), 1, + ACTIONS(2371), 1, anon_sym_RBRACE, - STATE(7271), 1, - aux_sym__with_body_repeat1, - STATE(7052), 9, + 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, @@ -768721,7 +761290,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126660] = 14, + [127805] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768742,13 +761311,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(9558), 1, + ACTIONS(10129), 1, anon_sym_COMMA, - STATE(7361), 1, - aux_sym_initializer_expression_repeat1, - STATE(7053), 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, @@ -768758,7 +761327,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126711] = 14, + [127856] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768779,13 +761348,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(10133), 1, anon_sym_COMMA, - ACTIONS(9562), 1, - anon_sym_GT, - STATE(7114), 1, - aux_sym_type_argument_list_repeat2, - STATE(7054), 9, + ACTIONS(10135), 1, + anon_sym_RBRACK, + STATE(7110), 1, + aux_sym_list_pattern_repeat1, + STATE(7073), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768795,7 +761364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126762] = 14, + [127907] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768816,13 +761385,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9564), 1, + ACTIONS(10137), 1, anon_sym_COMMA, - ACTIONS(9566), 1, - anon_sym_RBRACE, - STATE(7300), 1, - aux_sym_enum_member_declaration_list_repeat1, - STATE(7055), 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, @@ -768832,7 +761401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126813] = 14, + [127958] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768853,13 +761422,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9568), 1, + ACTIONS(10141), 1, anon_sym_COMMA, - ACTIONS(9570), 1, - anon_sym_RPAREN, - STATE(7064), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7056), 9, + ACTIONS(10143), 1, + anon_sym_RBRACE, + STATE(7082), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7075), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768869,7 +761438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126864] = 14, + [128009] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768890,13 +761459,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9572), 1, - anon_sym_COMMA, - ACTIONS(9574), 1, + ACTIONS(2391), 1, anon_sym_RBRACE, - STATE(7150), 1, + ACTIONS(10145), 1, + anon_sym_COMMA, + STATE(7100), 1, aux_sym__switch_expression_body_repeat1, - STATE(7057), 9, + STATE(7076), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768906,7 +761475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126915] = 14, + [128060] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768927,13 +761496,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10147), 1, anon_sym_COMMA, - ACTIONS(9576), 1, + ACTIONS(10149), 1, anon_sym_RBRACK, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7058), 9, + STATE(7176), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(7077), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -768943,7 +761512,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [126966] = 14, + [128111] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -768964,13 +761533,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(9578), 1, - anon_sym_RBRACK, - STATE(7270), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7059), 9, + 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, @@ -768980,7 +761549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127017] = 14, + [128162] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769001,13 +761570,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(3141), 1, + anon_sym_RBRACE, + ACTIONS(10153), 1, anon_sym_COMMA, - ACTIONS(9580), 1, - anon_sym_GT, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7060), 9, + STATE(7355), 1, + aux_sym_initializer_expression_repeat1, + STATE(7079), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769017,7 +761586,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127068] = 14, + [128213] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769038,13 +761607,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10147), 1, anon_sym_COMMA, - ACTIONS(9582), 1, - anon_sym_RBRACE, - STATE(7335), 1, - aux_sym__with_body_repeat1, - STATE(7061), 9, + ACTIONS(10155), 1, + anon_sym_RBRACK, + STATE(7171), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(7080), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769054,7 +761623,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127119] = 14, + [128264] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769075,13 +761644,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(9584), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - STATE(7290), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7062), 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, @@ -769091,7 +761660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127170] = 13, + [128315] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769112,12 +761681,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9586), 1, - anon_sym_EQ, - ACTIONS(9542), 2, - anon_sym_COMMA, + ACTIONS(2427), 1, anon_sym_RBRACE, - STATE(7063), 9, + ACTIONS(10159), 1, + anon_sym_COMMA, + STATE(7100), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7082), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769127,7 +761697,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127219] = 13, + [128366] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769148,11 +761718,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9588), 1, + ACTIONS(10161), 1, anon_sym_COMMA, - ACTIONS(9591), 1, - anon_sym_RPAREN, - STATE(7064), 10, + 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, @@ -769162,8 +761734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_parenthesized_variable_designation_repeat1, - [127268] = 13, + [128417] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769184,11 +761755,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9593), 1, - anon_sym_SEMI, - ACTIONS(9595), 1, + ACTIONS(9400), 1, + anon_sym_LBRACE, + ACTIONS(9704), 1, anon_sym_COMMA, - STATE(7065), 10, + STATE(7058), 1, + aux_sym_base_list_repeat1, + STATE(7084), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769198,8 +761771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__for_statement_conditions_repeat1, - [127317] = 12, + [128468] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769220,11 +761792,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9598), 3, + ACTIONS(10165), 1, anon_sym_COMMA, + ACTIONS(10167), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(7066), 9, + STATE(7110), 1, + aux_sym_list_pattern_repeat1, + STATE(7085), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769234,7 +761808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127364] = 14, + [128519] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769255,13 +761829,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9600), 1, + ACTIONS(10060), 1, anon_sym_COMMA, - ACTIONS(9602), 1, - anon_sym_RBRACK, - STATE(7113), 1, - aux_sym_attribute_list_repeat1, - STATE(7067), 9, + ACTIONS(10169), 1, + anon_sym_RPAREN, + STATE(7088), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7086), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769271,7 +761845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127415] = 14, + [128570] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769292,13 +761866,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10115), 1, anon_sym_COMMA, - ACTIONS(9604), 1, + ACTIONS(10171), 1, anon_sym_RBRACE, - STATE(7052), 1, + STATE(7119), 1, aux_sym__with_body_repeat1, - STATE(7068), 9, + STATE(7087), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769308,7 +761882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127466] = 13, + [128621] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769329,49 +761903,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9606), 1, + ACTIONS(10060), 1, anon_sym_COMMA, - ACTIONS(9609), 1, + ACTIONS(10173), 1, anon_sym_RPAREN, - STATE(7069), 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_tuple_pattern_repeat1, - [127515] = 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(2927), 1, - anon_sym_COMMA, - ACTIONS(6367), 1, - anon_sym_RBRACK, - STATE(7270), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7070), 9, + STATE(7274), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7088), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769381,7 +761919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127566] = 14, + [128672] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769402,13 +761940,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6013), 1, - anon_sym_COMMA, - ACTIONS(9611), 1, - anon_sym_RPAREN, - STATE(7280), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7071), 9, + ACTIONS(9214), 1, + anon_sym_LBRACE, + ACTIONS(10175), 1, + anon_sym_SEMI, + STATE(2791), 1, + sym_accessor_list, + STATE(7089), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769418,7 +761956,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127617] = 14, + [128723] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769439,13 +761977,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6013), 1, - anon_sym_COMMA, - ACTIONS(9613), 1, - anon_sym_RPAREN, - STATE(7280), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7072), 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, @@ -769455,7 +761991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127668] = 14, + [128770] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769476,13 +762012,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9615), 1, - anon_sym_COMMA, - ACTIONS(9617), 1, - anon_sym_RPAREN, - STATE(7288), 1, - aux_sym_tuple_type_repeat1, - STATE(7073), 9, + 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, @@ -769492,7 +762028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127719] = 14, + [128821] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769513,13 +762049,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9619), 1, - anon_sym_COMMA, - ACTIONS(9621), 1, - anon_sym_RPAREN, - STATE(7088), 1, - aux_sym_parameter_list_repeat1, - STATE(7074), 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, @@ -769529,7 +762063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127770] = 14, + [128868] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769550,13 +762084,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6013), 1, + ACTIONS(10183), 1, anon_sym_COMMA, - ACTIONS(9623), 1, - anon_sym_RPAREN, - STATE(7280), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7075), 9, + ACTIONS(10185), 1, + anon_sym_RBRACK, + STATE(7054), 1, + aux_sym_bracketed_argument_list_repeat1, + STATE(7093), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769566,7 +762100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127821] = 14, + [128919] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769587,13 +762121,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9625), 1, + ACTIONS(10187), 1, anon_sym_COMMA, - ACTIONS(9627), 1, + ACTIONS(10189), 1, anon_sym_RBRACK, - STATE(7244), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7076), 9, + STATE(7052), 1, + aux_sym_attribute_list_repeat1, + STATE(7094), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769603,7 +762137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127872] = 14, + [128970] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769624,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(6347), 1, + ACTIONS(10193), 1, anon_sym_RBRACK, - STATE(7270), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7077), 9, + STATE(7138), 1, + aux_sym_calling_convention_repeat1, + STATE(7095), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769640,7 +762174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127923] = 14, + [129021] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769661,13 +762195,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(10195), 1, anon_sym_COMMA, - ACTIONS(9629), 1, - anon_sym_RBRACK, - STATE(7270), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7078), 9, + ACTIONS(10198), 1, + anon_sym_RBRACE, + STATE(7096), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769677,7 +762209,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [127974] = 14, + aux_sym_enum_member_declaration_list_repeat1, + [129070] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769698,13 +762231,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9631), 1, + ACTIONS(6739), 1, anon_sym_COMMA, - ACTIONS(9633), 1, - anon_sym_RBRACK, - STATE(7319), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7079), 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, @@ -769714,7 +762247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128025] = 14, + [129121] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769735,13 +762268,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9635), 1, + ACTIONS(10202), 1, anon_sym_COMMA, - ACTIONS(9637), 1, - anon_sym_RBRACE, - STATE(7097), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7080), 9, + ACTIONS(10205), 1, + anon_sym_GT, + STATE(7098), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769751,7 +762282,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128076] = 14, + aux_sym_type_parameter_list_repeat1, + [129170] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769772,13 +762304,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9639), 1, - anon_sym_COMMA, - ACTIONS(9641), 1, - anon_sym_RPAREN, - STATE(7111), 1, - aux_sym_argument_list_repeat1, - STATE(7081), 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, @@ -769788,7 +762318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128127] = 14, + [129217] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769809,13 +762339,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10209), 1, anon_sym_COMMA, - ACTIONS(9643), 1, - anon_sym_GT, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7082), 9, + ACTIONS(10212), 1, + anon_sym_RBRACE, + STATE(7100), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769825,7 +762353,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128178] = 14, + aux_sym__switch_expression_body_repeat1, + [129266] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769846,13 +762375,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9619), 1, + ACTIONS(10214), 1, anon_sym_COMMA, - ACTIONS(9645), 1, + ACTIONS(10217), 1, anon_sym_RPAREN, - STATE(7208), 1, - aux_sym_parameter_list_repeat1, - STATE(7083), 9, + STATE(7101), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769862,7 +762389,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128229] = 14, + aux_sym_attribute_argument_list_repeat1, + [129315] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769883,13 +762411,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9639), 1, + ACTIONS(10219), 1, anon_sym_COMMA, - ACTIONS(9647), 1, + ACTIONS(10221), 1, anon_sym_RPAREN, - STATE(7299), 1, - aux_sym_argument_list_repeat1, - STATE(7084), 9, + STATE(7283), 1, + aux_sym_tuple_pattern_repeat1, + STATE(7102), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769899,7 +762427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128280] = 14, + [129366] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769920,13 +762448,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9649), 1, + ACTIONS(10223), 1, anon_sym_COMMA, - ACTIONS(9651), 1, + ACTIONS(10226), 1, anon_sym_RPAREN, - STATE(7209), 1, - aux_sym_tuple_expression_repeat1, - STATE(7085), 9, + STATE(7103), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769936,7 +762462,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128331] = 14, + aux_sym__for_statement_conditions_repeat1, + [129415] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769957,13 +762484,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(10228), 1, anon_sym_COMMA, - ACTIONS(9653), 1, - anon_sym_GT, - STATE(7163), 1, - aux_sym_type_argument_list_repeat2, - STATE(7086), 9, + ACTIONS(10231), 1, + anon_sym_RBRACK, + STATE(7104), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -769973,7 +762498,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128382] = 14, + aux_sym_global_attribute_repeat1, + [129464] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -769994,13 +762520,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9655), 1, + ACTIONS(10235), 1, + anon_sym_EQ, + ACTIONS(10233), 2, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(9657), 1, - anon_sym_RBRACK, - STATE(7113), 1, - aux_sym_attribute_list_repeat1, - STATE(7087), 9, + STATE(7105), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [129513] = 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(10237), 1, + anon_sym_SEMI, + ACTIONS(10239), 1, + anon_sym_COMMA, + STATE(7279), 1, + aux_sym_variable_declaration_repeat1, + STATE(7106), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770010,7 +762572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128433] = 14, + [129564] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770031,13 +762593,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9619), 1, + ACTIONS(10241), 1, anon_sym_COMMA, - ACTIONS(9659), 1, + ACTIONS(10244), 1, anon_sym_RPAREN, - STATE(7291), 1, - aux_sym_parameter_list_repeat1, - STATE(7088), 9, + STATE(7107), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770047,7 +762607,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128484] = 14, + aux_sym_using_variable_declaration_repeat1, + [129613] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770068,13 +762629,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9661), 1, + ACTIONS(10246), 1, + anon_sym_EQ, + ACTIONS(9978), 2, anon_sym_COMMA, - ACTIONS(9663), 1, - anon_sym_RBRACK, - STATE(7319), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7089), 9, + anon_sym_RPAREN, + STATE(7108), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770084,7 +762644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128535] = 14, + [129662] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770105,13 +762665,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9665), 1, + ACTIONS(10250), 1, + anon_sym_EQ, + ACTIONS(10248), 2, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(9667), 1, - anon_sym_GT, - STATE(7318), 1, - aux_sym_type_parameter_list_repeat1, - STATE(7090), 9, + STATE(7109), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770121,7 +762680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128586] = 14, + [129711] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770142,13 +762701,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(10252), 1, anon_sym_COMMA, - ACTIONS(9669), 1, - anon_sym_GT, - STATE(7163), 1, - aux_sym_type_argument_list_repeat2, - STATE(7091), 9, + ACTIONS(10255), 1, + anon_sym_RBRACK, + STATE(7110), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770158,7 +762715,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128637] = 14, + aux_sym_list_pattern_repeat1, + [129760] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770179,13 +762737,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(9671), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - STATE(7290), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7092), 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, @@ -770195,7 +762753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128688] = 14, + [129811] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770216,13 +762774,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8716), 1, + ACTIONS(9388), 1, anon_sym_LBRACE, - ACTIONS(9673), 1, - anon_sym_SEMI, - STATE(2902), 1, - sym_accessor_list, - STATE(7093), 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, @@ -770232,7 +762790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128739] = 14, + [129862] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770253,13 +762811,119 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9675), 1, + ACTIONS(10257), 3, anon_sym_COMMA, - ACTIONS(9677), 1, + anon_sym_RPAREN, anon_sym_RBRACE, - STATE(7344), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7094), 9, + STATE(7113), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [129909] = 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(10091), 1, + anon_sym_COMMA, + 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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [129960] = 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(10257), 1, + anon_sym_RPAREN, + ACTIONS(10261), 1, + anon_sym_COMMA, + STATE(7115), 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_positional_pattern_clause_repeat1, + [130009] = 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(10264), 1, + anon_sym_COMMA, + ACTIONS(10267), 1, + aux_sym_preproc_if_token2, + STATE(7116), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770269,7 +762933,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128790] = 12, + aux_sym_preproc_pragma_repeat1, + [130058] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770290,11 +762955,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9679), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7095), 9, + ACTIONS(10060), 1, + anon_sym_COMMA, + ACTIONS(10269), 1, + anon_sym_RPAREN, + STATE(7274), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7117), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770304,7 +762971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128837] = 14, + [130109] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770325,13 +762992,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9681), 1, + ACTIONS(10271), 1, anon_sym_COMMA, - ACTIONS(9683), 1, + ACTIONS(10273), 1, anon_sym_RBRACK, - STATE(7247), 1, - aux_sym_attribute_list_repeat1, - STATE(7096), 9, + STATE(7122), 1, + aux_sym_bracketed_argument_list_repeat1, + STATE(7118), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770341,7 +763008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128888] = 13, + [130160] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770362,11 +763029,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9685), 1, + ACTIONS(10275), 1, anon_sym_COMMA, - ACTIONS(9688), 1, + ACTIONS(10278), 1, anon_sym_RBRACE, - STATE(7097), 10, + STATE(7119), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770376,8 +763043,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_anonymous_object_creation_expression_repeat1, - [128937] = 14, + aux_sym__with_body_repeat1, + [130209] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770398,13 +763065,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9690), 1, - anon_sym_COMMA, - ACTIONS(9692), 1, - anon_sym_RBRACK, - STATE(7286), 1, - aux_sym_list_pattern_repeat1, - STATE(7098), 9, + ACTIONS(9258), 1, + anon_sym_LBRACE, + ACTIONS(10280), 1, + anon_sym_SEMI, + STATE(7650), 1, + sym_declaration_list, + STATE(7120), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770414,7 +763081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [128988] = 14, + [130260] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770435,13 +763102,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9694), 1, + ACTIONS(10282), 1, anon_sym_COMMA, - ACTIONS(9696), 1, - anon_sym_RBRACK, - STATE(7266), 1, - aux_sym_attribute_list_repeat1, - STATE(7099), 9, + ACTIONS(10285), 1, + anon_sym_GT, + STATE(7121), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770451,7 +763116,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129039] = 14, + aux_sym_type_argument_list_repeat2, + [130309] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770472,50 +763138,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(9698), 1, + ACTIONS(10287), 1, anon_sym_COMMA, - STATE(7361), 1, - aux_sym_initializer_expression_repeat1, - STATE(7100), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [129090] = 14, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(9700), 1, - anon_sym_DQUOTE, - ACTIONS(9702), 1, - aux_sym_preproc_if_token2, - STATE(8010), 1, - sym_string_literal, - STATE(7101), 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, @@ -770525,7 +763154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129141] = 14, + [130360] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770546,13 +763175,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9704), 1, + ACTIONS(10085), 1, anon_sym_COMMA, - ACTIONS(9706), 1, - anon_sym_RBRACK, - STATE(7087), 1, - aux_sym_attribute_list_repeat1, - STATE(7102), 9, + ACTIONS(10291), 1, + anon_sym_RPAREN, + STATE(7333), 1, + aux_sym_tuple_type_repeat1, + STATE(7123), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770562,7 +763191,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129192] = 14, + [130411] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770583,13 +763212,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9615), 1, + ACTIONS(3143), 1, + anon_sym_RBRACE, + ACTIONS(10293), 1, anon_sym_COMMA, - ACTIONS(9708), 1, - anon_sym_RPAREN, - STATE(7288), 1, - aux_sym_tuple_type_repeat1, - STATE(7103), 9, + STATE(7355), 1, + aux_sym_initializer_expression_repeat1, + STATE(7124), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770599,7 +763228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129243] = 14, + [130462] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770620,13 +763249,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10295), 1, anon_sym_COMMA, - ACTIONS(9710), 1, - anon_sym_GT, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7104), 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, @@ -770636,7 +763265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129294] = 14, + [130513] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770657,13 +763286,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9712), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(9714), 1, + ACTIONS(6660), 1, anon_sym_RBRACK, - STATE(7179), 1, - aux_sym_global_attribute_repeat1, - STATE(7105), 9, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7126), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770673,7 +763302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129345] = 14, + [130564] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770694,13 +763323,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9716), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(9718), 1, - anon_sym_RBRACK, - STATE(7286), 1, - aux_sym_list_pattern_repeat1, - STATE(7106), 9, + 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, @@ -770710,7 +763339,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129396] = 14, + [130615] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770731,13 +763360,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(9720), 1, + ACTIONS(10301), 1, anon_sym_GT, - STATE(7163), 1, - aux_sym_type_argument_list_repeat2, - STATE(7107), 9, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7128), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770747,7 +763376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129447] = 14, + [130666] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770768,13 +763397,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9722), 1, + ACTIONS(10303), 1, anon_sym_COMMA, - ACTIONS(9724), 1, - anon_sym_RBRACK, - STATE(7113), 1, - aux_sym_attribute_list_repeat1, - STATE(7108), 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, @@ -770784,7 +763413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129498] = 14, + [130717] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770805,13 +763434,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9726), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(9728), 1, - anon_sym_RPAREN, - STATE(7283), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7109), 9, + ACTIONS(10307), 1, + anon_sym_RBRACK, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7130), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -770821,7 +763450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129549] = 14, + [130768] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770842,13 +763471,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(10309), 1, anon_sym_COMMA, - ACTIONS(9730), 1, - anon_sym_GT, - STATE(7086), 1, - aux_sym_type_argument_list_repeat2, - STATE(7110), 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, @@ -770858,7 +763487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129600] = 13, + [130819] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770879,11 +763508,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9732), 1, - anon_sym_COMMA, - ACTIONS(9735), 1, - anon_sym_RPAREN, - STATE(7111), 10, + 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, @@ -770893,8 +763524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_argument_list_repeat1, - [129649] = 14, + [130870] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770915,13 +763545,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10115), 1, anon_sym_COMMA, - ACTIONS(9737), 1, - anon_sym_GT, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7112), 9, + 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, @@ -770931,7 +763561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129700] = 13, + [130921] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770952,11 +763582,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_RBRACK, - STATE(7113), 10, + 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, @@ -770966,8 +763598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_attribute_list_repeat1, - [129749] = 14, + [130972] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -770988,13 +763619,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(9744), 1, + ACTIONS(10319), 1, anon_sym_GT, - STATE(7163), 1, + STATE(7121), 1, aux_sym_type_argument_list_repeat2, - STATE(7114), 9, + STATE(7135), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771004,7 +763635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129800] = 14, + [131023] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771025,13 +763656,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9746), 1, + ACTIONS(2349), 1, + anon_sym_RBRACE, + ACTIONS(10321), 1, anon_sym_COMMA, - ACTIONS(9748), 1, - anon_sym_RBRACK, - STATE(7113), 1, - aux_sym_attribute_list_repeat1, - STATE(7115), 9, + STATE(7100), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7136), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771041,7 +763672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129851] = 14, + [131074] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771062,13 +763693,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(8825), 1, + anon_sym_RBRACK, + ACTIONS(10323), 1, anon_sym_COMMA, - ACTIONS(9750), 1, - anon_sym_GT, - STATE(7139), 1, - aux_sym_type_argument_list_repeat2, - STATE(7116), 9, + STATE(7104), 1, + aux_sym_global_attribute_repeat1, + STATE(7137), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771078,7 +763709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129902] = 12, + [131125] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771099,11 +763730,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6101), 3, + ACTIONS(10325), 1, anon_sym_COMMA, + ACTIONS(10328), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(7117), 9, + STATE(7138), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771113,7 +763744,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [129949] = 14, + aux_sym_calling_convention_repeat1, + [131174] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771134,13 +763766,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(9752), 1, + ACTIONS(10060), 1, anon_sym_COMMA, - STATE(7360), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7118), 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, @@ -771150,7 +763782,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130000] = 14, + [131225] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771171,13 +763803,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9568), 1, + ACTIONS(6739), 1, anon_sym_COMMA, - ACTIONS(9754), 1, + ACTIONS(10332), 1, anon_sym_RPAREN, - STATE(7278), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7119), 9, + STATE(7103), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7140), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771187,7 +763819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130051] = 14, + [131276] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771208,13 +763840,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(2369), 1, + anon_sym_RBRACE, + ACTIONS(10334), 1, anon_sym_COMMA, - ACTIONS(6341), 1, - anon_sym_RBRACK, - STATE(7270), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7120), 9, + STATE(7168), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(7141), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771224,7 +763856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130102] = 14, + [131327] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771245,13 +763877,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(9756), 1, - anon_sym_SEMI, - STATE(7768), 1, - sym_declaration_list, - STATE(7121), 9, + ACTIONS(10085), 1, + anon_sym_COMMA, + 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, @@ -771261,7 +763893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130153] = 14, + [131378] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771282,13 +763914,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9758), 1, - anon_sym_COMMA, - ACTIONS(9760), 1, - anon_sym_RBRACK, - STATE(7319), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7122), 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, @@ -771298,7 +763930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130204] = 14, + [131429] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771319,13 +763951,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(9762), 1, + ACTIONS(10338), 1, anon_sym_RPAREN, - STATE(7056), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7123), 9, + STATE(7115), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(7144), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771335,7 +763967,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130255] = 12, + [131480] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771356,11 +763988,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9764), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(7124), 9, + ACTIONS(6739), 1, + anon_sym_COMMA, + ACTIONS(10340), 1, + anon_sym_RPAREN, + STATE(7103), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7145), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771370,7 +764004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130302] = 14, + [131531] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771391,13 +764025,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8212), 1, - anon_sym_RPAREN, - ACTIONS(9766), 1, + ACTIONS(10342), 1, anon_sym_COMMA, - STATE(7192), 1, - aux_sym_tuple_pattern_repeat1, - STATE(7125), 9, + ACTIONS(10344), 1, + anon_sym_RBRACK, + STATE(7110), 1, + aux_sym_list_pattern_repeat1, + STATE(7146), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771407,7 +764041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130353] = 14, + [131582] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771428,13 +764062,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(10346), 1, anon_sym_COMMA, - ACTIONS(9768), 1, - anon_sym_GT, - STATE(7148), 1, - aux_sym_type_argument_list_repeat2, - STATE(7126), 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, @@ -771444,7 +764078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130404] = 14, + [131633] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771465,13 +764099,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(6739), 1, anon_sym_COMMA, - ACTIONS(9770), 1, - anon_sym_GT, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7127), 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, @@ -771481,7 +764115,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130455] = 14, + [131684] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771502,13 +764136,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6013), 1, - anon_sym_COMMA, - ACTIONS(9772), 1, + ACTIONS(10237), 1, anon_sym_RPAREN, - STATE(7280), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7128), 9, + ACTIONS(10352), 1, + anon_sym_COMMA, + STATE(7181), 1, + aux_sym_variable_declaration_repeat1, + STATE(7149), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771518,7 +764152,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130506] = 14, + [131735] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771539,13 +764173,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9774), 1, + ACTIONS(10354), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_when, + STATE(7150), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [131782] = 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(10081), 1, anon_sym_COMMA, - ACTIONS(9776), 1, - anon_sym_RBRACE, - STATE(7092), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7129), 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, @@ -771555,7 +764224,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130557] = 12, + [131833] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771576,11 +764245,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9778), 3, + ACTIONS(10358), 3, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_when, - STATE(7130), 9, + STATE(7152), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771590,7 +764259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130604] = 14, + [131880] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771611,13 +764280,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(9780), 1, + ACTIONS(10360), 1, anon_sym_GT, - STATE(7163), 1, + STATE(7121), 1, aux_sym_type_argument_list_repeat2, - STATE(7131), 9, + STATE(7153), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771627,7 +764296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130655] = 14, + [131931] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771648,13 +764317,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9782), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(9784), 1, + ACTIONS(10362), 1, anon_sym_RBRACK, - STATE(7108), 1, - aux_sym_attribute_list_repeat1, - STATE(7132), 9, + STATE(7180), 1, + aux_sym_type_argument_list_repeat1, + STATE(7154), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771664,7 +764333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130706] = 14, + [131982] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771685,13 +764354,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(10364), 1, anon_sym_COMMA, - ACTIONS(9786), 1, - anon_sym_RBRACK, - STATE(7270), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7133), 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, @@ -771701,7 +764370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130757] = 14, + [132033] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771722,13 +764391,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9788), 1, + ACTIONS(10060), 1, anon_sym_COMMA, - ACTIONS(9790), 1, - anon_sym_RBRACK, - STATE(7113), 1, - aux_sym_attribute_list_repeat1, - STATE(7134), 9, + ACTIONS(10368), 1, + anon_sym_RPAREN, + STATE(7274), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7156), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771738,7 +764407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130808] = 14, + [132084] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771759,13 +764428,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10370), 1, anon_sym_COMMA, - ACTIONS(9792), 1, - anon_sym_RBRACE, - STATE(7271), 1, - aux_sym__with_body_repeat1, - STATE(7135), 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, @@ -771775,7 +764444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130859] = 14, + [132135] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771796,13 +764465,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9639), 1, + ACTIONS(10364), 1, anon_sym_COMMA, - ACTIONS(9794), 1, + ACTIONS(10374), 1, anon_sym_RPAREN, - STATE(7242), 1, - aux_sym_argument_list_repeat1, - STATE(7136), 9, + STATE(7310), 1, + aux_sym_parameter_list_repeat1, + STATE(7158), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771812,7 +764481,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130910] = 14, + [132186] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771833,13 +764502,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9796), 1, + ACTIONS(2471), 1, + anon_sym_RBRACE, + ACTIONS(10376), 1, anon_sym_COMMA, - ACTIONS(9798), 1, - anon_sym_RBRACK, - STATE(7134), 1, - aux_sym_attribute_list_repeat1, - STATE(7137), 9, + STATE(7100), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7159), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771849,7 +764518,44 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [130961] = 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, @@ -771870,13 +764576,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9800), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(9802), 1, - anon_sym_RBRACE, - STATE(7307), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7138), 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, @@ -771886,7 +764592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131012] = 14, + [132339] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771907,13 +764613,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(9804), 1, + ACTIONS(10384), 1, anon_sym_GT, - STATE(7163), 1, - aux_sym_type_argument_list_repeat2, - STATE(7139), 9, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7162), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771923,7 +764629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131063] = 12, + [132390] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771944,11 +764650,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9806), 3, + ACTIONS(10115), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_GT, - STATE(7140), 9, + ACTIONS(10386), 1, + anon_sym_RBRACE, + STATE(7119), 1, + aux_sym__with_body_repeat1, + STATE(7163), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -771958,7 +764666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131110] = 14, + [132441] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -771979,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(9808), 1, - anon_sym_RBRACK, - STATE(7270), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7141), 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, @@ -771995,7 +764703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131161] = 14, + [132492] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772016,13 +764724,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8880), 1, - anon_sym_LBRACE, - ACTIONS(9283), 1, + ACTIONS(10115), 1, anon_sym_COMMA, - STATE(7343), 1, - aux_sym_base_list_repeat1, - STATE(7142), 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, @@ -772032,7 +764740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131212] = 14, + [132543] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772053,13 +764761,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10392), 1, anon_sym_COMMA, - ACTIONS(9810), 1, + ACTIONS(10394), 1, anon_sym_RBRACK, - STATE(7169), 1, - aux_sym_type_argument_list_repeat1, - STATE(7143), 9, + STATE(7110), 1, + aux_sym_list_pattern_repeat1, + STATE(7166), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772069,7 +764777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131263] = 13, + [132594] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772090,11 +764798,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9812), 1, + ACTIONS(10396), 1, anon_sym_COMMA, - ACTIONS(9815), 1, + ACTIONS(10398), 1, anon_sym_RBRACK, - STATE(7144), 10, + STATE(7110), 1, + aux_sym_list_pattern_repeat1, + STATE(7167), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772104,8 +764814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_bracketed_parameter_list_repeat1, - [131312] = 14, + [132645] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772126,13 +764835,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7208), 1, - anon_sym_LBRACE, - ACTIONS(9817), 1, - anon_sym_LPAREN, - STATE(7553), 1, - sym_block, - STATE(7145), 9, + ACTIONS(10257), 1, + anon_sym_RBRACE, + ACTIONS(10400), 1, + anon_sym_COMMA, + STATE(7168), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772142,7 +764849,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131363] = 12, + aux_sym_positional_pattern_clause_repeat1, + [132694] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772163,11 +764871,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9819), 3, - anon_sym_SEMI, + ACTIONS(10403), 1, anon_sym_COMMA, + ACTIONS(10406), 1, anon_sym_RPAREN, - STATE(7146), 9, + STATE(7169), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772177,7 +764885,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131410] = 14, + aux_sym_tuple_pattern_repeat1, + [132743] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772198,13 +764907,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9821), 1, + ACTIONS(2509), 1, + anon_sym_RBRACE, + ACTIONS(10408), 1, anon_sym_COMMA, - ACTIONS(9823), 1, - anon_sym_RBRACK, - STATE(7223), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7147), 9, + STATE(7100), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7170), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772214,7 +764923,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131461] = 14, + [132794] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772235,13 +764944,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(10147), 1, anon_sym_COMMA, - ACTIONS(9825), 1, - anon_sym_GT, - STATE(7163), 1, - aux_sym_type_argument_list_repeat2, - STATE(7148), 9, + 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, @@ -772251,7 +764960,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131512] = 14, + [132845] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772272,13 +764981,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(9827), 1, + ACTIONS(10412), 1, anon_sym_GT, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7149), 9, + STATE(7121), 1, + aux_sym_type_argument_list_repeat2, + STATE(7172), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772288,7 +764997,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131563] = 14, + [132896] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772309,13 +765018,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2441), 1, - anon_sym_RBRACE, - ACTIONS(9829), 1, + ACTIONS(10414), 1, anon_sym_COMMA, - STATE(7290), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7150), 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, @@ -772325,7 +765034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131614] = 14, + [132947] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772346,13 +765055,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(9831), 1, - anon_sym_SEMI, - STATE(2914), 1, - sym_accessor_list, - STATE(7151), 9, + ACTIONS(10418), 1, + anon_sym_COMMA, + ACTIONS(10420), 1, + anon_sym_RBRACK, + STATE(7278), 1, + aux_sym_attribute_list_repeat1, + STATE(7174), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772362,7 +765071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131665] = 14, + [132998] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772383,13 +765092,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9568), 1, + ACTIONS(10115), 1, anon_sym_COMMA, - ACTIONS(9833), 1, - anon_sym_RPAREN, - STATE(7276), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7152), 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, @@ -772399,7 +765108,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131716] = 12, + [133049] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772420,11 +765129,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9835), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7153), 9, + ACTIONS(10147), 1, + anon_sym_COMMA, + ACTIONS(10424), 1, + anon_sym_RBRACK, + STATE(7296), 1, + aux_sym_bracketed_parameter_list_repeat1, + STATE(7176), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772434,7 +765145,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131763] = 14, + [133100] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772455,13 +765166,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(10426), 1, anon_sym_COMMA, - ACTIONS(9837), 1, + ACTIONS(10428), 1, anon_sym_RBRACK, - STATE(7270), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7154), 9, + STATE(7276), 1, + aux_sym_bracketed_argument_list_repeat1, + STATE(7177), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772471,7 +765182,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131814] = 14, + [133151] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772492,13 +765203,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9839), 1, - anon_sym_COMMA, - ACTIONS(9841), 1, - anon_sym_RBRACK, - STATE(7200), 1, - aux_sym_attribute_list_repeat1, - STATE(7155), 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, @@ -772508,7 +765217,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131865] = 12, + [133198] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772529,11 +765238,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9843), 3, + ACTIONS(10432), 1, + anon_sym_COMMA, + ACTIONS(10434), 1, anon_sym_RBRACE, - anon_sym_case, - anon_sym_default, - STATE(7156), 9, + STATE(7170), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7179), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772543,7 +765254,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131912] = 13, + [133249] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772564,12 +765275,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9845), 1, - anon_sym_EQ, - ACTIONS(9847), 2, + ACTIONS(5678), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7157), 9, + 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, @@ -772579,7 +765291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [131961] = 14, + [133300] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772600,13 +765312,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8888), 1, - anon_sym_LBRACE, - ACTIONS(9283), 1, + ACTIONS(10438), 1, anon_sym_COMMA, - STATE(7265), 1, - aux_sym_base_list_repeat1, - STATE(7158), 9, + ACTIONS(10441), 1, + anon_sym_RPAREN, + STATE(7181), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772616,7 +765326,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132012] = 14, + aux_sym_variable_declaration_repeat1, + [133349] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772637,13 +765348,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(6133), 1, + ACTIONS(10443), 1, anon_sym_RBRACK, - STATE(7270), 1, + STATE(7275), 1, aux_sym_array_rank_specifier_repeat1, - STATE(7159), 9, + STATE(7182), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772653,7 +765364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132063] = 14, + [133400] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772674,13 +765385,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9649), 1, + ACTIONS(10445), 1, anon_sym_COMMA, - ACTIONS(9849), 1, - anon_sym_RPAREN, - STATE(7209), 1, - aux_sym_tuple_expression_repeat1, - STATE(7160), 9, + ACTIONS(10447), 1, + anon_sym_RBRACK, + STATE(7259), 1, + aux_sym_attribute_list_repeat1, + STATE(7183), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772690,7 +765401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132114] = 14, + [133451] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772711,13 +765422,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, - anon_sym_SEMI, - ACTIONS(9853), 1, + ACTIONS(10449), 1, anon_sym_COMMA, - STATE(7249), 1, - aux_sym_variable_declaration_repeat1, - STATE(7161), 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, @@ -772727,7 +765438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132165] = 14, + [133502] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772748,13 +765459,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9855), 1, + ACTIONS(10453), 1, anon_sym_COMMA, - ACTIONS(9857), 1, + ACTIONS(10455), 1, anon_sym_RBRACK, - STATE(7079), 1, + STATE(7173), 1, aux_sym_bracketed_argument_list_repeat1, - STATE(7162), 9, + STATE(7185), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772764,7 +765475,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132216] = 13, + [133553] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772785,11 +765496,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9859), 1, + ACTIONS(6865), 3, anon_sym_COMMA, - ACTIONS(9862), 1, - anon_sym_GT, - STATE(7163), 10, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(7186), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772799,8 +765510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_type_argument_list_repeat2, - [132265] = 13, + [133600] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772821,12 +765531,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9864), 1, - anon_sym_EQ, - ACTIONS(9847), 2, - anon_sym_SEMI, + ACTIONS(10364), 1, anon_sym_COMMA, - STATE(7164), 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, @@ -772836,7 +765547,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132314] = 14, + [133651] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772857,13 +765568,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6373), 1, + ACTIONS(10364), 1, anon_sym_COMMA, - ACTIONS(9866), 1, - anon_sym_SEMI, - STATE(7065), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7165), 9, + 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, @@ -772873,7 +765584,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132365] = 14, + [133702] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772894,13 +765605,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, - anon_sym_COMMA, - ACTIONS(9868), 1, - anon_sym_GT, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7166), 9, + 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, @@ -772910,7 +765621,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132416] = 14, + [133753] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -772931,13 +765642,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9870), 1, + ACTIONS(10461), 1, + anon_sym_EQ, + ACTIONS(10248), 2, anon_sym_COMMA, - ACTIONS(9872), 1, anon_sym_RPAREN, - STATE(7333), 1, - aux_sym_variable_declaration_repeat1, - STATE(7167), 9, + STATE(7190), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -772947,34 +765657,33 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132467] = 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(9874), 1, - anon_sym_COMMA, - ACTIONS(9876), 1, - anon_sym_RBRACE, - STATE(7097), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7168), 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, @@ -772984,7 +765693,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132518] = 14, + [133851] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773005,13 +765714,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10467), 1, + anon_sym_EQ, + ACTIONS(10233), 2, anon_sym_COMMA, - ACTIONS(9878), 1, - anon_sym_RBRACK, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7169), 9, + anon_sym_RPAREN, + STATE(7192), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773021,7 +765729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132569] = 14, + [133900] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773042,13 +765750,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(9880), 1, - anon_sym_SEMI, - STATE(2849), 1, - sym_accessor_list, - STATE(7170), 9, + ACTIONS(5678), 1, + anon_sym_COMMA, + 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, @@ -773058,7 +765766,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132620] = 14, + [133951] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773079,13 +765787,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_EQ_GT, - ACTIONS(9546), 1, - anon_sym_RPAREN, - ACTIONS(9882), 1, + ACTIONS(10060), 1, anon_sym_COMMA, - STATE(7171), 9, + ACTIONS(10471), 1, + anon_sym_RPAREN, + STATE(7156), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7194), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773095,7 +765803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132671] = 14, + [134002] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773116,13 +765824,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10473), 1, anon_sym_COMMA, - ACTIONS(9887), 1, + ACTIONS(10475), 1, anon_sym_RBRACK, - STATE(7144), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(7172), 9, + STATE(7258), 1, + aux_sym_attribute_list_repeat1, + STATE(7195), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773132,7 +765840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132722] = 13, + [134053] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773153,12 +765861,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9889), 1, - anon_sym_EQ, - ACTIONS(9891), 2, + ACTIONS(10085), 1, anon_sym_COMMA, + ACTIONS(10477), 1, anon_sym_RPAREN, - STATE(7173), 9, + STATE(7333), 1, + aux_sym_tuple_type_repeat1, + STATE(7196), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773168,7 +765877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132771] = 14, + [134104] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773189,13 +765898,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(9893), 1, - anon_sym_GT, - STATE(7198), 1, - aux_sym_type_argument_list_repeat2, - STATE(7174), 9, + ACTIONS(7024), 1, + anon_sym_RBRACK, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7197), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773205,7 +765914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132822] = 14, + [134155] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773226,13 +765935,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10479), 1, anon_sym_COMMA, - ACTIONS(9895), 1, - anon_sym_RBRACK, - STATE(7144), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(7175), 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, @@ -773242,7 +765951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132873] = 14, + [134206] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773263,13 +765972,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10091), 1, anon_sym_COMMA, - ACTIONS(9897), 1, - anon_sym_GT, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7176), 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, @@ -773279,7 +765988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132924] = 14, + [134257] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773300,13 +766009,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(9899), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - STATE(7360), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7177), 9, + 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, @@ -773316,7 +766025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [132975] = 14, + [134308] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773337,13 +766046,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10487), 1, anon_sym_COMMA, - ACTIONS(9901), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_type_argument_list_repeat1, - STATE(7178), 9, + 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, @@ -773353,7 +766062,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133026] = 14, + [134359] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773374,13 +766083,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8279), 1, - anon_sym_RBRACK, - ACTIONS(9903), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - STATE(7251), 1, - aux_sym_global_attribute_repeat1, - STATE(7179), 9, + 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, @@ -773390,7 +766099,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133077] = 14, + [134410] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773411,13 +766120,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_LBRACE, - ACTIONS(9817), 1, - anon_sym_LPAREN, - STATE(1995), 1, - sym_block, - STATE(7180), 9, + ACTIONS(10099), 1, + anon_sym_COMMA, + 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, @@ -773427,7 +766136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133128] = 14, + [134461] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773448,13 +766157,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6899), 1, - anon_sym_LBRACE, - ACTIONS(9817), 1, - anon_sym_LPAREN, - STATE(2063), 1, - sym_block, - STATE(7181), 9, + ACTIONS(5678), 1, + anon_sym_COMMA, + 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, @@ -773464,7 +766173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133179] = 14, + [134512] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773485,13 +766194,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(9905), 1, - anon_sym_RBRACE, - STATE(7271), 1, - aux_sym__with_body_repeat1, - STATE(7182), 9, + ACTIONS(10497), 1, + anon_sym_RBRACK, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7205), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773501,34 +766210,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133230] = 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(9560), 1, + ACTIONS(10499), 1, anon_sym_COMMA, - ACTIONS(9907), 1, - anon_sym_GT, - STATE(7107), 1, - aux_sym_type_argument_list_repeat2, - STATE(7183), 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, @@ -773538,7 +766247,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133281] = 14, + [134614] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773559,13 +766268,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9909), 1, - anon_sym_COMMA, - ACTIONS(9911), 1, - anon_sym_RBRACK, - STATE(7239), 1, - aux_sym_attribute_list_repeat1, - STATE(7184), 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, @@ -773575,7 +766282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133332] = 14, + [134661] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773596,13 +766303,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(9913), 1, + ACTIONS(10505), 1, anon_sym_GT, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7185), 9, + STATE(7121), 1, + aux_sym_type_argument_list_repeat2, + STATE(7208), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773612,7 +766319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133383] = 12, + [134712] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773633,48 +766340,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9915), 3, - anon_sym_SEMI, + ACTIONS(9214), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7186), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [133430] = 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(5736), 1, - anon_sym_COLON, - ACTIONS(9917), 1, - sym_interpolation_close_brace, - STATE(7963), 1, - sym_interpolation_format_clause, - STATE(7187), 9, + ACTIONS(10507), 1, + anon_sym_SEMI, + STATE(2850), 1, + sym_accessor_list, + STATE(7209), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773684,7 +766356,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133481] = 14, + [134763] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773705,13 +766377,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9726), 1, + ACTIONS(10226), 1, + anon_sym_SEMI, + ACTIONS(10509), 1, anon_sym_COMMA, - ACTIONS(9919), 1, - anon_sym_RPAREN, - STATE(7283), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7188), 9, + STATE(7210), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773721,7 +766391,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133532] = 14, + aux_sym__for_statement_conditions_repeat1, + [134812] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773742,13 +766413,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9921), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(9923), 1, - anon_sym_RBRACE, - STATE(7080), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7189), 9, + ACTIONS(7040), 1, + anon_sym_RBRACK, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7211), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773758,7 +766429,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133583] = 14, + [134863] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773779,13 +766450,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9925), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(9927), 1, + ACTIONS(10512), 1, anon_sym_RBRACK, - STATE(7297), 1, - aux_sym_calling_convention_repeat1, - STATE(7190), 9, + STATE(7193), 1, + aux_sym_type_argument_list_repeat1, + STATE(7212), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773795,7 +766466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133634] = 14, + [134914] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773816,13 +766487,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9929), 1, + ACTIONS(10514), 1, anon_sym_COMMA, - ACTIONS(9931), 1, + ACTIONS(10517), 1, anon_sym_RBRACE, - STATE(7062), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7191), 9, + STATE(7213), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773832,7 +766501,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133685] = 14, + aux_sym_anonymous_object_creation_expression_repeat1, + [134963] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773853,13 +766523,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9766), 1, + ACTIONS(10519), 1, anon_sym_COMMA, - ACTIONS(9933), 1, - anon_sym_RPAREN, - STATE(7069), 1, - aux_sym_tuple_pattern_repeat1, - STATE(7192), 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, @@ -773869,7 +766539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133736] = 14, + [135014] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773890,13 +766560,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(9935), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - STATE(7361), 1, - aux_sym_initializer_expression_repeat1, - STATE(7193), 9, + ACTIONS(10523), 1, + anon_sym_RBRACK, + STATE(7270), 1, + aux_sym_type_argument_list_repeat1, + STATE(7215), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773906,7 +766576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133787] = 12, + [135065] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773927,11 +766597,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6337), 3, + ACTIONS(10525), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(7194), 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, @@ -773941,7 +766613,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133834] = 14, + [135116] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773962,13 +766634,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9766), 1, + ACTIONS(6749), 3, anon_sym_COMMA, - ACTIONS(9937), 1, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(7069), 1, - aux_sym_tuple_pattern_repeat1, - STATE(7195), 9, + STATE(7217), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -773978,7 +766648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133885] = 14, + [135163] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -773999,13 +766669,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9639), 1, + ACTIONS(10091), 1, anon_sym_COMMA, - ACTIONS(9939), 1, + ACTIONS(10529), 1, anon_sym_RPAREN, - STATE(7081), 1, + STATE(7199), 1, aux_sym_argument_list_repeat1, - STATE(7196), 9, + STATE(7218), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774015,7 +766685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133936] = 14, + [135214] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774036,13 +766706,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9639), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(9941), 1, - anon_sym_RPAREN, - STATE(7111), 1, - aux_sym_argument_list_repeat1, - STATE(7197), 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, @@ -774052,7 +766722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [133987] = 14, + [135265] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774073,13 +766743,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(3121), 1, + anon_sym_RBRACE, + ACTIONS(10533), 1, anon_sym_COMMA, - ACTIONS(9943), 1, - anon_sym_GT, - STATE(7163), 1, - aux_sym_type_argument_list_repeat2, - STATE(7198), 9, + STATE(7355), 1, + aux_sym_initializer_expression_repeat1, + STATE(7220), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774089,7 +766759,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134038] = 14, + [135316] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774110,13 +766780,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9945), 1, + ACTIONS(10535), 1, anon_sym_COMMA, - ACTIONS(9947), 1, - anon_sym_RBRACK, - STATE(7113), 1, - aux_sym_attribute_list_repeat1, - STATE(7199), 9, + ACTIONS(10538), 1, + anon_sym_RPAREN, + STATE(7221), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774126,7 +766794,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134089] = 14, + aux_sym_argument_list_repeat1, + [135365] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774147,13 +766816,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9949), 1, + ACTIONS(10085), 1, anon_sym_COMMA, - ACTIONS(9951), 1, - anon_sym_RBRACK, - STATE(7113), 1, - aux_sym_attribute_list_repeat1, - STATE(7200), 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, @@ -774163,7 +766832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134140] = 12, + [135416] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774184,11 +766853,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6193), 3, + ACTIONS(10081), 1, anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(10542), 1, anon_sym_RPAREN, - STATE(7201), 9, + STATE(7321), 1, + aux_sym_tuple_expression_repeat1, + STATE(7223), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774198,7 +766869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134187] = 14, + [135467] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774219,13 +766890,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9953), 1, + ACTIONS(10544), 1, anon_sym_COMMA, - ACTIONS(9955), 1, + ACTIONS(10546), 1, anon_sym_RBRACK, - STATE(7230), 1, + STATE(7263), 1, aux_sym_bracketed_argument_list_repeat1, - STATE(7202), 9, + STATE(7224), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774235,7 +766906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134238] = 14, + [135518] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774256,50 +766927,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9568), 1, - anon_sym_COMMA, - ACTIONS(9957), 1, - anon_sym_RPAREN, - STATE(7227), 1, - aux_sym_parenthesized_variable_designation_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, - [134289] = 14, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(9959), 1, + ACTIONS(10548), 1, anon_sym_COMMA, - ACTIONS(9961), 1, - aux_sym_preproc_if_token2, - STATE(7315), 1, - aux_sym_preproc_pragma_repeat1, - STATE(7204), 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, @@ -774309,7 +766943,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134340] = 12, + [135569] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774330,11 +766964,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9963), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_when, - STATE(7205), 9, + ACTIONS(10552), 1, + anon_sym_COMMA, + 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, @@ -774344,7 +766980,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134387] = 12, + [135620] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774365,11 +767001,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9965), 3, - anon_sym_LPAREN, + ACTIONS(9258), 1, anon_sym_LBRACE, - anon_sym_when, - STATE(7206), 9, + ACTIONS(10556), 1, + anon_sym_SEMI, + STATE(8035), 1, + sym_declaration_list, + STATE(7227), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774379,7 +767017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134434] = 14, + [135671] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774400,13 +767038,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9967), 1, + ACTIONS(10191), 1, anon_sym_COMMA, - ACTIONS(9969), 1, + ACTIONS(10558), 1, anon_sym_RBRACK, - STATE(7286), 1, - aux_sym_list_pattern_repeat1, - STATE(7207), 9, + STATE(7095), 1, + aux_sym_calling_convention_repeat1, + STATE(7228), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774416,7 +767054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134485] = 14, + [135722] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774437,13 +767075,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9619), 1, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8191), 1, + anon_sym_STAR, + ACTIONS(9576), 1, anon_sym_COMMA, - ACTIONS(9971), 1, - anon_sym_RPAREN, - STATE(7291), 1, - aux_sym_parameter_list_repeat1, - STATE(7208), 9, + STATE(7229), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774453,7 +767091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134536] = 13, + [135773] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774474,11 +767112,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9973), 1, + ACTIONS(8189), 1, + anon_sym_LBRACK, + ACTIONS(8213), 1, + anon_sym_QMARK, + ACTIONS(9576), 1, anon_sym_COMMA, - ACTIONS(9976), 1, - anon_sym_RPAREN, - STATE(7209), 10, + STATE(7230), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774488,8 +767128,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_tuple_expression_repeat1, - [134585] = 14, + [135824] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774510,13 +767149,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6013), 1, + ACTIONS(10560), 1, + anon_sym_EQ, + ACTIONS(10014), 2, anon_sym_COMMA, - ACTIONS(9978), 1, - anon_sym_RPAREN, - STATE(7280), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7210), 9, + anon_sym_RBRACE, + STATE(7231), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774526,7 +767164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134636] = 14, + [135873] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774547,13 +767185,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6013), 1, + ACTIONS(8709), 1, + anon_sym_RBRACE, + ACTIONS(10562), 1, anon_sym_COMMA, - ACTIONS(9980), 1, - anon_sym_RPAREN, - STATE(7280), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7211), 9, + STATE(7096), 1, + aux_sym_enum_member_declaration_list_repeat1, + STATE(7232), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774563,7 +767201,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134687] = 14, + [135924] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774584,13 +767222,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(9025), 1, + ACTIONS(10564), 1, anon_sym_COMMA, - STATE(7212), 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, @@ -774600,7 +767238,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134738] = 14, + [135975] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774621,13 +767259,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9982), 1, + ACTIONS(10054), 1, anon_sym_COMMA, - ACTIONS(9984), 1, - anon_sym_RBRACE, - STATE(7168), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7213), 9, + 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, @@ -774637,7 +767275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134789] = 14, + [136026] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774658,13 +767296,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9639), 1, + ACTIONS(10091), 1, anon_sym_COMMA, - ACTIONS(9986), 1, + ACTIONS(10570), 1, anon_sym_RPAREN, - STATE(7197), 1, + STATE(7221), 1, aux_sym_argument_list_repeat1, - STATE(7214), 9, + STATE(7235), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774674,7 +767312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134840] = 13, + [136077] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774695,11 +767333,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9988), 1, + ACTIONS(10572), 3, anon_sym_COMMA, - ACTIONS(9991), 1, anon_sym_RBRACK, - STATE(7215), 10, + anon_sym_RPAREN, + STATE(7236), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774709,8 +767347,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_calling_convention_repeat1, - [134889] = 14, + [136124] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774731,13 +767368,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9993), 1, + ACTIONS(6967), 3, anon_sym_COMMA, - ACTIONS(9995), 1, anon_sym_RBRACK, - STATE(7199), 1, - aux_sym_attribute_list_repeat1, - STATE(7216), 9, + anon_sym_RPAREN, + STATE(7237), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774747,7 +767382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134940] = 14, + [136171] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774768,13 +767403,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(10574), 1, anon_sym_COMMA, - ACTIONS(9997), 1, - anon_sym_GT, - STATE(7163), 1, - aux_sym_type_argument_list_repeat2, - STATE(7217), 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, @@ -774784,7 +767419,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [134991] = 14, + [136222] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774805,13 +767440,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(9999), 1, + ACTIONS(10578), 1, anon_sym_COMMA, - STATE(7361), 1, - aux_sym_initializer_expression_repeat1, - STATE(7218), 9, + ACTIONS(10580), 1, + anon_sym_RBRACK, + STATE(7258), 1, + aux_sym_attribute_list_repeat1, + STATE(7239), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774821,7 +767456,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135042] = 14, + [136273] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774842,13 +767477,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10001), 1, - anon_sym_COMMA, - ACTIONS(10003), 1, - anon_sym_RBRACK, - STATE(7286), 1, - aux_sym_list_pattern_repeat1, - STATE(7219), 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, @@ -774858,7 +767493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135093] = 14, + [136324] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774879,13 +767514,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10005), 1, + ACTIONS(10582), 1, anon_sym_COMMA, - ACTIONS(10007), 1, - anon_sym_RBRACK, - STATE(7067), 1, - aux_sym_attribute_list_repeat1, - STATE(7220), 9, + 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, @@ -774895,7 +767530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135144] = 14, + [136375] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774916,13 +767551,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7749), 1, - anon_sym_QMARK, - ACTIONS(9025), 1, + ACTIONS(8760), 1, + anon_sym_RPAREN, + ACTIONS(10219), 1, anon_sym_COMMA, - STATE(7221), 9, + STATE(7282), 1, + aux_sym_tuple_pattern_repeat1, + STATE(7242), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -774932,7 +767567,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135195] = 14, + [136426] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774953,13 +767588,13 @@ 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(10009), 1, + ACTIONS(8807), 1, anon_sym_RBRACK, - STATE(7270), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7222), 9, + 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, @@ -774969,7 +767604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135246] = 14, + [136477] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -774990,13 +767625,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10011), 1, + ACTIONS(10588), 1, anon_sym_COMMA, - ACTIONS(10013), 1, + ACTIONS(10590), 1, anon_sym_RBRACK, - STATE(7319), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7223), 9, + STATE(7243), 1, + aux_sym_global_attribute_repeat1, + STATE(7244), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775006,7 +767641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135297] = 14, + [136528] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775027,13 +767662,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9615), 1, + ACTIONS(10592), 1, anon_sym_COMMA, - ACTIONS(10015), 1, - anon_sym_RPAREN, - STATE(7288), 1, - aux_sym_tuple_type_repeat1, - STATE(7224), 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, @@ -775043,7 +767678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135348] = 14, + [136579] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775064,13 +767699,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(8267), 1, + anon_sym_DOT, + ACTIONS(4361), 2, anon_sym_COMMA, - ACTIONS(10017), 1, - anon_sym_RBRACE, - STATE(7182), 1, - aux_sym__with_body_repeat1, - STATE(7225), 9, + anon_sym_GT, + STATE(7246), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775080,7 +767714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135399] = 14, + [136628] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775101,13 +767735,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9649), 1, + ACTIONS(10582), 1, anon_sym_COMMA, - ACTIONS(10019), 1, + ACTIONS(10596), 1, anon_sym_RPAREN, - STATE(7209), 1, - aux_sym_tuple_expression_repeat1, - STATE(7226), 9, + STATE(7107), 1, + aux_sym_using_variable_declaration_repeat1, + STATE(7247), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775117,7 +767751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135450] = 14, + [136679] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775138,13 +767772,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9568), 1, + ACTIONS(10352), 1, anon_sym_COMMA, - ACTIONS(10021), 1, + ACTIONS(10598), 1, anon_sym_RPAREN, - STATE(7064), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7227), 9, + STATE(7149), 1, + aux_sym_variable_declaration_repeat1, + STATE(7248), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775154,7 +767788,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135501] = 14, + [136730] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775175,13 +767809,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9615), 1, + ACTIONS(10600), 1, anon_sym_COMMA, - ACTIONS(10023), 1, - anon_sym_RPAREN, - STATE(7288), 1, - aux_sym_tuple_type_repeat1, - STATE(7228), 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, @@ -775191,7 +767825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135552] = 14, + [136781] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775212,13 +767846,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6013), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10025), 1, - anon_sym_RPAREN, - STATE(7280), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7229), 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, @@ -775228,7 +767862,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135603] = 14, + [136832] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775249,13 +767883,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10027), 1, - anon_sym_COMMA, - ACTIONS(10029), 1, - anon_sym_RBRACK, - STATE(7319), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7230), 9, + 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, @@ -775265,34 +767899,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135654] = 14, - 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(2927), 1, + ACTIONS(10499), 1, anon_sym_COMMA, - ACTIONS(6021), 1, - anon_sym_RBRACK, - STATE(7270), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7231), 9, + 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, @@ -775302,7 +767936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135705] = 14, + [136934] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775323,13 +767957,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10031), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10033), 1, - anon_sym_RBRACK, - STATE(7286), 1, - aux_sym_list_pattern_repeat1, - STATE(7232), 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, @@ -775339,7 +767973,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135756] = 14, + [136985] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775360,13 +767994,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10035), 1, + ACTIONS(10612), 1, anon_sym_GT, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7233), 9, + STATE(7153), 1, + aux_sym_type_argument_list_repeat2, + STATE(7254), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775376,7 +768010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135807] = 14, + [137036] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775397,48 +768031,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9649), 1, + ACTIONS(10085), 1, anon_sym_COMMA, - ACTIONS(10037), 1, + ACTIONS(10614), 1, anon_sym_RPAREN, - STATE(7209), 1, - aux_sym_tuple_expression_repeat1, - STATE(7234), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [135858] = 13, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(10039), 1, - anon_sym_COMMA, - ACTIONS(10042), 1, - aux_sym_preproc_if_token2, - STATE(7235), 10, + STATE(7333), 1, + aux_sym_tuple_type_repeat1, + STATE(7255), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775448,8 +768047,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_preproc_pragma_repeat1, - [135907] = 14, + [137087] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775470,13 +768068,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(10044), 1, - anon_sym_GT, - STATE(7091), 1, - aux_sym_type_argument_list_repeat2, - STATE(7236), 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, @@ -775486,7 +768084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [135958] = 14, + [137138] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775507,13 +768105,11 @@ 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(10046), 1, - anon_sym_COMMA, - STATE(7361), 1, - aux_sym_initializer_expression_repeat1, - STATE(7237), 9, + 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, @@ -775523,7 +768119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136009] = 14, + [137185] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775544,13 +768140,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9649), 1, + ACTIONS(10618), 1, anon_sym_COMMA, - ACTIONS(10048), 1, - anon_sym_RPAREN, - STATE(7209), 1, - aux_sym_tuple_expression_repeat1, - STATE(7238), 9, + ACTIONS(10621), 1, + anon_sym_RBRACK, + STATE(7258), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775560,7 +768154,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136060] = 14, + aux_sym_attribute_list_repeat1, + [137234] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775581,49 +768176,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10050), 1, + ACTIONS(10623), 1, anon_sym_COMMA, - ACTIONS(10052), 1, + ACTIONS(10625), 1, anon_sym_RBRACK, - STATE(7113), 1, + STATE(7258), 1, aux_sym_attribute_list_repeat1, - STATE(7239), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [136111] = 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(10054), 1, - anon_sym_EQ, - ACTIONS(9508), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7240), 9, + STATE(7259), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775633,7 +768192,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136160] = 14, + [137285] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775654,13 +768213,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9615), 1, - anon_sym_COMMA, - ACTIONS(10056), 1, - anon_sym_RPAREN, - STATE(7288), 1, - aux_sym_tuple_type_repeat1, - STATE(7241), 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, @@ -775670,7 +768229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136211] = 14, + [137336] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775691,13 +768250,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9639), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10058), 1, - anon_sym_RPAREN, - STATE(7111), 1, - aux_sym_argument_list_repeat1, - STATE(7242), 9, + 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, @@ -775707,7 +768266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136262] = 14, + [137387] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775728,13 +768287,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9639), 1, + ACTIONS(10239), 1, anon_sym_COMMA, - ACTIONS(10060), 1, - anon_sym_RPAREN, - STATE(7111), 1, - aux_sym_argument_list_repeat1, - STATE(7243), 9, + 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, @@ -775744,7 +768303,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136313] = 14, + [137438] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775765,13 +768324,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10062), 1, + ACTIONS(10631), 1, anon_sym_COMMA, - ACTIONS(10064), 1, + ACTIONS(10634), 1, anon_sym_RBRACK, - STATE(7319), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7244), 9, + STATE(7263), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775781,7 +768338,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136364] = 13, + aux_sym_bracketed_argument_list_repeat1, + [137487] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775802,11 +768360,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10066), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10069), 1, - anon_sym_RPAREN, - STATE(7245), 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, @@ -775816,8 +768376,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_using_variable_declaration_repeat1, - [136413] = 14, + [137538] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775838,13 +768397,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10071), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10073), 1, - anon_sym_RPAREN, - STATE(7260), 1, - aux_sym_using_variable_declaration_repeat1, - STATE(7246), 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, @@ -775854,7 +768413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136464] = 14, + [137589] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775875,13 +768434,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10075), 1, + ACTIONS(10640), 1, anon_sym_COMMA, - ACTIONS(10077), 1, + ACTIONS(10642), 1, anon_sym_RBRACK, - STATE(7113), 1, - aux_sym_attribute_list_repeat1, - STATE(7247), 9, + STATE(7224), 1, + aux_sym_bracketed_argument_list_repeat1, + STATE(7266), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775891,7 +768450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136515] = 14, + [137640] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775912,13 +768471,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(10644), 1, anon_sym_COMMA, - ACTIONS(6399), 1, + ACTIONS(10646), 1, anon_sym_RBRACK, - STATE(7270), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7248), 9, + STATE(7226), 1, + aux_sym_attribute_list_repeat1, + STATE(7267), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -775928,7 +768487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136566] = 14, + [137691] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775949,13 +768508,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9853), 1, + ACTIONS(10115), 1, anon_sym_COMMA, - ACTIONS(9872), 1, - anon_sym_SEMI, - STATE(7267), 1, - aux_sym_variable_declaration_repeat1, - STATE(7249), 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, @@ -775965,7 +768524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136617] = 14, + [137742] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -775986,13 +768545,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10079), 1, + ACTIONS(10650), 1, anon_sym_COMMA, - ACTIONS(10081), 1, - anon_sym_RBRACK, - STATE(7286), 1, - aux_sym_list_pattern_repeat1, - STATE(7250), 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, @@ -776002,7 +768561,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136668] = 13, + [137793] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776023,11 +768582,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10083), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10086), 1, + ACTIONS(10654), 1, anon_sym_RBRACK, - STATE(7251), 10, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7270), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776037,8 +768598,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_global_attribute_repeat1, - [136717] = 14, + [137844] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776059,13 +768619,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10088), 1, + ACTIONS(10656), 1, anon_sym_COMMA, - ACTIONS(10090), 1, - anon_sym_RBRACK, - STATE(7286), 1, - aux_sym_list_pattern_repeat1, - STATE(7252), 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, @@ -776075,7 +768635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136768] = 14, + [137895] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776096,13 +768656,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10092), 1, + ACTIONS(10574), 1, anon_sym_COMMA, - ACTIONS(10094), 1, - anon_sym_RBRACE, - STATE(7177), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7253), 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, @@ -776112,7 +768672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136819] = 14, + [137946] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776133,13 +768693,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(8090), 1, - sym_attribute_list, - STATE(7254), 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, @@ -776149,7 +768709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136870] = 14, + [137997] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776170,13 +768730,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10662), 1, anon_sym_COMMA, - ACTIONS(10096), 1, - anon_sym_RBRACK, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7255), 9, + ACTIONS(10665), 1, + anon_sym_RPAREN, + STATE(7274), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776186,7 +768744,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136921] = 14, + aux_sym_parenthesized_variable_designation_repeat1, + [138046] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776207,13 +768766,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(7172), 1, + anon_sym_RBRACK, + ACTIONS(10667), 1, anon_sym_COMMA, - ACTIONS(10098), 1, - anon_sym_GT, - STATE(7131), 1, - aux_sym_type_argument_list_repeat2, - STATE(7256), 9, + STATE(7275), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776223,7 +768780,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [136972] = 13, + aux_sym_array_rank_specifier_repeat1, + [138095] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776244,49 +768802,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10100), 1, + ACTIONS(10670), 1, anon_sym_COMMA, - ACTIONS(10103), 1, - anon_sym_RPAREN, - STATE(7257), 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_attribute_argument_list_repeat1, - [137021] = 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(7412), 1, - anon_sym_LBRACE, - ACTIONS(9817), 1, - anon_sym_LPAREN, - STATE(2154), 1, - sym_block, - STATE(7258), 9, + 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, @@ -776296,7 +768818,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137072] = 14, + [138146] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776317,13 +768839,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(10105), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - STATE(7290), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7259), 9, + ACTIONS(10674), 1, + anon_sym_RBRACK, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7277), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776333,7 +768855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137123] = 14, + [138197] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776354,13 +768876,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10071), 1, + ACTIONS(10676), 1, anon_sym_COMMA, - ACTIONS(10107), 1, - anon_sym_RPAREN, - STATE(7245), 1, - aux_sym_using_variable_declaration_repeat1, - STATE(7260), 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, @@ -776370,7 +768892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137174] = 14, + [138248] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776391,13 +768913,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(10441), 1, + anon_sym_SEMI, + ACTIONS(10680), 1, anon_sym_COMMA, - ACTIONS(10109), 1, - anon_sym_GT, - STATE(7313), 1, - aux_sym_type_argument_list_repeat2, - STATE(7261), 9, + STATE(7279), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776407,7 +768927,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137225] = 14, + aux_sym_variable_declaration_repeat1, + [138297] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776428,13 +768949,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10683), 1, anon_sym_COMMA, - ACTIONS(10111), 1, + ACTIONS(10685), 1, anon_sym_RBRACK, - STATE(7312), 1, - aux_sym_type_argument_list_repeat1, - STATE(7262), 9, + STATE(7366), 1, + aux_sym_attribute_list_repeat1, + STATE(7280), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776444,7 +768965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137276] = 14, + [138348] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776465,13 +768986,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10113), 1, + ACTIONS(10687), 3, + anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(10115), 1, - anon_sym_RBRACK, - STATE(7122), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7263), 9, + anon_sym_RPAREN, + STATE(7281), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776481,7 +769000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137327] = 14, + [138395] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776502,50 +769021,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9568), 1, + ACTIONS(10219), 1, anon_sym_COMMA, - ACTIONS(10117), 1, + ACTIONS(10689), 1, anon_sym_RPAREN, - STATE(7064), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7264), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [137378] = 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(8943), 1, - anon_sym_LBRACE, - ACTIONS(9283), 1, - anon_sym_COMMA, - STATE(7343), 1, - aux_sym_base_list_repeat1, - STATE(7265), 9, + STATE(7169), 1, + aux_sym_tuple_pattern_repeat1, + STATE(7282), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776555,7 +769037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137429] = 14, + [138446] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776576,13 +769058,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10119), 1, + ACTIONS(10219), 1, anon_sym_COMMA, - ACTIONS(10121), 1, - anon_sym_RBRACK, - STATE(7113), 1, - aux_sym_attribute_list_repeat1, - STATE(7266), 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, @@ -776592,7 +769074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137480] = 13, + [138497] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776613,11 +769095,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10123), 1, - anon_sym_SEMI, - ACTIONS(10125), 1, - anon_sym_COMMA, - STATE(7267), 10, + 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, @@ -776627,8 +769111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_variable_declaration_repeat1, - [137529] = 13, + [138548] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776649,11 +769132,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10128), 1, + ACTIONS(6739), 1, anon_sym_COMMA, - ACTIONS(10131), 1, - anon_sym_GT, - STATE(7268), 10, + 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, @@ -776663,8 +769148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_type_parameter_list_repeat1, - [137578] = 14, + [138599] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776685,13 +769169,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10081), 1, anon_sym_COMMA, - ACTIONS(10133), 1, - anon_sym_RBRACK, - STATE(7255), 1, - aux_sym_type_argument_list_repeat1, - STATE(7269), 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, @@ -776701,7 +769185,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137629] = 13, + [138650] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776722,11 +769206,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6491), 1, - anon_sym_RBRACK, - ACTIONS(10135), 1, + ACTIONS(6739), 1, anon_sym_COMMA, - STATE(7270), 10, + 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, @@ -776736,8 +769222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_array_rank_specifier_repeat1, - [137678] = 13, + [138701] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776758,11 +769243,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10138), 1, + ACTIONS(6739), 1, anon_sym_COMMA, - ACTIONS(10141), 1, - anon_sym_RBRACE, - STATE(7271), 10, + 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, @@ -776772,8 +769259,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__with_body_repeat1, - [137727] = 14, + [138752] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776794,13 +769280,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(6889), 3, anon_sym_COMMA, - ACTIONS(10143), 1, - anon_sym_GT, - STATE(7274), 1, - aux_sym_type_argument_list_repeat2, - STATE(7272), 9, + anon_sym_RBRACK, + anon_sym_RPAREN, + STATE(7289), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776810,7 +769294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137778] = 14, + [138799] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776831,13 +769315,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8267), 1, - anon_sym_RBRACK, - ACTIONS(10145), 1, + ACTIONS(10085), 1, anon_sym_COMMA, - STATE(7251), 1, - aux_sym_global_attribute_repeat1, - STATE(7273), 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, @@ -776847,7 +769331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137829] = 14, + [138850] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776868,13 +769352,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10147), 1, + ACTIONS(10707), 1, anon_sym_GT, - STATE(7163), 1, + STATE(7295), 1, aux_sym_type_argument_list_repeat2, - STATE(7274), 9, + STATE(7291), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776884,7 +769368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [137880] = 14, + [138901] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -776905,87 +769389,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(10149), 1, - anon_sym_RBRACE, - STATE(7271), 1, - aux_sym__with_body_repeat1, - STATE(7275), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [137931] = 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(9568), 1, - anon_sym_COMMA, - ACTIONS(10151), 1, - anon_sym_RPAREN, - STATE(7064), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7276), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [137982] = 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(10153), 1, - anon_sym_SEMI, - STATE(8063), 1, - sym_declaration_list, - STATE(7277), 9, + ACTIONS(10709), 1, + anon_sym_RBRACK, + STATE(7312), 1, + aux_sym_type_argument_list_repeat1, + STATE(7292), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -776995,7 +769405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138033] = 14, + [138952] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777016,13 +769426,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9568), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10155), 1, - anon_sym_RPAREN, - STATE(7064), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7278), 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, @@ -777032,7 +769442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138084] = 14, + [139003] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777053,48 +769463,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10157), 1, + ACTIONS(10713), 3, anon_sym_COMMA, - ACTIONS(10159), 1, anon_sym_RBRACK, - STATE(7273), 1, - aux_sym_global_attribute_repeat1, - STATE(7279), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [138135] = 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(9593), 1, anon_sym_RPAREN, - ACTIONS(10161), 1, - anon_sym_COMMA, - STATE(7280), 10, + STATE(7294), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777104,8 +769477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__for_statement_conditions_repeat1, - [138184] = 14, + [139050] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777126,13 +769498,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10164), 1, - anon_sym_RBRACK, - STATE(7301), 1, - aux_sym_type_argument_list_repeat1, - STATE(7281), 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, @@ -777142,7 +769514,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138235] = 14, + [139101] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777163,13 +769535,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10166), 1, + ACTIONS(10717), 1, anon_sym_COMMA, - ACTIONS(10168), 1, - anon_sym_RBRACE, - STATE(7285), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7282), 9, + ACTIONS(10720), 1, + anon_sym_RBRACK, + STATE(7296), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777179,7 +769549,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138286] = 13, + aux_sym_bracketed_parameter_list_repeat1, + [139150] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777200,11 +769571,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10170), 1, - anon_sym_COMMA, - ACTIONS(10173), 1, - anon_sym_RPAREN, - STATE(7283), 10, + 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, @@ -777214,8 +769587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_positional_pattern_clause_repeat1, - [138335] = 12, + [139201] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777236,11 +769608,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10173), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3113), 1, anon_sym_RBRACE, - STATE(7284), 9, + 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, @@ -777250,7 +769624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138382] = 14, + [139252] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777271,13 +769645,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10175), 1, - anon_sym_COMMA, - ACTIONS(10177), 1, - anon_sym_RBRACE, - STATE(7097), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7285), 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, @@ -777287,7 +769659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138433] = 13, + [139299] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777308,11 +769680,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10179), 1, - anon_sym_COMMA, - ACTIONS(10182), 1, - anon_sym_RBRACK, - STATE(7286), 10, + 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, @@ -777322,8 +769696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_list_pattern_repeat1, - [138482] = 14, + [139350] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777344,13 +769717,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(10184), 1, - anon_sym_COMMA, - STATE(7290), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7287), 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, @@ -777360,7 +769731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138533] = 13, + [139397] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777381,11 +769752,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10186), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(10189), 1, - anon_sym_RPAREN, - STATE(7288), 10, + 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, @@ -777395,8 +769768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_tuple_type_repeat1, - [138582] = 14, + [139448] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777417,13 +769789,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10191), 1, - sym_integer_literal, - ACTIONS(10193), 1, - anon_sym_DQUOTE, - STATE(7663), 1, - sym_string_literal, - STATE(7289), 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, @@ -777433,7 +769803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138633] = 13, + [139495] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777454,11 +769824,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10195), 1, + ACTIONS(6739), 1, anon_sym_COMMA, - ACTIONS(10198), 1, - anon_sym_RBRACE, - STATE(7290), 10, + ACTIONS(10732), 1, + anon_sym_RPAREN, + STATE(7103), 1, + aux_sym__for_statement_conditions_repeat1, + STATE(7304), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777468,8 +769840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym__switch_expression_body_repeat1, - [138682] = 13, + [139546] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777490,11 +769861,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10200), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10203), 1, - anon_sym_RPAREN, - STATE(7291), 10, + 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, @@ -777504,8 +769877,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_parameter_list_repeat1, - [138731] = 14, + [139597] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777526,13 +769898,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9615), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10205), 1, - anon_sym_RPAREN, - STATE(7288), 1, - aux_sym_tuple_type_repeat1, - STATE(7292), 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, @@ -777542,7 +769914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138782] = 14, + [139648] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777563,13 +769935,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9766), 1, + ACTIONS(10091), 1, anon_sym_COMMA, - ACTIONS(10207), 1, + ACTIONS(10738), 1, anon_sym_RPAREN, - STATE(7195), 1, - aux_sym_tuple_pattern_repeat1, - STATE(7293), 9, + STATE(7365), 1, + aux_sym_argument_list_repeat1, + STATE(7307), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777579,7 +769951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138833] = 13, + [139699] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777600,12 +769972,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10209), 1, - anon_sym_EQ, - ACTIONS(9439), 2, + ACTIONS(10099), 1, anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7294), 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, @@ -777615,7 +769988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138882] = 13, + [139750] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777636,11 +770009,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10211), 1, - anon_sym_COMMA, - ACTIONS(10214), 1, + ACTIONS(10742), 3, anon_sym_RBRACE, - STATE(7295), 10, + anon_sym_case, + anon_sym_default, + STATE(7309), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777650,8 +770023,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, - [138931] = 14, + [139797] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777672,13 +770044,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(10744), 1, anon_sym_COMMA, - ACTIONS(10216), 1, - anon_sym_RBRACE, - STATE(7135), 1, - aux_sym__with_body_repeat1, - STATE(7296), 9, + ACTIONS(10747), 1, + anon_sym_RPAREN, + STATE(7310), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777688,7 +770058,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [138982] = 14, + aux_sym_parameter_list_repeat1, + [139846] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777709,13 +770080,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9925), 1, + ACTIONS(10749), 1, anon_sym_COMMA, - ACTIONS(10218), 1, - anon_sym_RBRACK, - STATE(7215), 1, - aux_sym_calling_convention_repeat1, - STATE(7297), 9, + ACTIONS(10751), 1, + anon_sym_RBRACE, + STATE(7363), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7311), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777725,7 +770096,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139033] = 14, + [139897] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777746,13 +770117,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(10220), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - STATE(7290), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7298), 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, @@ -777762,7 +770133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139084] = 14, + [139948] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777783,13 +770154,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9639), 1, + ACTIONS(6915), 1, anon_sym_COMMA, - ACTIONS(10222), 1, - anon_sym_RPAREN, - STATE(7111), 1, - aux_sym_argument_list_repeat1, - STATE(7299), 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, @@ -777799,7 +770170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139135] = 14, + [139999] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777820,13 +770191,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8151), 1, - anon_sym_RBRACE, - ACTIONS(10224), 1, - anon_sym_COMMA, - STATE(7295), 1, - aux_sym_enum_member_declaration_list_repeat1, - STATE(7300), 9, + 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, @@ -777836,7 +770205,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139186] = 14, + [140046] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777857,13 +770226,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, - anon_sym_COMMA, - ACTIONS(10226), 1, - anon_sym_RBRACK, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7301), 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, @@ -777873,7 +770240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139237] = 12, + [140093] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777894,11 +770261,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10228), 3, - anon_sym_SEMI, + ACTIONS(7536), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7302), 9, + ACTIONS(10179), 1, + anon_sym_LPAREN, + STATE(2131), 1, + sym_block, + STATE(7316), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777908,7 +770277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139284] = 14, + [140144] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777929,13 +770298,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9615), 1, + ACTIONS(10060), 1, anon_sym_COMMA, - ACTIONS(10230), 1, + ACTIONS(10761), 1, anon_sym_RPAREN, - STATE(7288), 1, - aux_sym_tuple_type_repeat1, - STATE(7303), 9, + STATE(7274), 1, + aux_sym_parenthesized_variable_designation_repeat1, + STATE(7317), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -777945,7 +770314,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139335] = 14, + [140195] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -777966,13 +770335,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9095), 1, - anon_sym_RPAREN, - ACTIONS(9528), 1, - anon_sym_EQ, - ACTIONS(10232), 1, + ACTIONS(10763), 1, anon_sym_COMMA, - STATE(7304), 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, @@ -777982,7 +770351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139386] = 14, + [140246] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778003,13 +770372,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + ACTIONS(10008), 1, + anon_sym_RPAREN, + ACTIONS(10767), 1, anon_sym_COMMA, - ACTIONS(10235), 1, - anon_sym_GT, - STATE(7163), 1, - aux_sym_type_argument_list_repeat2, - STATE(7305), 9, + STATE(7319), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778019,7 +770388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139437] = 12, + [140297] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778040,11 +770409,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6061), 3, + ACTIONS(10091), 1, anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(10770), 1, anon_sym_RPAREN, - STATE(7306), 9, + STATE(7221), 1, + aux_sym_argument_list_repeat1, + STATE(7320), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778054,7 +770425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139484] = 14, + [140348] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778075,13 +770446,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10237), 1, + ACTIONS(10772), 1, anon_sym_COMMA, - ACTIONS(10239), 1, - anon_sym_RBRACE, - STATE(7097), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7307), 9, + ACTIONS(10775), 1, + anon_sym_RPAREN, + STATE(7321), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778091,7 +770460,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139535] = 14, + aux_sym_tuple_expression_repeat1, + [140397] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778112,13 +770482,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10241), 1, + ACTIONS(10115), 1, anon_sym_COMMA, - ACTIONS(10243), 1, + ACTIONS(10777), 1, anon_sym_RBRACE, - STATE(7097), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7308), 9, + STATE(7119), 1, + aux_sym__with_body_repeat1, + STATE(7322), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778128,7 +770498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139586] = 14, + [140448] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778149,13 +770519,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10060), 1, anon_sym_COMMA, - ACTIONS(10245), 1, - anon_sym_GT, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7309), 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, @@ -778165,7 +770535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139637] = 12, + [140499] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778186,11 +770556,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10247), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(7310), 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, @@ -778200,7 +770572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139684] = 14, + [140550] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778221,13 +770593,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(10785), 1, anon_sym_COMMA, - ACTIONS(10249), 1, - anon_sym_GT, - STATE(7305), 1, - aux_sym_type_argument_list_repeat2, - STATE(7311), 9, + ACTIONS(10787), 1, + anon_sym_RBRACK, + STATE(7110), 1, + aux_sym_list_pattern_repeat1, + STATE(7325), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778237,7 +770609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139735] = 14, + [140601] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778258,13 +770630,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(2449), 1, + anon_sym_RBRACE, + ACTIONS(10789), 1, anon_sym_COMMA, - ACTIONS(10251), 1, - anon_sym_RBRACK, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7312), 9, + STATE(7100), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7326), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778274,7 +770646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139786] = 14, + [140652] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778295,13 +770667,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10253), 1, - anon_sym_GT, - STATE(7163), 1, - aux_sym_type_argument_list_repeat2, - STATE(7313), 9, + 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, @@ -778311,7 +770683,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139837] = 14, + [140703] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778332,50 +770704,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6013), 1, - anon_sym_COMMA, - ACTIONS(10255), 1, - anon_sym_RPAREN, - STATE(7280), 1, - aux_sym__for_statement_conditions_repeat1, - STATE(7314), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [139888] = 14, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(9959), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10257), 1, - aux_sym_preproc_if_token2, - STATE(7235), 1, - aux_sym_preproc_pragma_repeat1, - STATE(7315), 9, + ACTIONS(10793), 1, + anon_sym_GT, + STATE(7335), 1, + aux_sym_type_argument_list_repeat2, + STATE(7328), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778385,7 +770720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139939] = 14, + [140754] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778406,13 +770741,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10259), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10261), 1, - anon_sym_RBRACE, - STATE(7298), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7316), 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, @@ -778422,7 +770757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [139990] = 14, + [140805] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778443,13 +770778,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(10797), 1, anon_sym_COMMA, - ACTIONS(6251), 1, + ACTIONS(10799), 1, anon_sym_RBRACK, - STATE(7270), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7317), 9, + STATE(7352), 1, + aux_sym_attribute_list_repeat1, + STATE(7330), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778459,7 +770794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140041] = 14, + [140856] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778480,13 +770815,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9665), 1, + ACTIONS(2923), 1, anon_sym_COMMA, - ACTIONS(10263), 1, - anon_sym_GT, - STATE(7268), 1, - aux_sym_type_parameter_list_repeat1, - STATE(7318), 9, + ACTIONS(6859), 1, + anon_sym_RBRACK, + STATE(7275), 1, + aux_sym_array_rank_specifier_repeat1, + STATE(7331), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778496,7 +770831,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140092] = 13, + [140907] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778517,11 +770852,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10265), 1, + ACTIONS(10801), 1, anon_sym_COMMA, - ACTIONS(10268), 1, + ACTIONS(10803), 1, anon_sym_RBRACK, - STATE(7319), 10, + STATE(7245), 1, + aux_sym_bracketed_argument_list_repeat1, + STATE(7332), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778531,8 +770868,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_bracketed_argument_list_repeat1, - [140141] = 14, + [140958] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778553,13 +770889,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(10805), 1, anon_sym_COMMA, - ACTIONS(10270), 1, - anon_sym_GT, - STATE(7325), 1, - aux_sym_type_argument_list_repeat2, - STATE(7320), 9, + ACTIONS(10808), 1, + anon_sym_RPAREN, + STATE(7333), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778569,7 +770903,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140192] = 14, + aux_sym_tuple_type_repeat1, + [141007] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778590,13 +770925,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10272), 1, + ACTIONS(10810), 1, anon_sym_GT, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7321), 9, + STATE(7121), 1, + aux_sym_type_argument_list_repeat2, + STATE(7334), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778606,7 +770941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140243] = 14, + [141058] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778627,13 +770962,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(10274), 1, - anon_sym_SEMI, - STATE(8048), 1, - sym_declaration_list, - STATE(7322), 9, + ACTIONS(10099), 1, + anon_sym_COMMA, + 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, @@ -778643,7 +770978,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140294] = 14, + [141109] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778664,13 +770999,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10276), 1, - anon_sym_GT, - STATE(7217), 1, - aux_sym_type_argument_list_repeat2, - STATE(7323), 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, @@ -778680,7 +771015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140345] = 14, + [141160] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778701,13 +771036,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10115), 1, anon_sym_COMMA, - ACTIONS(10278), 1, - anon_sym_GT, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7324), 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, @@ -778717,7 +771052,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140396] = 14, + [141211] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778738,13 +771073,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(10818), 1, anon_sym_COMMA, - ACTIONS(10280), 1, - anon_sym_GT, - STATE(7163), 1, - aux_sym_type_argument_list_repeat2, - STATE(7325), 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, @@ -778754,7 +771089,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140447] = 14, + [141262] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778775,13 +771110,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10282), 1, + ACTIONS(10822), 1, anon_sym_GT, - STATE(6999), 1, - aux_sym_type_argument_list_repeat1, - STATE(7326), 9, + STATE(7342), 1, + aux_sym_type_argument_list_repeat2, + STATE(7339), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778791,7 +771126,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140498] = 14, + [141313] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778812,13 +771147,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9851), 1, - anon_sym_RPAREN, - ACTIONS(9870), 1, + ACTIONS(10091), 1, anon_sym_COMMA, - STATE(7167), 1, - aux_sym_variable_declaration_repeat1, - STATE(7327), 9, + ACTIONS(10824), 1, + anon_sym_RPAREN, + STATE(7235), 1, + aux_sym_argument_list_repeat1, + STATE(7340), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778828,7 +771163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140549] = 14, + [141364] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778849,13 +771184,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3099), 1, - anon_sym_RBRACE, - ACTIONS(10284), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - STATE(7361), 1, - aux_sym_initializer_expression_repeat1, - STATE(7328), 9, + ACTIONS(10826), 1, + anon_sym_GT, + STATE(6949), 1, + aux_sym_type_argument_list_repeat1, + STATE(7341), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778865,7 +771200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140600] = 14, + [141415] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778886,13 +771221,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10286), 1, + ACTIONS(10828), 1, anon_sym_GT, - STATE(7372), 1, + STATE(7121), 1, aux_sym_type_argument_list_repeat2, - STATE(7329), 9, + STATE(7342), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778902,7 +771237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140651] = 14, + [141466] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778923,13 +771258,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9639), 1, + ACTIONS(3101), 1, + anon_sym_RBRACE, + ACTIONS(10830), 1, anon_sym_COMMA, - ACTIONS(10288), 1, + STATE(7355), 1, + aux_sym_initializer_expression_repeat1, + STATE(7343), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [141517] = 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(9608), 1, anon_sym_RPAREN, - STATE(7243), 1, - aux_sym_argument_list_repeat1, - STATE(7330), 9, + ACTIONS(9939), 1, + anon_sym_EQ, + ACTIONS(10832), 1, + anon_sym_COMMA, + STATE(7344), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -778939,7 +771311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140702] = 12, + [141568] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778960,11 +771332,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10290), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7331), 9, + ACTIONS(10099), 1, + anon_sym_COMMA, + 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, @@ -778974,7 +771348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140749] = 14, + [141619] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -778995,13 +771369,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10292), 1, + ACTIONS(10837), 1, anon_sym_COMMA, - ACTIONS(10294), 1, + ACTIONS(10839), 1, anon_sym_RBRACE, - STATE(7308), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7332), 9, + STATE(7326), 1, + aux_sym__switch_expression_body_repeat1, + STATE(7346), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779011,7 +771385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140800] = 13, + [141670] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779032,11 +771406,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10123), 1, - anon_sym_RPAREN, - ACTIONS(10296), 1, + ACTIONS(10085), 1, anon_sym_COMMA, - STATE(7333), 10, + 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, @@ -779046,8 +771422,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_variable_declaration_repeat1, - [140849] = 12, + [141721] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779068,11 +771443,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10299), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_when, - STATE(7334), 9, + ACTIONS(10081), 1, + anon_sym_COMMA, + 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, @@ -779082,7 +771459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140896] = 14, + [141772] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779103,13 +771480,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(10301), 1, - anon_sym_RBRACE, - STATE(7271), 1, - aux_sym__with_body_repeat1, - STATE(7335), 9, + 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, @@ -779119,33 +771496,34 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140947] = 13, - ACTIONS(8511), 1, + [141823] = 14, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10303), 1, - aux_sym_preproc_if_token2, - ACTIONS(10305), 2, - anon_sym_annotations, - anon_sym_warnings, - STATE(7336), 9, + ACTIONS(10847), 1, + anon_sym_COMMA, + ACTIONS(10849), 1, + anon_sym_RBRACK, + STATE(7147), 1, + aux_sym_attribute_list_repeat1, + STATE(7350), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779155,7 +771533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [140996] = 14, + [141874] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779176,13 +771554,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10307), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10309), 1, - anon_sym_RPAREN, - STATE(7357), 1, - aux_sym_attribute_argument_list_repeat1, - STATE(7337), 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, @@ -779192,7 +771570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141047] = 14, + [141925] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779213,13 +771591,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9568), 1, + ACTIONS(10853), 1, anon_sym_COMMA, - ACTIONS(10311), 1, - anon_sym_RPAREN, - STATE(7264), 1, - aux_sym_parenthesized_variable_designation_repeat1, - STATE(7338), 9, + 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, @@ -779229,7 +771607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141098] = 14, + [141976] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779250,13 +771628,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10313), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10315), 1, - anon_sym_RBRACE, - STATE(7259), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7339), 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, @@ -779266,7 +771644,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141149] = 12, + [142027] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779287,11 +771665,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10317), 3, + ACTIONS(10099), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_RPAREN, - STATE(7340), 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, @@ -779301,7 +771681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141196] = 14, + [142078] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779322,13 +771702,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(10319), 1, + ACTIONS(7238), 1, anon_sym_RBRACE, - STATE(7271), 1, - aux_sym__with_body_repeat1, - STATE(7341), 9, + ACTIONS(10861), 1, + anon_sym_COMMA, + STATE(7355), 10, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779338,7 +771716,8 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141247] = 14, + aux_sym_initializer_expression_repeat1, + [142127] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779359,13 +771738,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7951), 1, - anon_sym_DOT, - ACTIONS(8741), 1, - anon_sym_LBRACE, - STATE(8015), 1, - sym_declaration_list, - STATE(7342), 9, + ACTIONS(2923), 1, + anon_sym_COMMA, + 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, @@ -779375,7 +771754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141298] = 13, + [142178] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779396,11 +771775,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8938), 1, - anon_sym_LBRACE, - ACTIONS(10321), 1, + ACTIONS(10866), 1, + anon_sym_EQ, + ACTIONS(10030), 2, anon_sym_COMMA, - STATE(7343), 10, + anon_sym_RBRACE, + STATE(7357), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779410,8 +771790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_base_list_repeat1, - [141347] = 14, + [142227] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779432,13 +771811,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10324), 1, + ACTIONS(10099), 1, anon_sym_COMMA, - ACTIONS(10326), 1, - anon_sym_RBRACE, - STATE(7097), 1, - aux_sym_anonymous_object_creation_expression_repeat1, - STATE(7344), 9, + ACTIONS(10868), 1, + anon_sym_GT, + STATE(7362), 1, + aux_sym_type_argument_list_repeat2, + STATE(7358), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779448,7 +771827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141398] = 14, + [142278] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779469,13 +771848,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(2927), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(6349), 1, - anon_sym_RBRACK, - STATE(7270), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7345), 9, + 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, @@ -779485,7 +771864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141449] = 14, + [142329] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779506,13 +771885,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10328), 1, + ACTIONS(10872), 1, anon_sym_COMMA, - ACTIONS(10330), 1, - anon_sym_RBRACK, - STATE(7286), 1, - aux_sym_list_pattern_repeat1, - STATE(7346), 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, @@ -779522,7 +771901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141500] = 14, + [142380] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779543,13 +771922,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10332), 1, + ACTIONS(10876), 1, anon_sym_RBRACK, - STATE(6999), 1, + STATE(6949), 1, aux_sym_type_argument_list_repeat1, - STATE(7347), 9, + STATE(7361), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779559,7 +771938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141551] = 12, + [142431] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779580,11 +771959,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10334), 3, - anon_sym_disable, - anon_sym_restore, - anon_sym_enable, - STATE(7348), 9, + ACTIONS(10099), 1, + anon_sym_COMMA, + 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, @@ -779594,7 +771975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141598] = 14, + [142482] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779615,13 +771996,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - ACTIONS(7749), 1, - anon_sym_QMARK, - STATE(7349), 9, + ACTIONS(10880), 1, + anon_sym_COMMA, + ACTIONS(10882), 1, + anon_sym_RBRACE, + STATE(7213), 1, + aux_sym_anonymous_object_creation_expression_repeat1, + STATE(7363), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779631,7 +772012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141649] = 14, + [142533] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779652,13 +772033,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9615), 1, + ACTIONS(5678), 1, anon_sym_COMMA, - ACTIONS(10336), 1, - anon_sym_RPAREN, - STATE(7288), 1, - aux_sym_tuple_type_repeat1, - STATE(7350), 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, @@ -779668,7 +772049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141700] = 14, + [142584] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779689,13 +772070,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10338), 1, + ACTIONS(10091), 1, anon_sym_COMMA, - ACTIONS(10340), 1, - anon_sym_RBRACE, - STATE(7118), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7351), 9, + ACTIONS(10886), 1, + anon_sym_RPAREN, + STATE(7221), 1, + aux_sym_argument_list_repeat1, + STATE(7365), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779705,7 +772086,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141751] = 12, + [142635] = 14, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779726,11 +772107,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10342), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(7352), 9, + ACTIONS(10888), 1, + anon_sym_COMMA, + ACTIONS(10890), 1, + anon_sym_RBRACK, + STATE(7258), 1, + aux_sym_attribute_list_repeat1, + STATE(7366), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779740,7 +772123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141798] = 13, + [142686] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779761,12 +772144,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7755), 1, - anon_sym_DOT, - ACTIONS(4363), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7353), 9, + ACTIONS(6234), 1, + anon_sym_LBRACE, + STATE(1932), 1, + sym_block, + STATE(7367), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -779776,7 +772158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141847] = 14, + [142734] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779797,13 +772179,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(10344), 1, - anon_sym_RBRACK, - STATE(7270), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7354), 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, @@ -779813,34 +772193,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141898] = 14, - ACTIONS(3), 1, + [142782] = 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(2927), 1, - anon_sym_COMMA, - ACTIONS(10346), 1, - anon_sym_RBRACK, - STATE(7270), 1, - aux_sym_array_rank_specifier_repeat1, - STATE(7355), 9, + 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, @@ -779850,7 +772228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [141949] = 14, + [142830] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779871,13 +772249,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10348), 1, - anon_sym_COMMA, - ACTIONS(10350), 1, - anon_sym_RBRACK, - STATE(7286), 1, - aux_sym_list_pattern_repeat1, - STATE(7356), 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, @@ -779887,7 +772263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142000] = 14, + [142878] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779908,13 +772284,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10307), 1, - anon_sym_COMMA, - ACTIONS(10352), 1, - anon_sym_RPAREN, - STATE(7257), 1, - aux_sym_attribute_argument_list_repeat1, - STATE(7357), 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, @@ -779924,7 +772298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142051] = 14, + [142926] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779945,13 +772319,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10354), 1, - anon_sym_COMMA, - ACTIONS(10356), 1, - anon_sym_RBRACK, - STATE(7115), 1, - aux_sym_attribute_list_repeat1, - STATE(7358), 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, @@ -779961,7 +772333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142102] = 14, + [142974] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -779982,13 +772354,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10358), 1, - anon_sym_COMMA, - ACTIONS(10360), 1, - anon_sym_RBRACE, - STATE(7287), 1, - aux_sym__switch_expression_body_repeat1, - STATE(7359), 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, @@ -779998,7 +772368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142153] = 13, + [143022] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780019,11 +772389,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10173), 1, - anon_sym_RBRACE, - ACTIONS(10362), 1, - anon_sym_COMMA, - STATE(7360), 10, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6749), 1, + sym_parameter_list, + STATE(7374), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780033,8 +772403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_positional_pattern_clause_repeat1, - [142202] = 13, + [143070] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780055,11 +772424,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6481), 1, - anon_sym_RBRACE, - ACTIONS(10365), 1, - anon_sym_COMMA, - STATE(7361), 10, + ACTIONS(10695), 1, + anon_sym_DQUOTE, + STATE(8066), 1, + sym_string_literal, + STATE(7375), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780069,8 +772438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - aux_sym_initializer_expression_repeat1, - [142251] = 14, + [143118] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780091,13 +772459,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10368), 1, - anon_sym_COMMA, - ACTIONS(10370), 1, - anon_sym_RBRACK, - STATE(7089), 1, - aux_sym_bracketed_argument_list_repeat1, - STATE(7362), 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, @@ -780107,7 +772473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142302] = 14, + [143166] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780128,13 +772494,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10372), 1, + ACTIONS(4341), 2, anon_sym_COMMA, - ACTIONS(10374), 1, - anon_sym_RBRACK, - STATE(7286), 1, - aux_sym_list_pattern_repeat1, - STATE(7363), 9, + anon_sym_GT, + STATE(7377), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780144,7 +772507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142353] = 14, + [143212] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780165,13 +772528,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(10376), 1, - anon_sym_RBRACE, - STATE(7341), 1, - aux_sym__with_body_repeat1, - STATE(7364), 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, @@ -780181,7 +772542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142404] = 14, + [143260] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780202,13 +772563,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(10378), 1, - anon_sym_RBRACE, - STATE(7275), 1, - aux_sym__with_body_repeat1, - STATE(7365), 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, @@ -780218,7 +772577,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142455] = 14, + [143308] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780239,13 +772598,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8716), 1, + ACTIONS(9666), 1, anon_sym_LBRACE, - ACTIONS(10380), 1, - anon_sym_SEMI, - STATE(3014), 1, - sym_accessor_list, - STATE(7366), 9, + STATE(4554), 1, + sym_block, + STATE(7380), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780255,34 +772612,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142506] = 14, - ACTIONS(3), 1, + [143356] = 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(9885), 1, - anon_sym_COMMA, - ACTIONS(10382), 1, - anon_sym_RBRACK, - STATE(7172), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(7367), 9, + ACTIONS(10902), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7381), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780292,7 +772646,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142557] = 13, + [143402] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780313,12 +772667,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10384), 1, - anon_sym_EQ, - ACTIONS(9891), 2, - anon_sym_SEMI, + ACTIONS(10904), 2, anon_sym_COMMA, - STATE(7368), 9, + anon_sym_GT, + STATE(7382), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780328,7 +772680,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142606] = 14, + [143448] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780349,13 +772701,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5885), 1, - anon_sym_COMMA, - ACTIONS(10386), 1, - anon_sym_RBRACK, - STATE(7347), 1, - aux_sym_type_argument_list_repeat1, - STATE(7369), 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, @@ -780365,7 +772715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142657] = 14, + [143496] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780386,13 +772736,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9885), 1, + ACTIONS(10906), 2, anon_sym_COMMA, - ACTIONS(10388), 1, - anon_sym_RBRACK, - STATE(7175), 1, - aux_sym_bracketed_parameter_list_repeat1, - STATE(7370), 9, + anon_sym_RPAREN, + STATE(7384), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780402,7 +772749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142708] = 12, + [143542] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780423,11 +772770,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10390), 3, - sym_interpolation_end_quote, - sym_interpolation_open_brace, - sym_interpolation_string_content, - STATE(7371), 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, @@ -780437,7 +772784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142755] = 14, + [143590] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780458,13 +772805,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9560), 1, - anon_sym_COMMA, - ACTIONS(10392), 1, - anon_sym_GT, - STATE(7163), 1, - aux_sym_type_argument_list_repeat2, - STATE(7372), 9, + ACTIONS(6227), 1, + anon_sym_LBRACE, + STATE(2047), 1, + sym_block, + STATE(7386), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780474,7 +772819,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142806] = 13, + [143638] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780495,11 +772840,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(4169), 1, - sym_initializer_expression, - STATE(7373), 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, @@ -780509,7 +772854,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142854] = 13, + [143686] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780530,11 +772875,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10394), 1, - anon_sym_LBRACK, - STATE(4690), 1, - sym_array_rank_specifier, - STATE(7374), 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, @@ -780544,7 +772889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142902] = 13, + [143734] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780565,11 +772910,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6725), 1, - sym_parameter_list, - STATE(7375), 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, @@ -780579,7 +772924,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142950] = 13, + [143782] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780600,11 +772945,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9649), 1, - anon_sym_COMMA, - STATE(7238), 1, - aux_sym_tuple_expression_repeat1, - STATE(7376), 9, + ACTIONS(1461), 1, + anon_sym_LBRACE, + STATE(3207), 1, + sym_initializer_expression, + STATE(7390), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780614,32 +772959,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [142998] = 13, - ACTIONS(8511), 1, + [143830] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10396), 1, - aux_sym_preproc_if_token2, - ACTIONS(10398), 1, - sym_preproc_arg, - STATE(7377), 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, @@ -780649,7 +772994,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143046] = 13, + [143878] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780670,11 +773015,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9615), 1, - anon_sym_COMMA, - STATE(7292), 1, - aux_sym_tuple_type_repeat1, - STATE(7378), 9, + ACTIONS(10908), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7392), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780684,7 +773028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143094] = 13, + [143924] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780705,11 +773049,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(7379), 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, @@ -780719,7 +773063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143142] = 13, + [143972] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780740,11 +773084,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10404), 1, - anon_sym_LBRACK, - STATE(5603), 1, - sym_array_rank_specifier, - STATE(7380), 9, + ACTIONS(1703), 1, + anon_sym_LBRACE, + STATE(3386), 1, + sym_initializer_expression, + STATE(7394), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780754,7 +773098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143190] = 12, + [144020] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780775,10 +773119,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4363), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7381), 9, + ACTIONS(3522), 2, + anon_sym_while, + anon_sym_else, + STATE(7395), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780788,7 +773132,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143236] = 12, + [144066] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780809,10 +773153,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4326), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7382), 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, @@ -780822,7 +773167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143282] = 13, + [144114] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780843,11 +773188,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9160), 1, + ACTIONS(10912), 1, anon_sym_LBRACE, - STATE(5664), 1, - sym_block, - STATE(7383), 9, + STATE(5304), 1, + sym__with_body, + STATE(7397), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780857,7 +773202,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143330] = 12, + [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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [144210] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780878,10 +773258,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4359), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7384), 9, + ACTIONS(10916), 1, + anon_sym_LBRACE, + STATE(7521), 1, + sym_switch_body, + STATE(7399), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780891,31 +773272,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143376] = 12, - ACTIONS(8511), 1, + [144258] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10406), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7385), 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, @@ -780925,7 +773307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143422] = 13, + [144306] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780946,11 +773328,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(10920), 1, anon_sym_LPAREN, - STATE(7600), 1, - sym_parameter_list, - STATE(7386), 9, + STATE(7589), 1, + sym_tuple_expression, + STATE(7401), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780960,7 +773342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143470] = 12, + [144354] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -780981,10 +773363,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(7387), 9, + ACTIONS(10922), 1, + anon_sym_LBRACE, + STATE(4544), 1, + sym__switch_expression_body, + STATE(7402), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -780994,7 +773377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143516] = 13, + [144402] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781015,11 +773398,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10410), 1, - anon_sym_on, - STATE(6590), 1, - sym__join_body, - STATE(7388), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(7585), 1, + sym_parameter_list, + STATE(7403), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781029,7 +773412,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143564] = 13, + [144450] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781050,11 +773433,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10412), 1, - anon_sym_LPAREN, - STATE(70), 1, - sym__for_statement_conditions, - STATE(7389), 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, @@ -781064,7 +773447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143612] = 13, + [144498] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781085,11 +773468,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7412), 1, + ACTIONS(9666), 1, anon_sym_LBRACE, - STATE(2059), 1, + STATE(4610), 1, sym_block, - STATE(7390), 9, + STATE(7405), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781099,7 +773482,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143660] = 13, + [144546] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781120,11 +773503,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7208), 1, + ACTIONS(6227), 1, anon_sym_LBRACE, - STATE(4229), 1, + STATE(1940), 1, sym_block, - STATE(7391), 9, + STATE(7406), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781134,7 +773517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143708] = 13, + [144594] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781155,11 +773538,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(4248), 1, - sym_initializer_expression, - STATE(7392), 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, @@ -781169,7 +773552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143756] = 13, + [144642] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781190,11 +773573,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10414), 1, + ACTIONS(10924), 1, anon_sym_LBRACK, - STATE(4076), 1, - sym_array_rank_specifier, - STATE(7393), 9, + STATE(6941), 1, + sym_bracketed_parameter_list, + STATE(7408), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781204,7 +773587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143804] = 13, + [144690] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781225,11 +773608,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6603), 1, - sym_parameter_list, - STATE(7394), 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, @@ -781239,7 +773622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143852] = 13, + [144738] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781260,11 +773643,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9225), 1, - anon_sym_LBRACE, - STATE(5005), 1, - sym_block, - STATE(7395), 9, + ACTIONS(3185), 2, + anon_sym_while, + anon_sym_else, + STATE(7410), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781274,7 +773656,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143900] = 12, + [144784] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781295,10 +773677,11 @@ 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(7396), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6614), 1, + sym_parameter_list, + STATE(7411), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781308,7 +773691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143946] = 13, + [144832] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781329,11 +773712,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10416), 1, - anon_sym_LBRACE, - STATE(2051), 1, - sym_switch_body, - STATE(7397), 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, @@ -781343,7 +773726,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [143994] = 13, + [144880] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781364,11 +773747,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5520), 1, - anon_sym_LPAREN, - STATE(7153), 1, - sym_argument_list, - STATE(7398), 9, + ACTIONS(10930), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7413), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781378,7 +773760,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144042] = 13, + [144926] = 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(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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [144974] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781399,11 +773816,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6709), 1, - sym_parameter_list, - STATE(7399), 9, + ACTIONS(10198), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7415), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781413,7 +773829,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144090] = 13, + [145020] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781434,11 +773850,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6710), 1, - sym_parameter_list, - STATE(7400), 9, + ACTIONS(10936), 1, + anon_sym_LBRACK, + STATE(5609), 1, + sym_array_rank_specifier, + STATE(7416), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781448,7 +773864,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144138] = 13, + [145068] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781469,11 +773885,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6711), 1, - sym_parameter_list, - STATE(7401), 9, + ACTIONS(10938), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7417), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781483,7 +773898,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144186] = 12, + [145114] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781504,10 +773919,11 @@ 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(7402), 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, @@ -781517,7 +773933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144232] = 13, + [145162] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781538,11 +773954,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7743), 1, - anon_sym_LBRACK, - ACTIONS(7745), 1, - anon_sym_STAR, - STATE(7403), 9, + ACTIONS(10944), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7419), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781552,7 +773967,41 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144280] = 13, + [145208] = 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(10946), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7420), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [145254] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781573,11 +774022,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10418), 1, - anon_sym_LBRACK, - STATE(7029), 1, - sym_bracketed_parameter_list, - STATE(7404), 9, + ACTIONS(10212), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7421), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781587,7 +774035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144328] = 13, + [145300] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781608,11 +774056,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10420), 1, - anon_sym_LBRACE, - STATE(1952), 1, - sym_switch_body, - STATE(7405), 9, + ACTIONS(10948), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7422), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781622,7 +774069,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144376] = 13, + [145346] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781643,11 +774090,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9130), 1, - anon_sym_LBRACE, - STATE(5343), 1, - sym_block, - STATE(7406), 9, + ACTIONS(10217), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7423), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781657,7 +774103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144424] = 13, + [145392] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781678,11 +774124,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(6628), 1, + STATE(6968), 1, sym_parameter_list, - STATE(7407), 9, + STATE(7424), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781692,7 +774138,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144472] = 13, + [145440] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781713,11 +774159,10 @@ 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(2129), 1, - sym_switch_body, - STATE(7408), 9, + ACTIONS(10231), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7425), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781727,7 +774172,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144520] = 13, + [145486] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781748,11 +774193,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_EQ_GT, - ACTIONS(10424), 1, - anon_sym_in, - STATE(7409), 9, + ACTIONS(10950), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7426), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781762,7 +774206,42 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144568] = 12, + [145532] = 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(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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [145580] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781783,10 +774262,11 @@ 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(7410), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(7033), 1, + sym_parameter_list, + STATE(7428), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781796,7 +774276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144614] = 13, + [145628] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781817,11 +774297,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10418), 1, - anon_sym_LBRACK, - STATE(7036), 1, - sym_bracketed_parameter_list, - STATE(7411), 9, + ACTIONS(10954), 1, + anon_sym_LBRACE, + STATE(2147), 1, + sym_switch_body, + STATE(7429), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781831,7 +774311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144662] = 12, + [145676] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781852,10 +774332,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10426), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7412), 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, @@ -781865,7 +774346,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144708] = 12, + [145724] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781886,10 +774367,10 @@ 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(7413), 9, + ACTIONS(10278), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7431), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781899,7 +774380,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144754] = 13, + [145770] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781920,11 +774401,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10428), 1, + ACTIONS(9258), 1, anon_sym_LBRACE, - STATE(4993), 1, - sym__switch_expression_body, - STATE(7414), 9, + STATE(7656), 1, + sym_declaration_list, + STATE(7432), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781934,7 +774415,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144802] = 13, + [145818] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781955,11 +774436,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10430), 1, + ACTIONS(9258), 1, anon_sym_LBRACE, - STATE(4983), 1, - sym__with_body, - STATE(7415), 9, + STATE(7655), 1, + sym_declaration_list, + STATE(7433), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -781969,7 +774450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144850] = 13, + [145866] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -781990,11 +774471,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10418), 1, - anon_sym_LBRACK, - STATE(7041), 1, - sym_bracketed_parameter_list, - STATE(7416), 9, + ACTIONS(9736), 1, + anon_sym_LBRACE, + STATE(5290), 1, + sym_block, + STATE(7434), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782004,7 +774485,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144898] = 13, + [145914] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782025,11 +774506,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10432), 1, + ACTIONS(9899), 1, anon_sym_LBRACE, - STATE(5382), 1, - sym__switch_expression_body, - STATE(7417), 9, + STATE(7948), 1, + sym_enum_member_declaration_list, + STATE(7435), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782039,7 +774520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144946] = 13, + [145962] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782060,11 +774541,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6597), 1, - sym_parameter_list, - STATE(7418), 9, + ACTIONS(9722), 1, + anon_sym_LBRACE, + STATE(4393), 1, + sym_block, + STATE(7436), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782074,7 +774555,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [144994] = 13, + [146010] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782095,11 +774576,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10434), 1, - anon_sym_LBRACK, - STATE(4914), 1, - sym_array_rank_specifier, - STATE(7419), 9, + ACTIONS(3486), 2, + anon_sym_while, + anon_sym_else, + STATE(7437), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782109,7 +774589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145042] = 13, + [146056] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782130,11 +774610,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10436), 1, - anon_sym_LBRACE, - STATE(5398), 1, - sym__with_body, - STATE(7420), 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, @@ -782144,7 +774624,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145090] = 12, + [146104] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782165,10 +774645,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10438), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7421), 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, @@ -782178,7 +774659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145136] = 12, + [146152] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782199,10 +774680,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3518), 2, - anon_sym_while, - anon_sym_else, - STATE(7422), 9, + ACTIONS(9674), 1, + anon_sym_LBRACE, + STATE(3248), 1, + sym_block, + STATE(7440), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782212,7 +774694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145182] = 12, + [146200] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782233,10 +774715,10 @@ 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(7423), 9, + ACTIONS(10962), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7441), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782246,32 +774728,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145228] = 13, - ACTIONS(8511), 1, + [146246] = 13, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10440), 1, - aux_sym_preproc_if_token2, - ACTIONS(10442), 1, - sym_preproc_arg, - STATE(7424), 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, @@ -782281,7 +774763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145276] = 13, + [146294] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782302,11 +774784,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3504), 1, - anon_sym_while, - ACTIONS(10444), 1, - anon_sym_else, - STATE(7425), 9, + ACTIONS(10964), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7443), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782316,7 +774797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145324] = 13, + [146340] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782337,11 +774818,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10416), 1, + ACTIONS(1373), 1, anon_sym_LBRACE, - STATE(2074), 1, - sym_switch_body, - STATE(7426), 9, + STATE(4231), 1, + sym_initializer_expression, + STATE(7444), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782351,7 +774832,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145372] = 12, + [146388] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782372,10 +774853,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3492), 2, - anon_sym_while, - anon_sym_else, - STATE(7427), 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, @@ -782385,31 +774867,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145418] = 12, - ACTIONS(3), 1, + [146436] = 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(10214), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7428), 9, + ACTIONS(10968), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7446), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782419,7 +774901,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145464] = 12, + [146482] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782440,10 +774922,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3488), 2, - anon_sym_while, - anon_sym_else, - STATE(7429), 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, @@ -782453,7 +774936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145510] = 12, + [146530] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782474,10 +774957,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10198), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7430), 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, @@ -782487,7 +774971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145556] = 12, + [146578] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782508,10 +774992,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3484), 2, - anon_sym_while, - anon_sym_else, - STATE(7431), 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, @@ -782521,7 +775006,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145602] = 13, + [146626] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782542,11 +775027,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4318), 1, - anon_sym_GT, - ACTIONS(9025), 1, - anon_sym_COMMA, - STATE(7432), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(7591), 1, + sym_parameter_list, + STATE(7450), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782556,7 +775041,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145650] = 12, + [146674] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782577,10 +775062,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3480), 2, - anon_sym_while, - anon_sym_else, - STATE(7433), 9, + ACTIONS(10970), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7451), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782590,7 +775075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145696] = 12, + [146720] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782611,10 +775096,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10189), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7434), 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, @@ -782624,31 +775110,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145742] = 12, - ACTIONS(8511), 1, + [146768] = 12, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(10446), 2, + ACTIONS(10974), 2, sym_character_literal_content, sym_escape_sequence, - STATE(7435), 9, + STATE(7453), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782658,7 +775144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145788] = 13, + [146814] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782679,11 +775165,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7951), 1, - anon_sym_DOT, - ACTIONS(10448), 1, - anon_sym_SEMI, - STATE(7436), 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, @@ -782693,7 +775179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145836] = 12, + [146862] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782714,10 +775200,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3476), 2, - anon_sym_while, - anon_sym_else, - STATE(7437), 9, + ACTIONS(9722), 1, + anon_sym_LBRACE, + STATE(4109), 1, + sym_block, + STATE(7455), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782727,7 +775214,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145882] = 13, + [146910] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782748,11 +775235,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9615), 1, - anon_sym_COMMA, - STATE(7073), 1, - aux_sym_tuple_type_repeat1, - STATE(7438), 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, @@ -782762,7 +775249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145930] = 12, + [146958] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782783,10 +775270,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3472), 2, - anon_sym_while, - anon_sym_else, - STATE(7439), 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, @@ -782796,7 +775284,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [145976] = 13, + [147006] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782817,11 +775305,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9649), 1, - anon_sym_COMMA, - STATE(7085), 1, - aux_sym_tuple_expression_repeat1, - STATE(7440), 9, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(7807), 1, + sym_declaration_list, + STATE(7458), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782831,32 +775319,32 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146024] = 13, - ACTIONS(3), 1, + [147054] = 13, + ACTIONS(5645), 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(7951), 1, - anon_sym_DOT, - ACTIONS(10450), 1, - anon_sym_SEMI, - STATE(7441), 9, + ACTIONS(10976), 1, + sym_string_literal_encoding, + STATE(7459), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782866,7 +775354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146072] = 12, + [147102] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782887,10 +775375,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3500), 2, - anon_sym_while, - anon_sym_else, - STATE(7442), 9, + ACTIONS(10328), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7460), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782900,7 +775388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146118] = 13, + [147148] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782921,11 +775409,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9615), 1, - anon_sym_COMMA, - STATE(7103), 1, - aux_sym_tuple_type_repeat1, - STATE(7443), 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, @@ -782935,7 +775423,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146166] = 12, + [147196] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782956,10 +775444,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10452), 2, + ACTIONS(10085), 1, anon_sym_COMMA, - anon_sym_GT, - STATE(7444), 9, + STATE(7290), 1, + aux_sym_tuple_type_repeat1, + STATE(7462), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -782969,7 +775458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146212] = 12, + [147244] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -782990,10 +775479,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10141), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7445), 9, + ACTIONS(3570), 2, + anon_sym_while, + anon_sym_else, + STATE(7463), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783003,7 +775492,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146258] = 13, + [147290] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783024,11 +775513,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7412), 1, - anon_sym_LBRACE, - STATE(2126), 1, - sym_block, - STATE(7446), 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, @@ -783038,7 +775527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146306] = 13, + [147338] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783059,11 +775548,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1747), 1, + ACTIONS(7206), 1, anon_sym_LBRACE, - STATE(5370), 1, - sym_initializer_expression, - STATE(7447), 9, + STATE(6665), 1, + sym_block, + STATE(7465), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783073,7 +775562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146354] = 12, + [147386] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783094,10 +775583,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10454), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7448), 9, + ACTIONS(3566), 2, + anon_sym_while, + anon_sym_else, + STATE(7466), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783107,7 +775596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146400] = 13, + [147432] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783128,11 +775617,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10456), 1, - anon_sym_LBRACK, - STATE(3544), 1, - sym_array_rank_specifier, - STATE(7449), 9, + ACTIONS(10808), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7467), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783142,31 +775630,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146448] = 12, - ACTIONS(8511), 1, + [147478] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10458), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7450), 9, + ACTIONS(10980), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7468), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783176,7 +775664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146494] = 13, + [147524] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783197,11 +775685,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(4927), 1, - sym_initializer_expression, - STATE(7451), 9, + ACTIONS(10982), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7469), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783211,7 +775698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146542] = 13, + [147570] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783232,11 +775719,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10460), 1, - anon_sym_LPAREN, - STATE(7405), 1, - sym_tuple_expression, - STATE(7452), 9, + ACTIONS(4331), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7470), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783246,7 +775732,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146590] = 12, + [147616] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783267,10 +775753,11 @@ 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(7453), 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, @@ -783280,7 +775767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146636] = 13, + [147664] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783301,11 +775788,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(4953), 1, - sym_initializer_expression, - STATE(7454), 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, @@ -783315,7 +775802,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146684] = 12, + [147712] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783336,10 +775823,10 @@ 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_RBRACK, - STATE(7455), 9, + ACTIONS(10986), 2, + anon_sym_disable, + anon_sym_restore, + STATE(7473), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783349,7 +775836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146730] = 13, + [147758] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783370,11 +775857,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6753), 1, - sym_parameter_list, - STATE(7456), 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, @@ -783384,7 +775871,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146778] = 12, + [147806] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783405,10 +775892,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10103), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7457), 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, @@ -783418,7 +775906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146824] = 13, + [147854] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783439,11 +775927,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7951), 1, - anon_sym_DOT, - ACTIONS(10466), 1, - anon_sym_SEMI, - STATE(7458), 9, + ACTIONS(1461), 1, + anon_sym_LBRACE, + STATE(3296), 1, + sym_initializer_expression, + STATE(7476), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783453,7 +775941,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146872] = 12, + [147902] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783474,10 +775962,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3464), 2, - anon_sym_while, - anon_sym_else, - STATE(7459), 9, + ACTIONS(10988), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7477), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783487,7 +775975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146918] = 12, + [147948] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783508,10 +775996,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3460), 2, - anon_sym_while, - anon_sym_else, - STATE(7460), 9, + ACTIONS(1703), 1, + anon_sym_LBRACE, + STATE(3368), 1, + sym_initializer_expression, + STATE(7478), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783521,7 +776010,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [146964] = 13, + [147996] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783542,11 +776031,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6732), 1, - sym_parameter_list, - STATE(7461), 9, + ACTIONS(10990), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7479), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783556,7 +776044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147012] = 13, + [148042] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783577,11 +776065,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(145), 1, - anon_sym_DQUOTE, - STATE(7475), 1, - sym_string_literal, - STATE(7462), 9, + ACTIONS(3542), 2, + anon_sym_while, + anon_sym_else, + STATE(7480), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783591,7 +776078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147060] = 12, + [148088] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783612,10 +776099,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10086), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7463), 9, + ACTIONS(7536), 1, + anon_sym_LBRACE, + STATE(2117), 1, + sym_block, + STATE(7481), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783625,7 +776113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147106] = 13, + [148136] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783646,11 +776134,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10468), 1, - anon_sym_LBRACE, - STATE(5673), 1, - sym__switch_expression_body, - STATE(7464), 9, + ACTIONS(10992), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7482), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783660,7 +776147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147154] = 12, + [148182] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783681,10 +776168,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3452), 2, + ACTIONS(3534), 2, anon_sym_while, anon_sym_else, - STATE(7465), 9, + STATE(7483), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783694,7 +776181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147200] = 12, + [148228] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783715,10 +776202,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3448), 2, - anon_sym_while, - anon_sym_else, - STATE(7466), 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, @@ -783728,7 +776216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147246] = 12, + [148276] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783749,10 +776237,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3444), 2, - anon_sym_while, - anon_sym_else, - STATE(7467), 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, @@ -783762,7 +776251,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147292] = 12, + [148324] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783783,10 +776272,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(7468), 9, + ACTIONS(10994), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7486), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783796,7 +776285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147338] = 12, + [148370] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783817,10 +776306,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10470), 2, + ACTIONS(10129), 1, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7469), 9, + STATE(7072), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(7487), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783830,7 +776320,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147384] = 13, + [148418] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783851,11 +776341,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9130), 1, + ACTIONS(9899), 1, anon_sym_LBRACE, - STATE(5402), 1, - sym_block, - STATE(7470), 9, + STATE(7768), 1, + sym_enum_member_declaration_list, + STATE(7488), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783865,7 +776355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147432] = 12, + [148466] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783886,10 +776376,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10472), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7471), 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, @@ -783899,7 +776390,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147478] = 13, + [148514] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783920,11 +776411,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10418), 1, + ACTIONS(10924), 1, anon_sym_LBRACK, - STATE(6983), 1, + STATE(7044), 1, sym_bracketed_parameter_list, - STATE(7472), 9, + STATE(7490), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -783934,7 +776425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147526] = 13, + [148562] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783955,11 +776446,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7951), 1, - anon_sym_DOT, - ACTIONS(10474), 1, - anon_sym_SEMI, - STATE(7473), 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, @@ -783969,7 +776460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147574] = 13, + [148610] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -783990,11 +776481,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(7583), 1, - sym_parameter_list, - STATE(7474), 9, + ACTIONS(7206), 1, + anon_sym_LBRACE, + STATE(7582), 1, + sym_block, + STATE(7492), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784004,7 +776495,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147622] = 13, + [148658] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784025,46 +776516,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, - anon_sym_DQUOTE, - STATE(7802), 1, - sym_string_literal, - STATE(7475), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [147670] = 13, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(10042), 1, - aux_sym_preproc_if_token2, - ACTIONS(10476), 1, + ACTIONS(10775), 2, anon_sym_COMMA, - STATE(7476), 9, + anon_sym_RPAREN, + STATE(7493), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784074,7 +776529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147718] = 13, + [148704] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784095,11 +776550,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(6984), 1, + STATE(6704), 1, sym_parameter_list, - STATE(7477), 9, + STATE(7494), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784109,7 +776564,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147766] = 12, + [148752] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784130,10 +776585,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10478), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(7478), 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, @@ -784143,7 +776599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147812] = 12, + [148800] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784164,10 +776620,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3440), 2, - anon_sym_while, - anon_sym_else, - STATE(7479), 9, + ACTIONS(10998), 2, + anon_sym_this, + anon_sym_base, + STATE(7496), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784177,7 +776633,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147858] = 13, + [148846] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784198,11 +776654,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6996), 1, - sym_parameter_list, - STATE(7480), 9, + ACTIONS(1763), 1, + anon_sym_LBRACE, + STATE(5167), 1, + sym_initializer_expression, + STATE(7497), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784212,7 +776668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147906] = 13, + [148894] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784233,11 +776689,11 @@ 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(5383), 1, - sym_initializer_expression, - STATE(7481), 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, @@ -784247,7 +776703,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [147954] = 13, + [148942] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784268,11 +776724,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10480), 1, + ACTIONS(9674), 1, anon_sym_LBRACE, - STATE(5677), 1, - sym__with_body, - STATE(7482), 9, + STATE(3302), 1, + sym_block, + STATE(7499), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784282,7 +776738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148002] = 12, + [148990] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784303,10 +776759,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3436), 2, + ACTIONS(3526), 2, anon_sym_while, anon_sym_else, - STATE(7483), 9, + STATE(7500), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784316,7 +776772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148048] = 13, + [149036] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784337,11 +776793,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9203), 1, - anon_sym_LBRACE, - STATE(4824), 1, - sym_block, - STATE(7484), 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, @@ -784351,7 +776807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148096] = 13, + [149084] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784372,45 +776828,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9423), 1, + ACTIONS(11000), 1, anon_sym_LBRACE, - STATE(7729), 1, - sym_enum_member_declaration_list, - STATE(7485), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [148144] = 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(3432), 2, - anon_sym_while, - anon_sym_else, - STATE(7486), 9, + STATE(2043), 1, + sym_switch_body, + STATE(7502), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784420,7 +776842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148190] = 13, + [149132] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784441,11 +776863,10 @@ 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(2131), 1, - sym_switch_body, - STATE(7487), 9, + ACTIONS(3506), 2, + anon_sym_while, + anon_sym_else, + STATE(7503), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784455,7 +776876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148238] = 12, + [149178] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784476,10 +776897,11 @@ 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(7488), 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, @@ -784489,7 +776911,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148284] = 13, + [149226] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784510,11 +776932,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9225), 1, - anon_sym_LBRACE, - STATE(4942), 1, - sym_block, - STATE(7489), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6730), 1, + sym_parameter_list, + STATE(7505), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784524,7 +776946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148332] = 13, + [149274] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784545,11 +776967,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(4930), 1, - sym_initializer_expression, - STATE(7490), 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, @@ -784559,7 +776981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148380] = 12, + [149322] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784580,10 +777002,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3428), 2, - anon_sym_while, - anon_sym_else, - STATE(7491), 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, @@ -784593,7 +777016,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148426] = 12, + [149370] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784614,10 +777037,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3420), 2, - anon_sym_while, - anon_sym_else, - STATE(7492), 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, @@ -784627,7 +777051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148472] = 12, + [149418] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784648,10 +777072,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9991), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7493), 9, + ACTIONS(3434), 2, + anon_sym_while, + anon_sym_else, + STATE(7509), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784661,7 +777085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148518] = 12, + [149464] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784682,10 +777106,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3416), 2, - anon_sym_while, - anon_sym_else, - STATE(7494), 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, @@ -784695,7 +777120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148564] = 13, + [149512] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784716,11 +777141,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(7462), 1, - sym_string_literal, - STATE(7495), 9, + ACTIONS(7536), 1, + anon_sym_LBRACE, + STATE(2044), 1, + sym_block, + STATE(7511), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784730,7 +777155,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148612] = 13, + [149560] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784751,11 +777176,11 @@ 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(5297), 1, - sym_initializer_expression, - STATE(7496), 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, @@ -784765,7 +777190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148660] = 13, + [149608] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784786,11 +777211,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9615), 1, - anon_sym_COMMA, - STATE(7350), 1, - aux_sym_tuple_type_repeat1, - STATE(7497), 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, @@ -784800,7 +777225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148708] = 13, + [149656] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784821,11 +777246,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9423), 1, - anon_sym_LBRACE, - STATE(7962), 1, - sym_enum_member_declaration_list, - STATE(7498), 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, @@ -784835,7 +777260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148756] = 12, + [149704] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784856,10 +777281,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10482), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(7499), 9, + ACTIONS(3406), 2, + anon_sym_while, + anon_sym_else, + STATE(7515), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784869,7 +777294,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148802] = 12, + [149750] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784890,10 +777315,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9976), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7500), 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, @@ -784903,7 +777329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148848] = 12, + [149798] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784924,10 +777350,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(7501), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6731), 1, + sym_parameter_list, + STATE(7517), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784937,7 +777364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148894] = 12, + [149846] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784958,10 +777385,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3400), 2, + ACTIONS(3410), 2, anon_sym_while, anon_sym_else, - STATE(7502), 9, + STATE(7518), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -784971,7 +777398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148940] = 13, + [149892] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -784992,11 +777419,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10412), 1, - anon_sym_LPAREN, - STATE(82), 1, - sym__for_statement_conditions, - STATE(7503), 9, + ACTIONS(11006), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7519), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785006,7 +777432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [148988] = 12, + [149938] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785027,10 +777453,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3496), 2, - anon_sym_while, - anon_sym_else, - STATE(7504), 9, + ACTIONS(11008), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7520), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785040,7 +777466,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149034] = 13, + [149984] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785061,11 +777487,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9423), 1, - anon_sym_LBRACE, - STATE(8023), 1, - sym_enum_member_declaration_list, - STATE(7505), 9, + ACTIONS(3414), 2, + anon_sym_while, + anon_sym_else, + STATE(7521), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785075,7 +777500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149082] = 12, + [150030] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785096,10 +777521,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10484), 2, + ACTIONS(11010), 2, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7506), 9, + anon_sym_RBRACK, + STATE(7522), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785109,7 +777534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149128] = 13, + [150076] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785130,11 +777555,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_LBRACE, - STATE(1932), 1, - sym_block, - STATE(7507), 9, + ACTIONS(3418), 2, + anon_sym_while, + anon_sym_else, + STATE(7523), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785144,7 +777568,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149176] = 13, + [150122] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785165,11 +777589,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9423), 1, - anon_sym_LBRACE, - STATE(7675), 1, - sym_enum_member_declaration_list, - STATE(7508), 9, + ACTIONS(3422), 2, + anon_sym_while, + anon_sym_else, + STATE(7524), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785179,7 +777602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149224] = 13, + [150168] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785200,11 +777623,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10486), 1, - anon_sym_LBRACE, - STATE(4806), 1, - sym__switch_expression_body, - STATE(7509), 9, + ACTIONS(3438), 2, + anon_sym_while, + anon_sym_else, + STATE(7525), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785214,7 +777636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149272] = 13, + [150214] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785235,11 +777657,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10412), 1, - anon_sym_LPAREN, - STATE(100), 1, - sym__for_statement_conditions, - STATE(7510), 9, + ACTIONS(3442), 2, + anon_sym_while, + anon_sym_else, + STATE(7526), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785249,7 +777670,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149320] = 12, + [150260] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785270,10 +777691,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3468), 2, + ACTIONS(3470), 2, anon_sym_while, anon_sym_else, - STATE(7511), 9, + STATE(7527), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785283,7 +777704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149366] = 13, + [150306] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785304,11 +777725,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10488), 1, - anon_sym_LBRACE, - STATE(4797), 1, - sym__with_body, - STATE(7512), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6733), 1, + sym_parameter_list, + STATE(7528), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785318,7 +777739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149414] = 13, + [150354] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785339,11 +777760,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10490), 1, - anon_sym_LPAREN, - STATE(7426), 1, - sym_tuple_expression, - STATE(7513), 9, + ACTIONS(3474), 2, + anon_sym_while, + anon_sym_else, + STATE(7529), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785353,7 +777773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149462] = 13, + [150400] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785374,11 +777794,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(7453), 1, - sym_parameter_list, - STATE(7514), 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, @@ -785388,7 +777808,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149510] = 13, + [150448] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785409,11 +777829,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9726), 1, - anon_sym_COMMA, - STATE(7109), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7515), 9, + ACTIONS(3478), 2, + anon_sym_while, + anon_sym_else, + STATE(7531), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785423,7 +777842,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149558] = 13, + [150494] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785444,11 +777863,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7208), 1, - anon_sym_LBRACE, - STATE(4168), 1, - sym_block, - STATE(7516), 9, + ACTIONS(3426), 2, + anon_sym_while, + anon_sym_else, + STATE(7532), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785458,7 +777876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149606] = 12, + [150540] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785479,10 +777897,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10492), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7517), 9, + ACTIONS(3482), 2, + anon_sym_while, + anon_sym_else, + STATE(7533), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785492,7 +777910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149652] = 12, + [150586] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785513,10 +777931,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3396), 2, + ACTIONS(3510), 2, anon_sym_while, anon_sym_else, - STATE(7518), 9, + STATE(7534), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785526,7 +777944,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149698] = 12, + [150632] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785547,10 +777965,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10494), 2, + ACTIONS(9899), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7519), 9, + STATE(7698), 1, + sym_enum_member_declaration_list, + STATE(7535), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785560,7 +777979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149744] = 13, + [150680] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785581,11 +778000,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6738), 1, - sym_parameter_list, - STATE(7520), 9, + ACTIONS(7206), 1, + anon_sym_LBRACE, + STATE(3389), 1, + sym_block, + STATE(7536), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785595,7 +778014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149792] = 13, + [150728] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785616,11 +778035,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(7408), 1, - sym_tuple_expression, - STATE(7521), 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, @@ -785630,7 +778049,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149840] = 13, + [150776] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785651,45 +778070,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7951), 1, - anon_sym_DOT, - ACTIONS(10498), 1, - anon_sym_SEMI, - STATE(7522), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [149888] = 12, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(10500), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7523), 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, @@ -785699,7 +778084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149934] = 13, + [150824] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785720,11 +778105,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9423), 1, + ACTIONS(11016), 2, anon_sym_LBRACE, - STATE(7734), 1, - sym_enum_member_declaration_list, - STATE(7524), 9, + anon_sym_EQ_GT, + STATE(7539), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785734,7 +778118,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [149982] = 12, + [150870] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785755,10 +778139,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10502), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7525), 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, @@ -785768,7 +778153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150028] = 13, + [150918] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785789,11 +778174,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10504), 1, - anon_sym_LBRACK, - ACTIONS(10506), 1, - anon_sym_LT, - STATE(7526), 9, + ACTIONS(3430), 2, + anon_sym_while, + anon_sym_else, + STATE(7541), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785803,7 +778187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150076] = 13, + [150964] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785824,11 +778208,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(8075), 1, - sym_declaration_list, - STATE(7527), 9, + ACTIONS(3494), 2, + anon_sym_while, + anon_sym_else, + STATE(7542), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785838,7 +778221,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150124] = 13, + [151010] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785859,11 +778242,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8741), 1, + ACTIONS(9742), 1, anon_sym_LBRACE, - STATE(8074), 1, - sym_declaration_list, - STATE(7528), 9, + STATE(5724), 1, + sym_block, + STATE(7543), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785873,7 +778256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150172] = 12, + [151058] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785894,10 +778277,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10508), 2, - anon_sym_disable, - anon_sym_restore, - STATE(7529), 9, + ACTIONS(11018), 1, + anon_sym_LBRACK, + STATE(3174), 1, + sym_array_rank_specifier, + STATE(7544), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785907,7 +778291,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150218] = 12, + [151106] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785928,10 +778312,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(7530), 9, + ACTIONS(10085), 1, + anon_sym_COMMA, + STATE(7255), 1, + aux_sym_tuple_type_repeat1, + STATE(7545), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785941,7 +778326,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150264] = 13, + [151154] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785962,11 +778347,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(6734), 1, + STATE(6724), 1, sym_parameter_list, - STATE(7531), 9, + STATE(7546), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -785976,7 +778361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150312] = 12, + [151202] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -785997,10 +778382,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3546), 2, - anon_sym_while, - anon_sym_else, - STATE(7532), 9, + ACTIONS(11020), 1, + anon_sym_LBRACE, + STATE(3203), 1, + sym__switch_expression_body, + STATE(7547), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786010,7 +778396,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150358] = 13, + [151250] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786031,11 +778417,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(1940), 1, - sym_block, - STATE(7533), 9, + ACTIONS(3514), 2, + anon_sym_while, + anon_sym_else, + STATE(7548), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786045,7 +778430,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150406] = 13, + [151296] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786066,11 +778451,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9615), 1, - anon_sym_COMMA, - STATE(7241), 1, - aux_sym_tuple_type_repeat1, - STATE(7534), 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, @@ -786080,7 +778465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150454] = 13, + [151344] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786101,11 +778486,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6609), 1, - sym_parameter_list, - STATE(7535), 9, + ACTIONS(9899), 1, + anon_sym_LBRACE, + STATE(7843), 1, + sym_enum_member_declaration_list, + STATE(7550), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786115,7 +778500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150502] = 12, + [151392] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786136,10 +778521,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3550), 2, - anon_sym_while, - anon_sym_else, - STATE(7536), 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, @@ -786149,7 +778535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150548] = 13, + [151440] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786170,11 +778556,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9615), 1, - anon_sym_COMMA, - STATE(7224), 1, - aux_sym_tuple_type_repeat1, - STATE(7537), 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, @@ -786184,7 +778570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150596] = 13, + [151488] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786205,11 +778591,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9649), 1, - anon_sym_COMMA, - STATE(7234), 1, - aux_sym_tuple_expression_repeat1, - STATE(7538), 9, + ACTIONS(7206), 1, + anon_sym_LBRACE, + STATE(3358), 1, + sym_block, + STATE(7553), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786219,7 +778605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150644] = 12, + [151536] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786240,10 +778626,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(7539), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6726), 1, + sym_parameter_list, + STATE(7554), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786253,7 +778640,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150690] = 13, + [151584] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786274,11 +778661,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9649), 1, - anon_sym_COMMA, - STATE(7226), 1, - aux_sym_tuple_expression_repeat1, - STATE(7540), 9, + ACTIONS(9899), 1, + anon_sym_LBRACE, + STATE(7824), 1, + sym_enum_member_declaration_list, + STATE(7555), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786288,7 +778675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150738] = 13, + [151632] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786309,11 +778696,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6737), 1, - sym_parameter_list, - STATE(7541), 9, + ACTIONS(3578), 2, + anon_sym_while, + anon_sym_else, + STATE(7556), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786323,7 +778709,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150786] = 13, + [151678] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786344,11 +778730,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9615), 1, - anon_sym_COMMA, - STATE(7228), 1, - aux_sym_tuple_type_repeat1, - STATE(7542), 9, + ACTIONS(11026), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7557), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786358,7 +778743,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150834] = 12, + [151724] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786379,10 +778764,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10510), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7543), 9, + ACTIONS(11028), 1, + anon_sym_LBRACE, + STATE(3226), 1, + sym__with_body, + STATE(7558), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786392,7 +778778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150880] = 12, + [151772] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786413,10 +778799,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3558), 2, - anon_sym_while, - anon_sym_else, - STATE(7544), 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, @@ -786426,7 +778813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150926] = 12, + [151820] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786447,10 +778834,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_RBRACE, - STATE(7545), 9, + ACTIONS(11030), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7560), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786460,7 +778847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [150972] = 13, + [151866] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786481,11 +778868,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(7773), 1, - sym_declaration_list, - STATE(7546), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6743), 1, + sym_parameter_list, + STATE(7561), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786495,7 +778882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151020] = 12, + [151914] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786516,10 +778903,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3562), 2, + ACTIONS(3574), 2, anon_sym_while, anon_sym_else, - STATE(7547), 9, + STATE(7562), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786529,7 +778916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151066] = 13, + [151960] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786550,45 +778937,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(7774), 1, - sym_declaration_list, - STATE(7548), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [151114] = 12, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(10514), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7549), 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, @@ -786598,7 +778951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151160] = 12, + [152008] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786619,10 +778972,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(7550), 9, + ACTIONS(11032), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7564), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786632,7 +778985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151206] = 13, + [152054] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786653,11 +779006,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10516), 1, - anon_sym_LPAREN, - STATE(7606), 1, - sym_tuple_expression, - STATE(7551), 9, + ACTIONS(11034), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7565), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786667,7 +779019,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151254] = 13, + [152100] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786688,11 +779040,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10418), 1, - anon_sym_LBRACK, - STATE(7014), 1, - sym_bracketed_parameter_list, - STATE(7552), 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, @@ -786702,7 +779054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151302] = 12, + [152148] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786723,10 +779075,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3570), 2, - anon_sym_while, - anon_sym_else, - STATE(7553), 9, + ACTIONS(11036), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7567), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786736,7 +779088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151348] = 12, + [152194] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786757,10 +779109,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(4318), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(7554), 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, @@ -786770,7 +779123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151394] = 13, + [152242] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786791,11 +779144,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9423), 1, + ACTIONS(6234), 1, anon_sym_LBRACE, - STATE(7867), 1, - sym_enum_member_declaration_list, - STATE(7555), 9, + STATE(1965), 1, + sym_block, + STATE(7569), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786805,7 +779158,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151442] = 12, + [152290] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786826,10 +779179,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3574), 2, - anon_sym_while, - anon_sym_else, - STATE(7556), 9, + ACTIONS(10081), 1, + anon_sym_COMMA, + STATE(7348), 1, + aux_sym_tuple_expression_repeat1, + STATE(7570), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786839,7 +779193,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151488] = 13, + [152338] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786860,11 +779214,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6611), 1, - sym_parameter_list, - STATE(7557), 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, @@ -786874,7 +779228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151536] = 12, + [152386] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786895,10 +779249,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3578), 2, + ACTIONS(3446), 2, anon_sym_while, anon_sym_else, - STATE(7558), 9, + STATE(7572), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786908,7 +779262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151582] = 13, + [152432] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786929,11 +779283,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9423), 1, - anon_sym_LBRACE, - STATE(7949), 1, - sym_enum_member_declaration_list, - STATE(7559), 9, + ACTIONS(3450), 2, + anon_sym_while, + anon_sym_else, + STATE(7573), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -786943,7 +779296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151630] = 13, + [152478] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786964,11 +779317,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(7004), 1, - sym_parameter_list, - STATE(7560), 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, @@ -786978,7 +779331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151678] = 12, + [152526] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -786999,10 +779352,11 @@ 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(7561), 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, @@ -787012,7 +779366,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151724] = 13, + [152574] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787033,11 +779387,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10412), 1, - anon_sym_LPAREN, - STATE(86), 1, - sym__for_statement_conditions, - STATE(7562), 9, + ACTIONS(11040), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7576), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787047,7 +779400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151772] = 12, + [152620] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787068,10 +779421,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3456), 2, + ACTIONS(3454), 2, anon_sym_while, anon_sym_else, - STATE(7563), 9, + STATE(7577), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787081,7 +779434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151818] = 13, + [152666] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787102,11 +779455,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(4787), 1, - sym_initializer_expression, - STATE(7564), 9, + ACTIONS(3562), 2, + anon_sym_while, + anon_sym_else, + STATE(7578), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787116,31 +779468,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151866] = 12, - ACTIONS(8511), 1, + [152712] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10518), 2, - sym_character_literal_content, - sym_escape_sequence, - STATE(7565), 9, + ACTIONS(3558), 2, + anon_sym_while, + anon_sym_else, + STATE(7579), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787150,7 +779502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151912] = 13, + [152758] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787171,11 +779523,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7208), 1, - anon_sym_LBRACE, - STATE(6689), 1, - sym_block, - STATE(7566), 9, + ACTIONS(3554), 2, + anon_sym_while, + anon_sym_else, + STATE(7580), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787185,7 +779536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [151960] = 13, + [152804] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787206,11 +779557,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6995), 1, - sym_parameter_list, - STATE(7567), 9, + ACTIONS(11042), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(7581), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787220,7 +779570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152008] = 13, + [152850] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787241,11 +779591,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9044), 1, - anon_sym_EQ_GT, - STATE(1530), 1, - sym_switch_arrow, - STATE(7568), 9, + ACTIONS(3458), 2, + anon_sym_while, + anon_sym_else, + STATE(7582), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787255,7 +779604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152056] = 13, + [152896] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787276,11 +779625,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(4777), 1, - sym_initializer_expression, - STATE(7569), 9, + ACTIONS(3550), 2, + anon_sym_while, + anon_sym_else, + STATE(7583), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787290,7 +779638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152104] = 13, + [152942] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787311,11 +779659,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10520), 1, - anon_sym_LBRACK, - STATE(2410), 1, - sym_array_rank_specifier, - STATE(7570), 9, + ACTIONS(11044), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(7584), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787325,7 +779672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152152] = 13, + [152988] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787346,11 +779693,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6638), 1, - sym_parameter_list, - STATE(7571), 9, + ACTIONS(11046), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7585), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787360,7 +779706,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152200] = 13, + [153034] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787381,11 +779727,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10522), 1, + ACTIONS(9258), 1, anon_sym_LBRACE, - STATE(4144), 1, - sym__switch_expression_body, - STATE(7572), 9, + STATE(8021), 1, + sym_declaration_list, + STATE(7586), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787395,7 +779741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152248] = 13, + [153082] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787416,11 +779762,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9726), 1, + ACTIONS(10081), 1, anon_sym_COMMA, - STATE(7188), 1, - aux_sym_positional_pattern_clause_repeat1, - STATE(7573), 9, + STATE(7223), 1, + aux_sym_tuple_expression_repeat1, + STATE(7587), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787430,7 +779776,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152296] = 13, + [153130] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787451,11 +779797,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9649), 1, - anon_sym_COMMA, - STATE(7160), 1, - aux_sym_tuple_expression_repeat1, - STATE(7574), 9, + ACTIONS(3546), 2, + anon_sym_while, + anon_sym_else, + STATE(7588), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787465,7 +779810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152344] = 13, + [153176] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787486,11 +779831,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9423), 1, + ACTIONS(11000), 1, anon_sym_LBRACE, - STATE(7882), 1, - sym_enum_member_declaration_list, - STATE(7575), 9, + STATE(2038), 1, + sym_switch_body, + STATE(7589), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787500,7 +779845,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152392] = 13, + [153224] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787521,11 +779866,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9615), 1, - anon_sym_COMMA, - STATE(7303), 1, - aux_sym_tuple_type_repeat1, - STATE(7576), 9, + ACTIONS(9258), 1, + anon_sym_LBRACE, + STATE(8020), 1, + sym_declaration_list, + STATE(7590), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787535,7 +779880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152440] = 12, + [153272] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787556,10 +779901,10 @@ 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_RPAREN, - STATE(7577), 9, + ACTIONS(11048), 2, + anon_sym_SEMI, + anon_sym_where, + STATE(7591), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787569,7 +779914,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152486] = 13, + [153318] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787590,11 +779935,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10526), 1, - anon_sym_LBRACE, - STATE(4161), 1, - sym__with_body, - STATE(7578), 9, + ACTIONS(3538), 2, + anon_sym_while, + anon_sym_else, + STATE(7592), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787604,7 +779948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152534] = 13, + [153364] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787625,11 +779969,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9423), 1, - anon_sym_LBRACE, - STATE(7853), 1, - sym_enum_member_declaration_list, - STATE(7579), 9, + ACTIONS(3462), 2, + anon_sym_while, + anon_sym_else, + STATE(7593), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787639,7 +779982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152582] = 12, + [153410] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787660,10 +780003,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10528), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7580), 9, + ACTIONS(10954), 1, + anon_sym_LBRACE, + STATE(2142), 1, + sym_switch_body, + STATE(7594), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787673,7 +780017,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152628] = 12, + [153458] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787694,10 +780038,10 @@ 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_RPAREN, - STATE(7581), 9, + ACTIONS(3518), 2, + anon_sym_while, + anon_sym_else, + STATE(7595), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787707,31 +780051,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152674] = 12, - ACTIONS(3), 1, + [153504] = 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(10532), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7582), 9, + ACTIONS(11050), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7596), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787741,7 +780085,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152720] = 12, + [153550] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787762,10 +780106,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10534), 2, - anon_sym_SEMI, - anon_sym_where, - STATE(7583), 9, + ACTIONS(1763), 1, + anon_sym_LBRACE, + STATE(5213), 1, + sym_initializer_expression, + STATE(7597), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787775,7 +780120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152766] = 13, + [153598] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787796,11 +780141,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10536), 1, - anon_sym_LBRACK, - STATE(3038), 1, - sym_array_rank_specifier, - STATE(7584), 9, + ACTIONS(11052), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7598), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787810,7 +780154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152814] = 13, + [153644] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787831,11 +780175,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9176), 1, - anon_sym_LBRACE, - STATE(3802), 1, - sym_block, - STATE(7585), 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, @@ -787845,7 +780189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152862] = 13, + [153692] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787866,11 +780210,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6899), 1, - anon_sym_LBRACE, - STATE(2042), 1, - sym_block, - STATE(7586), 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, @@ -787880,32 +780224,31 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152910] = 13, - ACTIONS(3), 1, + [153740] = 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(1611), 1, - anon_sym_LBRACE, - STATE(5688), 1, - sym_initializer_expression, - STATE(7587), 9, + ACTIONS(11056), 2, + sym_character_literal_content, + sym_escape_sequence, + STATE(7601), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -787915,7 +780258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [152958] = 12, + [153786] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787936,10 +780279,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10538), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7588), 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, @@ -787949,7 +780293,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153004] = 12, + [153834] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -787970,10 +780314,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(7589), 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, @@ -787983,7 +780328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153050] = 12, + [153882] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788004,10 +780349,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10540), 2, + ACTIONS(11060), 2, anon_sym_COMMA, - anon_sym_GT, - STATE(7590), 9, + anon_sym_RPAREN, + STATE(7604), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788017,7 +780362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153096] = 12, + [153928] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788038,10 +780383,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10542), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7591), 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, @@ -788051,7 +780397,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153142] = 13, + [153976] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788072,11 +780418,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(3917), 1, - sym_initializer_expression, - STATE(7592), 9, + ACTIONS(11064), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7606), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788086,7 +780431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153190] = 13, + [154022] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788107,11 +780452,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10544), 1, - anon_sym_LBRACE, - STATE(3778), 1, - sym__switch_expression_body, - STATE(7593), 9, + ACTIONS(4353), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7607), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788121,7 +780465,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153238] = 13, + [154068] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788142,11 +780486,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10546), 1, - anon_sym_LBRACE, - STATE(3848), 1, - sym__with_body, - STATE(7594), 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, @@ -788156,7 +780500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153286] = 13, + [154116] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788177,11 +780521,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7951), 1, - anon_sym_DOT, - ACTIONS(10548), 1, - anon_sym_SEMI, - STATE(7595), 9, + ACTIONS(3392), 2, + anon_sym_while, + anon_sym_else, + STATE(7609), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788191,7 +780534,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153334] = 12, + [154162] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788212,10 +780555,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10550), 2, + ACTIONS(10129), 1, anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7596), 9, + STATE(7144), 1, + aux_sym_positional_pattern_clause_repeat1, + STATE(7610), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788225,7 +780569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153380] = 13, + [154210] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788246,11 +780590,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1461), 1, + ACTIONS(11066), 1, anon_sym_LBRACE, - STATE(3873), 1, - sym_initializer_expression, - STATE(7597), 9, + STATE(5771), 1, + sym__with_body, + STATE(7611), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788260,7 +780604,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153428] = 13, + [154258] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788281,11 +780625,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10418), 1, + ACTIONS(8189), 1, anon_sym_LBRACK, - STATE(6961), 1, - sym_bracketed_parameter_list, - STATE(7598), 9, + ACTIONS(8191), 1, + anon_sym_STAR, + STATE(7612), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788295,7 +780639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153476] = 12, + [154306] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788316,10 +780660,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10552), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7599), 9, + ACTIONS(8843), 1, + anon_sym_LPAREN, + STATE(6767), 1, + sym_parameter_list, + STATE(7613), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788329,7 +780674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153522] = 12, + [154354] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788350,10 +780695,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10554), 2, + 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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [154402] = 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(8524), 1, + anon_sym_DOT, + ACTIONS(11070), 1, anon_sym_SEMI, - anon_sym_where, - STATE(7600), 9, + STATE(7615), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788363,7 +780744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153568] = 12, + [154450] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788384,10 +780765,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10556), 2, + ACTIONS(11072), 2, anon_sym_COMMA, anon_sym_RBRACK, - STATE(7601), 9, + STATE(7616), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788397,7 +780778,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153614] = 13, + [154496] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788418,11 +780799,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7208), 1, + ACTIONS(9736), 1, anon_sym_LBRACE, - STATE(7466), 1, + STATE(5204), 1, sym_block, - STATE(7602), 9, + STATE(7617), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788432,7 +780813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153662] = 12, + [154544] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788453,10 +780834,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10558), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7603), 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, @@ -788466,7 +780848,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153708] = 13, + [154592] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788487,11 +780869,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(3884), 1, - sym_initializer_expression, - STATE(7604), 9, + ACTIONS(4361), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(7619), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788501,7 +780882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153756] = 13, + [154638] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788522,11 +780903,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9176), 1, - anon_sym_LBRACE, - STATE(3913), 1, - sym_block, - STATE(7605), 9, + ACTIONS(11074), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(7620), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788536,7 +780916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153804] = 13, + [154684] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788557,11 +780937,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10560), 1, - anon_sym_LBRACE, - STATE(7501), 1, - sym_switch_body, - STATE(7606), 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, @@ -788571,7 +780951,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153852] = 12, + [154732] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788592,10 +780972,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10562), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7607), 9, + ACTIONS(3396), 2, + anon_sym_while, + anon_sym_else, + STATE(7622), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788605,7 +780985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153898] = 13, + [154778] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788626,11 +781006,115 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, + 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, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [154826] = 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(3498), 2, + anon_sym_while, + anon_sym_else, + STATE(7624), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [154872] = 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(6748), 1, + STATE(6585), 1, sym_parameter_list, - STATE(7608), 9, + STATE(7625), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [154920] = 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(11078), 1, + anon_sym_LBRACK, + STATE(3929), 1, + sym_array_rank_specifier, + STATE(7626), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788640,7 +781124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153946] = 13, + [154968] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788661,11 +781145,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(11014), 1, anon_sym_LBRACE, - STATE(1962), 1, - sym_block, - STATE(7609), 9, + STATE(1993), 1, + sym_switch_body, + STATE(7627), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788675,7 +781159,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [153994] = 12, + [155016] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788696,10 +781180,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(7610), 9, + ACTIONS(9742), 1, + anon_sym_LBRACE, + STATE(5691), 1, + sym_block, + STATE(7628), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788709,7 +781194,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154040] = 12, + [155064] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788730,10 +781215,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10566), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(7611), 9, + ACTIONS(3466), 2, + anon_sym_while, + anon_sym_else, + STATE(7629), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788743,7 +781228,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154086] = 13, + [155110] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788764,46 +781249,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10560), 1, - anon_sym_LBRACE, - STATE(7429), 1, - sym_switch_body, - 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, - [154134] = 13, - ACTIONS(5920), 1, - aux_sym_preproc_if_token2, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(10568), 1, - sym_string_literal_encoding, - STATE(7613), 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, @@ -788813,7 +781263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154182] = 13, + [155158] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788834,11 +781284,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_EQ_GT, - ACTIONS(10570), 1, - anon_sym_in, - STATE(7614), 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, @@ -788848,7 +781298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154230] = 13, + [155206] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788869,46 +781319,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(6741), 1, + STATE(6607), 1, sym_parameter_list, - 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, - [154278] = 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(8741), 1, - anon_sym_LBRACE, - STATE(8113), 1, - sym_declaration_list, - STATE(7616), 9, + STATE(7632), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788918,7 +781333,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154326] = 13, + [155254] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788939,11 +781354,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(1611), 1, + ACTIONS(9899), 1, anon_sym_LBRACE, - STATE(5695), 1, - sym_initializer_expression, - STATE(7617), 9, + STATE(7915), 1, + sym_enum_member_declaration_list, + STATE(7633), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -788953,7 +781368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154374] = 13, + [155302] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -788974,45 +781389,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(8843), 1, anon_sym_LPAREN, - STATE(6618), 1, + STATE(6921), 1, sym_parameter_list, - STATE(7618), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [154422] = 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(10572), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7619), 9, + STATE(7634), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789022,7 +781403,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154468] = 13, + [155350] = 13, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789043,46 +781424,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6780), 1, - sym_parameter_list, - STATE(7620), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [154516] = 13, - ACTIONS(5934), 1, - aux_sym_preproc_if_token2, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(10574), 1, - sym_string_literal_encoding, - STATE(7621), 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, @@ -789092,7 +781438,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154564] = 13, + [155398] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789113,11 +781459,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10418), 1, - anon_sym_LBRACK, - STATE(6948), 1, - sym_bracketed_parameter_list, - STATE(7622), 9, + ACTIONS(11084), 1, + anon_sym_EQ_GT, + STATE(7636), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789127,7 +781471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154612] = 12, + [155443] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789148,10 +781492,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10576), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(7623), 9, + ACTIONS(11086), 1, + aux_sym_preproc_if_token3, + STATE(7637), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789161,7 +781504,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154658] = 13, + [155488] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789182,11 +781525,9 @@ 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(4754), 1, - sym_initializer_expression, - STATE(7624), 9, + ACTIONS(11088), 1, + sym_interpolation_start_quote, + STATE(7638), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789196,7 +781537,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154706] = 13, + [155533] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789217,11 +781558,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6776), 1, - sym_parameter_list, - STATE(7625), 9, + ACTIONS(11090), 1, + anon_sym_GT, + STATE(7639), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789231,7 +781570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154754] = 13, + [155578] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789252,11 +781591,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9203), 1, - anon_sym_LBRACE, - STATE(4758), 1, - sym_block, - STATE(7626), 9, + ACTIONS(11092), 1, + sym__optional_semi, + STATE(7640), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789266,7 +781603,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154802] = 13, + [155623] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789287,11 +781624,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6720), 1, - sym_parameter_list, - STATE(7627), 9, + ACTIONS(11094), 1, + sym__optional_semi, + STATE(7641), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789301,7 +781636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154850] = 13, + [155668] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789322,11 +781657,9 @@ 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(8102), 1, - sym_declaration_list, - STATE(7628), 9, + ACTIONS(11096), 1, + anon_sym_GT, + STATE(7642), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789336,7 +781669,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154898] = 12, + [155713] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789357,10 +781690,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10578), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(7629), 9, + ACTIONS(11098), 1, + anon_sym_SEMI, + STATE(7643), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789370,7 +781702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154944] = 13, + [155758] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789391,11 +781723,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10420), 1, - anon_sym_LBRACE, - STATE(1973), 1, - sym_switch_body, - STATE(7630), 9, + ACTIONS(11100), 1, + anon_sym_SEMI, + STATE(7644), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789405,7 +781735,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [154992] = 13, + [155803] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789426,11 +781756,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6775), 1, - sym_parameter_list, - STATE(7631), 9, + ACTIONS(11102), 1, + sym_interpolation_start_quote, + STATE(7645), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789440,7 +781768,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155040] = 13, + [155848] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789461,11 +781789,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10193), 1, - anon_sym_DQUOTE, - STATE(7664), 1, - sym_string_literal, - STATE(7632), 9, + ACTIONS(11104), 1, + anon_sym_EQ_GT, + STATE(7646), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789475,7 +781801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155088] = 13, + [155893] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789496,11 +781822,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10418), 1, - anon_sym_LBRACK, - STATE(6940), 1, - sym_bracketed_parameter_list, - STATE(7633), 9, + ACTIONS(11106), 1, + sym_interpolation_start_quote, + STATE(7647), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789510,7 +781834,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155136] = 13, + [155938] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789531,11 +781855,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6707), 1, - sym_parameter_list, - STATE(7634), 9, + ACTIONS(11108), 1, + anon_sym_EQ_GT, + STATE(7648), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789545,7 +781867,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155184] = 13, + [155983] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789566,11 +781888,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(5716), 1, - sym_initializer_expression, - STATE(7635), 9, + ACTIONS(11110), 1, + anon_sym_SEMI, + STATE(7649), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789580,7 +781900,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155232] = 13, + [156028] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789601,11 +781921,9 @@ 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(4147), 1, - sym_initializer_expression, - STATE(7636), 9, + ACTIONS(11112), 1, + sym__optional_semi, + STATE(7650), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789615,7 +781933,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155280] = 13, + [156073] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789636,11 +781954,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7951), 1, - anon_sym_DOT, - ACTIONS(10580), 1, - anon_sym_SEMI, - STATE(7637), 9, + ACTIONS(11114), 1, + sym__optional_semi, + STATE(7651), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789650,7 +781966,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155328] = 13, + [156118] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789671,11 +781987,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LPAREN, - STATE(6616), 1, - sym_parameter_list, - STATE(7638), 9, + ACTIONS(11116), 1, + anon_sym_SQUOTE, + STATE(7652), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789685,7 +781999,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155376] = 13, + [156163] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789706,11 +782020,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym_LBRACK, - STATE(5550), 1, - sym_array_rank_specifier, - STATE(7639), 9, + ACTIONS(11118), 1, + anon_sym_RBRACK, + STATE(7653), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789720,7 +782032,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155424] = 12, + [156208] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789741,10 +782053,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10584), 2, - anon_sym_this, - anon_sym_base, - STATE(7640), 9, + ACTIONS(11120), 1, + anon_sym_SEMI, + STATE(7654), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789754,7 +782065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155470] = 13, + [156253] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789775,11 +782086,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9160), 1, - anon_sym_LBRACE, - STATE(5710), 1, - sym_block, - STATE(7641), 9, + ACTIONS(11122), 1, + sym__optional_semi, + STATE(7655), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789789,7 +782098,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155518] = 12, + [156298] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789810,9 +782119,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10586), 1, - anon_sym_EQ_GT, - STATE(7642), 9, + ACTIONS(11124), 1, + sym__optional_semi, + STATE(7656), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789822,7 +782131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155563] = 12, + [156343] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789843,9 +782152,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10588), 1, - sym__optional_semi, - STATE(7643), 9, + ACTIONS(11126), 1, + anon_sym_EQ_GT, + STATE(7657), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789855,7 +782164,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155608] = 12, + [156388] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789876,9 +782185,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10590), 1, + ACTIONS(11128), 1, anon_sym_SEMI, - STATE(7644), 9, + STATE(7658), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789888,7 +782197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155653] = 12, + [156433] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789909,9 +782218,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10592), 1, - aux_sym_preproc_if_token3, - STATE(7645), 9, + ACTIONS(6931), 1, + anon_sym_RBRACE, + STATE(7659), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789921,7 +782230,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155698] = 12, + [156478] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789942,9 +782251,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10594), 1, - anon_sym_GT, - STATE(7646), 9, + ACTIONS(11130), 1, + sym_raw_string_content, + STATE(7660), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789954,7 +782263,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155743] = 12, + [156523] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -789975,9 +782284,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10596), 1, - aux_sym_preproc_if_token3, - STATE(7647), 9, + ACTIONS(11132), 1, + anon_sym_EQ_GT, + STATE(7661), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -789987,7 +782296,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155788] = 12, + [156568] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790008,9 +782317,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(11134), 1, + anon_sym_in, + STATE(7662), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790020,7 +782329,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155833] = 12, + [156613] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790041,9 +782350,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10600), 1, - sym_integer_literal, - STATE(7649), 9, + ACTIONS(11136), 1, + anon_sym_SEMI, + STATE(7663), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790053,7 +782362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155878] = 12, + [156658] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790074,9 +782383,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10602), 1, - anon_sym_STAR, - STATE(7650), 9, + ACTIONS(11138), 1, + anon_sym_EQ, + STATE(7664), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790086,7 +782395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155923] = 12, + [156703] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790107,9 +782416,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(11140), 1, + anon_sym_LPAREN, + STATE(7665), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790119,7 +782428,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [155968] = 12, + [156748] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790140,9 +782449,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10606), 1, - aux_sym_preproc_if_token3, - STATE(7652), 9, + ACTIONS(11142), 1, + anon_sym_LPAREN, + STATE(7666), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790152,7 +782461,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156013] = 12, + [156793] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790173,9 +782482,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10608), 1, - anon_sym_SEMI, - STATE(7653), 9, + ACTIONS(11144), 1, + anon_sym_LPAREN, + STATE(7667), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790185,7 +782494,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156058] = 12, + [156838] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790206,9 +782515,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10610), 1, - anon_sym_LPAREN, - STATE(7654), 9, + ACTIONS(11146), 1, + anon_sym_SEMI, + STATE(7668), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790218,7 +782527,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156103] = 12, + [156883] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790239,9 +782548,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10612), 1, - aux_sym_preproc_if_token3, - STATE(7655), 9, + ACTIONS(11148), 1, + anon_sym_LPAREN, + STATE(7669), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790251,7 +782560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156148] = 12, + [156928] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790272,9 +782581,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10614), 1, + ACTIONS(11150), 1, anon_sym_LPAREN, - STATE(7656), 9, + STATE(7670), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790284,7 +782593,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156193] = 12, + [156973] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790305,9 +782614,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(11152), 1, + anon_sym_LPAREN, + STATE(7671), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790317,7 +782626,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156238] = 12, + [157018] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790338,9 +782647,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10618), 1, + ACTIONS(11154), 1, anon_sym_LPAREN, - STATE(7658), 9, + STATE(7672), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790350,7 +782659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156283] = 12, + [157063] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790371,9 +782680,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10620), 1, - anon_sym_LPAREN, - STATE(7659), 9, + ACTIONS(11156), 1, + anon_sym_EQ_GT, + STATE(7673), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790383,7 +782692,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156328] = 12, + [157108] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790404,9 +782713,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10622), 1, - anon_sym_LPAREN, - STATE(7660), 9, + ACTIONS(11158), 1, + sym_raw_string_end, + STATE(7674), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790416,7 +782725,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156373] = 12, + [157153] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790437,9 +782746,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10624), 1, - anon_sym_LPAREN, - STATE(7661), 9, + ACTIONS(11160), 1, + anon_sym_RPAREN, + STATE(7675), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790449,7 +782758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156418] = 12, + [157198] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790470,9 +782779,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10626), 1, - anon_sym_RPAREN, - STATE(7662), 9, + ACTIONS(11162), 1, + anon_sym_COLON, + STATE(7676), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790482,30 +782791,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156463] = 12, - ACTIONS(8511), 1, + [157243] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10628), 1, - aux_sym_preproc_if_token2, - STATE(7663), 9, + ACTIONS(11164), 1, + anon_sym_SEMI, + STATE(7677), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790515,30 +782824,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156508] = 12, - ACTIONS(8511), 1, + [157288] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10630), 1, - aux_sym_preproc_if_token2, - STATE(7664), 9, + ACTIONS(11166), 1, + anon_sym_LPAREN, + STATE(7678), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790548,7 +782857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156553] = 12, + [157333] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790569,9 +782878,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10632), 1, - anon_sym_COLON, - STATE(7665), 9, + ACTIONS(11168), 1, + sym_interpolation_start_quote, + STATE(7679), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790581,7 +782890,73 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156598] = 12, + [157378] = 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(10608), 1, + aux_sym_preproc_if_token2, + STATE(7680), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [157423] = 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(11170), 1, + aux_sym_interpolation_format_clause_token1, + STATE(7681), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [157468] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790602,9 +782977,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10634), 1, - anon_sym_LPAREN, - STATE(7666), 9, + ACTIONS(11172), 1, + anon_sym_EQ_GT, + STATE(7682), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790614,7 +782989,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156643] = 12, + [157513] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790635,9 +783010,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10636), 1, - aux_sym_preproc_if_token3, - STATE(7667), 9, + ACTIONS(10606), 1, + sym_interpolation_close_brace, + STATE(7683), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790647,7 +783022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156688] = 12, + [157558] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790668,9 +783043,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(11174), 1, + anon_sym_STAR, + STATE(7684), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790680,7 +783055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156733] = 12, + [157603] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790701,9 +783076,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10640), 1, + ACTIONS(11176), 1, anon_sym_SEMI, - STATE(7669), 9, + STATE(7685), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790713,7 +783088,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156778] = 12, + [157648] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790734,9 +783109,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10642), 1, - anon_sym_GT, - STATE(7670), 9, + ACTIONS(11178), 1, + anon_sym_SEMI, + STATE(7686), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790746,7 +783121,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156823] = 12, + [157693] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790767,9 +783142,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6395), 1, - anon_sym_RBRACE, - STATE(7671), 9, + ACTIONS(11180), 1, + anon_sym_SQUOTE, + STATE(7687), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790779,7 +783154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156868] = 12, + [157738] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790800,9 +783175,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10644), 1, - anon_sym_EQ_GT, - STATE(7672), 9, + ACTIONS(11182), 1, + sym_interpolation_start_quote, + STATE(7688), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790812,7 +783187,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156913] = 12, + [157783] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790833,9 +783208,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10646), 1, + ACTIONS(11184), 1, anon_sym_SEMI, - STATE(7673), 9, + STATE(7689), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790845,7 +783220,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [156958] = 12, + [157828] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790866,9 +783241,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10648), 1, - sym__optional_semi, - STATE(7674), 9, + ACTIONS(7665), 1, + anon_sym_RPAREN, + STATE(7690), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790878,7 +783253,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157003] = 12, + [157873] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790899,9 +783274,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10650), 1, - sym__optional_semi, - STATE(7675), 9, + ACTIONS(11186), 1, + sym_interpolation_start_quote, + STATE(7691), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790911,7 +783286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157048] = 12, + [157918] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790932,9 +783307,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10652), 1, - anon_sym_SEMI, - STATE(7676), 9, + ACTIONS(11188), 1, + sym_raw_string_content, + STATE(7692), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790944,7 +783319,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157093] = 12, + [157963] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790965,9 +783340,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10654), 1, - anon_sym_COMMA, - STATE(7677), 9, + ACTIONS(11190), 1, + anon_sym_RBRACE, + STATE(7693), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -790977,7 +783352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157138] = 12, + [158008] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -790998,9 +783373,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(7678), 9, + ACTIONS(11192), 1, + anon_sym_SEMI, + STATE(7694), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791010,7 +783385,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157183] = 12, + [158053] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791031,9 +783406,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6535), 1, - anon_sym_RPAREN, - STATE(7679), 9, + ACTIONS(11194), 1, + anon_sym_RBRACK, + STATE(7695), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791043,7 +783418,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157228] = 12, + [158098] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791064,9 +783439,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10658), 1, - anon_sym_SEMI, - STATE(7680), 9, + ACTIONS(11196), 1, + anon_sym_EQ_GT, + STATE(7696), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791076,7 +783451,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157273] = 12, + [158143] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791097,9 +783472,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10660), 1, - anon_sym_GT, - STATE(7681), 9, + ACTIONS(11198), 1, + anon_sym_STAR, + STATE(7697), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791109,7 +783484,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157318] = 12, + [158188] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791130,9 +783505,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10662), 1, - anon_sym_SEMI, - STATE(7682), 9, + ACTIONS(11200), 1, + sym__optional_semi, + STATE(7698), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791142,7 +783517,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157363] = 12, + [158233] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791163,9 +783538,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10664), 1, + ACTIONS(11202), 1, anon_sym_EQ_GT, - STATE(7683), 9, + STATE(7699), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791175,7 +783550,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157408] = 12, + [158278] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791196,9 +783571,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10666), 1, - anon_sym_RPAREN, - STATE(7684), 9, + ACTIONS(11204), 1, + anon_sym_SEMI, + STATE(7700), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [158323] = 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(11206), 1, + anon_sym_SEMI, + STATE(7701), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791208,7 +783616,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157453] = 12, + [158368] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791229,9 +783637,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10668), 1, + ACTIONS(7498), 1, anon_sym_RPAREN, - STATE(7685), 9, + STATE(7702), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791241,7 +783649,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157498] = 12, + [158413] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791262,9 +783670,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10670), 1, - anon_sym_SEMI, - STATE(7686), 9, + ACTIONS(11208), 1, + anon_sym_EQ_GT, + STATE(7703), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791274,7 +783682,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157543] = 12, + [158458] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791295,9 +783703,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(7687), 9, + ACTIONS(11210), 1, + anon_sym_SEMI, + STATE(7704), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791307,7 +783715,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157588] = 12, + [158503] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791328,9 +783736,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10674), 1, - aux_sym_preproc_if_token3, - STATE(7688), 9, + ACTIONS(10658), 1, + anon_sym_RBRACE, + STATE(7705), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791340,7 +783748,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157633] = 12, + [158548] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791361,9 +783769,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10676), 1, - anon_sym_LPAREN, - STATE(7689), 9, + ACTIONS(11212), 1, + anon_sym_GT, + STATE(7706), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791373,7 +783781,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157678] = 12, + [158593] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791394,9 +783802,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10360), 1, - anon_sym_RBRACE, - STATE(7690), 9, + ACTIONS(11214), 1, + sym__optional_semi, + STATE(7707), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791406,7 +783814,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157723] = 12, + [158638] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791427,9 +783835,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10678), 1, - aux_sym_preproc_if_token3, - STATE(7691), 9, + ACTIONS(9618), 1, + anon_sym_EQ, + STATE(7708), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791439,7 +783847,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157768] = 12, + [158683] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791460,9 +783868,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10680), 1, - anon_sym_SEMI, - STATE(7692), 9, + ACTIONS(11216), 1, + anon_sym_EQ_GT, + STATE(7709), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791472,7 +783880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157813] = 12, + [158728] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791493,9 +783901,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10682), 1, - anon_sym_SEMI, - STATE(7693), 9, + ACTIONS(11218), 1, + anon_sym_LPAREN, + STATE(7710), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791505,7 +783913,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157858] = 12, + [158773] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791526,9 +783934,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10684), 1, - anon_sym_GT, - STATE(7694), 9, + ACTIONS(11220), 1, + anon_sym_LT, + STATE(7711), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791538,7 +783946,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157903] = 12, + [158818] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791559,9 +783967,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10686), 1, - anon_sym_RPAREN, - STATE(7695), 9, + ACTIONS(11222), 1, + sym__optional_semi, + STATE(7712), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791571,7 +783979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157948] = 12, + [158863] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791592,9 +784000,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10688), 1, - aux_sym_preproc_if_token3, - STATE(7696), 9, + ACTIONS(11224), 1, + sym__optional_semi, + STATE(7713), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791604,7 +784012,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [157993] = 12, + [158908] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791625,9 +784033,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9085), 1, - anon_sym_EQ, - STATE(7697), 9, + ACTIONS(11226), 1, + anon_sym_EQ_GT, + STATE(7714), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791637,7 +784045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158038] = 12, + [158953] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791658,9 +784066,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10690), 1, - anon_sym_RBRACE, - STATE(7698), 9, + ACTIONS(11228), 1, + anon_sym_SEMI, + STATE(7715), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791670,7 +784078,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158083] = 12, + [158998] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791691,9 +784099,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10692), 1, - aux_sym_preproc_if_token3, - STATE(7699), 9, + ACTIONS(11230), 1, + anon_sym_COMMA, + STATE(7716), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791703,7 +784111,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158128] = 12, + [159043] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791724,9 +784132,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10694), 1, - anon_sym_LT, - STATE(7700), 9, + ACTIONS(11232), 1, + anon_sym_COMMA, + STATE(7717), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791736,7 +784144,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158173] = 12, + [159088] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791757,9 +784165,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10696), 1, - anon_sym_LPAREN, - STATE(7701), 9, + ACTIONS(11234), 1, + anon_sym_RPAREN, + STATE(7718), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791769,7 +784177,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158218] = 12, + [159133] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791790,9 +784198,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9566), 1, - anon_sym_RBRACE, - STATE(7702), 9, + ACTIONS(7750), 1, + anon_sym_RPAREN, + STATE(7719), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791802,7 +784210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158263] = 12, + [159178] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791823,9 +784231,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10698), 1, - sym__optional_semi, - STATE(7703), 9, + ACTIONS(11236), 1, + anon_sym_EQ, + STATE(7720), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791835,7 +784243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158308] = 12, + [159223] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791856,9 +784264,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10700), 1, - aux_sym_preproc_if_token3, - STATE(7704), 9, + ACTIONS(11238), 1, + anon_sym_SEMI, + STATE(7721), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791868,7 +784276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158353] = 12, + [159268] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791889,9 +784297,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10702), 1, - aux_sym_preproc_if_token3, - STATE(7705), 9, + ACTIONS(9576), 1, + anon_sym_COMMA, + STATE(7722), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791901,7 +784309,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158398] = 12, + [159313] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791922,9 +784330,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10704), 1, - anon_sym_GT, - STATE(7706), 9, + ACTIONS(11240), 1, + anon_sym_EQ_GT, + STATE(7723), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791934,7 +784342,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158443] = 12, + [159358] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791955,9 +784363,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10706), 1, - aux_sym_preproc_if_token3, - STATE(7707), 9, + ACTIONS(11242), 1, + anon_sym_EQ_GT, + STATE(7724), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -791967,7 +784375,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158488] = 12, + [159403] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -791988,9 +784396,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10708), 1, - aux_sym_preproc_if_token3, - STATE(7708), 9, + ACTIONS(11244), 1, + sym__optional_semi, + STATE(7725), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792000,7 +784408,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158533] = 12, + [159448] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792021,9 +784429,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10710), 1, - anon_sym_EQ, - STATE(7709), 9, + ACTIONS(11246), 1, + anon_sym_GT, + STATE(7726), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792033,7 +784441,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158578] = 12, + [159493] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792054,9 +784462,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10712), 1, - sym__optional_semi, - STATE(7710), 9, + ACTIONS(11248), 1, + anon_sym_SEMI, + STATE(7727), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792066,7 +784474,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158623] = 12, + [159538] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792087,9 +784495,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10714), 1, - aux_sym_preproc_if_token3, - STATE(7711), 9, + ACTIONS(7588), 1, + anon_sym_RPAREN, + STATE(7728), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792099,7 +784507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158668] = 12, + [159583] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792120,9 +784528,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10716), 1, - anon_sym_RPAREN, - STATE(7712), 9, + ACTIONS(11250), 1, + anon_sym_SEMI, + STATE(7729), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792132,7 +784540,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158713] = 12, + [159628] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792153,9 +784561,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10718), 1, - aux_sym_preproc_if_token3, - STATE(7713), 9, + ACTIONS(11252), 1, + anon_sym_SEMI, + STATE(7730), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792165,7 +784573,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158758] = 12, + [159673] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792186,42 +784594,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10720), 1, - anon_sym_RPAREN, - STATE(7714), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [158803] = 12, - ACTIONS(6379), 1, - aux_sym_preproc_if_token2, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - STATE(7715), 9, + ACTIONS(11254), 1, + aux_sym_preproc_if_token3, + STATE(7731), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792231,7 +784606,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158848] = 12, + [159718] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792252,9 +784627,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10722), 1, + ACTIONS(11256), 1, anon_sym_while, - STATE(7716), 9, + STATE(7732), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792264,7 +784639,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158893] = 12, + [159763] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792285,9 +784660,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10724), 1, + ACTIONS(11258), 1, anon_sym_SEMI, - STATE(7717), 9, + STATE(7733), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792297,7 +784672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158938] = 12, + [159808] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792318,9 +784693,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(7718), 9, + ACTIONS(11260), 1, + anon_sym_EQ_GT, + STATE(7734), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792330,7 +784705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [158983] = 12, + [159853] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792351,9 +784726,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10728), 1, - anon_sym_RPAREN, - STATE(7719), 9, + ACTIONS(11262), 1, + sym_integer_literal, + STATE(7735), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792363,7 +784738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159028] = 12, + [159898] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792384,9 +784759,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10570), 1, - anon_sym_in, - STATE(7720), 9, + ACTIONS(11264), 1, + anon_sym_SEMI, + STATE(7736), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792396,7 +784771,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159073] = 12, + [159943] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792417,9 +784792,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10730), 1, - sym__optional_semi, - STATE(7721), 9, + ACTIONS(11266), 1, + aux_sym_preproc_if_token3, + STATE(7737), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792429,7 +784804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159118] = 12, + [159988] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792450,9 +784825,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10732), 1, - anon_sym_RBRACE, - STATE(7722), 9, + ACTIONS(11268), 1, + aux_sym_preproc_if_token3, + STATE(7738), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792462,7 +784837,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159163] = 12, + [160033] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792483,9 +784858,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9574), 1, - anon_sym_RBRACE, - STATE(7723), 9, + ACTIONS(11270), 1, + aux_sym_preproc_if_token3, + STATE(7739), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792495,7 +784870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159208] = 12, + [160078] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792516,9 +784891,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10734), 1, - aux_sym_preproc_if_token3, - STATE(7724), 9, + ACTIONS(11272), 1, + anon_sym_EQ_GT, + STATE(7740), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792528,7 +784903,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159253] = 12, + [160123] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792549,9 +784924,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10736), 1, + ACTIONS(11274), 1, aux_sym_preproc_if_token3, - STATE(7725), 9, + STATE(7741), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792561,7 +784936,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159298] = 12, + [160168] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792582,9 +784957,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10738), 1, - aux_sym_preproc_if_token3, - STATE(7726), 9, + ACTIONS(11276), 1, + sym__optional_semi, + STATE(7742), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792594,7 +784969,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159343] = 12, + [160213] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792615,9 +784990,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10740), 1, - anon_sym_SEMI, - STATE(7727), 9, + ACTIONS(11278), 1, + anon_sym_DOT, + STATE(7743), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792627,7 +785002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159388] = 12, + [160258] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792648,9 +785023,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6613), 1, + ACTIONS(11280), 1, anon_sym_RPAREN, - STATE(7728), 9, + STATE(7744), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792660,7 +785035,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159433] = 12, + [160303] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792681,9 +785056,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10742), 1, - sym__optional_semi, - STATE(7729), 9, + ACTIONS(11282), 1, + aux_sym_preproc_if_token3, + STATE(7745), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792693,7 +785068,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159478] = 12, + [160348] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792714,9 +785089,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10744), 1, - anon_sym_SEMI, - STATE(7730), 9, + ACTIONS(11284), 1, + anon_sym_EQ, + STATE(7746), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792726,7 +785101,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159523] = 12, + [160393] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792747,9 +785122,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5952), 1, + ACTIONS(11286), 1, anon_sym_RBRACE, - STATE(7731), 9, + STATE(7747), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792759,7 +785134,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159568] = 12, + [160438] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792780,9 +785155,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10746), 1, - anon_sym_GT, - STATE(7732), 9, + ACTIONS(11288), 1, + aux_sym_preproc_if_token3, + STATE(7748), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792792,7 +785167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159613] = 12, + [160483] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792813,9 +785188,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10748), 1, - anon_sym_SEMI, - STATE(7733), 9, + ACTIONS(11290), 1, + anon_sym_RPAREN, + STATE(7749), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792825,7 +785200,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159658] = 12, + [160528] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792846,9 +785221,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10750), 1, - sym__optional_semi, - STATE(7734), 9, + ACTIONS(10521), 1, + anon_sym_RBRACE, + STATE(7750), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792858,7 +785233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159703] = 12, + [160573] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792879,9 +785254,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10752), 1, - anon_sym_SEMI, - STATE(7735), 9, + ACTIONS(11292), 1, + aux_sym_preproc_if_token3, + STATE(7751), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792891,30 +785266,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159748] = 12, - ACTIONS(8511), 1, + [160618] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10754), 1, - aux_sym_preproc_if_token2, - STATE(7736), 9, + ACTIONS(11294), 1, + anon_sym_SEMI, + STATE(7752), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792924,7 +785299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159793] = 12, + [160663] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792945,9 +785320,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10756), 1, - anon_sym_SEMI, - STATE(7737), 9, + ACTIONS(11296), 1, + anon_sym_EQ_GT, + STATE(7753), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792957,7 +785332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159838] = 12, + [160708] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -792978,9 +785353,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10758), 1, - anon_sym_RPAREN, - STATE(7738), 9, + ACTIONS(11298), 1, + anon_sym_SEMI, + STATE(7754), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -792990,7 +785365,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159883] = 12, + [160753] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793011,9 +785386,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10760), 1, - anon_sym_LPAREN, - STATE(7739), 9, + ACTIONS(11300), 1, + anon_sym_RPAREN, + STATE(7755), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793023,7 +785398,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159928] = 12, + [160798] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793044,9 +785419,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10762), 1, + ACTIONS(11302), 1, anon_sym_SEMI, - STATE(7740), 9, + STATE(7756), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793056,7 +785431,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [159973] = 12, + [160843] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793077,9 +785452,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10764), 1, - anon_sym_GT, - STATE(7741), 9, + ACTIONS(11304), 1, + anon_sym_RPAREN, + STATE(7757), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793089,7 +785464,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160018] = 12, + [160888] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793110,9 +785485,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10766), 1, - anon_sym_RPAREN, - STATE(7742), 9, + ACTIONS(11306), 1, + anon_sym_DOT, + STATE(7758), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793122,30 +785497,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160063] = 12, - ACTIONS(6385), 1, - aux_sym_preproc_if_token2, - ACTIONS(8511), 1, + [160933] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - STATE(7743), 9, + ACTIONS(11308), 1, + sym__optional_semi, + STATE(7759), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793155,7 +785530,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160108] = 12, + [160978] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793176,9 +785551,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10768), 1, - anon_sym_LPAREN, - STATE(7744), 9, + ACTIONS(11310), 1, + anon_sym_SEMI, + STATE(7760), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793188,30 +785563,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160153] = 12, - ACTIONS(3), 1, + [161023] = 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(10770), 1, - anon_sym_SEMI, - STATE(7745), 9, + ACTIONS(11312), 1, + aux_sym_preproc_if_token2, + STATE(7761), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793221,7 +785596,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160198] = 12, + [161068] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793242,9 +785617,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10772), 1, - anon_sym_EQ_GT, - STATE(7746), 9, + ACTIONS(11314), 1, + anon_sym_GT, + STATE(7762), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793254,30 +785629,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160243] = 12, - ACTIONS(8511), 1, + [161113] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10774), 1, - aux_sym_preproc_if_token2, - STATE(7747), 9, + ACTIONS(11316), 1, + anon_sym_GT, + STATE(7763), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793287,7 +785662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160288] = 12, + [161158] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793308,9 +785683,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10776), 1, - anon_sym_RPAREN, - STATE(7748), 9, + ACTIONS(11318), 1, + anon_sym_SEMI, + STATE(7764), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793320,7 +785695,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160333] = 12, + [161203] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793341,9 +785716,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(7749), 9, + ACTIONS(11320), 1, + anon_sym_EQ_GT, + STATE(7765), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793353,7 +785728,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160378] = 12, + [161248] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793374,9 +785749,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10780), 1, + ACTIONS(11322), 1, anon_sym_RBRACE, - STATE(7750), 9, + STATE(7766), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793386,7 +785761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160423] = 12, + [161293] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793407,9 +785782,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10782), 1, - anon_sym_RBRACE, - STATE(7751), 9, + ACTIONS(11324), 1, + sym__optional_semi, + STATE(7767), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793419,7 +785794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160468] = 12, + [161338] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793440,9 +785815,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10784), 1, - anon_sym_RPAREN, - STATE(7752), 9, + ACTIONS(11326), 1, + sym__optional_semi, + STATE(7768), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793452,7 +785827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160513] = 12, + [161383] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793473,9 +785848,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10786), 1, - anon_sym_while, - STATE(7753), 9, + ACTIONS(11328), 1, + anon_sym_GT, + STATE(7769), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793485,7 +785860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160558] = 12, + [161428] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793506,9 +785881,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9025), 1, - anon_sym_COMMA, - STATE(7754), 9, + ACTIONS(11330), 1, + anon_sym_SEMI, + STATE(7770), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793518,7 +785893,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160603] = 12, + [161473] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793539,9 +785914,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10788), 1, - sym__optional_semi, - STATE(7755), 9, + ACTIONS(11332), 1, + aux_sym_preproc_if_token3, + STATE(7771), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793551,7 +785926,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160648] = 12, + [161518] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793572,9 +785947,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(7756), 9, + ACTIONS(11334), 1, + anon_sym_LPAREN, + STATE(7772), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793584,7 +785959,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160693] = 12, + [161563] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793605,9 +785980,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(7757), 9, + ACTIONS(11336), 1, + anon_sym_SEMI, + STATE(7773), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793617,7 +785992,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160738] = 12, + [161608] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793638,9 +786013,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(7758), 9, + ACTIONS(11338), 1, + anon_sym_EQ_GT, + STATE(7774), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793650,7 +786025,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160783] = 12, + [161653] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793671,9 +786046,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6845), 1, - anon_sym_RPAREN, - STATE(7759), 9, + ACTIONS(11340), 1, + anon_sym_SEMI, + STATE(7775), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793683,7 +786058,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160828] = 12, + [161698] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793704,9 +786079,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10796), 1, - anon_sym_RPAREN, - STATE(7760), 9, + ACTIONS(11342), 1, + anon_sym_GT, + STATE(7776), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793716,7 +786091,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160873] = 12, + [161743] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793737,9 +786112,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10798), 1, - anon_sym_SEMI, - STATE(7761), 9, + ACTIONS(11344), 1, + anon_sym_RPAREN, + STATE(7777), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793749,7 +786124,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160918] = 12, + [161788] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793770,9 +786145,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10800), 1, + ACTIONS(11346), 1, aux_sym_preproc_if_token3, - STATE(7762), 9, + STATE(7778), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793782,7 +786157,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [160963] = 12, + [161833] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793803,9 +786178,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10802), 1, - aux_sym_preproc_if_token3, - STATE(7763), 9, + ACTIONS(6531), 1, + anon_sym_RBRACE, + STATE(7779), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793815,7 +786190,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161008] = 12, + [161878] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793836,9 +786211,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10804), 1, + ACTIONS(11348), 1, aux_sym_preproc_if_token3, - STATE(7764), 9, + STATE(7780), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793848,7 +786223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161053] = 12, + [161923] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793869,9 +786244,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10806), 1, - anon_sym_SEMI, - STATE(7765), 9, + ACTIONS(10489), 1, + anon_sym_RBRACE, + STATE(7781), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793881,7 +786256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161098] = 12, + [161968] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793902,9 +786277,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10808), 1, - ts_builtin_sym_end, - STATE(7766), 9, + ACTIONS(11350), 1, + anon_sym_EQ_GT, + STATE(7782), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793914,7 +786289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161143] = 12, + [162013] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793935,9 +786310,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10810), 1, - anon_sym_RPAREN, - STATE(7767), 9, + ACTIONS(11352), 1, + sym_integer_literal, + STATE(7783), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793947,7 +786322,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161188] = 12, + [162058] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -793968,9 +786343,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10812), 1, - sym__optional_semi, - STATE(7768), 9, + ACTIONS(11354), 1, + anon_sym_SEMI, + STATE(7784), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -793980,7 +786355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161233] = 12, + [162103] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794001,9 +786376,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10814), 1, - sym__optional_semi, - STATE(7769), 9, + ACTIONS(11356), 1, + anon_sym_SEMI, + STATE(7785), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794013,7 +786388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161278] = 12, + [162148] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794034,9 +786409,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(7770), 9, + ACTIONS(11358), 1, + anon_sym_EQ_GT, + STATE(7786), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794046,7 +786421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161323] = 12, + [162193] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794067,9 +786442,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(7771), 9, + ACTIONS(11360), 1, + anon_sym_COMMA, + STATE(7787), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794079,7 +786454,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161368] = 12, + [162238] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794100,9 +786475,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10094), 1, - anon_sym_RBRACE, - STATE(7772), 9, + ACTIONS(11362), 1, + sym__optional_semi, + STATE(7788), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794112,7 +786487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161413] = 12, + [162283] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794133,9 +786508,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10820), 1, - sym__optional_semi, - STATE(7773), 9, + ACTIONS(11364), 1, + anon_sym_SEMI, + STATE(7789), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794145,7 +786520,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161458] = 12, + [162328] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794166,9 +786541,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10822), 1, - sym__optional_semi, - STATE(7774), 9, + ACTIONS(11366), 1, + aux_sym_preproc_if_token3, + STATE(7790), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794178,7 +786553,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161503] = 12, + [162373] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794199,9 +786574,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10824), 1, - anon_sym_SQUOTE, - STATE(7775), 9, + ACTIONS(11368), 1, + aux_sym_preproc_if_token3, + STATE(7791), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794211,30 +786586,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161548] = 12, - ACTIONS(8511), 1, + [162418] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(10826), 1, - aux_sym_preproc_if_token2, - STATE(7776), 9, + ACTIONS(11370), 1, + aux_sym_preproc_if_token3, + STATE(7792), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794244,7 +786619,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161593] = 12, + [162463] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794265,9 +786640,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10828), 1, + ACTIONS(11372), 1, aux_sym_preproc_if_token3, - STATE(7777), 9, + STATE(7793), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794277,7 +786652,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161638] = 12, + [162508] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794298,9 +786673,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10830), 1, - anon_sym_SEMI, - STATE(7778), 9, + ACTIONS(11012), 1, + anon_sym_in, + STATE(7794), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794310,7 +786685,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161683] = 12, + [162553] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794331,9 +786706,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10832), 1, + ACTIONS(11374), 1, aux_sym_preproc_if_token3, - STATE(7779), 9, + STATE(7795), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794343,7 +786718,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161728] = 12, + [162598] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794364,9 +786739,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10834), 1, - aux_sym_preproc_if_token3, - STATE(7780), 9, + ACTIONS(11376), 1, + anon_sym_SEMI, + STATE(7796), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794376,7 +786751,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161773] = 12, + [162643] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794397,9 +786772,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10836), 1, - anon_sym_LPAREN, - STATE(7781), 9, + ACTIONS(7346), 1, + anon_sym_RPAREN, + STATE(7797), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794409,7 +786784,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161818] = 12, + [162688] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794430,9 +786805,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6219), 1, - anon_sym_RBRACE, - STATE(7782), 9, + ACTIONS(11378), 1, + anon_sym_COMMA, + STATE(7798), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794442,7 +786817,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161863] = 12, + [162733] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794463,9 +786838,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10838), 1, - sym_integer_literal, - STATE(7783), 9, + ACTIONS(11380), 1, + aux_sym_preproc_if_token3, + STATE(7799), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794475,7 +786850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161908] = 12, + [162778] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794496,9 +786871,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10840), 1, - sym__optional_semi, - STATE(7784), 9, + ACTIONS(11382), 1, + anon_sym_LPAREN, + STATE(7800), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794508,7 +786883,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161953] = 12, + [162823] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794529,9 +786904,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10842), 1, - anon_sym_STAR, - STATE(7785), 9, + ACTIONS(11384), 1, + anon_sym_SEMI, + STATE(7801), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794541,7 +786916,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [161998] = 12, + [162868] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794562,9 +786937,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10844), 1, - anon_sym_RPAREN, - STATE(7786), 9, + ACTIONS(11386), 1, + anon_sym_SEMI, + STATE(7802), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794574,7 +786949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162043] = 12, + [162913] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794595,9 +786970,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10846), 1, + ACTIONS(11388), 1, aux_sym_preproc_if_token3, - STATE(7787), 9, + STATE(7803), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794607,7 +786982,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162088] = 12, + [162958] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794628,9 +787003,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10848), 1, - anon_sym_RPAREN, - STATE(7788), 9, + ACTIONS(11390), 1, + anon_sym_SEMI, + STATE(7804), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794640,7 +787015,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162133] = 12, + [163003] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794661,9 +787036,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10850), 1, - anon_sym_EQ_GT, - STATE(7789), 9, + ACTIONS(11392), 1, + anon_sym_LPAREN, + STATE(7805), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794673,7 +787048,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162178] = 12, + [163048] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794694,9 +787069,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10852), 1, - anon_sym_EQ_GT, - STATE(7790), 9, + ACTIONS(11394), 1, + anon_sym_RBRACK, + STATE(7806), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794706,7 +787081,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162223] = 12, + [163093] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794727,9 +787102,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10854), 1, - anon_sym_SEMI, - STATE(7791), 9, + ACTIONS(11396), 1, + sym__optional_semi, + STATE(7807), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794739,7 +787114,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162268] = 12, + [163138] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794760,9 +787135,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(7792), 9, + ACTIONS(11398), 1, + anon_sym_GT, + STATE(7808), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794772,7 +787147,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162313] = 12, + [163183] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794793,9 +787168,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10858), 1, - anon_sym_GT, - STATE(7793), 9, + ACTIONS(11400), 1, + aux_sym_preproc_if_token3, + STATE(7809), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794805,7 +787180,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162358] = 12, + [163228] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794826,9 +787201,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10860), 1, - sym_integer_literal, - STATE(7794), 9, + ACTIONS(11402), 1, + anon_sym_EQ_GT, + STATE(7810), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794838,7 +787213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162403] = 12, + [163273] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794859,9 +787234,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(7795), 9, + ACTIONS(11404), 1, + anon_sym_STAR, + STATE(7811), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794871,7 +787246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162448] = 12, + [163318] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794892,9 +787267,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10864), 1, - anon_sym_SEMI, - STATE(7796), 9, + ACTIONS(11406), 1, + anon_sym_RBRACE, + STATE(7812), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794904,7 +787279,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162493] = 12, + [163363] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794925,9 +787300,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10866), 1, - sym_raw_string_end, - STATE(7797), 9, + ACTIONS(11408), 1, + anon_sym_SQUOTE, + STATE(7813), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794937,7 +787312,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162538] = 12, + [163408] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794958,9 +787333,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9917), 1, - sym_interpolation_close_brace, - STATE(7798), 9, + ACTIONS(11410), 1, + anon_sym_EQ_GT, + STATE(7814), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -794970,7 +787345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162583] = 12, + [163453] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -794991,42 +787366,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(7799), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [162628] = 12, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(10870), 1, - aux_sym_interpolation_format_clause_token1, - STATE(7800), 9, + ACTIONS(11412), 1, + anon_sym_LPAREN, + STATE(7815), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795036,7 +787378,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162673] = 12, + [163498] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795057,42 +787399,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10872), 1, - anon_sym_SEMI, - STATE(7801), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [162718] = 12, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(10257), 1, - aux_sym_preproc_if_token2, - STATE(7802), 9, + ACTIONS(11414), 1, + anon_sym_LPAREN, + STATE(7816), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795102,7 +787411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162763] = 12, + [163543] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795123,9 +787432,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10874), 1, + ACTIONS(11416), 1, anon_sym_EQ_GT, - STATE(7803), 9, + STATE(7817), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795135,7 +787444,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162808] = 12, + [163588] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795156,108 +787465,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10876), 1, + ACTIONS(11418), 1, anon_sym_LPAREN, - STATE(7804), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [162853] = 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(10878), 1, - anon_sym_STAR, - STATE(7805), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [162898] = 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(10880), 1, - anon_sym_RPAREN, - STATE(7806), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [162943] = 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(10882), 1, - anon_sym_EQ_GT, - STATE(7807), 9, + STATE(7818), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795267,7 +787477,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [162988] = 12, + [163633] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795288,9 +787498,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10884), 1, + ACTIONS(11420), 1, anon_sym_SEMI, - STATE(7808), 9, + STATE(7819), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795300,7 +787510,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163033] = 12, + [163678] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795321,9 +787531,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10886), 1, - anon_sym_SEMI, - STATE(7809), 9, + ACTIONS(11422), 1, + anon_sym_LPAREN, + STATE(7820), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795333,7 +787543,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163078] = 12, + [163723] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795354,9 +787564,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(7810), 9, + ACTIONS(11424), 1, + anon_sym_LPAREN, + STATE(7821), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795366,7 +787576,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163123] = 12, + [163768] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795387,9 +787597,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10890), 1, - sym__optional_semi, - STATE(7811), 9, + ACTIONS(11426), 1, + anon_sym_COLON, + STATE(7822), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795399,7 +787609,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163168] = 12, + [163813] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795420,9 +787630,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10892), 1, - anon_sym_RBRACE, - STATE(7812), 9, + ACTIONS(11428), 1, + anon_sym_RPAREN, + STATE(7823), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795432,7 +787642,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163213] = 12, + [163858] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795453,9 +787663,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10894), 1, + ACTIONS(11430), 1, sym__optional_semi, - STATE(7813), 9, + STATE(7824), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795465,7 +787675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163258] = 12, + [163903] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795486,9 +787696,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(3958), 1, - anon_sym_EQ_GT, - STATE(7814), 9, + ACTIONS(11432), 1, + anon_sym_RPAREN, + STATE(7825), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795498,7 +787708,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163303] = 12, + [163948] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795519,9 +787729,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10896), 1, - anon_sym_EQ_GT, - STATE(7815), 9, + ACTIONS(11434), 1, + anon_sym_SEMI, + STATE(7826), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795531,7 +787741,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163348] = 12, + [163993] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795552,9 +787762,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10898), 1, - anon_sym_SEMI, - STATE(7816), 9, + ACTIONS(10179), 1, + anon_sym_LPAREN, + STATE(7827), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795564,7 +787774,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163393] = 12, + [164038] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795585,9 +787795,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(7817), 9, + ACTIONS(10434), 1, + anon_sym_RBRACE, + STATE(7828), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795597,7 +787807,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163438] = 12, + [164083] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795618,9 +787828,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10902), 1, - anon_sym_SEMI, - STATE(7818), 9, + ACTIONS(6978), 1, + anon_sym_RBRACE, + STATE(7829), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795630,7 +787840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163483] = 12, + [164128] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795651,9 +787861,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10904), 1, - anon_sym_SEMI, - STATE(7819), 9, + ACTIONS(11436), 1, + anon_sym_RPAREN, + STATE(7830), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795663,7 +787873,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163528] = 12, + [164173] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795684,42 +787894,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10906), 1, + ACTIONS(11438), 1, anon_sym_SEMI, - STATE(7820), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [163573] = 12, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(9702), 1, - aux_sym_preproc_if_token2, - STATE(7821), 9, + STATE(7831), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795729,7 +787906,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163618] = 12, + [164218] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795750,9 +787927,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10908), 1, - anon_sym_in, - STATE(7822), 9, + ACTIONS(11440), 1, + sym_integer_literal, + STATE(7832), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795762,7 +787939,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163663] = 12, + [164263] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795783,42 +787960,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10910), 1, - anon_sym_RPAREN, - STATE(7823), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [163708] = 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(10912), 1, - anon_sym_RPAREN, - STATE(7824), 9, + ACTIONS(11442), 1, + anon_sym_SEMI, + STATE(7833), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795828,7 +787972,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163753] = 12, + [164308] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795849,9 +787993,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10914), 1, - anon_sym_EQ_GT, - STATE(7825), 9, + ACTIONS(11444), 1, + anon_sym_SEMI, + STATE(7834), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795861,7 +788005,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163798] = 12, + [164353] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795882,9 +788026,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10916), 1, - sym_interpolation_start_quote, - STATE(7826), 9, + ACTIONS(11446), 1, + anon_sym_SEMI, + STATE(7835), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795894,7 +788038,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163843] = 12, + [164398] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795915,9 +788059,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10918), 1, - sym_interpolation_start_quote, - STATE(7827), 9, + ACTIONS(11448), 1, + anon_sym_STAR, + STATE(7836), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795927,7 +788071,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163888] = 12, + [164443] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795948,9 +788092,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10920), 1, - anon_sym_LPAREN, - STATE(7828), 9, + ACTIONS(11450), 1, + anon_sym_RBRACE, + STATE(7837), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795960,7 +788104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163933] = 12, + [164488] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -795981,9 +788125,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(7829), 9, + ACTIONS(11452), 1, + anon_sym_SEMI, + STATE(7838), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -795993,7 +788137,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [163978] = 12, + [164533] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796014,9 +788158,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10924), 1, - anon_sym_RBRACK, - STATE(7830), 9, + ACTIONS(11454), 1, + anon_sym_COLON, + STATE(7839), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796026,7 +788170,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164023] = 12, + [164578] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796047,42 +788191,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10926), 1, + ACTIONS(11456), 1, anon_sym_GT, - STATE(7831), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [164068] = 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(10928), 1, - sym_interpolation_start_quote, - STATE(7832), 9, + STATE(7840), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796092,7 +788203,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164113] = 12, + [164623] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796113,9 +788224,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10930), 1, - anon_sym_LPAREN, - STATE(7833), 9, + ACTIONS(11458), 1, + anon_sym_SEMI, + STATE(7841), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796125,7 +788236,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164158] = 12, + [164668] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796146,9 +788257,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10932), 1, - anon_sym_GT, - STATE(7834), 9, + ACTIONS(11460), 1, + sym__optional_semi, + STATE(7842), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796158,7 +788269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164203] = 12, + [164713] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796179,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_LPAREN, - STATE(7835), 9, + ACTIONS(11462), 1, + sym__optional_semi, + STATE(7843), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796191,7 +788302,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164248] = 12, + [164758] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796212,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(7836), 9, + ACTIONS(11464), 1, + anon_sym_COLON, + STATE(7844), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796224,7 +788335,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164293] = 12, + [164803] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796245,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_LPAREN, - STATE(7837), 9, + ACTIONS(11466), 1, + anon_sym_SEMI, + STATE(7845), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796257,7 +788368,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164338] = 12, + [164848] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796278,9 +788389,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10940), 1, - sym_raw_string_content, - STATE(7838), 9, + ACTIONS(11468), 1, + anon_sym_EQ_GT, + STATE(7846), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796290,7 +788401,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164383] = 12, + [164893] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796311,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_GT, - STATE(7839), 9, + ACTIONS(11024), 1, + anon_sym_in, + STATE(7847), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796323,7 +788434,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164428] = 12, + [164938] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796344,9 +788455,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10944), 1, - sym__optional_semi, - STATE(7840), 9, + ACTIONS(11470), 1, + anon_sym_EQ_GT, + STATE(7848), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796356,7 +788467,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164473] = 12, + [164983] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796377,9 +788488,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10946), 1, - sym__optional_semi, - STATE(7841), 9, + ACTIONS(11472), 1, + anon_sym_SEMI, + STATE(7849), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796389,7 +788500,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164518] = 12, + [165028] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796410,9 +788521,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10948), 1, - sym__optional_semi, - STATE(7842), 9, + ACTIONS(11474), 1, + anon_sym_GT, + STATE(7850), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796422,7 +788533,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164563] = 12, + [165073] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796443,42 +788554,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10950), 1, + ACTIONS(11476), 1, anon_sym_SEMI, - STATE(7843), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [164608] = 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(10952), 1, - anon_sym_LPAREN, - STATE(7844), 9, + STATE(7851), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796488,7 +788566,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164653] = 12, + [165118] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796509,9 +788587,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10954), 1, - anon_sym_EQ_GT, - STATE(7845), 9, + ACTIONS(11478), 1, + anon_sym_RPAREN, + STATE(7852), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796521,7 +788599,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164698] = 12, + [165163] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796542,9 +788620,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10956), 1, - anon_sym_LPAREN, - STATE(7846), 9, + ACTIONS(11480), 1, + aux_sym_preproc_if_token3, + STATE(7853), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796554,7 +788632,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164743] = 12, + [165208] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796575,9 +788653,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6621), 1, - anon_sym_RPAREN, - STATE(7847), 9, + ACTIONS(11482), 1, + anon_sym_SEMI, + STATE(7854), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796587,7 +788665,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164788] = 12, + [165253] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796608,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_GT, - STATE(7848), 9, + ACTIONS(7208), 1, + anon_sym_STAR, + STATE(7855), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796620,7 +788698,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164833] = 12, + [165298] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796641,9 +788719,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10960), 1, - anon_sym_SEMI, - STATE(7849), 9, + ACTIONS(11484), 1, + aux_sym_preproc_if_token3, + STATE(7856), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796653,7 +788731,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164878] = 12, + [165343] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796674,9 +788752,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10340), 1, - anon_sym_RBRACE, - STATE(7850), 9, + ACTIONS(11486), 1, + aux_sym_preproc_if_token3, + STATE(7857), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796686,7 +788764,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164923] = 12, + [165388] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796707,9 +788785,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10962), 1, - anon_sym_SEMI, - STATE(7851), 9, + ACTIONS(11488), 1, + sym_raw_string_end, + STATE(7858), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796719,7 +788797,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [164968] = 12, + [165433] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796740,9 +788818,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10964), 1, + ACTIONS(11490), 1, anon_sym_SEMI, - STATE(7852), 9, + STATE(7859), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796752,7 +788830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165013] = 12, + [165478] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796773,9 +788851,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(7853), 9, + ACTIONS(11492), 1, + anon_sym_LPAREN, + STATE(7860), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796785,7 +788863,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165058] = 12, + [165523] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796806,9 +788884,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10968), 1, + ACTIONS(11494), 1, anon_sym_SEMI, - STATE(7854), 9, + STATE(7861), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796818,7 +788896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165103] = 12, + [165568] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796839,9 +788917,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10970), 1, - anon_sym_EQ_GT, - STATE(7855), 9, + ACTIONS(11496), 1, + aux_sym_preproc_if_token3, + STATE(7862), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796851,7 +788929,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165148] = 12, + [165613] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796872,9 +788950,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10972), 1, - anon_sym_EQ_GT, - STATE(7856), 9, + ACTIONS(11498), 1, + sym_raw_string_end, + STATE(7863), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796884,7 +788962,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165193] = 12, + [165658] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796905,9 +788983,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10974), 1, - anon_sym_LT, - STATE(7857), 9, + ACTIONS(11500), 1, + aux_sym_preproc_if_token3, + STATE(7864), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796917,7 +788995,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165238] = 12, + [165703] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796938,9 +789016,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10976), 1, - anon_sym_RBRACK, - STATE(7858), 9, + ACTIONS(11502), 1, + sym_raw_string_end, + STATE(7865), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796950,7 +789028,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165283] = 12, + [165748] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -796971,9 +789049,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10978), 1, - anon_sym_in, - STATE(7859), 9, + ACTIONS(11504), 1, + anon_sym_EQ_GT, + STATE(7866), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -796983,7 +789061,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165328] = 12, + [165793] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797004,9 +789082,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10980), 1, - anon_sym_EQ, - STATE(7860), 9, + ACTIONS(11506), 1, + anon_sym_RBRACK, + STATE(7867), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797016,7 +789094,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165373] = 12, + [165838] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797037,9 +789115,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10506), 1, - anon_sym_LT, - STATE(7861), 9, + ACTIONS(11508), 1, + anon_sym_EQ_GT, + STATE(7868), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797049,7 +789127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165418] = 12, + [165883] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797070,9 +789148,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10982), 1, - sym__optional_semi, - STATE(7862), 9, + ACTIONS(11510), 1, + anon_sym_GT, + STATE(7869), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797082,30 +789160,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165463] = 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(10984), 1, - anon_sym_COLON, - STATE(7863), 9, + ACTIONS(11512), 1, + aux_sym_preproc_if_token2, + STATE(7870), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797115,30 +789193,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165508] = 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(10986), 1, - anon_sym_SEMI, - STATE(7864), 9, + ACTIONS(11514), 1, + aux_sym_preproc_if_token2, + STATE(7871), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797148,30 +789226,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165553] = 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(10988), 1, - sym__optional_semi, - STATE(7865), 9, + ACTIONS(11516), 1, + aux_sym_preproc_if_token2, + STATE(7872), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797181,30 +789259,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165598] = 12, - ACTIONS(3), 1, + [166063] = 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_SEMI, - STATE(7866), 9, + ACTIONS(11518), 1, + aux_sym_preproc_if_token2, + STATE(7873), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797214,7 +789292,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165643] = 12, + [166108] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797235,9 +789313,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10992), 1, - sym__optional_semi, - STATE(7867), 9, + ACTIONS(11520), 1, + anon_sym_SEMI, + STATE(7874), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797247,7 +789325,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165688] = 12, + [166153] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797268,9 +789346,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10994), 1, - anon_sym_SEMI, - STATE(7868), 9, + ACTIONS(11522), 1, + aux_sym_preproc_if_token3, + STATE(7875), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797280,7 +789358,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165733] = 12, + [166198] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797301,9 +789379,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10996), 1, - anon_sym_RBRACE, - STATE(7869), 9, + ACTIONS(11524), 1, + anon_sym_RPAREN, + STATE(7876), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797313,7 +789391,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165778] = 12, + [166243] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797334,9 +789412,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10998), 1, - aux_sym_preproc_if_token3, - STATE(7870), 9, + ACTIONS(11526), 1, + anon_sym_STAR, + STATE(7877), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797346,30 +789424,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165823] = 12, - ACTIONS(3), 1, + [166288] = 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(11000), 1, - anon_sym_SEMI, - STATE(7871), 9, + ACTIONS(10380), 1, + aux_sym_preproc_if_token2, + STATE(7878), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797379,7 +789457,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165868] = 12, + [166333] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797400,9 +789478,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10261), 1, - anon_sym_RBRACE, - STATE(7872), 9, + ACTIONS(11528), 1, + sym_integer_literal, + STATE(7879), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797412,30 +789490,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165913] = 12, - ACTIONS(3), 1, + [166378] = 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(11002), 1, - sym_raw_string_content, - STATE(7873), 9, + ACTIONS(11530), 1, + aux_sym_preproc_if_token2, + STATE(7880), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797445,7 +789523,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [165958] = 12, + [166423] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797466,9 +789544,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11004), 1, - sym_interpolation_start_quote, - STATE(7874), 9, + ACTIONS(11532), 1, + anon_sym_LPAREN, + STATE(7881), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797478,7 +789556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166003] = 12, + [166468] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797499,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_SEMI, - STATE(7875), 9, + ACTIONS(11534), 1, + aux_sym_preproc_if_token3, + STATE(7882), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797511,7 +789589,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166048] = 12, + [166513] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797532,9 +789610,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11008), 1, - sym_interpolation_start_quote, - STATE(7876), 9, + ACTIONS(11536), 1, + aux_sym_preproc_if_token3, + STATE(7883), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797544,7 +789622,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166093] = 12, + [166558] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797565,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_EQ_GT, - STATE(7877), 9, + ACTIONS(11538), 1, + anon_sym_GT, + STATE(7884), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797577,7 +789655,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166138] = 12, + [166603] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797598,9 +789676,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11012), 1, - sym_interpolation_start_quote, - STATE(7878), 9, + ACTIONS(11540), 1, + anon_sym_SEMI, + STATE(7885), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797610,30 +789688,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166183] = 12, - ACTIONS(3), 1, + [166648] = 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(11014), 1, - aux_sym_preproc_if_token3, - STATE(7879), 9, + ACTIONS(11542), 1, + aux_sym_preproc_if_token2, + STATE(7886), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797643,7 +789721,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166228] = 12, + [166693] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797664,9 +789742,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11016), 1, - aux_sym_preproc_if_token3, - STATE(7880), 9, + ACTIONS(11544), 1, + sym__optional_semi, + STATE(7887), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797676,7 +789754,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166273] = 12, + [166738] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797697,9 +789775,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(7881), 9, + ACTIONS(11546), 1, + anon_sym_EQ_GT, + STATE(7888), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797709,7 +789787,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166318] = 12, + [166783] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797730,9 +789808,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11020), 1, - sym__optional_semi, - STATE(7882), 9, + ACTIONS(7851), 1, + anon_sym_RPAREN, + STATE(7889), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797742,7 +789820,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166363] = 12, + [166828] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797763,9 +789841,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11022), 1, - anon_sym_LPAREN, - STATE(7883), 9, + ACTIONS(11548), 1, + aux_sym_preproc_if_token3, + STATE(7890), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797775,7 +789853,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166408] = 12, + [166873] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797796,9 +789874,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11024), 1, - anon_sym_SEMI, - STATE(7884), 9, + ACTIONS(11550), 1, + aux_sym_preproc_if_token3, + STATE(7891), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797808,7 +789886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166453] = 12, + [166918] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797829,9 +789907,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11026), 1, - aux_sym_preproc_if_token3, - STATE(7885), 9, + ACTIONS(11552), 1, + anon_sym_EQ_GT, + STATE(7892), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797841,7 +789919,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166498] = 12, + [166963] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797862,9 +789940,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9776), 1, - anon_sym_RBRACE, - STATE(7886), 9, + ACTIONS(11554), 1, + anon_sym_while, + STATE(7893), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797874,7 +789952,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166543] = 12, + [167008] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797895,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_EQ_GT, - STATE(7887), 9, + ACTIONS(11556), 1, + anon_sym_SEMI, + STATE(7894), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797907,7 +789985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166588] = 12, + [167053] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797928,9 +790006,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11030), 1, - aux_sym_preproc_if_token3, - STATE(7888), 9, + ACTIONS(11558), 1, + anon_sym_EQ_GT, + STATE(7895), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797940,7 +790018,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166633] = 12, + [167098] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797961,9 +790039,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11032), 1, - sym__optional_semi, - STATE(7889), 9, + ACTIONS(11560), 1, + aux_sym_preproc_if_token3, + STATE(7896), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -797973,7 +790051,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166678] = 12, + [167143] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -797994,9 +790072,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11034), 1, - aux_sym_preproc_if_token3, - STATE(7890), 9, + ACTIONS(11562), 1, + anon_sym_EQ_GT, + STATE(7897), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798006,7 +790084,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166723] = 12, + [167188] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798027,9 +790105,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11036), 1, - aux_sym_preproc_if_token3, - STATE(7891), 9, + ACTIONS(11564), 1, + anon_sym_RPAREN, + STATE(7898), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798039,7 +790117,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166768] = 12, + [167233] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798060,9 +790138,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11038), 1, - anon_sym_EQ_GT, - STATE(7892), 9, + ACTIONS(11566), 1, + anon_sym_RPAREN, + STATE(7899), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798072,7 +790150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166813] = 12, + [167278] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798093,9 +790171,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11040), 1, - anon_sym_EQ_GT, - STATE(7893), 9, + ACTIONS(9614), 1, + anon_sym_EQ, + STATE(7900), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798105,7 +790183,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166858] = 12, + [167323] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798126,9 +790204,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11042), 1, - anon_sym_RPAREN, - STATE(7894), 9, + ACTIONS(11568), 1, + sym__optional_semi, + STATE(7901), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798138,7 +790216,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166903] = 12, + [167368] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798159,9 +790237,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11044), 1, - anon_sym_GT, - STATE(7895), 9, + ACTIONS(11570), 1, + anon_sym_EQ_GT, + STATE(7902), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798171,7 +790249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166948] = 12, + [167413] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798192,9 +790270,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11046), 1, - anon_sym_EQ_GT, - STATE(7896), 9, + ACTIONS(11572), 1, + anon_sym_SEMI, + STATE(7903), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798204,7 +790282,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [166993] = 12, + [167458] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798225,9 +790303,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11048), 1, - anon_sym_SEMI, - STATE(7897), 9, + ACTIONS(11574), 1, + sym__optional_semi, + STATE(7904), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798237,7 +790315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167038] = 12, + [167503] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798258,9 +790336,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11050), 1, - anon_sym_EQ_GT, - STATE(7898), 9, + ACTIONS(11576), 1, + anon_sym_SEMI, + STATE(7905), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798270,7 +790348,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167083] = 12, + [167548] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798291,9 +790369,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11052), 1, - aux_sym_preproc_if_token3, - STATE(7899), 9, + ACTIONS(11578), 1, + sym__optional_semi, + STATE(7906), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798303,7 +790381,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167128] = 12, + [167593] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798324,9 +790402,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11054), 1, - anon_sym_LPAREN, - STATE(7900), 9, + ACTIONS(11580), 1, + anon_sym_SEMI, + STATE(7907), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798336,7 +790414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167173] = 12, + [167638] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798357,9 +790435,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9931), 1, - anon_sym_RBRACE, - STATE(7901), 9, + ACTIONS(11582), 1, + anon_sym_EQ, + STATE(7908), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798369,7 +790447,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167218] = 12, + [167683] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798390,9 +790468,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11056), 1, - anon_sym_LPAREN, - STATE(7902), 9, + ACTIONS(11584), 1, + anon_sym_EQ_GT, + STATE(7909), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798402,7 +790480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167263] = 12, + [167728] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798423,9 +790501,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11058), 1, - anon_sym_LPAREN, - STATE(7903), 9, + ACTIONS(10652), 1, + anon_sym_RBRACE, + STATE(7910), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798435,7 +790513,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167308] = 12, + [167773] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798456,9 +790534,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11060), 1, - anon_sym_SEMI, - STATE(7904), 9, + ACTIONS(11586), 1, + anon_sym_EQ_GT, + STATE(7911), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798468,7 +790546,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167353] = 12, + [167818] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798489,9 +790567,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11062), 1, + ACTIONS(11588), 1, anon_sym_LT, - STATE(7905), 9, + STATE(7912), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798501,7 +790579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167398] = 12, + [167863] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798522,9 +790600,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11064), 1, - anon_sym_EQ_GT, - STATE(7906), 9, + ACTIONS(11590), 1, + anon_sym_RPAREN, + STATE(7913), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798534,7 +790612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167443] = 12, + [167908] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798555,9 +790633,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11066), 1, - anon_sym_EQ_GT, - STATE(7907), 9, + ACTIONS(11592), 1, + anon_sym_GT, + STATE(7914), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798567,7 +790645,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167488] = 12, + [167953] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798588,9 +790666,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11068), 1, + ACTIONS(11594), 1, sym__optional_semi, - STATE(7908), 9, + STATE(7915), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798600,7 +790678,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167533] = 12, + [167998] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798621,9 +790699,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11070), 1, - anon_sym_EQ_GT, - STATE(7909), 9, + ACTIONS(11596), 1, + anon_sym_LPAREN, + STATE(7916), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798633,7 +790711,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167578] = 12, + [168043] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798654,9 +790732,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11072), 1, - aux_sym_preproc_if_token3, - STATE(7910), 9, + ACTIONS(11598), 1, + sym__optional_semi, + STATE(7917), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798666,30 +790744,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167623] = 12, - ACTIONS(8511), 1, + [168088] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11074), 1, - aux_sym_preproc_if_token2, - STATE(7911), 9, + ACTIONS(11600), 1, + aux_sym_preproc_if_token3, + STATE(7918), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798699,7 +790777,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167668] = 12, + [168133] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798720,9 +790798,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11076), 1, - anon_sym_GT, - STATE(7912), 9, + ACTIONS(11602), 1, + anon_sym_RPAREN, + STATE(7919), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798732,7 +790810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167713] = 12, + [168178] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798753,9 +790831,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11078), 1, - anon_sym_RBRACE, - STATE(7913), 9, + ACTIONS(11604), 1, + sym__optional_semi, + STATE(7920), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798765,7 +790843,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167758] = 12, + [168223] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798786,9 +790864,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11080), 1, - anon_sym_RBRACE, - STATE(7914), 9, + ACTIONS(11606), 1, + anon_sym_GT, + STATE(7921), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798798,7 +790876,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167803] = 12, + [168268] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798819,9 +790897,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11082), 1, + ACTIONS(11608), 1, anon_sym_EQ_GT, - STATE(7915), 9, + STATE(7922), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798831,7 +790909,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167848] = 12, + [168313] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798852,9 +790930,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11084), 1, - anon_sym_EQ, - STATE(7916), 9, + ACTIONS(4570), 1, + anon_sym_LPAREN, + STATE(7923), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798864,7 +790942,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167893] = 12, + [168358] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798885,9 +790963,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10315), 1, - anon_sym_RBRACE, - STATE(7917), 9, + ACTIONS(11610), 1, + aux_sym_preproc_if_token3, + STATE(7924), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798897,7 +790975,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167938] = 12, + [168403] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798918,9 +790996,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11086), 1, - sym__optional_semi, - STATE(7918), 9, + ACTIONS(4620), 1, + anon_sym_LPAREN, + STATE(7925), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798930,7 +791008,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [167983] = 12, + [168448] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -798951,9 +791029,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11088), 1, - anon_sym_DOT, - STATE(7919), 9, + ACTIONS(4600), 1, + anon_sym_LPAREN, + STATE(7926), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798963,30 +791041,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168028] = 12, - ACTIONS(8511), 1, + [168493] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11090), 1, - aux_sym_preproc_if_token2, - STATE(7920), 9, + ACTIONS(10311), 1, + anon_sym_RBRACE, + STATE(7927), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -798996,7 +791074,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168073] = 12, + [168538] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799017,9 +791095,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11092), 1, - aux_sym_preproc_if_token3, - STATE(7921), 9, + ACTIONS(11612), 1, + anon_sym_LPAREN, + STATE(7928), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799029,7 +791107,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168118] = 12, + [168583] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799050,9 +791128,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11094), 1, - anon_sym_EQ_GT, - STATE(7922), 9, + ACTIONS(11614), 1, + aux_sym_preproc_if_token3, + STATE(7929), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799062,7 +791140,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168163] = 12, + [168628] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799083,9 +791161,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11096), 1, - aux_sym_preproc_if_token3, - STATE(7923), 9, + ACTIONS(11616), 1, + anon_sym_STAR, + STATE(7930), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799095,7 +791173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168208] = 12, + [168673] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799116,9 +791194,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11098), 1, - aux_sym_preproc_if_token3, - STATE(7924), 9, + ACTIONS(11618), 1, + anon_sym_while, + STATE(7931), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799128,7 +791206,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168253] = 12, + [168718] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799149,9 +791227,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(7925), 9, + ACTIONS(11620), 1, + anon_sym_EQ_GT, + STATE(7932), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799161,30 +791239,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168298] = 12, - ACTIONS(8511), 1, + [168763] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11102), 1, - aux_sym_preproc_if_token2, - STATE(7926), 9, + ACTIONS(11622), 1, + anon_sym_GT, + STATE(7933), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799194,7 +791272,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168343] = 12, + [168808] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799215,9 +791293,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11104), 1, - anon_sym_SEMI, - STATE(7927), 9, + ACTIONS(11624), 1, + anon_sym_COMMA, + STATE(7934), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799227,7 +791305,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168388] = 12, + [168853] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799248,9 +791326,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6851), 1, - anon_sym_RPAREN, - STATE(7928), 9, + ACTIONS(11626), 1, + anon_sym_EQ_GT, + STATE(7935), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799260,7 +791338,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168433] = 12, + [168898] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799281,9 +791359,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(7929), 9, + ACTIONS(4580), 1, + anon_sym_LPAREN, + STATE(7936), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799293,7 +791371,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168478] = 12, + [168943] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799314,9 +791392,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11108), 1, + ACTIONS(11628), 1, anon_sym_LPAREN, - STATE(7930), 9, + STATE(7937), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799326,7 +791404,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168523] = 12, + [168988] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799347,9 +791425,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11110), 1, - anon_sym_LPAREN, - STATE(7931), 9, + ACTIONS(11630), 1, + anon_sym_SEMI, + STATE(7938), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799359,7 +791437,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168568] = 12, + [169033] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799380,9 +791458,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11112), 1, - anon_sym_LPAREN, - STATE(7932), 9, + ACTIONS(11632), 1, + anon_sym_RBRACE, + STATE(7939), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799392,7 +791470,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168613] = 12, + [169078] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799413,9 +791491,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11114), 1, - anon_sym_LPAREN, - STATE(7933), 9, + ACTIONS(11634), 1, + anon_sym_EQ_GT, + STATE(7940), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799425,7 +791503,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168658] = 12, + [169123] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799446,9 +791524,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11116), 1, + ACTIONS(11636), 1, anon_sym_LPAREN, - STATE(7934), 9, + STATE(7941), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799458,7 +791536,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168703] = 12, + [169168] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799479,9 +791557,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11118), 1, + ACTIONS(11638), 1, anon_sym_LPAREN, - STATE(7935), 9, + STATE(7942), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799491,7 +791569,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168748] = 12, + [169213] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799512,9 +791590,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11120), 1, + ACTIONS(11640), 1, anon_sym_LPAREN, - STATE(7936), 9, + STATE(7943), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799524,7 +791602,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168793] = 12, + [169258] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799545,9 +791623,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11122), 1, - anon_sym_SQUOTE, - STATE(7937), 9, + ACTIONS(11642), 1, + anon_sym_LPAREN, + STATE(7944), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799557,7 +791635,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168838] = 12, + [169303] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799578,42 +791656,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11124), 1, + ACTIONS(11644), 1, anon_sym_LPAREN, - STATE(7938), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [168883] = 12, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(11126), 1, - aux_sym_preproc_if_token2, - STATE(7939), 9, + STATE(7945), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799623,7 +791668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168928] = 12, + [169348] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799644,9 +791689,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11128), 1, - anon_sym_EQ_GT, - STATE(7940), 9, + ACTIONS(11646), 1, + anon_sym_LPAREN, + STATE(7946), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799656,7 +791701,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [168973] = 12, + [169393] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799677,9 +791722,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11130), 1, - anon_sym_GT, - STATE(7941), 9, + ACTIONS(11648), 1, + anon_sym_LPAREN, + STATE(7947), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799689,7 +791734,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169018] = 12, + [169438] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799710,9 +791755,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11132), 1, - anon_sym_SEMI, - STATE(7942), 9, + ACTIONS(11650), 1, + sym__optional_semi, + STATE(7948), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799722,7 +791767,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169063] = 12, + [169483] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799743,9 +791788,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11134), 1, + ACTIONS(11652), 1, anon_sym_LPAREN, - STATE(7943), 9, + STATE(7949), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799755,7 +791800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169108] = 12, + [169528] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799776,9 +791821,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(7944), 9, + ACTIONS(11654), 1, + sym__optional_semi, + STATE(7950), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799788,7 +791833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169153] = 12, + [169573] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799809,9 +791854,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11138), 1, - anon_sym_EQ_GT, - STATE(7945), 9, + ACTIONS(4588), 1, + anon_sym_LPAREN, + STATE(7951), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799821,7 +791866,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169198] = 12, + [169618] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799842,9 +791887,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11140), 1, - aux_sym_preproc_if_token3, - STATE(7946), 9, + ACTIONS(11656), 1, + sym__optional_semi, + STATE(7952), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799854,7 +791899,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169243] = 12, + [169663] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799875,9 +791920,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11142), 1, + ACTIONS(11658), 1, anon_sym_GT, - STATE(7947), 9, + STATE(7953), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799887,7 +791932,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169288] = 12, + [169708] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799908,9 +791953,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9113), 1, - anon_sym_EQ, - STATE(7948), 9, + ACTIONS(11660), 1, + anon_sym_RPAREN, + STATE(7954), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799920,7 +791965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169333] = 12, + [169753] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799941,9 +791986,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11144), 1, - sym__optional_semi, - STATE(7949), 9, + ACTIONS(11662), 1, + anon_sym_RBRACE, + STATE(7955), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799953,7 +791998,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169378] = 12, + [169798] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -799974,9 +792019,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11146), 1, - anon_sym_LT, - STATE(7950), 9, + ACTIONS(11664), 1, + sym__optional_semi, + STATE(7956), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -799986,7 +792031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169423] = 12, + [169843] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800007,9 +792052,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6353), 1, - anon_sym_RBRACE, - STATE(7951), 9, + ACTIONS(4594), 1, + anon_sym_LPAREN, + STATE(7957), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800019,7 +792064,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169468] = 12, + [169888] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800040,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_DASH, - STATE(7952), 9, + ACTIONS(4640), 1, + anon_sym_LPAREN, + STATE(7958), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800052,7 +792097,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169513] = 12, + [169933] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800073,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_EQ_GT, - STATE(7953), 9, + ACTIONS(9616), 1, + anon_sym_EQ, + STATE(7959), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800085,7 +792130,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169558] = 12, + [169978] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800106,9 +792151,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11152), 1, - anon_sym_EQ, - STATE(7954), 9, + ACTIONS(4636), 1, + anon_sym_LPAREN, + STATE(7960), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800118,7 +792163,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169603] = 12, + [170023] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800139,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_EQ_GT, - STATE(7955), 9, + ACTIONS(11666), 1, + anon_sym_LT, + STATE(7961), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800151,7 +792196,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169648] = 12, + [170068] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800172,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_SEMI, - STATE(7956), 9, + ACTIONS(4614), 1, + anon_sym_LPAREN, + STATE(7962), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800184,7 +792229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169693] = 12, + [170113] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800205,9 +792250,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11158), 1, + ACTIONS(11668), 1, anon_sym_SEMI, - STATE(7957), 9, + STATE(7963), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800217,7 +792262,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169738] = 12, + [170158] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800238,9 +792283,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11160), 1, - aux_sym_preproc_if_token3, - STATE(7958), 9, + ACTIONS(11670), 1, + anon_sym_RBRACE, + STATE(7964), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800250,7 +792295,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169783] = 12, + [170203] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800271,9 +792316,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11162), 1, - aux_sym_preproc_if_token3, - STATE(7959), 9, + ACTIONS(11672), 1, + anon_sym_EQ, + STATE(7965), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800283,7 +792328,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169828] = 12, + [170248] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800304,9 +792349,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11164), 1, - sym_interpolation_close_brace, - STATE(7960), 9, + ACTIONS(11674), 1, + anon_sym_EQ_GT, + STATE(7966), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800316,7 +792361,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169873] = 12, + [170293] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800337,9 +792382,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11166), 1, - aux_sym_preproc_if_token3, - STATE(7961), 9, + ACTIONS(11676), 1, + sym__optional_semi, + STATE(7967), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800349,7 +792394,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169918] = 12, + [170338] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800370,9 +792415,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11168), 1, + ACTIONS(11678), 1, sym__optional_semi, - STATE(7962), 9, + STATE(7968), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800382,7 +792427,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [169963] = 12, + [170383] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800403,9 +792448,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11170), 1, - sym_interpolation_close_brace, - STATE(7963), 9, + ACTIONS(11680), 1, + anon_sym_EQ_GT, + STATE(7969), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800415,7 +792460,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170008] = 12, + [170428] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800436,9 +792481,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11172), 1, - anon_sym_STAR, - STATE(7964), 9, + ACTIONS(11682), 1, + anon_sym_EQ_GT, + STATE(7970), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800448,7 +792493,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170053] = 12, + [170473] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800469,9 +792514,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11174), 1, - anon_sym_SEMI, - STATE(7965), 9, + ACTIONS(11684), 1, + anon_sym_EQ_GT, + STATE(7971), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800481,7 +792526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170098] = 12, + [170518] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800502,9 +792547,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11176), 1, - anon_sym_EQ_GT, - STATE(7966), 9, + ACTIONS(11686), 1, + sym__optional_semi, + STATE(7972), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800514,7 +792559,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170143] = 12, + [170563] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800535,9 +792580,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11178), 1, - sym__optional_semi, - STATE(7967), 9, + ACTIONS(10839), 1, + anon_sym_RBRACE, + STATE(7973), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800547,7 +792592,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170188] = 12, + [170608] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800568,9 +792613,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11180), 1, - anon_sym_LPAREN, - STATE(7968), 9, + ACTIONS(11688), 1, + sym__optional_semi, + STATE(7974), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800580,7 +792625,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170233] = 12, + [170653] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800601,9 +792646,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11182), 1, - anon_sym_LPAREN, - STATE(7969), 9, + ACTIONS(11690), 1, + anon_sym_SQUOTE, + STATE(7975), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800613,7 +792658,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170278] = 12, + [170698] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800634,9 +792679,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11184), 1, - anon_sym_LPAREN, - STATE(7970), 9, + ACTIONS(6853), 1, + anon_sym_RBRACE, + STATE(7976), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800646,7 +792691,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170323] = 12, + [170743] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800667,9 +792712,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11186), 1, - anon_sym_LPAREN, - STATE(7971), 9, + ACTIONS(6873), 1, + anon_sym_RBRACE, + STATE(7977), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800679,7 +792724,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170368] = 12, + [170788] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800700,9 +792745,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11188), 1, - anon_sym_LPAREN, - STATE(7972), 9, + ACTIONS(11692), 1, + anon_sym_SEMI, + STATE(7978), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800712,7 +792757,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170413] = 12, + [170833] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800733,9 +792778,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11190), 1, + ACTIONS(11694), 1, anon_sym_LPAREN, - STATE(7973), 9, + STATE(7979), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800745,7 +792790,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170458] = 12, + [170878] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800766,9 +792811,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11192), 1, + ACTIONS(11696), 1, anon_sym_LPAREN, - STATE(7974), 9, + STATE(7980), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800778,7 +792823,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170503] = 12, + [170923] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800799,9 +792844,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11194), 1, - sym__optional_semi, - STATE(7975), 9, + ACTIONS(11698), 1, + anon_sym_LPAREN, + STATE(7981), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800811,7 +792856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170548] = 12, + [170968] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800832,9 +792877,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11196), 1, + ACTIONS(11700), 1, anon_sym_LPAREN, - STATE(7976), 9, + STATE(7982), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800844,7 +792889,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170593] = 12, + [171013] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800865,9 +792910,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11198), 1, - anon_sym_EQ_GT, - STATE(7977), 9, + ACTIONS(11702), 1, + anon_sym_LPAREN, + STATE(7983), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800877,7 +792922,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170638] = 12, + [171058] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800898,9 +792943,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9817), 1, + ACTIONS(11704), 1, anon_sym_LPAREN, - STATE(7978), 9, + STATE(7984), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800910,7 +792955,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170683] = 12, + [171103] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800931,9 +792976,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11200), 1, - anon_sym_EQ_GT, - STATE(7979), 9, + ACTIONS(11706), 1, + anon_sym_LPAREN, + STATE(7985), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800943,7 +792988,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170728] = 12, + [171148] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800964,9 +793009,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11202), 1, + ACTIONS(11708), 1, sym__optional_semi, - STATE(7980), 9, + STATE(7986), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -800976,7 +793021,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170773] = 12, + [171193] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -800997,9 +793042,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11204), 1, - anon_sym_DOT, - STATE(7981), 9, + ACTIONS(11710), 1, + anon_sym_LPAREN, + STATE(7987), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801009,7 +793054,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170818] = 12, + [171238] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801030,9 +793075,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11206), 1, - sym_interpolation_start_quote, - STATE(7982), 9, + ACTIONS(11712), 1, + sym_raw_string_content, + STATE(7988), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801042,7 +793087,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170863] = 12, + [171283] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801063,9 +793108,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11208), 1, + ACTIONS(11714), 1, sym_interpolation_start_quote, - STATE(7983), 9, + STATE(7989), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801075,7 +793120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170908] = 12, + [171328] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801096,9 +793141,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(7984), 9, + ACTIONS(11716), 1, + anon_sym_SEMI, + STATE(7990), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801108,7 +793153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170953] = 12, + [171373] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801129,9 +793174,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11212), 1, - anon_sym_LT, - STATE(7985), 9, + ACTIONS(11718), 1, + anon_sym_LPAREN, + STATE(7991), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801141,30 +793186,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [170998] = 12, - ACTIONS(3), 1, + [171418] = 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(11214), 1, - sym_interpolation_start_quote, - STATE(7986), 9, + ACTIONS(11720), 1, + sym_preproc_arg, + STATE(7992), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801174,7 +793219,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171043] = 12, + [171463] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801195,9 +793240,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11216), 1, - sym_raw_string_content, - STATE(7987), 9, + ACTIONS(11722), 1, + anon_sym_EQ_GT, + STATE(7993), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801207,7 +793252,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171088] = 12, + [171508] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801228,9 +793273,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11218), 1, + ACTIONS(11724), 1, anon_sym_EQ_GT, - STATE(7988), 9, + STATE(7994), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801240,7 +793285,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171133] = 12, + [171553] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801261,9 +793306,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11220), 1, - anon_sym_RPAREN, - STATE(7989), 9, + ACTIONS(11726), 1, + sym_interpolation_start_quote, + STATE(7995), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801273,7 +793318,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171178] = 12, + [171598] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801294,9 +793339,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(7990), 9, + ACTIONS(11728), 1, + anon_sym_LT, + STATE(7996), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801306,7 +793351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171223] = 12, + [171643] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801327,9 +793372,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11224), 1, - anon_sym_COLON, - STATE(7991), 9, + ACTIONS(11730), 1, + anon_sym_STAR, + STATE(7997), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801339,7 +793384,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171268] = 12, + [171688] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801360,9 +793405,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11226), 1, - anon_sym_RPAREN, - STATE(7992), 9, + ACTIONS(11732), 1, + sym__optional_semi, + STATE(7998), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801372,7 +793417,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171313] = 12, + [171733] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801393,9 +793438,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11228), 1, - anon_sym_RPAREN, - STATE(7993), 9, + ACTIONS(11734), 1, + anon_sym_SEMI, + STATE(7999), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801405,7 +793450,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171358] = 12, + [171778] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801426,9 +793471,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11230), 1, - anon_sym_RPAREN, - STATE(7994), 9, + ACTIONS(11736), 1, + aux_sym_preproc_if_token3, + STATE(8000), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801438,7 +793483,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171403] = 12, + [171823] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801459,9 +793504,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11232), 1, - anon_sym_RBRACE, - STATE(7995), 9, + ACTIONS(11738), 1, + anon_sym_DASH, + STATE(8001), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801471,7 +793516,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171448] = 12, + [171868] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801492,9 +793537,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11234), 1, - anon_sym_EQ_GT, - STATE(7996), 9, + ACTIONS(11740), 1, + anon_sym_SQUOTE, + STATE(8002), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801504,7 +793549,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171493] = 12, + [171913] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801525,9 +793570,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11236), 1, - anon_sym_RBRACK, - STATE(7997), 9, + ACTIONS(11742), 1, + anon_sym_while, + STATE(8003), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801537,7 +793582,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171538] = 12, + [171958] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801558,9 +793603,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11238), 1, - anon_sym_EQ_GT, - STATE(7998), 9, + ACTIONS(11744), 1, + sym_interpolation_start_quote, + STATE(8004), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801570,7 +793615,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171583] = 12, + [172003] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801591,9 +793636,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11240), 1, - anon_sym_LPAREN, - STATE(7999), 9, + ACTIONS(11746), 1, + sym_interpolation_close_brace, + STATE(8005), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801603,7 +793648,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171628] = 12, + [172048] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801624,9 +793669,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11242), 1, - anon_sym_LPAREN, - STATE(8000), 9, + ACTIONS(3966), 1, + anon_sym_EQ_GT, + STATE(8006), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801636,7 +793681,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171673] = 12, + [172093] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801657,9 +793702,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11244), 1, + ACTIONS(4574), 1, anon_sym_LPAREN, - STATE(8001), 9, + STATE(8007), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801669,7 +793714,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171718] = 12, + [172138] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801690,9 +793735,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11246), 1, - anon_sym_LPAREN, - STATE(8002), 9, + ACTIONS(11748), 1, + anon_sym_EQ_GT, + STATE(8008), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801702,7 +793747,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171763] = 12, + [172183] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801723,9 +793768,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11248), 1, - anon_sym_SEMI, - STATE(8003), 9, + ACTIONS(11750), 1, + sym_interpolation_close_brace, + STATE(8009), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801735,7 +793780,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171808] = 12, + [172228] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801756,9 +793801,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11250), 1, + ACTIONS(11752), 1, anon_sym_LPAREN, - STATE(8004), 9, + STATE(8010), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801768,7 +793813,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171853] = 12, + [172273] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801789,9 +793834,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11252), 1, - sym__optional_semi, - STATE(8005), 9, + ACTIONS(11754), 1, + anon_sym_LPAREN, + STATE(8011), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801801,7 +793846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171898] = 12, + [172318] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801822,9 +793867,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11254), 1, - anon_sym_RPAREN, - STATE(8006), 9, + ACTIONS(11756), 1, + anon_sym_LPAREN, + STATE(8012), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801834,7 +793879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171943] = 12, + [172363] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801855,9 +793900,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11256), 1, - anon_sym_RBRACE, - STATE(8007), 9, + ACTIONS(11758), 1, + anon_sym_LPAREN, + STATE(8013), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801867,7 +793912,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [171988] = 12, + [172408] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801888,9 +793933,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11258), 1, + ACTIONS(11760), 1, anon_sym_SEMI, - STATE(8008), 9, + STATE(8014), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801900,7 +793945,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172033] = 12, + [172453] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801921,9 +793966,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11260), 1, - anon_sym_EQ_GT, - STATE(8009), 9, + ACTIONS(11762), 1, + anon_sym_LPAREN, + STATE(8015), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801933,30 +793978,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172078] = 12, - ACTIONS(8511), 1, + [172498] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11262), 1, - aux_sym_preproc_if_token2, - STATE(8010), 9, + ACTIONS(11764), 1, + aux_sym_preproc_if_token3, + STATE(8016), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801966,7 +794011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172123] = 12, + [172543] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -801987,9 +794032,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11264), 1, - anon_sym_RPAREN, - STATE(8011), 9, + ACTIONS(11766), 1, + anon_sym_EQ_GT, + STATE(8017), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -801999,7 +794044,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172168] = 12, + [172588] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802020,9 +794065,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11266), 1, - anon_sym_LT, - STATE(8012), 9, + ACTIONS(11768), 1, + ts_builtin_sym_end, + STATE(8018), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802032,7 +794077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172213] = 12, + [172633] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802053,9 +794098,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11268), 1, - anon_sym_STAR, - STATE(8013), 9, + ACTIONS(11770), 1, + sym__optional_semi, + STATE(8019), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802065,7 +794110,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172258] = 12, + [172678] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802086,9 +794131,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11270), 1, + ACTIONS(11772), 1, sym__optional_semi, - STATE(8014), 9, + STATE(8020), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802098,7 +794143,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172303] = 12, + [172723] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802119,9 +794164,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11272), 1, + ACTIONS(11774), 1, sym__optional_semi, - STATE(8015), 9, + STATE(8021), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802131,7 +794176,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172348] = 12, + [172768] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802152,9 +794197,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11274), 1, - anon_sym_EQ_GT, - STATE(8016), 9, + ACTIONS(11776), 1, + anon_sym_LPAREN, + STATE(8022), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802164,7 +794209,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172393] = 12, + [172813] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802185,9 +794230,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11276), 1, - sym__optional_semi, - STATE(8017), 9, + ACTIONS(11778), 1, + anon_sym_LT, + STATE(8023), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802197,7 +794242,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172438] = 12, + [172858] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802218,9 +794263,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11278), 1, - anon_sym_GT, - STATE(8018), 9, + ACTIONS(11780), 1, + anon_sym_EQ_GT, + STATE(8024), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802230,7 +794275,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172483] = 12, + [172903] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802251,9 +794296,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11280), 1, - anon_sym_EQ_GT, - STATE(8019), 9, + ACTIONS(11782), 1, + anon_sym_GT, + STATE(8025), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802263,7 +794308,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172528] = 12, + [172948] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802284,9 +794329,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11282), 1, - anon_sym_SEMI, - STATE(8020), 9, + ACTIONS(11784), 1, + anon_sym_COLON, + STATE(8026), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802296,7 +794341,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172573] = 12, + [172993] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802317,9 +794362,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11284), 1, - anon_sym_LPAREN, - STATE(8021), 9, + ACTIONS(11786), 1, + sym__optional_semi, + STATE(8027), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802329,7 +794374,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172618] = 12, + [173038] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802350,9 +794395,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11286), 1, - anon_sym_LPAREN, - STATE(8022), 9, + ACTIONS(11788), 1, + anon_sym_RPAREN, + STATE(8028), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802362,7 +794407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172663] = 12, + [173083] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802383,9 +794428,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11288), 1, - sym__optional_semi, - STATE(8023), 9, + ACTIONS(11790), 1, + anon_sym_EQ_GT, + STATE(8029), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802395,7 +794440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172708] = 12, + [173128] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802416,9 +794461,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6819), 1, - anon_sym_RPAREN, - STATE(8024), 9, + ACTIONS(11792), 1, + anon_sym_SEMI, + STATE(8030), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802428,7 +794473,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172753] = 12, + [173173] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802449,9 +794494,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11290), 1, - anon_sym_SEMI, - STATE(8025), 9, + ACTIONS(11794), 1, + aux_sym_preproc_if_token3, + STATE(8031), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802461,7 +794506,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172798] = 12, + [173218] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802482,9 +794527,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11292), 1, - sym__optional_semi, - STATE(8026), 9, + ACTIONS(11796), 1, + anon_sym_LPAREN, + STATE(8032), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802494,7 +794539,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172843] = 12, + [173263] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802515,9 +794560,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11294), 1, - anon_sym_EQ_GT, - STATE(8027), 9, + ACTIONS(11798), 1, + anon_sym_LPAREN, + STATE(8033), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802527,7 +794572,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172888] = 12, + [173308] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802548,9 +794593,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11296), 1, - sym_raw_string_end, - STATE(8028), 9, + ACTIONS(11800), 1, + anon_sym_LPAREN, + STATE(8034), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802560,7 +794605,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172933] = 12, + [173353] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802581,9 +794626,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11298), 1, - anon_sym_LT, - STATE(8029), 9, + ACTIONS(11802), 1, + sym__optional_semi, + STATE(8035), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802593,7 +794638,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [172978] = 12, + [173398] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802614,9 +794659,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11300), 1, - anon_sym_RBRACK, - STATE(8030), 9, + ACTIONS(11804), 1, + sym__optional_semi, + STATE(8036), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802626,30 +794671,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173023] = 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(11302), 1, - anon_sym_EQ_GT, - STATE(8031), 9, + ACTIONS(11806), 1, + sym_preproc_arg, + STATE(8037), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802659,7 +794704,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173068] = 12, + [173488] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802680,9 +794725,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11304), 1, - anon_sym_RPAREN, - STATE(8032), 9, + ACTIONS(11808), 1, + anon_sym_LPAREN, + STATE(8038), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802692,7 +794737,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173113] = 12, + [173533] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802713,9 +794758,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11306), 1, - anon_sym_RBRACK, - STATE(8033), 9, + ACTIONS(11810), 1, + aux_sym_preproc_if_token3, + STATE(8039), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802725,7 +794770,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173158] = 12, + [173578] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802746,9 +794791,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11308), 1, - anon_sym_SEMI, - STATE(8034), 9, + ACTIONS(11812), 1, + anon_sym_LT, + STATE(8040), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802758,7 +794803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173203] = 12, + [173623] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802779,9 +794824,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11310), 1, - anon_sym_SEMI, - STATE(8035), 9, + ACTIONS(11814), 1, + anon_sym_STAR, + STATE(8041), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802791,7 +794836,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173248] = 12, + [173668] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802812,9 +794857,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9066), 1, - anon_sym_EQ, - STATE(8036), 9, + ACTIONS(11816), 1, + anon_sym_LPAREN, + STATE(8042), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802824,7 +794869,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173293] = 12, + [173713] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802845,9 +794890,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11312), 1, - anon_sym_SQUOTE, - STATE(8037), 9, + ACTIONS(11818), 1, + anon_sym_SEMI, + STATE(8043), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802857,7 +794902,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173338] = 12, + [173758] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802878,9 +794923,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11314), 1, - anon_sym_GT, - STATE(8038), 9, + ACTIONS(11820), 1, + sym_raw_string_end, + STATE(8044), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802890,7 +794935,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173383] = 12, + [173803] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802911,9 +794956,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11316), 1, - anon_sym_EQ_GT, - STATE(8039), 9, + ACTIONS(11822), 1, + sym__optional_semi, + STATE(8045), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802923,7 +794968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173428] = 12, + [173848] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802944,9 +794989,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11318), 1, - aux_sym_preproc_if_token3, - STATE(8040), 9, + ACTIONS(11824), 1, + anon_sym_SEMI, + STATE(8046), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802956,7 +795001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173473] = 12, + [173893] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -802977,9 +795022,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11320), 1, - anon_sym_LT, - STATE(8041), 9, + ACTIONS(11826), 1, + anon_sym_RPAREN, + STATE(8047), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -802989,7 +795034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173518] = 12, + [173938] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803010,9 +795055,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11322), 1, + ACTIONS(7500), 1, + anon_sym_RPAREN, + STATE(8048), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [173983] = 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(11828), 1, anon_sym_LT, - STATE(8042), 9, + STATE(8049), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803022,7 +795100,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173563] = 12, + [174028] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803043,9 +795121,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11324), 1, - aux_sym_preproc_if_token3, - STATE(8043), 9, + ACTIONS(11830), 1, + anon_sym_LPAREN, + STATE(8050), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803055,7 +795133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173608] = 12, + [174073] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803076,9 +795154,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11326), 1, - anon_sym_STAR, - STATE(8044), 9, + ACTIONS(11832), 1, + anon_sym_LPAREN, + STATE(8051), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803088,7 +795166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173653] = 12, + [174118] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803109,9 +795187,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11328), 1, - anon_sym_GT, - STATE(8045), 9, + ACTIONS(11834), 1, + aux_sym_preproc_if_token3, + STATE(8052), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803121,7 +795199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173698] = 12, + [174163] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803142,9 +795220,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11330), 1, - anon_sym_while, - STATE(8046), 9, + ACTIONS(11836), 1, + anon_sym_LT, + STATE(8053), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803154,7 +795232,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173743] = 12, + [174208] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803175,9 +795253,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11332), 1, - anon_sym_GT, - STATE(8047), 9, + ACTIONS(11838), 1, + anon_sym_SEMI, + STATE(8054), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803187,7 +795265,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173788] = 12, + [174253] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803208,9 +795286,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11334), 1, - sym__optional_semi, - STATE(8048), 9, + ACTIONS(11840), 1, + anon_sym_GT, + STATE(8055), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803220,7 +795298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173833] = 12, + [174298] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803241,9 +795319,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11336), 1, - aux_sym_preproc_if_token3, - STATE(8049), 9, + ACTIONS(11842), 1, + anon_sym_SEMI, + STATE(8056), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803253,7 +795331,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173878] = 12, + [174343] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803274,9 +795352,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11338), 1, - anon_sym_EQ_GT, - STATE(8050), 9, + ACTIONS(7442), 1, + anon_sym_RPAREN, + STATE(8057), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803286,7 +795364,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173923] = 12, + [174388] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803307,9 +795385,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11340), 1, - anon_sym_GT, - STATE(8051), 9, + ACTIONS(11844), 1, + aux_sym_preproc_if_token3, + STATE(8058), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803319,7 +795397,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [173968] = 12, + [174433] = 12, + ACTIONS(5857), 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, + STATE(8059), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [174478] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803340,9 +795451,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11342), 1, + ACTIONS(11846), 1, anon_sym_SEMI, - STATE(8052), 9, + STATE(8060), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803352,7 +795463,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174013] = 12, + [174523] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803373,9 +795484,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11344), 1, - sym__optional_semi, - STATE(8053), 9, + ACTIONS(11848), 1, + anon_sym_SEMI, + STATE(8061), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803385,7 +795496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174058] = 12, + [174568] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803406,9 +795517,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11346), 1, - anon_sym_LT, - STATE(8054), 9, + ACTIONS(11850), 1, + anon_sym_LPAREN, + STATE(8062), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803418,7 +795529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174103] = 12, + [174613] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803439,9 +795550,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11348), 1, - anon_sym_SEMI, - STATE(8055), 9, + ACTIONS(11852), 1, + anon_sym_LPAREN, + STATE(8063), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803451,7 +795562,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174148] = 12, + [174658] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803472,9 +795583,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11350), 1, - anon_sym_SEMI, - STATE(8056), 9, + ACTIONS(6737), 1, + anon_sym_RBRACE, + STATE(8064), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803484,7 +795595,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174193] = 12, + [174703] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803505,9 +795616,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11352), 1, - anon_sym_SEMI, - STATE(8057), 9, + ACTIONS(11854), 1, + anon_sym_LT, + STATE(8065), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803517,7 +795628,40 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174238] = 12, + [174748] = 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(11856), 1, + aux_sym_preproc_if_token2, + STATE(8066), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [174793] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803538,9 +795682,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6699), 1, + ACTIONS(11858), 1, anon_sym_RPAREN, - STATE(8058), 9, + STATE(8067), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803550,7 +795694,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174283] = 12, + [174838] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803571,9 +795715,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11354), 1, - anon_sym_SEMI, - STATE(8059), 9, + ACTIONS(11860), 1, + anon_sym_COLON, + STATE(8068), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803583,7 +795727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174328] = 12, + [174883] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803604,9 +795748,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11356), 1, - sym_raw_string_end, - STATE(8060), 9, + ACTIONS(11862), 1, + sym__optional_semi, + STATE(8069), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803616,7 +795760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174373] = 12, + [174928] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803637,9 +795781,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11358), 1, + ACTIONS(11864), 1, anon_sym_SEMI, - STATE(8061), 9, + STATE(8070), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803649,7 +795793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174418] = 12, + [174973] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803670,9 +795814,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11360), 1, - anon_sym_while, - STATE(8062), 9, + ACTIONS(11866), 1, + sym__optional_semi, + STATE(8071), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803682,7 +795826,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174463] = 12, + [175018] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803703,9 +795847,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11362), 1, - sym__optional_semi, - STATE(8063), 9, + ACTIONS(9782), 1, + anon_sym_STAR, + STATE(8072), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [175063] = 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(11868), 1, + aux_sym_preproc_if_token2, + STATE(8073), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803715,7 +795892,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174508] = 12, + [175108] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803736,9 +795913,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11364), 1, - sym__optional_semi, - STATE(8064), 9, + ACTIONS(11870), 1, + anon_sym_LPAREN, + STATE(8074), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803748,7 +795925,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174553] = 12, + [175153] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803769,9 +795946,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11366), 1, - sym__optional_semi, - STATE(8065), 9, + ACTIONS(11872), 1, + anon_sym_EQ_GT, + STATE(8075), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803781,7 +795958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174598] = 12, + [175198] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803802,9 +795979,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11368), 1, - anon_sym_COLON, - STATE(8066), 9, + ACTIONS(11874), 1, + anon_sym_LPAREN, + STATE(8076), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803814,7 +795991,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174643] = 12, + [175243] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803835,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_raw_string_content, - STATE(8067), 9, + ACTIONS(11876), 1, + anon_sym_SEMI, + STATE(8077), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803847,7 +796024,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174688] = 12, + [175288] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803868,9 +796045,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11372), 1, + ACTIONS(11878), 1, anon_sym_SEMI, - STATE(8068), 9, + STATE(8078), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803880,7 +796057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174733] = 12, + [175333] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803901,9 +796078,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11374), 1, - sym_interpolation_start_quote, - STATE(8069), 9, + ACTIONS(11880), 1, + anon_sym_SQUOTE, + STATE(8079), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803913,7 +796090,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174778] = 12, + [175378] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803934,9 +796111,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(10424), 1, - anon_sym_in, - STATE(8070), 9, + ACTIONS(11882), 1, + anon_sym_RBRACK, + STATE(8080), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803946,7 +796123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174823] = 12, + [175423] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -803967,9 +796144,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11376), 1, - anon_sym_SEMI, - STATE(8071), 9, + ACTIONS(11884), 1, + anon_sym_EQ_GT, + STATE(8081), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -803979,7 +796156,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174868] = 12, + [175468] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804000,9 +796177,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11378), 1, - anon_sym_SEMI, - STATE(8072), 9, + ACTIONS(11886), 1, + anon_sym_RPAREN, + STATE(8082), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804012,7 +796189,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174913] = 12, + [175513] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804033,9 +796210,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6743), 1, - anon_sym_RPAREN, - STATE(8073), 9, + ACTIONS(11888), 1, + anon_sym_SEMI, + STATE(8083), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804045,7 +796222,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [174958] = 12, + [175558] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804066,9 +796243,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11380), 1, + ACTIONS(11890), 1, sym__optional_semi, - STATE(8074), 9, + STATE(8084), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804078,7 +796255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175003] = 12, + [175603] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804099,9 +796276,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11382), 1, - sym__optional_semi, - STATE(8075), 9, + ACTIONS(11892), 1, + anon_sym_SEMI, + STATE(8085), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804111,7 +796288,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175048] = 12, + [175648] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804132,9 +796309,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11384), 1, - anon_sym_LPAREN, - STATE(8076), 9, + ACTIONS(5584), 1, + aux_sym_preproc_if_token3, + STATE(8086), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804144,7 +796321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175093] = 12, + [175693] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804165,9 +796342,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11386), 1, - sym_interpolation_start_quote, - STATE(8077), 9, + ACTIONS(11894), 1, + anon_sym_EQ_GT, + STATE(8087), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804177,7 +796354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175138] = 12, + [175738] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804198,9 +796375,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11388), 1, - anon_sym_EQ_GT, - STATE(8078), 9, + ACTIONS(11896), 1, + anon_sym_RPAREN, + STATE(8088), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804210,7 +796387,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175183] = 12, + [175783] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804231,9 +796408,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11390), 1, - anon_sym_SQUOTE, - STATE(8079), 9, + ACTIONS(11898), 1, + anon_sym_RPAREN, + STATE(8089), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804243,7 +796420,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175228] = 12, + [175828] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804264,9 +796441,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11392), 1, - anon_sym_EQ_GT, - STATE(8080), 9, + ACTIONS(11900), 1, + anon_sym_RBRACK, + STATE(8090), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804276,7 +796453,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175273] = 12, + [175873] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804297,9 +796474,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(8081), 9, + ACTIONS(11902), 1, + anon_sym_EQ_GT, + STATE(8091), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804309,7 +796486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175318] = 12, + [175918] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804330,9 +796507,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11396), 1, - anon_sym_SEMI, - STATE(8082), 9, + ACTIONS(11904), 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, + [175963] = 12, + ACTIONS(5817), 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, + STATE(8093), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804342,7 +796552,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175363] = 12, + [176008] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804363,9 +796573,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11398), 1, + ACTIONS(11906), 1, anon_sym_STAR, - STATE(8083), 9, + STATE(8094), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804375,7 +796585,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175408] = 12, + [176053] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804396,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_COMMA, - STATE(8084), 9, + ACTIONS(10874), 1, + anon_sym_RBRACE, + STATE(8095), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804408,7 +796618,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175453] = 12, + [176098] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804429,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_SQUOTE, - STATE(8085), 9, + ACTIONS(11908), 1, + anon_sym_in, + STATE(8096), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804441,7 +796651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175498] = 12, + [176143] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804462,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_RPAREN, - STATE(8086), 9, + ACTIONS(11910), 1, + anon_sym_EQ_GT, + STATE(8097), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804474,7 +796684,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175543] = 12, + [176188] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804495,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_LPAREN, - STATE(8087), 9, + ACTIONS(11912), 1, + sym__optional_semi, + STATE(8098), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804507,7 +796717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175588] = 12, + [176233] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804528,9 +796738,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11408), 1, - anon_sym_COLON, - STATE(8088), 9, + ACTIONS(11914), 1, + sym__optional_semi, + STATE(8099), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804540,7 +796750,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175633] = 12, + [176278] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804561,9 +796771,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11410), 1, - anon_sym_SEMI, - STATE(8089), 9, + ACTIONS(11916), 1, + aux_sym_preproc_if_token3, + STATE(8100), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804573,7 +796783,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175678] = 12, + [176323] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804594,9 +796804,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(5788), 1, + ACTIONS(11918), 1, aux_sym_preproc_if_token3, - STATE(8090), 9, + STATE(8101), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804606,7 +796816,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175723] = 12, + [176368] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804627,9 +796837,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11412), 1, + ACTIONS(11920), 1, anon_sym_LPAREN, - STATE(8091), 9, + STATE(8102), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804639,7 +796849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175768] = 12, + [176413] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804660,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_SEMI, - STATE(8092), 9, + ACTIONS(11922), 1, + anon_sym_RPAREN, + STATE(8103), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804672,7 +796882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175813] = 12, + [176458] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804693,9 +796903,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11416), 1, - sym_interpolation_start_quote, - STATE(8093), 9, + ACTIONS(11924), 1, + sym__optional_semi, + STATE(8104), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804705,7 +796915,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175858] = 12, + [176503] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804726,9 +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(8094), 9, + STATE(8105), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804738,7 +796948,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175903] = 12, + [176548] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804759,9 +796969,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11420), 1, + ACTIONS(11928), 1, anon_sym_SEMI, - STATE(8095), 9, + STATE(8106), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804771,7 +796981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175948] = 12, + [176593] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804792,9 +797002,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11422), 1, - sym_raw_string_end, - STATE(8096), 9, + ACTIONS(11930), 1, + anon_sym_EQ_GT, + STATE(8107), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804804,7 +797014,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [175993] = 12, + [176638] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804825,9 +797035,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11424), 1, + ACTIONS(11932), 1, + aux_sym_preproc_if_token3, + STATE(8108), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [176683] = 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(11934), 1, + anon_sym_GT, + STATE(8109), 9, + sym_preproc_region, + sym_preproc_endregion, + sym_preproc_line, + sym_preproc_pragma, + sym_preproc_nullable, + sym_preproc_error, + sym_preproc_warning, + sym_preproc_define, + sym_preproc_undef, + [176728] = 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(11936), 1, anon_sym_SEMI, - STATE(8097), 9, + STATE(8110), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804837,7 +797113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176038] = 12, + [176773] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804858,9 +797134,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11426), 1, - anon_sym_EQ_GT, - STATE(8098), 9, + ACTIONS(11938), 1, + anon_sym_RPAREN, + STATE(8111), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804870,7 +797146,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176083] = 12, + [176818] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804891,9 +797167,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(6319), 1, + ACTIONS(10143), 1, anon_sym_RBRACE, - STATE(8099), 9, + STATE(8112), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804903,7 +797179,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176128] = 12, + [176863] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804924,9 +797200,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11428), 1, + ACTIONS(4606), 1, anon_sym_LPAREN, - STATE(8100), 9, + STATE(8113), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804936,7 +797212,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176173] = 12, + [176908] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804957,9 +797233,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11430), 1, - anon_sym_EQ_GT, - STATE(8101), 9, + ACTIONS(11940), 1, + aux_sym_preproc_if_token3, + STATE(8114), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -804969,7 +797245,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176218] = 12, + [176953] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -804990,9 +797266,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11432), 1, - sym__optional_semi, - STATE(8102), 9, + ACTIONS(11942), 1, + aux_sym_preproc_if_token3, + STATE(8115), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805002,30 +797278,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176263] = 12, - ACTIONS(8511), 1, + [176998] = 12, + ACTIONS(3), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(5), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(7), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(11), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(13), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(15), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(17), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(19), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(21), 1, sym_comment, - ACTIONS(11434), 1, - sym_preproc_arg, - STATE(8103), 9, + ACTIONS(11944), 1, + anon_sym_LPAREN, + STATE(8116), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805035,7 +797311,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176308] = 12, + [177043] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805056,9 +797332,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11436), 1, - anon_sym_STAR, - STATE(8104), 9, + ACTIONS(11946), 1, + anon_sym_RBRACE, + STATE(8117), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805068,7 +797344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176353] = 12, + [177088] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805089,9 +797365,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11438), 1, - anon_sym_SEMI, - STATE(8105), 9, + ACTIONS(11948), 1, + anon_sym_EQ_GT, + STATE(8118), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805101,7 +797377,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176398] = 12, + [177133] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805122,9 +797398,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11440), 1, - anon_sym_SEMI, - STATE(8106), 9, + ACTIONS(11950), 1, + anon_sym_GT, + STATE(8119), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805134,7 +797410,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176443] = 12, + [177178] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805155,9 +797431,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(9261), 1, - anon_sym_STAR, - STATE(8107), 9, + ACTIONS(11952), 1, + sym__optional_semi, + STATE(8120), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805167,7 +797443,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176488] = 12, + [177223] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805188,9 +797464,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11442), 1, - anon_sym_COLON, - STATE(8108), 9, + ACTIONS(11954), 1, + sym__optional_semi, + STATE(8121), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805200,7 +797476,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176533] = 12, + [177268] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805221,9 +797497,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11444), 1, + ACTIONS(11956), 1, anon_sym_SEMI, - STATE(8109), 9, + STATE(8122), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805233,7 +797509,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176578] = 12, + [177313] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805254,9 +797530,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11446), 1, - sym__optional_semi, - STATE(8110), 9, + ACTIONS(11958), 1, + anon_sym_STAR, + STATE(8123), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805266,7 +797542,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176623] = 12, + [177358] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805287,9 +797563,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11448), 1, - sym_integer_literal, - STATE(8111), 9, + ACTIONS(11960), 1, + sym__optional_semi, + STATE(8124), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805299,7 +797575,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176668] = 12, + [177403] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805320,9 +797596,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(7210), 1, - anon_sym_STAR, - STATE(8112), 9, + ACTIONS(11962), 1, + anon_sym_SEMI, + STATE(8125), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805332,7 +797608,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176713] = 12, + [177448] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805353,9 +797629,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11450), 1, - sym__optional_semi, - STATE(8113), 9, + ACTIONS(10942), 1, + anon_sym_LT, + STATE(8126), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805365,7 +797641,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176758] = 12, + [177493] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805386,9 +797662,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(8114), 9, + ACTIONS(11964), 1, + anon_sym_RPAREN, + STATE(8127), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805398,7 +797674,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176803] = 12, + [177538] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805419,9 +797695,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(8115), 9, + ACTIONS(11966), 1, + anon_sym_RPAREN, + STATE(8128), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805431,7 +797707,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176848] = 12, + [177583] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805452,9 +797728,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11456), 1, - sym_interpolation_start_quote, - STATE(8116), 9, + ACTIONS(11968), 1, + sym_raw_string_content, + STATE(8129), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805464,7 +797740,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176893] = 12, + [177628] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805485,9 +797761,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11458), 1, - sym_interpolation_start_quote, - STATE(8117), 9, + ACTIONS(11970), 1, + anon_sym_RPAREN, + STATE(8130), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805497,7 +797773,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176938] = 12, + [177673] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805518,9 +797794,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11460), 1, + ACTIONS(11972), 1, anon_sym_SEMI, - STATE(8118), 9, + STATE(8131), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805530,7 +797806,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [176983] = 12, + [177718] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805551,9 +797827,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11462), 1, - anon_sym_EQ_GT, - STATE(8119), 9, + ACTIONS(11974), 1, + anon_sym_RBRACE, + STATE(8132), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805563,7 +797839,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177028] = 12, + [177763] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805584,9 +797860,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11464), 1, + ACTIONS(11976), 1, anon_sym_EQ_GT, - STATE(8120), 9, + STATE(8133), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805596,7 +797872,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177073] = 12, + [177808] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805617,9 +797893,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11466), 1, + ACTIONS(11978), 1, sym_interpolation_start_quote, - STATE(8121), 9, + STATE(8134), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805629,7 +797905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177118] = 12, + [177853] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805650,9 +797926,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(8122), 9, + ACTIONS(11980), 1, + sym_interpolation_start_quote, + STATE(8135), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805662,7 +797938,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177163] = 12, + [177898] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805683,9 +797959,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11468), 1, - anon_sym_SQUOTE, - STATE(8123), 9, + ACTIONS(11982), 1, + sym_interpolation_start_quote, + STATE(8136), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805695,7 +797971,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177208] = 12, + [177943] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805716,9 +797992,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11470), 1, - anon_sym_RBRACK, - STATE(8124), 9, + ACTIONS(11984), 1, + anon_sym_LT, + STATE(8137), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805728,7 +798004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177253] = 12, + [177988] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805749,42 +798025,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11472), 1, + ACTIONS(11986), 1, sym_raw_string_content, - STATE(8125), 9, - sym_preproc_region, - sym_preproc_endregion, - sym_preproc_line, - sym_preproc_pragma, - sym_preproc_nullable, - sym_preproc_error, - sym_preproc_warning, - sym_preproc_define, - sym_preproc_undef, - [177298] = 12, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(11474), 1, - sym_preproc_arg, - STATE(8126), 9, + STATE(8138), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805794,30 +798037,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177343] = 12, - ACTIONS(8511), 1, + [178033] = 12, + ACTIONS(9073), 1, aux_sym_preproc_region_token1, - ACTIONS(8513), 1, + ACTIONS(9075), 1, aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, + ACTIONS(9077), 1, aux_sym_preproc_line_token1, - ACTIONS(8517), 1, + ACTIONS(9079), 1, aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, + ACTIONS(9081), 1, aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, + ACTIONS(9083), 1, aux_sym_preproc_error_token1, - ACTIONS(8523), 1, + ACTIONS(9085), 1, aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, + ACTIONS(9087), 1, aux_sym_preproc_define_token1, - ACTIONS(8527), 1, + ACTIONS(9089), 1, aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, + ACTIONS(9091), 1, sym_comment, - ACTIONS(11476), 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, @@ -805827,7 +798070,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177388] = 12, + [178078] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805848,42 +798091,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11478), 1, - anon_sym_EQ, - 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, - [177433] = 12, - ACTIONS(8511), 1, - aux_sym_preproc_region_token1, - ACTIONS(8513), 1, - aux_sym_preproc_endregion_token1, - ACTIONS(8515), 1, - aux_sym_preproc_line_token1, - ACTIONS(8517), 1, - aux_sym_preproc_pragma_token1, - ACTIONS(8519), 1, - aux_sym_preproc_nullable_token1, - ACTIONS(8521), 1, - aux_sym_preproc_error_token1, - ACTIONS(8523), 1, - aux_sym_preproc_warning_token1, - ACTIONS(8525), 1, - aux_sym_preproc_define_token1, - ACTIONS(8527), 1, - aux_sym_preproc_undef_token1, - ACTIONS(8529), 1, - sym_comment, - ACTIONS(11480), 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, @@ -805893,7 +798103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177478] = 12, + [178123] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805914,9 +798124,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11482), 1, + ACTIONS(11992), 1, anon_sym_STAR, - STATE(8130), 9, + STATE(8141), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805926,7 +798136,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177523] = 12, + [178168] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805947,9 +798157,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11484), 1, - anon_sym_EQ_GT, - STATE(8131), 9, + ACTIONS(11994), 1, + sym__optional_semi, + STATE(8142), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805959,7 +798169,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177568] = 12, + [178213] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -805980,9 +798190,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11486), 1, - anon_sym_EQ_GT, - STATE(8132), 9, + ACTIONS(11996), 1, + sym_interpolation_start_quote, + STATE(8143), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -805992,7 +798202,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177613] = 12, + [178258] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806013,9 +798223,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11488), 1, - sym__optional_semi, - STATE(8133), 9, + ACTIONS(11998), 1, + anon_sym_GT, + STATE(8144), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806025,7 +798235,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177658] = 12, + [178303] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806046,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, @@ -806058,7 +798268,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177703] = 12, + [178348] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806079,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, @@ -806091,7 +798301,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177748] = 12, + [178393] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806112,9 +798322,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11494), 1, + ACTIONS(12004), 1, anon_sym_SEMI, - STATE(8136), 9, + STATE(8147), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806124,7 +798334,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177793] = 12, + [178438] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806145,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, @@ -806157,7 +798367,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177838] = 12, + [178483] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806178,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, @@ -806190,7 +798400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177883] = 12, + [178528] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806211,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, @@ -806223,7 +798433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177928] = 12, + [178573] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806244,9 +798454,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_undef_token1, ACTIONS(21), 1, sym_comment, - ACTIONS(11502), 1, - anon_sym_STAR, - STATE(8140), 9, + ACTIONS(12012), 1, + anon_sym_RPAREN, + STATE(8151), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806256,30 +798466,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [177973] = 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, @@ -806289,7 +798499,7 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178018] = 12, + [178663] = 12, ACTIONS(3), 1, aux_sym_preproc_region_token1, ACTIONS(5), 1, @@ -806310,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, @@ -806322,30 +798532,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178063] = 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, - anon_sym_STAR, - STATE(8143), 9, + ACTIONS(12018), 1, + sym_preproc_arg, + STATE(8154), 9, sym_preproc_region, sym_preproc_endregion, sym_preproc_line, @@ -806355,4605 +798565,4614 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_warning, sym_preproc_define, sym_preproc_undef, - [178108] = 1, - ACTIONS(11510), 1, + [178753] = 1, + ACTIONS(12020), 1, ts_builtin_sym_end, - [178112] = 1, - ACTIONS(11512), 1, + [178757] = 1, + ACTIONS(12022), 1, ts_builtin_sym_end, - [178116] = 1, - ACTIONS(11514), 1, + [178761] = 1, + ACTIONS(12024), 1, ts_builtin_sym_end, - [178120] = 1, - ACTIONS(11516), 1, + [178765] = 1, + ACTIONS(12026), 1, ts_builtin_sym_end, - [178124] = 1, - ACTIONS(11518), 1, + [178769] = 1, + ACTIONS(12028), 1, ts_builtin_sym_end, - [178128] = 1, - ACTIONS(11520), 1, + [178773] = 1, + ACTIONS(12030), 1, ts_builtin_sym_end, - [178132] = 1, - ACTIONS(11522), 1, + [178777] = 1, + ACTIONS(12032), 1, ts_builtin_sym_end, - [178136] = 1, - ACTIONS(11524), 1, + [178781] = 1, + ACTIONS(12034), 1, ts_builtin_sym_end, - [178140] = 1, - ACTIONS(11526), 1, + [178785] = 1, + ACTIONS(12036), 1, ts_builtin_sym_end, - [178144] = 1, - ACTIONS(11528), 1, + [178789] = 1, + ACTIONS(12038), 1, ts_builtin_sym_end, - [178148] = 1, - ACTIONS(11530), 1, + [178793] = 1, + ACTIONS(12040), 1, ts_builtin_sym_end, - [178152] = 1, - ACTIONS(11532), 1, + [178797] = 1, + ACTIONS(12042), 1, ts_builtin_sym_end, - [178156] = 1, - ACTIONS(11534), 1, + [178801] = 1, + ACTIONS(12044), 1, ts_builtin_sym_end, - [178160] = 1, - ACTIONS(11536), 1, + [178805] = 1, + ACTIONS(12046), 1, ts_builtin_sym_end, - [178164] = 1, - ACTIONS(11538), 1, + [178809] = 1, + ACTIONS(12048), 1, ts_builtin_sym_end, - [178168] = 1, - ACTIONS(11540), 1, + [178813] = 1, + ACTIONS(12050), 1, ts_builtin_sym_end, - [178172] = 1, - ACTIONS(11542), 1, + [178817] = 1, + ACTIONS(12052), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(5452)] = 0, - [SMALL_STATE(5453)] = 95, - [SMALL_STATE(5454)] = 188, - [SMALL_STATE(5455)] = 285, - [SMALL_STATE(5456)] = 378, - [SMALL_STATE(5457)] = 473, - [SMALL_STATE(5458)] = 564, - [SMALL_STATE(5459)] = 655, - [SMALL_STATE(5460)] = 750, - [SMALL_STATE(5461)] = 845, - [SMALL_STATE(5462)] = 940, - [SMALL_STATE(5463)] = 1031, - [SMALL_STATE(5464)] = 1126, - [SMALL_STATE(5465)] = 1217, - [SMALL_STATE(5466)] = 1330, - [SMALL_STATE(5467)] = 1425, - [SMALL_STATE(5468)] = 1516, - [SMALL_STATE(5469)] = 1611, - [SMALL_STATE(5470)] = 1706, - [SMALL_STATE(5471)] = 1797, - [SMALL_STATE(5472)] = 1892, - [SMALL_STATE(5473)] = 1991, - [SMALL_STATE(5474)] = 2082, - [SMALL_STATE(5475)] = 2181, - [SMALL_STATE(5476)] = 2272, - [SMALL_STATE(5477)] = 2365, - [SMALL_STATE(5478)] = 2459, - [SMALL_STATE(5479)] = 2553, - [SMALL_STATE(5480)] = 2647, - [SMALL_STATE(5481)] = 2741, - [SMALL_STATE(5482)] = 2833, - [SMALL_STATE(5483)] = 2925, - [SMALL_STATE(5484)] = 3039, - [SMALL_STATE(5485)] = 3129, - [SMALL_STATE(5486)] = 3223, - [SMALL_STATE(5487)] = 3315, - [SMALL_STATE(5488)] = 3413, - [SMALL_STATE(5489)] = 3505, - [SMALL_STATE(5490)] = 3615, - [SMALL_STATE(5491)] = 3709, - [SMALL_STATE(5492)] = 3802, - [SMALL_STATE(5493)] = 3895, - [SMALL_STATE(5494)] = 3984, - [SMALL_STATE(5495)] = 4077, - [SMALL_STATE(5496)] = 4166, - [SMALL_STATE(5497)] = 4255, - [SMALL_STATE(5498)] = 4344, - [SMALL_STATE(5499)] = 4433, - [SMALL_STATE(5500)] = 4526, - [SMALL_STATE(5501)] = 4615, - [SMALL_STATE(5502)] = 4708, - [SMALL_STATE(5503)] = 4797, - [SMALL_STATE(5504)] = 4886, - [SMALL_STATE(5505)] = 4979, - [SMALL_STATE(5506)] = 5068, - [SMALL_STATE(5507)] = 5157, - [SMALL_STATE(5508)] = 5246, - [SMALL_STATE(5509)] = 5339, - [SMALL_STATE(5510)] = 5428, - [SMALL_STATE(5511)] = 5517, - [SMALL_STATE(5512)] = 5606, - [SMALL_STATE(5513)] = 5695, - [SMALL_STATE(5514)] = 5784, - [SMALL_STATE(5515)] = 5877, - [SMALL_STATE(5516)] = 5966, - [SMALL_STATE(5517)] = 6089, - [SMALL_STATE(5518)] = 6178, - [SMALL_STATE(5519)] = 6267, - [SMALL_STATE(5520)] = 6358, - [SMALL_STATE(5521)] = 6447, - [SMALL_STATE(5522)] = 6536, - [SMALL_STATE(5523)] = 6625, - [SMALL_STATE(5524)] = 6714, - [SMALL_STATE(5525)] = 6803, - [SMALL_STATE(5526)] = 6894, - [SMALL_STATE(5527)] = 6987, - [SMALL_STATE(5528)] = 7076, - [SMALL_STATE(5529)] = 7168, - [SMALL_STATE(5530)] = 7260, - [SMALL_STATE(5531)] = 7354, - [SMALL_STATE(5532)] = 7446, - [SMALL_STATE(5533)] = 7534, - [SMALL_STATE(5534)] = 7622, - [SMALL_STATE(5535)] = 7714, - [SMALL_STATE(5536)] = 7804, - [SMALL_STATE(5537)] = 7896, - [SMALL_STATE(5538)] = 8004, - [SMALL_STATE(5539)] = 8096, - [SMALL_STATE(5540)] = 8192, - [SMALL_STATE(5541)] = 8284, - [SMALL_STATE(5542)] = 8402, - [SMALL_STATE(5543)] = 8490, - [SMALL_STATE(5544)] = 8580, - [SMALL_STATE(5545)] = 8698, - [SMALL_STATE(5546)] = 8816, - [SMALL_STATE(5547)] = 8908, - [SMALL_STATE(5548)] = 9000, - [SMALL_STATE(5549)] = 9118, - [SMALL_STATE(5550)] = 9212, - [SMALL_STATE(5551)] = 9300, - [SMALL_STATE(5552)] = 9418, - [SMALL_STATE(5553)] = 9526, - [SMALL_STATE(5554)] = 9644, - [SMALL_STATE(5555)] = 9761, - [SMALL_STATE(5556)] = 9878, - [SMALL_STATE(5557)] = 9973, - [SMALL_STATE(5558)] = 10064, - [SMALL_STATE(5559)] = 10151, - [SMALL_STATE(5560)] = 10246, - [SMALL_STATE(5561)] = 10333, - [SMALL_STATE(5562)] = 10426, - [SMALL_STATE(5563)] = 10517, - [SMALL_STATE(5564)] = 10624, - [SMALL_STATE(5565)] = 10711, - [SMALL_STATE(5566)] = 10798, - [SMALL_STATE(5567)] = 10913, - [SMALL_STATE(5568)] = 11008, - [SMALL_STATE(5569)] = 11099, - [SMALL_STATE(5570)] = 11206, - [SMALL_STATE(5571)] = 11297, - [SMALL_STATE(5572)] = 11388, - [SMALL_STATE(5573)] = 11479, - [SMALL_STATE(5574)] = 11568, - [SMALL_STATE(5575)] = 11663, - [SMALL_STATE(5576)] = 11756, - [SMALL_STATE(5577)] = 11847, - [SMALL_STATE(5578)] = 11938, - [SMALL_STATE(5579)] = 12027, - [SMALL_STATE(5580)] = 12118, - [SMALL_STATE(5581)] = 12206, - [SMALL_STATE(5582)] = 12296, - [SMALL_STATE(5583)] = 12382, - [SMALL_STATE(5584)] = 12468, - [SMALL_STATE(5585)] = 12554, - [SMALL_STATE(5586)] = 12640, - [SMALL_STATE(5587)] = 12726, - [SMALL_STATE(5588)] = 12812, - [SMALL_STATE(5589)] = 12900, - [SMALL_STATE(5590)] = 12986, - [SMALL_STATE(5591)] = 13072, - [SMALL_STATE(5592)] = 13158, - [SMALL_STATE(5593)] = 13246, - [SMALL_STATE(5594)] = 13332, - [SMALL_STATE(5595)] = 13418, - [SMALL_STATE(5596)] = 13506, - [SMALL_STATE(5597)] = 13610, - [SMALL_STATE(5598)] = 13700, - [SMALL_STATE(5599)] = 13788, - [SMALL_STATE(5600)] = 13892, - [SMALL_STATE(5601)] = 13978, - [SMALL_STATE(5602)] = 14064, - [SMALL_STATE(5603)] = 14158, - [SMALL_STATE(5604)] = 14244, - [SMALL_STATE(5605)] = 14330, - [SMALL_STATE(5606)] = 14418, - [SMALL_STATE(5607)] = 14522, - [SMALL_STATE(5608)] = 14608, - [SMALL_STATE(5609)] = 14702, - [SMALL_STATE(5610)] = 14794, - [SMALL_STATE(5611)] = 14880, - [SMALL_STATE(5612)] = 14968, - [SMALL_STATE(5613)] = 15056, - [SMALL_STATE(5614)] = 15142, - [SMALL_STATE(5615)] = 15258, - [SMALL_STATE(5616)] = 15344, - [SMALL_STATE(5617)] = 15436, - [SMALL_STATE(5618)] = 15522, - [SMALL_STATE(5619)] = 15626, - [SMALL_STATE(5620)] = 15712, - [SMALL_STATE(5621)] = 15798, - [SMALL_STATE(5622)] = 15888, - [SMALL_STATE(5623)] = 15974, - [SMALL_STATE(5624)] = 16060, - [SMALL_STATE(5625)] = 16146, - [SMALL_STATE(5626)] = 16236, - [SMALL_STATE(5627)] = 16322, - [SMALL_STATE(5628)] = 16408, - [SMALL_STATE(5629)] = 16498, - [SMALL_STATE(5630)] = 16584, - [SMALL_STATE(5631)] = 16670, - [SMALL_STATE(5632)] = 16756, - [SMALL_STATE(5633)] = 16844, - [SMALL_STATE(5634)] = 16930, - [SMALL_STATE(5635)] = 17020, - [SMALL_STATE(5636)] = 17106, - [SMALL_STATE(5637)] = 17222, - [SMALL_STATE(5638)] = 17308, - [SMALL_STATE(5639)] = 17398, - [SMALL_STATE(5640)] = 17488, - [SMALL_STATE(5641)] = 17578, - [SMALL_STATE(5642)] = 17666, - [SMALL_STATE(5643)] = 17756, - [SMALL_STATE(5644)] = 17860, - [SMALL_STATE(5645)] = 17946, - [SMALL_STATE(5646)] = 18032, - [SMALL_STATE(5647)] = 18118, - [SMALL_STATE(5648)] = 18233, - [SMALL_STATE(5649)] = 18348, - [SMALL_STATE(5650)] = 18433, - [SMALL_STATE(5651)] = 18548, - [SMALL_STATE(5652)] = 18633, - [SMALL_STATE(5653)] = 18718, - [SMALL_STATE(5654)] = 18805, - [SMALL_STATE(5655)] = 18890, - [SMALL_STATE(5656)] = 18975, - [SMALL_STATE(5657)] = 19060, - [SMALL_STATE(5658)] = 19145, - [SMALL_STATE(5659)] = 19230, - [SMALL_STATE(5660)] = 19315, - [SMALL_STATE(5661)] = 19400, - [SMALL_STATE(5662)] = 19485, - [SMALL_STATE(5663)] = 19570, - [SMALL_STATE(5664)] = 19655, - [SMALL_STATE(5665)] = 19740, - [SMALL_STATE(5666)] = 19825, - [SMALL_STATE(5667)] = 19910, - [SMALL_STATE(5668)] = 20025, - [SMALL_STATE(5669)] = 20110, - [SMALL_STATE(5670)] = 20199, - [SMALL_STATE(5671)] = 20284, - [SMALL_STATE(5672)] = 20369, - [SMALL_STATE(5673)] = 20454, - [SMALL_STATE(5674)] = 20539, - [SMALL_STATE(5675)] = 20626, - [SMALL_STATE(5676)] = 20711, - [SMALL_STATE(5677)] = 20826, - [SMALL_STATE(5678)] = 20911, - [SMALL_STATE(5679)] = 21000, - [SMALL_STATE(5680)] = 21085, - [SMALL_STATE(5681)] = 21170, - [SMALL_STATE(5682)] = 21255, - [SMALL_STATE(5683)] = 21340, - [SMALL_STATE(5684)] = 21425, - [SMALL_STATE(5685)] = 21510, - [SMALL_STATE(5686)] = 21595, - [SMALL_STATE(5687)] = 21710, - [SMALL_STATE(5688)] = 21795, - [SMALL_STATE(5689)] = 21880, - [SMALL_STATE(5690)] = 21965, - [SMALL_STATE(5691)] = 22080, - [SMALL_STATE(5692)] = 22165, - [SMALL_STATE(5693)] = 22250, - [SMALL_STATE(5694)] = 22335, - [SMALL_STATE(5695)] = 22420, - [SMALL_STATE(5696)] = 22505, - [SMALL_STATE(5697)] = 22590, - [SMALL_STATE(5698)] = 22675, - [SMALL_STATE(5699)] = 22760, - [SMALL_STATE(5700)] = 22875, - [SMALL_STATE(5701)] = 22990, - [SMALL_STATE(5702)] = 23075, - [SMALL_STATE(5703)] = 23160, - [SMALL_STATE(5704)] = 23249, - [SMALL_STATE(5705)] = 23364, - [SMALL_STATE(5706)] = 23453, - [SMALL_STATE(5707)] = 23568, - [SMALL_STATE(5708)] = 23653, - [SMALL_STATE(5709)] = 23738, - [SMALL_STATE(5710)] = 23825, - [SMALL_STATE(5711)] = 23910, - [SMALL_STATE(5712)] = 24025, - [SMALL_STATE(5713)] = 24140, - [SMALL_STATE(5714)] = 24225, - [SMALL_STATE(5715)] = 24312, - [SMALL_STATE(5716)] = 24427, - [SMALL_STATE(5717)] = 24512, - [SMALL_STATE(5718)] = 24597, - [SMALL_STATE(5719)] = 24682, - [SMALL_STATE(5720)] = 24797, - [SMALL_STATE(5721)] = 24912, - [SMALL_STATE(5722)] = 24997, - [SMALL_STATE(5723)] = 25082, - [SMALL_STATE(5724)] = 25197, - [SMALL_STATE(5725)] = 25282, - [SMALL_STATE(5726)] = 25397, - [SMALL_STATE(5727)] = 25482, - [SMALL_STATE(5728)] = 25567, - [SMALL_STATE(5729)] = 25652, - [SMALL_STATE(5730)] = 25767, - [SMALL_STATE(5731)] = 25852, - [SMALL_STATE(5732)] = 25937, - [SMALL_STATE(5733)] = 26022, - [SMALL_STATE(5734)] = 26107, - [SMALL_STATE(5735)] = 26212, - [SMALL_STATE(5736)] = 26301, - [SMALL_STATE(5737)] = 26386, - [SMALL_STATE(5738)] = 26501, - [SMALL_STATE(5739)] = 26616, - [SMALL_STATE(5740)] = 26705, - [SMALL_STATE(5741)] = 26794, - [SMALL_STATE(5742)] = 26883, - [SMALL_STATE(5743)] = 26972, - [SMALL_STATE(5744)] = 27059, - [SMALL_STATE(5745)] = 27148, - [SMALL_STATE(5746)] = 27233, - [SMALL_STATE(5747)] = 27318, - [SMALL_STATE(5748)] = 27403, - [SMALL_STATE(5749)] = 27518, - [SMALL_STATE(5750)] = 27607, - [SMALL_STATE(5751)] = 27720, - [SMALL_STATE(5752)] = 27805, - [SMALL_STATE(5753)] = 27890, - [SMALL_STATE(5754)] = 27975, - [SMALL_STATE(5755)] = 28060, - [SMALL_STATE(5756)] = 28145, - [SMALL_STATE(5757)] = 28260, - [SMALL_STATE(5758)] = 28351, - [SMALL_STATE(5759)] = 28440, - [SMALL_STATE(5760)] = 28529, - [SMALL_STATE(5761)] = 28618, - [SMALL_STATE(5762)] = 28705, - [SMALL_STATE(5763)] = 28794, - [SMALL_STATE(5764)] = 28909, - [SMALL_STATE(5765)] = 28994, - [SMALL_STATE(5766)] = 29079, - [SMALL_STATE(5767)] = 29164, - [SMALL_STATE(5768)] = 29249, - [SMALL_STATE(5769)] = 29334, - [SMALL_STATE(5770)] = 29419, - [SMALL_STATE(5771)] = 29504, - [SMALL_STATE(5772)] = 29589, - [SMALL_STATE(5773)] = 29704, - [SMALL_STATE(5774)] = 29789, - [SMALL_STATE(5775)] = 29874, - [SMALL_STATE(5776)] = 29959, - [SMALL_STATE(5777)] = 30044, - [SMALL_STATE(5778)] = 30129, - [SMALL_STATE(5779)] = 30214, - [SMALL_STATE(5780)] = 30299, - [SMALL_STATE(5781)] = 30388, - [SMALL_STATE(5782)] = 30475, - [SMALL_STATE(5783)] = 30560, - [SMALL_STATE(5784)] = 30647, - [SMALL_STATE(5785)] = 30762, - [SMALL_STATE(5786)] = 30849, - [SMALL_STATE(5787)] = 30934, - [SMALL_STATE(5788)] = 31019, - [SMALL_STATE(5789)] = 31104, - [SMALL_STATE(5790)] = 31189, - [SMALL_STATE(5791)] = 31274, - [SMALL_STATE(5792)] = 31359, - [SMALL_STATE(5793)] = 31444, - [SMALL_STATE(5794)] = 31533, - [SMALL_STATE(5795)] = 31622, - [SMALL_STATE(5796)] = 31707, - [SMALL_STATE(5797)] = 31791, - [SMALL_STATE(5798)] = 31877, - [SMALL_STATE(5799)] = 31963, - [SMALL_STATE(5800)] = 32049, - [SMALL_STATE(5801)] = 32137, - [SMALL_STATE(5802)] = 32229, - [SMALL_STATE(5803)] = 32335, - [SMALL_STATE(5804)] = 32437, - [SMALL_STATE(5805)] = 32539, - [SMALL_STATE(5806)] = 32641, - [SMALL_STATE(5807)] = 32743, - [SMALL_STATE(5808)] = 32831, - [SMALL_STATE(5809)] = 32933, - [SMALL_STATE(5810)] = 33025, - [SMALL_STATE(5811)] = 33111, - [SMALL_STATE(5812)] = 33213, - [SMALL_STATE(5813)] = 33315, - [SMALL_STATE(5814)] = 33401, - [SMALL_STATE(5815)] = 33503, - [SMALL_STATE(5816)] = 33615, - [SMALL_STATE(5817)] = 33703, - [SMALL_STATE(5818)] = 33791, - [SMALL_STATE(5819)] = 33879, - [SMALL_STATE(5820)] = 33967, - [SMALL_STATE(5821)] = 34053, - [SMALL_STATE(5822)] = 34155, - [SMALL_STATE(5823)] = 34249, - [SMALL_STATE(5824)] = 34351, - [SMALL_STATE(5825)] = 34453, - [SMALL_STATE(5826)] = 34555, - [SMALL_STATE(5827)] = 34657, - [SMALL_STATE(5828)] = 34759, - [SMALL_STATE(5829)] = 34871, - [SMALL_STATE(5830)] = 34973, - [SMALL_STATE(5831)] = 35061, - [SMALL_STATE(5832)] = 35173, - [SMALL_STATE(5833)] = 35275, - [SMALL_STATE(5834)] = 35381, - [SMALL_STATE(5835)] = 35469, - [SMALL_STATE(5836)] = 35555, - [SMALL_STATE(5837)] = 35657, - [SMALL_STATE(5838)] = 35759, - [SMALL_STATE(5839)] = 35861, - [SMALL_STATE(5840)] = 35947, - [SMALL_STATE(5841)] = 36049, - [SMALL_STATE(5842)] = 36137, - [SMALL_STATE(5843)] = 36225, - [SMALL_STATE(5844)] = 36313, - [SMALL_STATE(5845)] = 36415, - [SMALL_STATE(5846)] = 36503, - [SMALL_STATE(5847)] = 36605, - [SMALL_STATE(5848)] = 36707, - [SMALL_STATE(5849)] = 36809, - [SMALL_STATE(5850)] = 36911, - [SMALL_STATE(5851)] = 36999, - [SMALL_STATE(5852)] = 37101, - [SMALL_STATE(5853)] = 37187, - [SMALL_STATE(5854)] = 37275, - [SMALL_STATE(5855)] = 37377, - [SMALL_STATE(5856)] = 37465, - [SMALL_STATE(5857)] = 37567, - [SMALL_STATE(5858)] = 37669, - [SMALL_STATE(5859)] = 37757, - [SMALL_STATE(5860)] = 37845, - [SMALL_STATE(5861)] = 37955, - [SMALL_STATE(5862)] = 38057, - [SMALL_STATE(5863)] = 38145, - [SMALL_STATE(5864)] = 38231, - [SMALL_STATE(5865)] = 38319, - [SMALL_STATE(5866)] = 38421, - [SMALL_STATE(5867)] = 38509, - [SMALL_STATE(5868)] = 38597, - [SMALL_STATE(5869)] = 38699, - [SMALL_STATE(5870)] = 38801, - [SMALL_STATE(5871)] = 38903, - [SMALL_STATE(5872)] = 39005, - [SMALL_STATE(5873)] = 39107, - [SMALL_STATE(5874)] = 39195, - [SMALL_STATE(5875)] = 39297, - [SMALL_STATE(5876)] = 39399, - [SMALL_STATE(5877)] = 39487, - [SMALL_STATE(5878)] = 39573, - [SMALL_STATE(5879)] = 39661, - [SMALL_STATE(5880)] = 39749, - [SMALL_STATE(5881)] = 39837, - [SMALL_STATE(5882)] = 39939, - [SMALL_STATE(5883)] = 40033, - [SMALL_STATE(5884)] = 40135, - [SMALL_STATE(5885)] = 40223, - [SMALL_STATE(5886)] = 40325, - [SMALL_STATE(5887)] = 40413, - [SMALL_STATE(5888)] = 40515, - [SMALL_STATE(5889)] = 40602, - [SMALL_STATE(5890)] = 40687, - [SMALL_STATE(5891)] = 40770, - [SMALL_STATE(5892)] = 40857, - [SMALL_STATE(5893)] = 40942, - [SMALL_STATE(5894)] = 41029, - [SMALL_STATE(5895)] = 41116, - [SMALL_STATE(5896)] = 41199, - [SMALL_STATE(5897)] = 41290, - [SMALL_STATE(5898)] = 41377, - [SMALL_STATE(5899)] = 41460, - [SMALL_STATE(5900)] = 41543, - [SMALL_STATE(5901)] = 41630, - [SMALL_STATE(5902)] = 41715, - [SMALL_STATE(5903)] = 41804, - [SMALL_STATE(5904)] = 41891, - [SMALL_STATE(5905)] = 41982, - [SMALL_STATE(5906)] = 42067, - [SMALL_STATE(5907)] = 42174, - [SMALL_STATE(5908)] = 42281, - [SMALL_STATE(5909)] = 42368, - [SMALL_STATE(5910)] = 42459, - [SMALL_STATE(5911)] = 42546, - [SMALL_STATE(5912)] = 42631, - [SMALL_STATE(5913)] = 42716, - [SMALL_STATE(5914)] = 42823, - [SMALL_STATE(5915)] = 42906, - [SMALL_STATE(5916)] = 42991, - [SMALL_STATE(5917)] = 43074, - [SMALL_STATE(5918)] = 43159, - [SMALL_STATE(5919)] = 43244, - [SMALL_STATE(5920)] = 43331, - [SMALL_STATE(5921)] = 43418, - [SMALL_STATE(5922)] = 43505, - [SMALL_STATE(5923)] = 43612, - [SMALL_STATE(5924)] = 43697, - [SMALL_STATE(5925)] = 43784, - [SMALL_STATE(5926)] = 43871, - [SMALL_STATE(5927)] = 43964, - [SMALL_STATE(5928)] = 44047, - [SMALL_STATE(5929)] = 44130, - [SMALL_STATE(5930)] = 44215, - [SMALL_STATE(5931)] = 44314, - [SMALL_STATE(5932)] = 44399, - [SMALL_STATE(5933)] = 44485, - [SMALL_STATE(5934)] = 44585, - [SMALL_STATE(5935)] = 44685, - [SMALL_STATE(5936)] = 44789, - [SMALL_STATE(5937)] = 44875, - [SMALL_STATE(5938)] = 44961, - [SMALL_STATE(5939)] = 45045, - [SMALL_STATE(5940)] = 45131, - [SMALL_STATE(5941)] = 45217, - [SMALL_STATE(5942)] = 45301, - [SMALL_STATE(5943)] = 45387, - [SMALL_STATE(5944)] = 45471, - [SMALL_STATE(5945)] = 45557, - [SMALL_STATE(5946)] = 45643, - [SMALL_STATE(5947)] = 45729, - [SMALL_STATE(5948)] = 45815, - [SMALL_STATE(5949)] = 45907, - [SMALL_STATE(5950)] = 45999, - [SMALL_STATE(5951)] = 46083, - [SMALL_STATE(5952)] = 46167, - [SMALL_STATE(5953)] = 46251, - [SMALL_STATE(5954)] = 46335, - [SMALL_STATE(5955)] = 46421, - [SMALL_STATE(5956)] = 46507, - [SMALL_STATE(5957)] = 46593, - [SMALL_STATE(5958)] = 46677, - [SMALL_STATE(5959)] = 46763, - [SMALL_STATE(5960)] = 46847, - [SMALL_STATE(5961)] = 46931, - [SMALL_STATE(5962)] = 47015, - [SMALL_STATE(5963)] = 47099, - [SMALL_STATE(5964)] = 47203, - [SMALL_STATE(5965)] = 47307, - [SMALL_STATE(5966)] = 47393, - [SMALL_STATE(5967)] = 47479, - [SMALL_STATE(5968)] = 47565, - [SMALL_STATE(5969)] = 47651, - [SMALL_STATE(5970)] = 47737, - [SMALL_STATE(5971)] = 47823, - [SMALL_STATE(5972)] = 47909, - [SMALL_STATE(5973)] = 48001, - [SMALL_STATE(5974)] = 48085, - [SMALL_STATE(5975)] = 48175, - [SMALL_STATE(5976)] = 48261, - [SMALL_STATE(5977)] = 48345, - [SMALL_STATE(5978)] = 48431, - [SMALL_STATE(5979)] = 48517, - [SMALL_STATE(5980)] = 48603, - [SMALL_STATE(5981)] = 48689, - [SMALL_STATE(5982)] = 48773, - [SMALL_STATE(5983)] = 48859, - [SMALL_STATE(5984)] = 48951, - [SMALL_STATE(5985)] = 49037, - [SMALL_STATE(5986)] = 49123, - [SMALL_STATE(5987)] = 49209, - [SMALL_STATE(5988)] = 49309, - [SMALL_STATE(5989)] = 49401, - [SMALL_STATE(5990)] = 49485, - [SMALL_STATE(5991)] = 49577, - [SMALL_STATE(5992)] = 49661, - [SMALL_STATE(5993)] = 49747, - [SMALL_STATE(5994)] = 49847, - [SMALL_STATE(5995)] = 49941, - [SMALL_STATE(5996)] = 50027, - [SMALL_STATE(5997)] = 50118, - [SMALL_STATE(5998)] = 50219, - [SMALL_STATE(5999)] = 50320, - [SMALL_STATE(6000)] = 50411, - [SMALL_STATE(6001)] = 50512, - [SMALL_STATE(6002)] = 50603, - [SMALL_STATE(6003)] = 50702, - [SMALL_STATE(6004)] = 50793, - [SMALL_STATE(6005)] = 50894, - [SMALL_STATE(6006)] = 50985, - [SMALL_STATE(6007)] = 51076, - [SMALL_STATE(6008)] = 51177, - [SMALL_STATE(6009)] = 51276, - [SMALL_STATE(6010)] = 51359, - [SMALL_STATE(6011)] = 51450, - [SMALL_STATE(6012)] = 51541, - [SMALL_STATE(6013)] = 51642, - [SMALL_STATE(6014)] = 51733, - [SMALL_STATE(6015)] = 51834, - [SMALL_STATE(6016)] = 51929, - [SMALL_STATE(6017)] = 52020, - [SMALL_STATE(6018)] = 52121, - [SMALL_STATE(6019)] = 52220, - [SMALL_STATE(6020)] = 52318, - [SMALL_STATE(6021)] = 52416, - [SMALL_STATE(6022)] = 52514, - [SMALL_STATE(6023)] = 52612, - [SMALL_STATE(6024)] = 52704, - [SMALL_STATE(6025)] = 52800, - [SMALL_STATE(6026)] = 52888, - [SMALL_STATE(6027)] = 52984, - [SMALL_STATE(6028)] = 53078, - [SMALL_STATE(6029)] = 53174, - [SMALL_STATE(6030)] = 53256, - [SMALL_STATE(6031)] = 53344, - [SMALL_STATE(6032)] = 53442, - [SMALL_STATE(6033)] = 53540, - [SMALL_STATE(6034)] = 53638, - [SMALL_STATE(6035)] = 53740, - [SMALL_STATE(6036)] = 53834, - [SMALL_STATE(6037)] = 53926, - [SMALL_STATE(6038)] = 54008, - [SMALL_STATE(6039)] = 54104, - [SMALL_STATE(6040)] = 54202, - [SMALL_STATE(6041)] = 54290, - [SMALL_STATE(6042)] = 54386, - [SMALL_STATE(6043)] = 54472, - [SMALL_STATE(6044)] = 54572, - [SMALL_STATE(6045)] = 54670, - [SMALL_STATE(6046)] = 54768, - [SMALL_STATE(6047)] = 54864, - [SMALL_STATE(6048)] = 54946, - [SMALL_STATE(6049)] = 55041, - [SMALL_STATE(6050)] = 55136, - [SMALL_STATE(6051)] = 55231, - [SMALL_STATE(6052)] = 55326, - [SMALL_STATE(6053)] = 55421, - [SMALL_STATE(6054)] = 55516, - [SMALL_STATE(6055)] = 55611, - [SMALL_STATE(6056)] = 55706, - [SMALL_STATE(6057)] = 55801, - [SMALL_STATE(6058)] = 55896, - [SMALL_STATE(6059)] = 55983, - [SMALL_STATE(6060)] = 56078, - [SMALL_STATE(6061)] = 56173, - [SMALL_STATE(6062)] = 56254, - [SMALL_STATE(6063)] = 56349, - [SMALL_STATE(6064)] = 56444, - [SMALL_STATE(6065)] = 56539, - [SMALL_STATE(6066)] = 56620, - [SMALL_STATE(6067)] = 56715, - [SMALL_STATE(6068)] = 56810, - [SMALL_STATE(6069)] = 56905, - [SMALL_STATE(6070)] = 57000, - [SMALL_STATE(6071)] = 57095, - [SMALL_STATE(6072)] = 57190, - [SMALL_STATE(6073)] = 57285, - [SMALL_STATE(6074)] = 57380, - [SMALL_STATE(6075)] = 57475, - [SMALL_STATE(6076)] = 57570, - [SMALL_STATE(6077)] = 57662, - [SMALL_STATE(6078)] = 57754, - [SMALL_STATE(6079)] = 57846, - [SMALL_STATE(6080)] = 57938, - [SMALL_STATE(6081)] = 58030, - [SMALL_STATE(6082)] = 58112, - [SMALL_STATE(6083)] = 58198, - [SMALL_STATE(6084)] = 58292, - [SMALL_STATE(6085)] = 58386, - [SMALL_STATE(6086)] = 58478, - [SMALL_STATE(6087)] = 58570, - [SMALL_STATE(6088)] = 58656, - [SMALL_STATE(6089)] = 58748, - [SMALL_STATE(6090)] = 58834, - [SMALL_STATE(6091)] = 58926, - [SMALL_STATE(6092)] = 59004, - [SMALL_STATE(6093)] = 59096, - [SMALL_STATE(6094)] = 59189, - [SMALL_STATE(6095)] = 59282, - [SMALL_STATE(6096)] = 59375, - [SMALL_STATE(6097)] = 59468, - [SMALL_STATE(6098)] = 59561, - [SMALL_STATE(6099)] = 59654, - [SMALL_STATE(6100)] = 59747, - [SMALL_STATE(6101)] = 59840, - [SMALL_STATE(6102)] = 59917, - [SMALL_STATE(6103)] = 60010, - [SMALL_STATE(6104)] = 60103, - [SMALL_STATE(6105)] = 60196, - [SMALL_STATE(6106)] = 60289, - [SMALL_STATE(6107)] = 60382, - [SMALL_STATE(6108)] = 60475, - [SMALL_STATE(6109)] = 60568, - [SMALL_STATE(6110)] = 60653, - [SMALL_STATE(6111)] = 60746, - [SMALL_STATE(6112)] = 60839, - [SMALL_STATE(6113)] = 60932, - [SMALL_STATE(6114)] = 61025, - [SMALL_STATE(6115)] = 61118, - [SMALL_STATE(6116)] = 61197, - [SMALL_STATE(6117)] = 61290, - [SMALL_STATE(6118)] = 61383, - [SMALL_STATE(6119)] = 61476, - [SMALL_STATE(6120)] = 61569, - [SMALL_STATE(6121)] = 61662, - [SMALL_STATE(6122)] = 61755, - [SMALL_STATE(6123)] = 61848, - [SMALL_STATE(6124)] = 61941, - [SMALL_STATE(6125)] = 62034, - [SMALL_STATE(6126)] = 62127, - [SMALL_STATE(6127)] = 62220, - [SMALL_STATE(6128)] = 62305, - [SMALL_STATE(6129)] = 62382, - [SMALL_STATE(6130)] = 62475, - [SMALL_STATE(6131)] = 62552, - [SMALL_STATE(6132)] = 62629, - [SMALL_STATE(6133)] = 62706, - [SMALL_STATE(6134)] = 62799, - [SMALL_STATE(6135)] = 62876, - [SMALL_STATE(6136)] = 62969, - [SMALL_STATE(6137)] = 63062, - [SMALL_STATE(6138)] = 63151, - [SMALL_STATE(6139)] = 63240, - [SMALL_STATE(6140)] = 63333, - [SMALL_STATE(6141)] = 63426, - [SMALL_STATE(6142)] = 63505, - [SMALL_STATE(6143)] = 63598, - [SMALL_STATE(6144)] = 63691, - [SMALL_STATE(6145)] = 63784, - [SMALL_STATE(6146)] = 63877, - [SMALL_STATE(6147)] = 63970, - [SMALL_STATE(6148)] = 64063, - [SMALL_STATE(6149)] = 64156, - [SMALL_STATE(6150)] = 64249, - [SMALL_STATE(6151)] = 64342, - [SMALL_STATE(6152)] = 64435, - [SMALL_STATE(6153)] = 64524, - [SMALL_STATE(6154)] = 64617, - [SMALL_STATE(6155)] = 64710, - [SMALL_STATE(6156)] = 64787, - [SMALL_STATE(6157)] = 64880, - [SMALL_STATE(6158)] = 64973, - [SMALL_STATE(6159)] = 65066, - [SMALL_STATE(6160)] = 65159, - [SMALL_STATE(6161)] = 65252, - [SMALL_STATE(6162)] = 65341, - [SMALL_STATE(6163)] = 65434, - [SMALL_STATE(6164)] = 65527, - [SMALL_STATE(6165)] = 65620, - [SMALL_STATE(6166)] = 65713, - [SMALL_STATE(6167)] = 65802, - [SMALL_STATE(6168)] = 65895, - [SMALL_STATE(6169)] = 65972, - [SMALL_STATE(6170)] = 66058, - [SMALL_STATE(6171)] = 66144, - [SMALL_STATE(6172)] = 66230, - [SMALL_STATE(6173)] = 66316, - [SMALL_STATE(6174)] = 66402, - [SMALL_STATE(6175)] = 66490, - [SMALL_STATE(6176)] = 66576, - [SMALL_STATE(6177)] = 66662, - [SMALL_STATE(6178)] = 66748, - [SMALL_STATE(6179)] = 66834, - [SMALL_STATE(6180)] = 66920, - [SMALL_STATE(6181)] = 67006, - [SMALL_STATE(6182)] = 67092, - [SMALL_STATE(6183)] = 67178, - [SMALL_STATE(6184)] = 67268, - [SMALL_STATE(6185)] = 67354, - [SMALL_STATE(6186)] = 67444, - [SMALL_STATE(6187)] = 67528, - [SMALL_STATE(6188)] = 67614, - [SMALL_STATE(6189)] = 67698, - [SMALL_STATE(6190)] = 67784, - [SMALL_STATE(6191)] = 67870, - [SMALL_STATE(6192)] = 67960, - [SMALL_STATE(6193)] = 68046, - [SMALL_STATE(6194)] = 68130, - [SMALL_STATE(6195)] = 68206, - [SMALL_STATE(6196)] = 68292, - [SMALL_STATE(6197)] = 68378, - [SMALL_STATE(6198)] = 68464, - [SMALL_STATE(6199)] = 68548, - [SMALL_STATE(6200)] = 68634, - [SMALL_STATE(6201)] = 68720, - [SMALL_STATE(6202)] = 68796, - [SMALL_STATE(6203)] = 68882, - [SMALL_STATE(6204)] = 68958, - [SMALL_STATE(6205)] = 69044, - [SMALL_STATE(6206)] = 69130, - [SMALL_STATE(6207)] = 69216, - [SMALL_STATE(6208)] = 69300, - [SMALL_STATE(6209)] = 69390, - [SMALL_STATE(6210)] = 69474, - [SMALL_STATE(6211)] = 69561, - [SMALL_STATE(6212)] = 69648, - [SMALL_STATE(6213)] = 69735, - [SMALL_STATE(6214)] = 69822, - [SMALL_STATE(6215)] = 69909, - [SMALL_STATE(6216)] = 69996, - [SMALL_STATE(6217)] = 70083, - [SMALL_STATE(6218)] = 70170, - [SMALL_STATE(6219)] = 70257, - [SMALL_STATE(6220)] = 70344, - [SMALL_STATE(6221)] = 70431, - [SMALL_STATE(6222)] = 70518, - [SMALL_STATE(6223)] = 70605, - [SMALL_STATE(6224)] = 70689, - [SMALL_STATE(6225)] = 70773, - [SMALL_STATE(6226)] = 70857, - [SMALL_STATE(6227)] = 70941, - [SMALL_STATE(6228)] = 71025, - [SMALL_STATE(6229)] = 71109, - [SMALL_STATE(6230)] = 71193, - [SMALL_STATE(6231)] = 71277, - [SMALL_STATE(6232)] = 71361, - [SMALL_STATE(6233)] = 71445, - [SMALL_STATE(6234)] = 71529, - [SMALL_STATE(6235)] = 71613, - [SMALL_STATE(6236)] = 71697, - [SMALL_STATE(6237)] = 71781, - [SMALL_STATE(6238)] = 71863, - [SMALL_STATE(6239)] = 71947, - [SMALL_STATE(6240)] = 72031, - [SMALL_STATE(6241)] = 72113, - [SMALL_STATE(6242)] = 72197, - [SMALL_STATE(6243)] = 72281, - [SMALL_STATE(6244)] = 72365, - [SMALL_STATE(6245)] = 72439, - [SMALL_STATE(6246)] = 72523, - [SMALL_STATE(6247)] = 72607, - [SMALL_STATE(6248)] = 72691, - [SMALL_STATE(6249)] = 72765, - [SMALL_STATE(6250)] = 72849, - [SMALL_STATE(6251)] = 72933, - [SMALL_STATE(6252)] = 73017, - [SMALL_STATE(6253)] = 73101, - [SMALL_STATE(6254)] = 73185, - [SMALL_STATE(6255)] = 73269, - [SMALL_STATE(6256)] = 73353, - [SMALL_STATE(6257)] = 73437, - [SMALL_STATE(6258)] = 73521, - [SMALL_STATE(6259)] = 73605, - [SMALL_STATE(6260)] = 73689, - [SMALL_STATE(6261)] = 73773, - [SMALL_STATE(6262)] = 73857, - [SMALL_STATE(6263)] = 73931, - [SMALL_STATE(6264)] = 74005, - [SMALL_STATE(6265)] = 74089, - [SMALL_STATE(6266)] = 74173, - [SMALL_STATE(6267)] = 74257, - [SMALL_STATE(6268)] = 74341, - [SMALL_STATE(6269)] = 74425, - [SMALL_STATE(6270)] = 74509, - [SMALL_STATE(6271)] = 74593, - [SMALL_STATE(6272)] = 74677, - [SMALL_STATE(6273)] = 74759, - [SMALL_STATE(6274)] = 74843, - [SMALL_STATE(6275)] = 74927, - [SMALL_STATE(6276)] = 75011, - [SMALL_STATE(6277)] = 75095, - [SMALL_STATE(6278)] = 75179, - [SMALL_STATE(6279)] = 75263, - [SMALL_STATE(6280)] = 75347, - [SMALL_STATE(6281)] = 75431, - [SMALL_STATE(6282)] = 75515, - [SMALL_STATE(6283)] = 75599, - [SMALL_STATE(6284)] = 75683, - [SMALL_STATE(6285)] = 75767, - [SMALL_STATE(6286)] = 75851, - [SMALL_STATE(6287)] = 75935, - [SMALL_STATE(6288)] = 76019, - [SMALL_STATE(6289)] = 76101, - [SMALL_STATE(6290)] = 76185, - [SMALL_STATE(6291)] = 76269, - [SMALL_STATE(6292)] = 76353, - [SMALL_STATE(6293)] = 76437, - [SMALL_STATE(6294)] = 76521, - [SMALL_STATE(6295)] = 76605, - [SMALL_STATE(6296)] = 76689, - [SMALL_STATE(6297)] = 76773, - [SMALL_STATE(6298)] = 76857, - [SMALL_STATE(6299)] = 76941, - [SMALL_STATE(6300)] = 77025, - [SMALL_STATE(6301)] = 77109, - [SMALL_STATE(6302)] = 77193, - [SMALL_STATE(6303)] = 77277, - [SMALL_STATE(6304)] = 77359, - [SMALL_STATE(6305)] = 77443, - [SMALL_STATE(6306)] = 77525, - [SMALL_STATE(6307)] = 77609, - [SMALL_STATE(6308)] = 77693, - [SMALL_STATE(6309)] = 77775, - [SMALL_STATE(6310)] = 77859, - [SMALL_STATE(6311)] = 77943, - [SMALL_STATE(6312)] = 78027, - [SMALL_STATE(6313)] = 78109, - [SMALL_STATE(6314)] = 78193, - [SMALL_STATE(6315)] = 78277, - [SMALL_STATE(6316)] = 78361, - [SMALL_STATE(6317)] = 78445, - [SMALL_STATE(6318)] = 78529, - [SMALL_STATE(6319)] = 78605, - [SMALL_STATE(6320)] = 78689, - [SMALL_STATE(6321)] = 78773, - [SMALL_STATE(6322)] = 78857, - [SMALL_STATE(6323)] = 78941, - [SMALL_STATE(6324)] = 79025, - [SMALL_STATE(6325)] = 79109, - [SMALL_STATE(6326)] = 79193, - [SMALL_STATE(6327)] = 79277, - [SMALL_STATE(6328)] = 79361, - [SMALL_STATE(6329)] = 79445, - [SMALL_STATE(6330)] = 79529, - [SMALL_STATE(6331)] = 79613, - [SMALL_STATE(6332)] = 79697, - [SMALL_STATE(6333)] = 79771, - [SMALL_STATE(6334)] = 79845, - [SMALL_STATE(6335)] = 79929, - [SMALL_STATE(6336)] = 80013, - [SMALL_STATE(6337)] = 80097, - [SMALL_STATE(6338)] = 80181, - [SMALL_STATE(6339)] = 80265, - [SMALL_STATE(6340)] = 80349, - [SMALL_STATE(6341)] = 80433, - [SMALL_STATE(6342)] = 80517, - [SMALL_STATE(6343)] = 80601, - [SMALL_STATE(6344)] = 80685, - [SMALL_STATE(6345)] = 80769, - [SMALL_STATE(6346)] = 80851, - [SMALL_STATE(6347)] = 80935, - [SMALL_STATE(6348)] = 81019, - [SMALL_STATE(6349)] = 81103, - [SMALL_STATE(6350)] = 81187, - [SMALL_STATE(6351)] = 81271, - [SMALL_STATE(6352)] = 81355, - [SMALL_STATE(6353)] = 81439, - [SMALL_STATE(6354)] = 81523, - [SMALL_STATE(6355)] = 81607, - [SMALL_STATE(6356)] = 81691, - [SMALL_STATE(6357)] = 81775, - [SMALL_STATE(6358)] = 81856, - [SMALL_STATE(6359)] = 81931, - [SMALL_STATE(6360)] = 82006, - [SMALL_STATE(6361)] = 82087, - [SMALL_STATE(6362)] = 82168, - [SMALL_STATE(6363)] = 82249, - [SMALL_STATE(6364)] = 82330, - [SMALL_STATE(6365)] = 82408, - [SMALL_STATE(6366)] = 82486, - [SMALL_STATE(6367)] = 82564, - [SMALL_STATE(6368)] = 82642, - [SMALL_STATE(6369)] = 82720, - [SMALL_STATE(6370)] = 82798, - [SMALL_STATE(6371)] = 82876, - [SMALL_STATE(6372)] = 82954, - [SMALL_STATE(6373)] = 83032, - [SMALL_STATE(6374)] = 83110, - [SMALL_STATE(6375)] = 83188, - [SMALL_STATE(6376)] = 83266, - [SMALL_STATE(6377)] = 83344, - [SMALL_STATE(6378)] = 83422, - [SMALL_STATE(6379)] = 83500, - [SMALL_STATE(6380)] = 83578, - [SMALL_STATE(6381)] = 83656, - [SMALL_STATE(6382)] = 83734, - [SMALL_STATE(6383)] = 83812, - [SMALL_STATE(6384)] = 83890, - [SMALL_STATE(6385)] = 83968, - [SMALL_STATE(6386)] = 84046, - [SMALL_STATE(6387)] = 84124, - [SMALL_STATE(6388)] = 84202, - [SMALL_STATE(6389)] = 84280, - [SMALL_STATE(6390)] = 84358, - [SMALL_STATE(6391)] = 84436, - [SMALL_STATE(6392)] = 84514, - [SMALL_STATE(6393)] = 84592, - [SMALL_STATE(6394)] = 84670, - [SMALL_STATE(6395)] = 84748, - [SMALL_STATE(6396)] = 84826, - [SMALL_STATE(6397)] = 84904, - [SMALL_STATE(6398)] = 84982, - [SMALL_STATE(6399)] = 85060, - [SMALL_STATE(6400)] = 85138, - [SMALL_STATE(6401)] = 85216, - [SMALL_STATE(6402)] = 85294, - [SMALL_STATE(6403)] = 85372, - [SMALL_STATE(6404)] = 85450, - [SMALL_STATE(6405)] = 85528, - [SMALL_STATE(6406)] = 85606, - [SMALL_STATE(6407)] = 85684, - [SMALL_STATE(6408)] = 85762, - [SMALL_STATE(6409)] = 85840, - [SMALL_STATE(6410)] = 85918, - [SMALL_STATE(6411)] = 85996, - [SMALL_STATE(6412)] = 86068, - [SMALL_STATE(6413)] = 86146, - [SMALL_STATE(6414)] = 86224, - [SMALL_STATE(6415)] = 86302, - [SMALL_STATE(6416)] = 86380, - [SMALL_STATE(6417)] = 86458, - [SMALL_STATE(6418)] = 86536, - [SMALL_STATE(6419)] = 86614, - [SMALL_STATE(6420)] = 86692, - [SMALL_STATE(6421)] = 86770, - [SMALL_STATE(6422)] = 86848, - [SMALL_STATE(6423)] = 86926, - [SMALL_STATE(6424)] = 87004, - [SMALL_STATE(6425)] = 87082, - [SMALL_STATE(6426)] = 87160, - [SMALL_STATE(6427)] = 87238, - [SMALL_STATE(6428)] = 87316, - [SMALL_STATE(6429)] = 87394, - [SMALL_STATE(6430)] = 87472, - [SMALL_STATE(6431)] = 87550, - [SMALL_STATE(6432)] = 87628, - [SMALL_STATE(6433)] = 87706, - [SMALL_STATE(6434)] = 87784, - [SMALL_STATE(6435)] = 87856, - [SMALL_STATE(6436)] = 87928, - [SMALL_STATE(6437)] = 87998, - [SMALL_STATE(6438)] = 88070, - [SMALL_STATE(6439)] = 88142, - [SMALL_STATE(6440)] = 88214, - [SMALL_STATE(6441)] = 88286, - [SMALL_STATE(6442)] = 88355, - [SMALL_STATE(6443)] = 88424, - [SMALL_STATE(6444)] = 88493, - [SMALL_STATE(6445)] = 88562, - [SMALL_STATE(6446)] = 88631, - [SMALL_STATE(6447)] = 88700, - [SMALL_STATE(6448)] = 88788, - [SMALL_STATE(6449)] = 88876, - [SMALL_STATE(6450)] = 88964, - [SMALL_STATE(6451)] = 89052, - [SMALL_STATE(6452)] = 89140, - [SMALL_STATE(6453)] = 89228, - [SMALL_STATE(6454)] = 89316, - [SMALL_STATE(6455)] = 89404, - [SMALL_STATE(6456)] = 89492, - [SMALL_STATE(6457)] = 89580, - [SMALL_STATE(6458)] = 89668, - [SMALL_STATE(6459)] = 89756, - [SMALL_STATE(6460)] = 89844, - [SMALL_STATE(6461)] = 89932, - [SMALL_STATE(6462)] = 90020, - [SMALL_STATE(6463)] = 90108, - [SMALL_STATE(6464)] = 90196, - [SMALL_STATE(6465)] = 90284, - [SMALL_STATE(6466)] = 90372, - [SMALL_STATE(6467)] = 90460, - [SMALL_STATE(6468)] = 90548, - [SMALL_STATE(6469)] = 90636, - [SMALL_STATE(6470)] = 90724, - [SMALL_STATE(6471)] = 90812, - [SMALL_STATE(6472)] = 90900, - [SMALL_STATE(6473)] = 90988, - [SMALL_STATE(6474)] = 91076, - [SMALL_STATE(6475)] = 91164, - [SMALL_STATE(6476)] = 91252, - [SMALL_STATE(6477)] = 91340, - [SMALL_STATE(6478)] = 91428, - [SMALL_STATE(6479)] = 91516, - [SMALL_STATE(6480)] = 91604, - [SMALL_STATE(6481)] = 91692, - [SMALL_STATE(6482)] = 91780, - [SMALL_STATE(6483)] = 91868, - [SMALL_STATE(6484)] = 91956, - [SMALL_STATE(6485)] = 92044, - [SMALL_STATE(6486)] = 92132, - [SMALL_STATE(6487)] = 92220, - [SMALL_STATE(6488)] = 92305, - [SMALL_STATE(6489)] = 92390, - [SMALL_STATE(6490)] = 92475, - [SMALL_STATE(6491)] = 92560, - [SMALL_STATE(6492)] = 92645, - [SMALL_STATE(6493)] = 92730, - [SMALL_STATE(6494)] = 92815, - [SMALL_STATE(6495)] = 92900, - [SMALL_STATE(6496)] = 92985, - [SMALL_STATE(6497)] = 93070, - [SMALL_STATE(6498)] = 93155, - [SMALL_STATE(6499)] = 93240, - [SMALL_STATE(6500)] = 93325, - [SMALL_STATE(6501)] = 93410, - [SMALL_STATE(6502)] = 93495, - [SMALL_STATE(6503)] = 93580, - [SMALL_STATE(6504)] = 93665, - [SMALL_STATE(6505)] = 93750, - [SMALL_STATE(6506)] = 93835, - [SMALL_STATE(6507)] = 93920, - [SMALL_STATE(6508)] = 94005, - [SMALL_STATE(6509)] = 94090, - [SMALL_STATE(6510)] = 94175, - [SMALL_STATE(6511)] = 94260, - [SMALL_STATE(6512)] = 94345, - [SMALL_STATE(6513)] = 94430, - [SMALL_STATE(6514)] = 94515, - [SMALL_STATE(6515)] = 94600, - [SMALL_STATE(6516)] = 94685, - [SMALL_STATE(6517)] = 94770, - [SMALL_STATE(6518)] = 94855, - [SMALL_STATE(6519)] = 94940, - [SMALL_STATE(6520)] = 95025, - [SMALL_STATE(6521)] = 95110, - [SMALL_STATE(6522)] = 95195, - [SMALL_STATE(6523)] = 95280, - [SMALL_STATE(6524)] = 95365, - [SMALL_STATE(6525)] = 95450, - [SMALL_STATE(6526)] = 95535, - [SMALL_STATE(6527)] = 95620, - [SMALL_STATE(6528)] = 95705, - [SMALL_STATE(6529)] = 95790, - [SMALL_STATE(6530)] = 95875, - [SMALL_STATE(6531)] = 95960, - [SMALL_STATE(6532)] = 96045, - [SMALL_STATE(6533)] = 96130, - [SMALL_STATE(6534)] = 96215, - [SMALL_STATE(6535)] = 96300, - [SMALL_STATE(6536)] = 96385, - [SMALL_STATE(6537)] = 96470, - [SMALL_STATE(6538)] = 96555, - [SMALL_STATE(6539)] = 96640, - [SMALL_STATE(6540)] = 96725, - [SMALL_STATE(6541)] = 96810, - [SMALL_STATE(6542)] = 96895, - [SMALL_STATE(6543)] = 96980, - [SMALL_STATE(6544)] = 97065, - [SMALL_STATE(6545)] = 97150, - [SMALL_STATE(6546)] = 97235, - [SMALL_STATE(6547)] = 97320, - [SMALL_STATE(6548)] = 97405, - [SMALL_STATE(6549)] = 97490, - [SMALL_STATE(6550)] = 97575, - [SMALL_STATE(6551)] = 97660, - [SMALL_STATE(6552)] = 97745, - [SMALL_STATE(6553)] = 97830, - [SMALL_STATE(6554)] = 97918, - [SMALL_STATE(6555)] = 98006, - [SMALL_STATE(6556)] = 98094, - [SMALL_STATE(6557)] = 98182, - [SMALL_STATE(6558)] = 98254, - [SMALL_STATE(6559)] = 98328, - [SMALL_STATE(6560)] = 98392, - [SMALL_STATE(6561)] = 98466, - [SMALL_STATE(6562)] = 98540, - [SMALL_STATE(6563)] = 98614, - [SMALL_STATE(6564)] = 98688, - [SMALL_STATE(6565)] = 98762, - [SMALL_STATE(6566)] = 98836, - [SMALL_STATE(6567)] = 98910, - [SMALL_STATE(6568)] = 98984, - [SMALL_STATE(6569)] = 99058, - [SMALL_STATE(6570)] = 99132, - [SMALL_STATE(6571)] = 99206, - [SMALL_STATE(6572)] = 99280, - [SMALL_STATE(6573)] = 99354, - [SMALL_STATE(6574)] = 99429, - [SMALL_STATE(6575)] = 99500, - [SMALL_STATE(6576)] = 99571, - [SMALL_STATE(6577)] = 99642, - [SMALL_STATE(6578)] = 99713, - [SMALL_STATE(6579)] = 99784, - [SMALL_STATE(6580)] = 99843, - [SMALL_STATE(6581)] = 99918, - [SMALL_STATE(6582)] = 99993, - [SMALL_STATE(6583)] = 100050, - [SMALL_STATE(6584)] = 100109, - [SMALL_STATE(6585)] = 100180, - [SMALL_STATE(6586)] = 100255, - [SMALL_STATE(6587)] = 100326, - [SMALL_STATE(6588)] = 100397, - [SMALL_STATE(6589)] = 100459, - [SMALL_STATE(6590)] = 100529, - [SMALL_STATE(6591)] = 100586, - [SMALL_STATE(6592)] = 100655, - [SMALL_STATE(6593)] = 100724, - [SMALL_STATE(6594)] = 100793, - [SMALL_STATE(6595)] = 100848, - [SMALL_STATE(6596)] = 100917, - [SMALL_STATE(6597)] = 100986, - [SMALL_STATE(6598)] = 101055, - [SMALL_STATE(6599)] = 101124, - [SMALL_STATE(6600)] = 101193, - [SMALL_STATE(6601)] = 101262, - [SMALL_STATE(6602)] = 101331, - [SMALL_STATE(6603)] = 101400, - [SMALL_STATE(6604)] = 101469, - [SMALL_STATE(6605)] = 101530, - [SMALL_STATE(6606)] = 101599, - [SMALL_STATE(6607)] = 101668, - [SMALL_STATE(6608)] = 101737, - [SMALL_STATE(6609)] = 101806, - [SMALL_STATE(6610)] = 101875, - [SMALL_STATE(6611)] = 101944, - [SMALL_STATE(6612)] = 102013, - [SMALL_STATE(6613)] = 102082, - [SMALL_STATE(6614)] = 102151, - [SMALL_STATE(6615)] = 102220, - [SMALL_STATE(6616)] = 102281, - [SMALL_STATE(6617)] = 102350, - [SMALL_STATE(6618)] = 102419, - [SMALL_STATE(6619)] = 102488, - [SMALL_STATE(6620)] = 102557, - [SMALL_STATE(6621)] = 102614, - [SMALL_STATE(6622)] = 102683, - [SMALL_STATE(6623)] = 102752, - [SMALL_STATE(6624)] = 102819, - [SMALL_STATE(6625)] = 102888, - [SMALL_STATE(6626)] = 102957, - [SMALL_STATE(6627)] = 103026, - [SMALL_STATE(6628)] = 103095, - [SMALL_STATE(6629)] = 103164, - [SMALL_STATE(6630)] = 103233, - [SMALL_STATE(6631)] = 103302, - [SMALL_STATE(6632)] = 103359, - [SMALL_STATE(6633)] = 103418, - [SMALL_STATE(6634)] = 103487, - [SMALL_STATE(6635)] = 103548, - [SMALL_STATE(6636)] = 103617, - [SMALL_STATE(6637)] = 103686, - [SMALL_STATE(6638)] = 103755, - [SMALL_STATE(6639)] = 103824, - [SMALL_STATE(6640)] = 103876, - [SMALL_STATE(6641)] = 103928, - [SMALL_STATE(6642)] = 103994, - [SMALL_STATE(6643)] = 104056, - [SMALL_STATE(6644)] = 104122, - [SMALL_STATE(6645)] = 104188, - [SMALL_STATE(6646)] = 104254, - [SMALL_STATE(6647)] = 104320, - [SMALL_STATE(6648)] = 104386, - [SMALL_STATE(6649)] = 104442, - [SMALL_STATE(6650)] = 104508, - [SMALL_STATE(6651)] = 104568, - [SMALL_STATE(6652)] = 104623, - [SMALL_STATE(6653)] = 104684, - [SMALL_STATE(6654)] = 104739, - [SMALL_STATE(6655)] = 104800, - [SMALL_STATE(6656)] = 104861, - [SMALL_STATE(6657)] = 104922, - [SMALL_STATE(6658)] = 104983, - [SMALL_STATE(6659)] = 105044, - [SMALL_STATE(6660)] = 105105, - [SMALL_STATE(6661)] = 105166, - [SMALL_STATE(6662)] = 105227, - [SMALL_STATE(6663)] = 105288, - [SMALL_STATE(6664)] = 105349, - [SMALL_STATE(6665)] = 105410, - [SMALL_STATE(6666)] = 105471, - [SMALL_STATE(6667)] = 105522, - [SMALL_STATE(6668)] = 105583, - [SMALL_STATE(6669)] = 105644, - [SMALL_STATE(6670)] = 105695, - [SMALL_STATE(6671)] = 105746, - [SMALL_STATE(6672)] = 105807, - [SMALL_STATE(6673)] = 105868, - [SMALL_STATE(6674)] = 105919, - [SMALL_STATE(6675)] = 105980, - [SMALL_STATE(6676)] = 106041, - [SMALL_STATE(6677)] = 106102, - [SMALL_STATE(6678)] = 106163, - [SMALL_STATE(6679)] = 106216, - [SMALL_STATE(6680)] = 106271, - [SMALL_STATE(6681)] = 106326, - [SMALL_STATE(6682)] = 106379, - [SMALL_STATE(6683)] = 106440, - [SMALL_STATE(6684)] = 106501, - [SMALL_STATE(6685)] = 106562, - [SMALL_STATE(6686)] = 106623, - [SMALL_STATE(6687)] = 106684, - [SMALL_STATE(6688)] = 106745, - [SMALL_STATE(6689)] = 106806, - [SMALL_STATE(6690)] = 106867, - [SMALL_STATE(6691)] = 106918, - [SMALL_STATE(6692)] = 106979, - [SMALL_STATE(6693)] = 107030, - [SMALL_STATE(6694)] = 107091, - [SMALL_STATE(6695)] = 107142, - [SMALL_STATE(6696)] = 107203, - [SMALL_STATE(6697)] = 107264, - [SMALL_STATE(6698)] = 107325, - [SMALL_STATE(6699)] = 107384, - [SMALL_STATE(6700)] = 107443, - [SMALL_STATE(6701)] = 107494, - [SMALL_STATE(6702)] = 107555, - [SMALL_STATE(6703)] = 107616, - [SMALL_STATE(6704)] = 107677, - [SMALL_STATE(6705)] = 107738, - [SMALL_STATE(6706)] = 107789, - [SMALL_STATE(6707)] = 107839, - [SMALL_STATE(6708)] = 107899, - [SMALL_STATE(6709)] = 107959, - [SMALL_STATE(6710)] = 108019, - [SMALL_STATE(6711)] = 108079, - [SMALL_STATE(6712)] = 108139, - [SMALL_STATE(6713)] = 108197, - [SMALL_STATE(6714)] = 108257, - [SMALL_STATE(6715)] = 108317, - [SMALL_STATE(6716)] = 108377, - [SMALL_STATE(6717)] = 108431, - [SMALL_STATE(6718)] = 108481, - [SMALL_STATE(6719)] = 108541, - [SMALL_STATE(6720)] = 108593, - [SMALL_STATE(6721)] = 108653, - [SMALL_STATE(6722)] = 108703, - [SMALL_STATE(6723)] = 108761, - [SMALL_STATE(6724)] = 108815, - [SMALL_STATE(6725)] = 108867, - [SMALL_STATE(6726)] = 108927, - [SMALL_STATE(6727)] = 108987, - [SMALL_STATE(6728)] = 109047, - [SMALL_STATE(6729)] = 109107, - [SMALL_STATE(6730)] = 109157, - [SMALL_STATE(6731)] = 109217, - [SMALL_STATE(6732)] = 109277, - [SMALL_STATE(6733)] = 109337, - [SMALL_STATE(6734)] = 109397, - [SMALL_STATE(6735)] = 109457, - [SMALL_STATE(6736)] = 109517, - [SMALL_STATE(6737)] = 109577, - [SMALL_STATE(6738)] = 109637, - [SMALL_STATE(6739)] = 109697, - [SMALL_STATE(6740)] = 109757, - [SMALL_STATE(6741)] = 109807, - [SMALL_STATE(6742)] = 109867, - [SMALL_STATE(6743)] = 109927, - [SMALL_STATE(6744)] = 109987, - [SMALL_STATE(6745)] = 110039, - [SMALL_STATE(6746)] = 110099, - [SMALL_STATE(6747)] = 110157, - [SMALL_STATE(6748)] = 110217, - [SMALL_STATE(6749)] = 110277, - [SMALL_STATE(6750)] = 110335, - [SMALL_STATE(6751)] = 110385, - [SMALL_STATE(6752)] = 110445, - [SMALL_STATE(6753)] = 110495, - [SMALL_STATE(6754)] = 110555, - [SMALL_STATE(6755)] = 110615, - [SMALL_STATE(6756)] = 110673, - [SMALL_STATE(6757)] = 110727, - [SMALL_STATE(6758)] = 110785, - [SMALL_STATE(6759)] = 110845, - [SMALL_STATE(6760)] = 110903, - [SMALL_STATE(6761)] = 110959, - [SMALL_STATE(6762)] = 111019, - [SMALL_STATE(6763)] = 111075, - [SMALL_STATE(6764)] = 111135, - [SMALL_STATE(6765)] = 111189, - [SMALL_STATE(6766)] = 111245, - [SMALL_STATE(6767)] = 111303, - [SMALL_STATE(6768)] = 111363, - [SMALL_STATE(6769)] = 111417, - [SMALL_STATE(6770)] = 111475, - [SMALL_STATE(6771)] = 111535, - [SMALL_STATE(6772)] = 111595, - [SMALL_STATE(6773)] = 111655, - [SMALL_STATE(6774)] = 111715, - [SMALL_STATE(6775)] = 111775, - [SMALL_STATE(6776)] = 111835, - [SMALL_STATE(6777)] = 111895, - [SMALL_STATE(6778)] = 111955, - [SMALL_STATE(6779)] = 112005, - [SMALL_STATE(6780)] = 112057, - [SMALL_STATE(6781)] = 112117, - [SMALL_STATE(6782)] = 112172, - [SMALL_STATE(6783)] = 112229, - [SMALL_STATE(6784)] = 112286, - [SMALL_STATE(6785)] = 112343, - [SMALL_STATE(6786)] = 112396, - [SMALL_STATE(6787)] = 112453, - [SMALL_STATE(6788)] = 112508, - [SMALL_STATE(6789)] = 112563, - [SMALL_STATE(6790)] = 112618, - [SMALL_STATE(6791)] = 112673, - [SMALL_STATE(6792)] = 112728, - [SMALL_STATE(6793)] = 112783, - [SMALL_STATE(6794)] = 112838, - [SMALL_STATE(6795)] = 112893, - [SMALL_STATE(6796)] = 112948, - [SMALL_STATE(6797)] = 113005, - [SMALL_STATE(6798)] = 113062, - [SMALL_STATE(6799)] = 113119, - [SMALL_STATE(6800)] = 113174, - [SMALL_STATE(6801)] = 113227, - [SMALL_STATE(6802)] = 113282, - [SMALL_STATE(6803)] = 113339, - [SMALL_STATE(6804)] = 113396, - [SMALL_STATE(6805)] = 113453, - [SMALL_STATE(6806)] = 113508, - [SMALL_STATE(6807)] = 113559, - [SMALL_STATE(6808)] = 113610, - [SMALL_STATE(6809)] = 113665, - [SMALL_STATE(6810)] = 113720, - [SMALL_STATE(6811)] = 113769, - [SMALL_STATE(6812)] = 113824, - [SMALL_STATE(6813)] = 113879, - [SMALL_STATE(6814)] = 113934, - [SMALL_STATE(6815)] = 113983, - [SMALL_STATE(6816)] = 114032, - [SMALL_STATE(6817)] = 114081, - [SMALL_STATE(6818)] = 114138, - [SMALL_STATE(6819)] = 114187, - [SMALL_STATE(6820)] = 114244, - [SMALL_STATE(6821)] = 114299, - [SMALL_STATE(6822)] = 114354, - [SMALL_STATE(6823)] = 114409, - [SMALL_STATE(6824)] = 114466, - [SMALL_STATE(6825)] = 114521, - [SMALL_STATE(6826)] = 114576, - [SMALL_STATE(6827)] = 114633, - [SMALL_STATE(6828)] = 114688, - [SMALL_STATE(6829)] = 114745, - [SMALL_STATE(6830)] = 114800, - [SMALL_STATE(6831)] = 114855, - [SMALL_STATE(6832)] = 114910, - [SMALL_STATE(6833)] = 114967, - [SMALL_STATE(6834)] = 115022, - [SMALL_STATE(6835)] = 115079, - [SMALL_STATE(6836)] = 115134, - [SMALL_STATE(6837)] = 115189, - [SMALL_STATE(6838)] = 115242, - [SMALL_STATE(6839)] = 115297, - [SMALL_STATE(6840)] = 115354, - [SMALL_STATE(6841)] = 115409, - [SMALL_STATE(6842)] = 115464, - [SMALL_STATE(6843)] = 115519, - [SMALL_STATE(6844)] = 115574, - [SMALL_STATE(6845)] = 115631, - [SMALL_STATE(6846)] = 115686, - [SMALL_STATE(6847)] = 115741, - [SMALL_STATE(6848)] = 115796, - [SMALL_STATE(6849)] = 115851, - [SMALL_STATE(6850)] = 115908, - [SMALL_STATE(6851)] = 115961, - [SMALL_STATE(6852)] = 116012, - [SMALL_STATE(6853)] = 116061, - [SMALL_STATE(6854)] = 116110, - [SMALL_STATE(6855)] = 116165, - [SMALL_STATE(6856)] = 116220, - [SMALL_STATE(6857)] = 116277, - [SMALL_STATE(6858)] = 116330, - [SMALL_STATE(6859)] = 116385, - [SMALL_STATE(6860)] = 116442, - [SMALL_STATE(6861)] = 116499, - [SMALL_STATE(6862)] = 116556, - [SMALL_STATE(6863)] = 116607, - [SMALL_STATE(6864)] = 116658, - [SMALL_STATE(6865)] = 116711, - [SMALL_STATE(6866)] = 116766, - [SMALL_STATE(6867)] = 116819, - [SMALL_STATE(6868)] = 116876, - [SMALL_STATE(6869)] = 116927, - [SMALL_STATE(6870)] = 116982, - [SMALL_STATE(6871)] = 117037, - [SMALL_STATE(6872)] = 117092, - [SMALL_STATE(6873)] = 117147, - [SMALL_STATE(6874)] = 117202, - [SMALL_STATE(6875)] = 117259, - [SMALL_STATE(6876)] = 117314, - [SMALL_STATE(6877)] = 117369, - [SMALL_STATE(6878)] = 117418, - [SMALL_STATE(6879)] = 117469, - [SMALL_STATE(6880)] = 117518, - [SMALL_STATE(6881)] = 117575, - [SMALL_STATE(6882)] = 117632, - [SMALL_STATE(6883)] = 117687, - [SMALL_STATE(6884)] = 117744, - [SMALL_STATE(6885)] = 117799, - [SMALL_STATE(6886)] = 117854, - [SMALL_STATE(6887)] = 117903, - [SMALL_STATE(6888)] = 117958, - [SMALL_STATE(6889)] = 118013, - [SMALL_STATE(6890)] = 118068, - [SMALL_STATE(6891)] = 118125, - [SMALL_STATE(6892)] = 118180, - [SMALL_STATE(6893)] = 118235, - [SMALL_STATE(6894)] = 118288, - [SMALL_STATE(6895)] = 118337, - [SMALL_STATE(6896)] = 118392, - [SMALL_STATE(6897)] = 118445, - [SMALL_STATE(6898)] = 118500, - [SMALL_STATE(6899)] = 118555, - [SMALL_STATE(6900)] = 118612, - [SMALL_STATE(6901)] = 118667, - [SMALL_STATE(6902)] = 118724, - [SMALL_STATE(6903)] = 118777, - [SMALL_STATE(6904)] = 118826, - [SMALL_STATE(6905)] = 118883, - [SMALL_STATE(6906)] = 118938, - [SMALL_STATE(6907)] = 118993, - [SMALL_STATE(6908)] = 119044, - [SMALL_STATE(6909)] = 119099, - [SMALL_STATE(6910)] = 119150, - [SMALL_STATE(6911)] = 119205, - [SMALL_STATE(6912)] = 119260, - [SMALL_STATE(6913)] = 119315, - [SMALL_STATE(6914)] = 119372, - [SMALL_STATE(6915)] = 119427, - [SMALL_STATE(6916)] = 119478, - [SMALL_STATE(6917)] = 119535, - [SMALL_STATE(6918)] = 119592, - [SMALL_STATE(6919)] = 119643, - [SMALL_STATE(6920)] = 119700, - [SMALL_STATE(6921)] = 119755, - [SMALL_STATE(6922)] = 119810, - [SMALL_STATE(6923)] = 119865, - [SMALL_STATE(6924)] = 119922, - [SMALL_STATE(6925)] = 119977, - [SMALL_STATE(6926)] = 120032, - [SMALL_STATE(6927)] = 120081, - [SMALL_STATE(6928)] = 120135, - [SMALL_STATE(6929)] = 120189, - [SMALL_STATE(6930)] = 120243, - [SMALL_STATE(6931)] = 120295, - [SMALL_STATE(6932)] = 120349, - [SMALL_STATE(6933)] = 120403, - [SMALL_STATE(6934)] = 120455, - [SMALL_STATE(6935)] = 120503, - [SMALL_STATE(6936)] = 120557, - [SMALL_STATE(6937)] = 120611, - [SMALL_STATE(6938)] = 120659, - [SMALL_STATE(6939)] = 120713, - [SMALL_STATE(6940)] = 120767, - [SMALL_STATE(6941)] = 120821, - [SMALL_STATE(6942)] = 120875, - [SMALL_STATE(6943)] = 120923, - [SMALL_STATE(6944)] = 120971, - [SMALL_STATE(6945)] = 121023, - [SMALL_STATE(6946)] = 121077, - [SMALL_STATE(6947)] = 121131, - [SMALL_STATE(6948)] = 121181, - [SMALL_STATE(6949)] = 121235, - [SMALL_STATE(6950)] = 121285, - [SMALL_STATE(6951)] = 121339, - [SMALL_STATE(6952)] = 121387, - [SMALL_STATE(6953)] = 121441, - [SMALL_STATE(6954)] = 121489, - [SMALL_STATE(6955)] = 121543, - [SMALL_STATE(6956)] = 121597, - [SMALL_STATE(6957)] = 121645, - [SMALL_STATE(6958)] = 121695, - [SMALL_STATE(6959)] = 121747, - [SMALL_STATE(6960)] = 121797, - [SMALL_STATE(6961)] = 121847, - [SMALL_STATE(6962)] = 121901, - [SMALL_STATE(6963)] = 121955, - [SMALL_STATE(6964)] = 122007, - [SMALL_STATE(6965)] = 122057, - [SMALL_STATE(6966)] = 122111, - [SMALL_STATE(6967)] = 122165, - [SMALL_STATE(6968)] = 122219, - [SMALL_STATE(6969)] = 122273, - [SMALL_STATE(6970)] = 122327, - [SMALL_STATE(6971)] = 122381, - [SMALL_STATE(6972)] = 122435, - [SMALL_STATE(6973)] = 122489, - [SMALL_STATE(6974)] = 122543, - [SMALL_STATE(6975)] = 122597, - [SMALL_STATE(6976)] = 122649, - [SMALL_STATE(6977)] = 122699, - [SMALL_STATE(6978)] = 122751, - [SMALL_STATE(6979)] = 122801, - [SMALL_STATE(6980)] = 122855, - [SMALL_STATE(6981)] = 122909, - [SMALL_STATE(6982)] = 122957, - [SMALL_STATE(6983)] = 123011, - [SMALL_STATE(6984)] = 123065, - [SMALL_STATE(6985)] = 123113, - [SMALL_STATE(6986)] = 123161, - [SMALL_STATE(6987)] = 123215, - [SMALL_STATE(6988)] = 123269, - [SMALL_STATE(6989)] = 123323, - [SMALL_STATE(6990)] = 123377, - [SMALL_STATE(6991)] = 123431, - [SMALL_STATE(6992)] = 123485, - [SMALL_STATE(6993)] = 123533, - [SMALL_STATE(6994)] = 123587, - [SMALL_STATE(6995)] = 123635, - [SMALL_STATE(6996)] = 123683, - [SMALL_STATE(6997)] = 123731, - [SMALL_STATE(6998)] = 123779, - [SMALL_STATE(6999)] = 123827, - [SMALL_STATE(7000)] = 123877, - [SMALL_STATE(7001)] = 123931, - [SMALL_STATE(7002)] = 123985, - [SMALL_STATE(7003)] = 124039, - [SMALL_STATE(7004)] = 124091, - [SMALL_STATE(7005)] = 124139, - [SMALL_STATE(7006)] = 124193, - [SMALL_STATE(7007)] = 124247, - [SMALL_STATE(7008)] = 124299, - [SMALL_STATE(7009)] = 124353, - [SMALL_STATE(7010)] = 124407, - [SMALL_STATE(7011)] = 124461, - [SMALL_STATE(7012)] = 124515, - [SMALL_STATE(7013)] = 124567, - [SMALL_STATE(7014)] = 124621, - [SMALL_STATE(7015)] = 124675, - [SMALL_STATE(7016)] = 124729, - [SMALL_STATE(7017)] = 124783, - [SMALL_STATE(7018)] = 124831, - [SMALL_STATE(7019)] = 124885, - [SMALL_STATE(7020)] = 124939, - [SMALL_STATE(7021)] = 124993, - [SMALL_STATE(7022)] = 125041, - [SMALL_STATE(7023)] = 125095, - [SMALL_STATE(7024)] = 125147, - [SMALL_STATE(7025)] = 125195, - [SMALL_STATE(7026)] = 125249, - [SMALL_STATE(7027)] = 125303, - [SMALL_STATE(7028)] = 125353, - [SMALL_STATE(7029)] = 125407, - [SMALL_STATE(7030)] = 125461, - [SMALL_STATE(7031)] = 125513, - [SMALL_STATE(7032)] = 125567, - [SMALL_STATE(7033)] = 125621, - [SMALL_STATE(7034)] = 125675, - [SMALL_STATE(7035)] = 125725, - [SMALL_STATE(7036)] = 125779, - [SMALL_STATE(7037)] = 125833, - [SMALL_STATE(7038)] = 125887, - [SMALL_STATE(7039)] = 125935, - [SMALL_STATE(7040)] = 125985, - [SMALL_STATE(7041)] = 126037, - [SMALL_STATE(7042)] = 126091, - [SMALL_STATE(7043)] = 126141, - [SMALL_STATE(7044)] = 126193, - [SMALL_STATE(7045)] = 126247, - [SMALL_STATE(7046)] = 126295, - [SMALL_STATE(7047)] = 126345, - [SMALL_STATE(7048)] = 126399, - [SMALL_STATE(7049)] = 126453, - [SMALL_STATE(7050)] = 126507, - [SMALL_STATE(7051)] = 126555, - [SMALL_STATE(7052)] = 126609, - [SMALL_STATE(7053)] = 126660, - [SMALL_STATE(7054)] = 126711, - [SMALL_STATE(7055)] = 126762, - [SMALL_STATE(7056)] = 126813, - [SMALL_STATE(7057)] = 126864, - [SMALL_STATE(7058)] = 126915, - [SMALL_STATE(7059)] = 126966, - [SMALL_STATE(7060)] = 127017, - [SMALL_STATE(7061)] = 127068, - [SMALL_STATE(7062)] = 127119, - [SMALL_STATE(7063)] = 127170, - [SMALL_STATE(7064)] = 127219, - [SMALL_STATE(7065)] = 127268, - [SMALL_STATE(7066)] = 127317, - [SMALL_STATE(7067)] = 127364, - [SMALL_STATE(7068)] = 127415, - [SMALL_STATE(7069)] = 127466, - [SMALL_STATE(7070)] = 127515, - [SMALL_STATE(7071)] = 127566, - [SMALL_STATE(7072)] = 127617, - [SMALL_STATE(7073)] = 127668, - [SMALL_STATE(7074)] = 127719, - [SMALL_STATE(7075)] = 127770, - [SMALL_STATE(7076)] = 127821, - [SMALL_STATE(7077)] = 127872, - [SMALL_STATE(7078)] = 127923, - [SMALL_STATE(7079)] = 127974, - [SMALL_STATE(7080)] = 128025, - [SMALL_STATE(7081)] = 128076, - [SMALL_STATE(7082)] = 128127, - [SMALL_STATE(7083)] = 128178, - [SMALL_STATE(7084)] = 128229, - [SMALL_STATE(7085)] = 128280, - [SMALL_STATE(7086)] = 128331, - [SMALL_STATE(7087)] = 128382, - [SMALL_STATE(7088)] = 128433, - [SMALL_STATE(7089)] = 128484, - [SMALL_STATE(7090)] = 128535, - [SMALL_STATE(7091)] = 128586, - [SMALL_STATE(7092)] = 128637, - [SMALL_STATE(7093)] = 128688, - [SMALL_STATE(7094)] = 128739, - [SMALL_STATE(7095)] = 128790, - [SMALL_STATE(7096)] = 128837, - [SMALL_STATE(7097)] = 128888, - [SMALL_STATE(7098)] = 128937, - [SMALL_STATE(7099)] = 128988, - [SMALL_STATE(7100)] = 129039, - [SMALL_STATE(7101)] = 129090, - [SMALL_STATE(7102)] = 129141, - [SMALL_STATE(7103)] = 129192, - [SMALL_STATE(7104)] = 129243, - [SMALL_STATE(7105)] = 129294, - [SMALL_STATE(7106)] = 129345, - [SMALL_STATE(7107)] = 129396, - [SMALL_STATE(7108)] = 129447, - [SMALL_STATE(7109)] = 129498, - [SMALL_STATE(7110)] = 129549, - [SMALL_STATE(7111)] = 129600, - [SMALL_STATE(7112)] = 129649, - [SMALL_STATE(7113)] = 129700, - [SMALL_STATE(7114)] = 129749, - [SMALL_STATE(7115)] = 129800, - [SMALL_STATE(7116)] = 129851, - [SMALL_STATE(7117)] = 129902, - [SMALL_STATE(7118)] = 129949, - [SMALL_STATE(7119)] = 130000, - [SMALL_STATE(7120)] = 130051, - [SMALL_STATE(7121)] = 130102, - [SMALL_STATE(7122)] = 130153, - [SMALL_STATE(7123)] = 130204, - [SMALL_STATE(7124)] = 130255, - [SMALL_STATE(7125)] = 130302, - [SMALL_STATE(7126)] = 130353, - [SMALL_STATE(7127)] = 130404, - [SMALL_STATE(7128)] = 130455, - [SMALL_STATE(7129)] = 130506, - [SMALL_STATE(7130)] = 130557, - [SMALL_STATE(7131)] = 130604, - [SMALL_STATE(7132)] = 130655, - [SMALL_STATE(7133)] = 130706, - [SMALL_STATE(7134)] = 130757, - [SMALL_STATE(7135)] = 130808, - [SMALL_STATE(7136)] = 130859, - [SMALL_STATE(7137)] = 130910, - [SMALL_STATE(7138)] = 130961, - [SMALL_STATE(7139)] = 131012, - [SMALL_STATE(7140)] = 131063, - [SMALL_STATE(7141)] = 131110, - [SMALL_STATE(7142)] = 131161, - [SMALL_STATE(7143)] = 131212, - [SMALL_STATE(7144)] = 131263, - [SMALL_STATE(7145)] = 131312, - [SMALL_STATE(7146)] = 131363, - [SMALL_STATE(7147)] = 131410, - [SMALL_STATE(7148)] = 131461, - [SMALL_STATE(7149)] = 131512, - [SMALL_STATE(7150)] = 131563, - [SMALL_STATE(7151)] = 131614, - [SMALL_STATE(7152)] = 131665, - [SMALL_STATE(7153)] = 131716, - [SMALL_STATE(7154)] = 131763, - [SMALL_STATE(7155)] = 131814, - [SMALL_STATE(7156)] = 131865, - [SMALL_STATE(7157)] = 131912, - [SMALL_STATE(7158)] = 131961, - [SMALL_STATE(7159)] = 132012, - [SMALL_STATE(7160)] = 132063, - [SMALL_STATE(7161)] = 132114, - [SMALL_STATE(7162)] = 132165, - [SMALL_STATE(7163)] = 132216, - [SMALL_STATE(7164)] = 132265, - [SMALL_STATE(7165)] = 132314, - [SMALL_STATE(7166)] = 132365, - [SMALL_STATE(7167)] = 132416, - [SMALL_STATE(7168)] = 132467, - [SMALL_STATE(7169)] = 132518, - [SMALL_STATE(7170)] = 132569, - [SMALL_STATE(7171)] = 132620, - [SMALL_STATE(7172)] = 132671, - [SMALL_STATE(7173)] = 132722, - [SMALL_STATE(7174)] = 132771, - [SMALL_STATE(7175)] = 132822, - [SMALL_STATE(7176)] = 132873, - [SMALL_STATE(7177)] = 132924, - [SMALL_STATE(7178)] = 132975, - [SMALL_STATE(7179)] = 133026, - [SMALL_STATE(7180)] = 133077, - [SMALL_STATE(7181)] = 133128, - [SMALL_STATE(7182)] = 133179, - [SMALL_STATE(7183)] = 133230, - [SMALL_STATE(7184)] = 133281, - [SMALL_STATE(7185)] = 133332, - [SMALL_STATE(7186)] = 133383, - [SMALL_STATE(7187)] = 133430, - [SMALL_STATE(7188)] = 133481, - [SMALL_STATE(7189)] = 133532, - [SMALL_STATE(7190)] = 133583, - [SMALL_STATE(7191)] = 133634, - [SMALL_STATE(7192)] = 133685, - [SMALL_STATE(7193)] = 133736, - [SMALL_STATE(7194)] = 133787, - [SMALL_STATE(7195)] = 133834, - [SMALL_STATE(7196)] = 133885, - [SMALL_STATE(7197)] = 133936, - [SMALL_STATE(7198)] = 133987, - [SMALL_STATE(7199)] = 134038, - [SMALL_STATE(7200)] = 134089, - [SMALL_STATE(7201)] = 134140, - [SMALL_STATE(7202)] = 134187, - [SMALL_STATE(7203)] = 134238, - [SMALL_STATE(7204)] = 134289, - [SMALL_STATE(7205)] = 134340, - [SMALL_STATE(7206)] = 134387, - [SMALL_STATE(7207)] = 134434, - [SMALL_STATE(7208)] = 134485, - [SMALL_STATE(7209)] = 134536, - [SMALL_STATE(7210)] = 134585, - [SMALL_STATE(7211)] = 134636, - [SMALL_STATE(7212)] = 134687, - [SMALL_STATE(7213)] = 134738, - [SMALL_STATE(7214)] = 134789, - [SMALL_STATE(7215)] = 134840, - [SMALL_STATE(7216)] = 134889, - [SMALL_STATE(7217)] = 134940, - [SMALL_STATE(7218)] = 134991, - [SMALL_STATE(7219)] = 135042, - [SMALL_STATE(7220)] = 135093, - [SMALL_STATE(7221)] = 135144, - [SMALL_STATE(7222)] = 135195, - [SMALL_STATE(7223)] = 135246, - [SMALL_STATE(7224)] = 135297, - [SMALL_STATE(7225)] = 135348, - [SMALL_STATE(7226)] = 135399, - [SMALL_STATE(7227)] = 135450, - [SMALL_STATE(7228)] = 135501, - [SMALL_STATE(7229)] = 135552, - [SMALL_STATE(7230)] = 135603, - [SMALL_STATE(7231)] = 135654, - [SMALL_STATE(7232)] = 135705, - [SMALL_STATE(7233)] = 135756, - [SMALL_STATE(7234)] = 135807, - [SMALL_STATE(7235)] = 135858, - [SMALL_STATE(7236)] = 135907, - [SMALL_STATE(7237)] = 135958, - [SMALL_STATE(7238)] = 136009, - [SMALL_STATE(7239)] = 136060, - [SMALL_STATE(7240)] = 136111, - [SMALL_STATE(7241)] = 136160, - [SMALL_STATE(7242)] = 136211, - [SMALL_STATE(7243)] = 136262, - [SMALL_STATE(7244)] = 136313, - [SMALL_STATE(7245)] = 136364, - [SMALL_STATE(7246)] = 136413, - [SMALL_STATE(7247)] = 136464, - [SMALL_STATE(7248)] = 136515, - [SMALL_STATE(7249)] = 136566, - [SMALL_STATE(7250)] = 136617, - [SMALL_STATE(7251)] = 136668, - [SMALL_STATE(7252)] = 136717, - [SMALL_STATE(7253)] = 136768, - [SMALL_STATE(7254)] = 136819, - [SMALL_STATE(7255)] = 136870, - [SMALL_STATE(7256)] = 136921, - [SMALL_STATE(7257)] = 136972, - [SMALL_STATE(7258)] = 137021, - [SMALL_STATE(7259)] = 137072, - [SMALL_STATE(7260)] = 137123, - [SMALL_STATE(7261)] = 137174, - [SMALL_STATE(7262)] = 137225, - [SMALL_STATE(7263)] = 137276, - [SMALL_STATE(7264)] = 137327, - [SMALL_STATE(7265)] = 137378, - [SMALL_STATE(7266)] = 137429, - [SMALL_STATE(7267)] = 137480, - [SMALL_STATE(7268)] = 137529, - [SMALL_STATE(7269)] = 137578, - [SMALL_STATE(7270)] = 137629, - [SMALL_STATE(7271)] = 137678, - [SMALL_STATE(7272)] = 137727, - [SMALL_STATE(7273)] = 137778, - [SMALL_STATE(7274)] = 137829, - [SMALL_STATE(7275)] = 137880, - [SMALL_STATE(7276)] = 137931, - [SMALL_STATE(7277)] = 137982, - [SMALL_STATE(7278)] = 138033, - [SMALL_STATE(7279)] = 138084, - [SMALL_STATE(7280)] = 138135, - [SMALL_STATE(7281)] = 138184, - [SMALL_STATE(7282)] = 138235, - [SMALL_STATE(7283)] = 138286, - [SMALL_STATE(7284)] = 138335, - [SMALL_STATE(7285)] = 138382, - [SMALL_STATE(7286)] = 138433, - [SMALL_STATE(7287)] = 138482, - [SMALL_STATE(7288)] = 138533, - [SMALL_STATE(7289)] = 138582, - [SMALL_STATE(7290)] = 138633, - [SMALL_STATE(7291)] = 138682, - [SMALL_STATE(7292)] = 138731, - [SMALL_STATE(7293)] = 138782, - [SMALL_STATE(7294)] = 138833, - [SMALL_STATE(7295)] = 138882, - [SMALL_STATE(7296)] = 138931, - [SMALL_STATE(7297)] = 138982, - [SMALL_STATE(7298)] = 139033, - [SMALL_STATE(7299)] = 139084, - [SMALL_STATE(7300)] = 139135, - [SMALL_STATE(7301)] = 139186, - [SMALL_STATE(7302)] = 139237, - [SMALL_STATE(7303)] = 139284, - [SMALL_STATE(7304)] = 139335, - [SMALL_STATE(7305)] = 139386, - [SMALL_STATE(7306)] = 139437, - [SMALL_STATE(7307)] = 139484, - [SMALL_STATE(7308)] = 139535, - [SMALL_STATE(7309)] = 139586, - [SMALL_STATE(7310)] = 139637, - [SMALL_STATE(7311)] = 139684, - [SMALL_STATE(7312)] = 139735, - [SMALL_STATE(7313)] = 139786, - [SMALL_STATE(7314)] = 139837, - [SMALL_STATE(7315)] = 139888, - [SMALL_STATE(7316)] = 139939, - [SMALL_STATE(7317)] = 139990, - [SMALL_STATE(7318)] = 140041, - [SMALL_STATE(7319)] = 140092, - [SMALL_STATE(7320)] = 140141, - [SMALL_STATE(7321)] = 140192, - [SMALL_STATE(7322)] = 140243, - [SMALL_STATE(7323)] = 140294, - [SMALL_STATE(7324)] = 140345, - [SMALL_STATE(7325)] = 140396, - [SMALL_STATE(7326)] = 140447, - [SMALL_STATE(7327)] = 140498, - [SMALL_STATE(7328)] = 140549, - [SMALL_STATE(7329)] = 140600, - [SMALL_STATE(7330)] = 140651, - [SMALL_STATE(7331)] = 140702, - [SMALL_STATE(7332)] = 140749, - [SMALL_STATE(7333)] = 140800, - [SMALL_STATE(7334)] = 140849, - [SMALL_STATE(7335)] = 140896, - [SMALL_STATE(7336)] = 140947, - [SMALL_STATE(7337)] = 140996, - [SMALL_STATE(7338)] = 141047, - [SMALL_STATE(7339)] = 141098, - [SMALL_STATE(7340)] = 141149, - [SMALL_STATE(7341)] = 141196, - [SMALL_STATE(7342)] = 141247, - [SMALL_STATE(7343)] = 141298, - [SMALL_STATE(7344)] = 141347, - [SMALL_STATE(7345)] = 141398, - [SMALL_STATE(7346)] = 141449, - [SMALL_STATE(7347)] = 141500, - [SMALL_STATE(7348)] = 141551, - [SMALL_STATE(7349)] = 141598, - [SMALL_STATE(7350)] = 141649, - [SMALL_STATE(7351)] = 141700, - [SMALL_STATE(7352)] = 141751, - [SMALL_STATE(7353)] = 141798, - [SMALL_STATE(7354)] = 141847, - [SMALL_STATE(7355)] = 141898, - [SMALL_STATE(7356)] = 141949, - [SMALL_STATE(7357)] = 142000, - [SMALL_STATE(7358)] = 142051, - [SMALL_STATE(7359)] = 142102, - [SMALL_STATE(7360)] = 142153, - [SMALL_STATE(7361)] = 142202, - [SMALL_STATE(7362)] = 142251, - [SMALL_STATE(7363)] = 142302, - [SMALL_STATE(7364)] = 142353, - [SMALL_STATE(7365)] = 142404, - [SMALL_STATE(7366)] = 142455, - [SMALL_STATE(7367)] = 142506, - [SMALL_STATE(7368)] = 142557, - [SMALL_STATE(7369)] = 142606, - [SMALL_STATE(7370)] = 142657, - [SMALL_STATE(7371)] = 142708, - [SMALL_STATE(7372)] = 142755, - [SMALL_STATE(7373)] = 142806, - [SMALL_STATE(7374)] = 142854, - [SMALL_STATE(7375)] = 142902, - [SMALL_STATE(7376)] = 142950, - [SMALL_STATE(7377)] = 142998, - [SMALL_STATE(7378)] = 143046, - [SMALL_STATE(7379)] = 143094, - [SMALL_STATE(7380)] = 143142, - [SMALL_STATE(7381)] = 143190, - [SMALL_STATE(7382)] = 143236, - [SMALL_STATE(7383)] = 143282, - [SMALL_STATE(7384)] = 143330, - [SMALL_STATE(7385)] = 143376, - [SMALL_STATE(7386)] = 143422, - [SMALL_STATE(7387)] = 143470, - [SMALL_STATE(7388)] = 143516, - [SMALL_STATE(7389)] = 143564, - [SMALL_STATE(7390)] = 143612, - [SMALL_STATE(7391)] = 143660, - [SMALL_STATE(7392)] = 143708, - [SMALL_STATE(7393)] = 143756, - [SMALL_STATE(7394)] = 143804, - [SMALL_STATE(7395)] = 143852, - [SMALL_STATE(7396)] = 143900, - [SMALL_STATE(7397)] = 143946, - [SMALL_STATE(7398)] = 143994, - [SMALL_STATE(7399)] = 144042, - [SMALL_STATE(7400)] = 144090, - [SMALL_STATE(7401)] = 144138, - [SMALL_STATE(7402)] = 144186, - [SMALL_STATE(7403)] = 144232, - [SMALL_STATE(7404)] = 144280, - [SMALL_STATE(7405)] = 144328, - [SMALL_STATE(7406)] = 144376, - [SMALL_STATE(7407)] = 144424, - [SMALL_STATE(7408)] = 144472, - [SMALL_STATE(7409)] = 144520, - [SMALL_STATE(7410)] = 144568, - [SMALL_STATE(7411)] = 144614, - [SMALL_STATE(7412)] = 144662, - [SMALL_STATE(7413)] = 144708, - [SMALL_STATE(7414)] = 144754, - [SMALL_STATE(7415)] = 144802, - [SMALL_STATE(7416)] = 144850, - [SMALL_STATE(7417)] = 144898, - [SMALL_STATE(7418)] = 144946, - [SMALL_STATE(7419)] = 144994, - [SMALL_STATE(7420)] = 145042, - [SMALL_STATE(7421)] = 145090, - [SMALL_STATE(7422)] = 145136, - [SMALL_STATE(7423)] = 145182, - [SMALL_STATE(7424)] = 145228, - [SMALL_STATE(7425)] = 145276, - [SMALL_STATE(7426)] = 145324, - [SMALL_STATE(7427)] = 145372, - [SMALL_STATE(7428)] = 145418, - [SMALL_STATE(7429)] = 145464, - [SMALL_STATE(7430)] = 145510, - [SMALL_STATE(7431)] = 145556, - [SMALL_STATE(7432)] = 145602, - [SMALL_STATE(7433)] = 145650, - [SMALL_STATE(7434)] = 145696, - [SMALL_STATE(7435)] = 145742, - [SMALL_STATE(7436)] = 145788, - [SMALL_STATE(7437)] = 145836, - [SMALL_STATE(7438)] = 145882, - [SMALL_STATE(7439)] = 145930, - [SMALL_STATE(7440)] = 145976, - [SMALL_STATE(7441)] = 146024, - [SMALL_STATE(7442)] = 146072, - [SMALL_STATE(7443)] = 146118, - [SMALL_STATE(7444)] = 146166, - [SMALL_STATE(7445)] = 146212, - [SMALL_STATE(7446)] = 146258, - [SMALL_STATE(7447)] = 146306, - [SMALL_STATE(7448)] = 146354, - [SMALL_STATE(7449)] = 146400, - [SMALL_STATE(7450)] = 146448, - [SMALL_STATE(7451)] = 146494, - [SMALL_STATE(7452)] = 146542, - [SMALL_STATE(7453)] = 146590, - [SMALL_STATE(7454)] = 146636, - [SMALL_STATE(7455)] = 146684, - [SMALL_STATE(7456)] = 146730, - [SMALL_STATE(7457)] = 146778, - [SMALL_STATE(7458)] = 146824, - [SMALL_STATE(7459)] = 146872, - [SMALL_STATE(7460)] = 146918, - [SMALL_STATE(7461)] = 146964, - [SMALL_STATE(7462)] = 147012, - [SMALL_STATE(7463)] = 147060, - [SMALL_STATE(7464)] = 147106, - [SMALL_STATE(7465)] = 147154, - [SMALL_STATE(7466)] = 147200, - [SMALL_STATE(7467)] = 147246, - [SMALL_STATE(7468)] = 147292, - [SMALL_STATE(7469)] = 147338, - [SMALL_STATE(7470)] = 147384, - [SMALL_STATE(7471)] = 147432, - [SMALL_STATE(7472)] = 147478, - [SMALL_STATE(7473)] = 147526, - [SMALL_STATE(7474)] = 147574, - [SMALL_STATE(7475)] = 147622, - [SMALL_STATE(7476)] = 147670, - [SMALL_STATE(7477)] = 147718, - [SMALL_STATE(7478)] = 147766, - [SMALL_STATE(7479)] = 147812, - [SMALL_STATE(7480)] = 147858, - [SMALL_STATE(7481)] = 147906, - [SMALL_STATE(7482)] = 147954, - [SMALL_STATE(7483)] = 148002, - [SMALL_STATE(7484)] = 148048, - [SMALL_STATE(7485)] = 148096, - [SMALL_STATE(7486)] = 148144, - [SMALL_STATE(7487)] = 148190, - [SMALL_STATE(7488)] = 148238, - [SMALL_STATE(7489)] = 148284, - [SMALL_STATE(7490)] = 148332, - [SMALL_STATE(7491)] = 148380, - [SMALL_STATE(7492)] = 148426, - [SMALL_STATE(7493)] = 148472, - [SMALL_STATE(7494)] = 148518, - [SMALL_STATE(7495)] = 148564, - [SMALL_STATE(7496)] = 148612, - [SMALL_STATE(7497)] = 148660, - [SMALL_STATE(7498)] = 148708, - [SMALL_STATE(7499)] = 148756, - [SMALL_STATE(7500)] = 148802, - [SMALL_STATE(7501)] = 148848, - [SMALL_STATE(7502)] = 148894, - [SMALL_STATE(7503)] = 148940, - [SMALL_STATE(7504)] = 148988, - [SMALL_STATE(7505)] = 149034, - [SMALL_STATE(7506)] = 149082, - [SMALL_STATE(7507)] = 149128, - [SMALL_STATE(7508)] = 149176, - [SMALL_STATE(7509)] = 149224, - [SMALL_STATE(7510)] = 149272, - [SMALL_STATE(7511)] = 149320, - [SMALL_STATE(7512)] = 149366, - [SMALL_STATE(7513)] = 149414, - [SMALL_STATE(7514)] = 149462, - [SMALL_STATE(7515)] = 149510, - [SMALL_STATE(7516)] = 149558, - [SMALL_STATE(7517)] = 149606, - [SMALL_STATE(7518)] = 149652, - [SMALL_STATE(7519)] = 149698, - [SMALL_STATE(7520)] = 149744, - [SMALL_STATE(7521)] = 149792, - [SMALL_STATE(7522)] = 149840, - [SMALL_STATE(7523)] = 149888, - [SMALL_STATE(7524)] = 149934, - [SMALL_STATE(7525)] = 149982, - [SMALL_STATE(7526)] = 150028, - [SMALL_STATE(7527)] = 150076, - [SMALL_STATE(7528)] = 150124, - [SMALL_STATE(7529)] = 150172, - [SMALL_STATE(7530)] = 150218, - [SMALL_STATE(7531)] = 150264, - [SMALL_STATE(7532)] = 150312, - [SMALL_STATE(7533)] = 150358, - [SMALL_STATE(7534)] = 150406, - [SMALL_STATE(7535)] = 150454, - [SMALL_STATE(7536)] = 150502, - [SMALL_STATE(7537)] = 150548, - [SMALL_STATE(7538)] = 150596, - [SMALL_STATE(7539)] = 150644, - [SMALL_STATE(7540)] = 150690, - [SMALL_STATE(7541)] = 150738, - [SMALL_STATE(7542)] = 150786, - [SMALL_STATE(7543)] = 150834, - [SMALL_STATE(7544)] = 150880, - [SMALL_STATE(7545)] = 150926, - [SMALL_STATE(7546)] = 150972, - [SMALL_STATE(7547)] = 151020, - [SMALL_STATE(7548)] = 151066, - [SMALL_STATE(7549)] = 151114, - [SMALL_STATE(7550)] = 151160, - [SMALL_STATE(7551)] = 151206, - [SMALL_STATE(7552)] = 151254, - [SMALL_STATE(7553)] = 151302, - [SMALL_STATE(7554)] = 151348, - [SMALL_STATE(7555)] = 151394, - [SMALL_STATE(7556)] = 151442, - [SMALL_STATE(7557)] = 151488, - [SMALL_STATE(7558)] = 151536, - [SMALL_STATE(7559)] = 151582, - [SMALL_STATE(7560)] = 151630, - [SMALL_STATE(7561)] = 151678, - [SMALL_STATE(7562)] = 151724, - [SMALL_STATE(7563)] = 151772, - [SMALL_STATE(7564)] = 151818, - [SMALL_STATE(7565)] = 151866, - [SMALL_STATE(7566)] = 151912, - [SMALL_STATE(7567)] = 151960, - [SMALL_STATE(7568)] = 152008, - [SMALL_STATE(7569)] = 152056, - [SMALL_STATE(7570)] = 152104, - [SMALL_STATE(7571)] = 152152, - [SMALL_STATE(7572)] = 152200, - [SMALL_STATE(7573)] = 152248, - [SMALL_STATE(7574)] = 152296, - [SMALL_STATE(7575)] = 152344, - [SMALL_STATE(7576)] = 152392, - [SMALL_STATE(7577)] = 152440, - [SMALL_STATE(7578)] = 152486, - [SMALL_STATE(7579)] = 152534, - [SMALL_STATE(7580)] = 152582, - [SMALL_STATE(7581)] = 152628, - [SMALL_STATE(7582)] = 152674, - [SMALL_STATE(7583)] = 152720, - [SMALL_STATE(7584)] = 152766, - [SMALL_STATE(7585)] = 152814, - [SMALL_STATE(7586)] = 152862, - [SMALL_STATE(7587)] = 152910, - [SMALL_STATE(7588)] = 152958, - [SMALL_STATE(7589)] = 153004, - [SMALL_STATE(7590)] = 153050, - [SMALL_STATE(7591)] = 153096, - [SMALL_STATE(7592)] = 153142, - [SMALL_STATE(7593)] = 153190, - [SMALL_STATE(7594)] = 153238, - [SMALL_STATE(7595)] = 153286, - [SMALL_STATE(7596)] = 153334, - [SMALL_STATE(7597)] = 153380, - [SMALL_STATE(7598)] = 153428, - [SMALL_STATE(7599)] = 153476, - [SMALL_STATE(7600)] = 153522, - [SMALL_STATE(7601)] = 153568, - [SMALL_STATE(7602)] = 153614, - [SMALL_STATE(7603)] = 153662, - [SMALL_STATE(7604)] = 153708, - [SMALL_STATE(7605)] = 153756, - [SMALL_STATE(7606)] = 153804, - [SMALL_STATE(7607)] = 153852, - [SMALL_STATE(7608)] = 153898, - [SMALL_STATE(7609)] = 153946, - [SMALL_STATE(7610)] = 153994, - [SMALL_STATE(7611)] = 154040, - [SMALL_STATE(7612)] = 154086, - [SMALL_STATE(7613)] = 154134, - [SMALL_STATE(7614)] = 154182, - [SMALL_STATE(7615)] = 154230, - [SMALL_STATE(7616)] = 154278, - [SMALL_STATE(7617)] = 154326, - [SMALL_STATE(7618)] = 154374, - [SMALL_STATE(7619)] = 154422, - [SMALL_STATE(7620)] = 154468, - [SMALL_STATE(7621)] = 154516, - [SMALL_STATE(7622)] = 154564, - [SMALL_STATE(7623)] = 154612, - [SMALL_STATE(7624)] = 154658, - [SMALL_STATE(7625)] = 154706, - [SMALL_STATE(7626)] = 154754, - [SMALL_STATE(7627)] = 154802, - [SMALL_STATE(7628)] = 154850, - [SMALL_STATE(7629)] = 154898, - [SMALL_STATE(7630)] = 154944, - [SMALL_STATE(7631)] = 154992, - [SMALL_STATE(7632)] = 155040, - [SMALL_STATE(7633)] = 155088, - [SMALL_STATE(7634)] = 155136, - [SMALL_STATE(7635)] = 155184, - [SMALL_STATE(7636)] = 155232, - [SMALL_STATE(7637)] = 155280, - [SMALL_STATE(7638)] = 155328, - [SMALL_STATE(7639)] = 155376, - [SMALL_STATE(7640)] = 155424, - [SMALL_STATE(7641)] = 155470, - [SMALL_STATE(7642)] = 155518, - [SMALL_STATE(7643)] = 155563, - [SMALL_STATE(7644)] = 155608, - [SMALL_STATE(7645)] = 155653, - [SMALL_STATE(7646)] = 155698, - [SMALL_STATE(7647)] = 155743, - [SMALL_STATE(7648)] = 155788, - [SMALL_STATE(7649)] = 155833, - [SMALL_STATE(7650)] = 155878, - [SMALL_STATE(7651)] = 155923, - [SMALL_STATE(7652)] = 155968, - [SMALL_STATE(7653)] = 156013, - [SMALL_STATE(7654)] = 156058, - [SMALL_STATE(7655)] = 156103, - [SMALL_STATE(7656)] = 156148, - [SMALL_STATE(7657)] = 156193, - [SMALL_STATE(7658)] = 156238, - [SMALL_STATE(7659)] = 156283, - [SMALL_STATE(7660)] = 156328, - [SMALL_STATE(7661)] = 156373, - [SMALL_STATE(7662)] = 156418, - [SMALL_STATE(7663)] = 156463, - [SMALL_STATE(7664)] = 156508, - [SMALL_STATE(7665)] = 156553, - [SMALL_STATE(7666)] = 156598, - [SMALL_STATE(7667)] = 156643, - [SMALL_STATE(7668)] = 156688, - [SMALL_STATE(7669)] = 156733, - [SMALL_STATE(7670)] = 156778, - [SMALL_STATE(7671)] = 156823, - [SMALL_STATE(7672)] = 156868, - [SMALL_STATE(7673)] = 156913, - [SMALL_STATE(7674)] = 156958, - [SMALL_STATE(7675)] = 157003, - [SMALL_STATE(7676)] = 157048, - [SMALL_STATE(7677)] = 157093, - [SMALL_STATE(7678)] = 157138, - [SMALL_STATE(7679)] = 157183, - [SMALL_STATE(7680)] = 157228, - [SMALL_STATE(7681)] = 157273, - [SMALL_STATE(7682)] = 157318, - [SMALL_STATE(7683)] = 157363, - [SMALL_STATE(7684)] = 157408, - [SMALL_STATE(7685)] = 157453, - [SMALL_STATE(7686)] = 157498, - [SMALL_STATE(7687)] = 157543, - [SMALL_STATE(7688)] = 157588, - [SMALL_STATE(7689)] = 157633, - [SMALL_STATE(7690)] = 157678, - [SMALL_STATE(7691)] = 157723, - [SMALL_STATE(7692)] = 157768, - [SMALL_STATE(7693)] = 157813, - [SMALL_STATE(7694)] = 157858, - [SMALL_STATE(7695)] = 157903, - [SMALL_STATE(7696)] = 157948, - [SMALL_STATE(7697)] = 157993, - [SMALL_STATE(7698)] = 158038, - [SMALL_STATE(7699)] = 158083, - [SMALL_STATE(7700)] = 158128, - [SMALL_STATE(7701)] = 158173, - [SMALL_STATE(7702)] = 158218, - [SMALL_STATE(7703)] = 158263, - [SMALL_STATE(7704)] = 158308, - [SMALL_STATE(7705)] = 158353, - [SMALL_STATE(7706)] = 158398, - [SMALL_STATE(7707)] = 158443, - [SMALL_STATE(7708)] = 158488, - [SMALL_STATE(7709)] = 158533, - [SMALL_STATE(7710)] = 158578, - [SMALL_STATE(7711)] = 158623, - [SMALL_STATE(7712)] = 158668, - [SMALL_STATE(7713)] = 158713, - [SMALL_STATE(7714)] = 158758, - [SMALL_STATE(7715)] = 158803, - [SMALL_STATE(7716)] = 158848, - [SMALL_STATE(7717)] = 158893, - [SMALL_STATE(7718)] = 158938, - [SMALL_STATE(7719)] = 158983, - [SMALL_STATE(7720)] = 159028, - [SMALL_STATE(7721)] = 159073, - [SMALL_STATE(7722)] = 159118, - [SMALL_STATE(7723)] = 159163, - [SMALL_STATE(7724)] = 159208, - [SMALL_STATE(7725)] = 159253, - [SMALL_STATE(7726)] = 159298, - [SMALL_STATE(7727)] = 159343, - [SMALL_STATE(7728)] = 159388, - [SMALL_STATE(7729)] = 159433, - [SMALL_STATE(7730)] = 159478, - [SMALL_STATE(7731)] = 159523, - [SMALL_STATE(7732)] = 159568, - [SMALL_STATE(7733)] = 159613, - [SMALL_STATE(7734)] = 159658, - [SMALL_STATE(7735)] = 159703, - [SMALL_STATE(7736)] = 159748, - [SMALL_STATE(7737)] = 159793, - [SMALL_STATE(7738)] = 159838, - [SMALL_STATE(7739)] = 159883, - [SMALL_STATE(7740)] = 159928, - [SMALL_STATE(7741)] = 159973, - [SMALL_STATE(7742)] = 160018, - [SMALL_STATE(7743)] = 160063, - [SMALL_STATE(7744)] = 160108, - [SMALL_STATE(7745)] = 160153, - [SMALL_STATE(7746)] = 160198, - [SMALL_STATE(7747)] = 160243, - [SMALL_STATE(7748)] = 160288, - [SMALL_STATE(7749)] = 160333, - [SMALL_STATE(7750)] = 160378, - [SMALL_STATE(7751)] = 160423, - [SMALL_STATE(7752)] = 160468, - [SMALL_STATE(7753)] = 160513, - [SMALL_STATE(7754)] = 160558, - [SMALL_STATE(7755)] = 160603, - [SMALL_STATE(7756)] = 160648, - [SMALL_STATE(7757)] = 160693, - [SMALL_STATE(7758)] = 160738, - [SMALL_STATE(7759)] = 160783, - [SMALL_STATE(7760)] = 160828, - [SMALL_STATE(7761)] = 160873, - [SMALL_STATE(7762)] = 160918, - [SMALL_STATE(7763)] = 160963, - [SMALL_STATE(7764)] = 161008, - [SMALL_STATE(7765)] = 161053, - [SMALL_STATE(7766)] = 161098, - [SMALL_STATE(7767)] = 161143, - [SMALL_STATE(7768)] = 161188, - [SMALL_STATE(7769)] = 161233, - [SMALL_STATE(7770)] = 161278, - [SMALL_STATE(7771)] = 161323, - [SMALL_STATE(7772)] = 161368, - [SMALL_STATE(7773)] = 161413, - [SMALL_STATE(7774)] = 161458, - [SMALL_STATE(7775)] = 161503, - [SMALL_STATE(7776)] = 161548, - [SMALL_STATE(7777)] = 161593, - [SMALL_STATE(7778)] = 161638, - [SMALL_STATE(7779)] = 161683, - [SMALL_STATE(7780)] = 161728, - [SMALL_STATE(7781)] = 161773, - [SMALL_STATE(7782)] = 161818, - [SMALL_STATE(7783)] = 161863, - [SMALL_STATE(7784)] = 161908, - [SMALL_STATE(7785)] = 161953, - [SMALL_STATE(7786)] = 161998, - [SMALL_STATE(7787)] = 162043, - [SMALL_STATE(7788)] = 162088, - [SMALL_STATE(7789)] = 162133, - [SMALL_STATE(7790)] = 162178, - [SMALL_STATE(7791)] = 162223, - [SMALL_STATE(7792)] = 162268, - [SMALL_STATE(7793)] = 162313, - [SMALL_STATE(7794)] = 162358, - [SMALL_STATE(7795)] = 162403, - [SMALL_STATE(7796)] = 162448, - [SMALL_STATE(7797)] = 162493, - [SMALL_STATE(7798)] = 162538, - [SMALL_STATE(7799)] = 162583, - [SMALL_STATE(7800)] = 162628, - [SMALL_STATE(7801)] = 162673, - [SMALL_STATE(7802)] = 162718, - [SMALL_STATE(7803)] = 162763, - [SMALL_STATE(7804)] = 162808, - [SMALL_STATE(7805)] = 162853, - [SMALL_STATE(7806)] = 162898, - [SMALL_STATE(7807)] = 162943, - [SMALL_STATE(7808)] = 162988, - [SMALL_STATE(7809)] = 163033, - [SMALL_STATE(7810)] = 163078, - [SMALL_STATE(7811)] = 163123, - [SMALL_STATE(7812)] = 163168, - [SMALL_STATE(7813)] = 163213, - [SMALL_STATE(7814)] = 163258, - [SMALL_STATE(7815)] = 163303, - [SMALL_STATE(7816)] = 163348, - [SMALL_STATE(7817)] = 163393, - [SMALL_STATE(7818)] = 163438, - [SMALL_STATE(7819)] = 163483, - [SMALL_STATE(7820)] = 163528, - [SMALL_STATE(7821)] = 163573, - [SMALL_STATE(7822)] = 163618, - [SMALL_STATE(7823)] = 163663, - [SMALL_STATE(7824)] = 163708, - [SMALL_STATE(7825)] = 163753, - [SMALL_STATE(7826)] = 163798, - [SMALL_STATE(7827)] = 163843, - [SMALL_STATE(7828)] = 163888, - [SMALL_STATE(7829)] = 163933, - [SMALL_STATE(7830)] = 163978, - [SMALL_STATE(7831)] = 164023, - [SMALL_STATE(7832)] = 164068, - [SMALL_STATE(7833)] = 164113, - [SMALL_STATE(7834)] = 164158, - [SMALL_STATE(7835)] = 164203, - [SMALL_STATE(7836)] = 164248, - [SMALL_STATE(7837)] = 164293, - [SMALL_STATE(7838)] = 164338, - [SMALL_STATE(7839)] = 164383, - [SMALL_STATE(7840)] = 164428, - [SMALL_STATE(7841)] = 164473, - [SMALL_STATE(7842)] = 164518, - [SMALL_STATE(7843)] = 164563, - [SMALL_STATE(7844)] = 164608, - [SMALL_STATE(7845)] = 164653, - [SMALL_STATE(7846)] = 164698, - [SMALL_STATE(7847)] = 164743, - [SMALL_STATE(7848)] = 164788, - [SMALL_STATE(7849)] = 164833, - [SMALL_STATE(7850)] = 164878, - [SMALL_STATE(7851)] = 164923, - [SMALL_STATE(7852)] = 164968, - [SMALL_STATE(7853)] = 165013, - [SMALL_STATE(7854)] = 165058, - [SMALL_STATE(7855)] = 165103, - [SMALL_STATE(7856)] = 165148, - [SMALL_STATE(7857)] = 165193, - [SMALL_STATE(7858)] = 165238, - [SMALL_STATE(7859)] = 165283, - [SMALL_STATE(7860)] = 165328, - [SMALL_STATE(7861)] = 165373, - [SMALL_STATE(7862)] = 165418, - [SMALL_STATE(7863)] = 165463, - [SMALL_STATE(7864)] = 165508, - [SMALL_STATE(7865)] = 165553, - [SMALL_STATE(7866)] = 165598, - [SMALL_STATE(7867)] = 165643, - [SMALL_STATE(7868)] = 165688, - [SMALL_STATE(7869)] = 165733, - [SMALL_STATE(7870)] = 165778, - [SMALL_STATE(7871)] = 165823, - [SMALL_STATE(7872)] = 165868, - [SMALL_STATE(7873)] = 165913, - [SMALL_STATE(7874)] = 165958, - [SMALL_STATE(7875)] = 166003, - [SMALL_STATE(7876)] = 166048, - [SMALL_STATE(7877)] = 166093, - [SMALL_STATE(7878)] = 166138, - [SMALL_STATE(7879)] = 166183, - [SMALL_STATE(7880)] = 166228, - [SMALL_STATE(7881)] = 166273, - [SMALL_STATE(7882)] = 166318, - [SMALL_STATE(7883)] = 166363, - [SMALL_STATE(7884)] = 166408, - [SMALL_STATE(7885)] = 166453, - [SMALL_STATE(7886)] = 166498, - [SMALL_STATE(7887)] = 166543, - [SMALL_STATE(7888)] = 166588, - [SMALL_STATE(7889)] = 166633, - [SMALL_STATE(7890)] = 166678, - [SMALL_STATE(7891)] = 166723, - [SMALL_STATE(7892)] = 166768, - [SMALL_STATE(7893)] = 166813, - [SMALL_STATE(7894)] = 166858, - [SMALL_STATE(7895)] = 166903, - [SMALL_STATE(7896)] = 166948, - [SMALL_STATE(7897)] = 166993, - [SMALL_STATE(7898)] = 167038, - [SMALL_STATE(7899)] = 167083, - [SMALL_STATE(7900)] = 167128, - [SMALL_STATE(7901)] = 167173, - [SMALL_STATE(7902)] = 167218, - [SMALL_STATE(7903)] = 167263, - [SMALL_STATE(7904)] = 167308, - [SMALL_STATE(7905)] = 167353, - [SMALL_STATE(7906)] = 167398, - [SMALL_STATE(7907)] = 167443, - [SMALL_STATE(7908)] = 167488, - [SMALL_STATE(7909)] = 167533, - [SMALL_STATE(7910)] = 167578, - [SMALL_STATE(7911)] = 167623, - [SMALL_STATE(7912)] = 167668, - [SMALL_STATE(7913)] = 167713, - [SMALL_STATE(7914)] = 167758, - [SMALL_STATE(7915)] = 167803, - [SMALL_STATE(7916)] = 167848, - [SMALL_STATE(7917)] = 167893, - [SMALL_STATE(7918)] = 167938, - [SMALL_STATE(7919)] = 167983, - [SMALL_STATE(7920)] = 168028, - [SMALL_STATE(7921)] = 168073, - [SMALL_STATE(7922)] = 168118, - [SMALL_STATE(7923)] = 168163, - [SMALL_STATE(7924)] = 168208, - [SMALL_STATE(7925)] = 168253, - [SMALL_STATE(7926)] = 168298, - [SMALL_STATE(7927)] = 168343, - [SMALL_STATE(7928)] = 168388, - [SMALL_STATE(7929)] = 168433, - [SMALL_STATE(7930)] = 168478, - [SMALL_STATE(7931)] = 168523, - [SMALL_STATE(7932)] = 168568, - [SMALL_STATE(7933)] = 168613, - [SMALL_STATE(7934)] = 168658, - [SMALL_STATE(7935)] = 168703, - [SMALL_STATE(7936)] = 168748, - [SMALL_STATE(7937)] = 168793, - [SMALL_STATE(7938)] = 168838, - [SMALL_STATE(7939)] = 168883, - [SMALL_STATE(7940)] = 168928, - [SMALL_STATE(7941)] = 168973, - [SMALL_STATE(7942)] = 169018, - [SMALL_STATE(7943)] = 169063, - [SMALL_STATE(7944)] = 169108, - [SMALL_STATE(7945)] = 169153, - [SMALL_STATE(7946)] = 169198, - [SMALL_STATE(7947)] = 169243, - [SMALL_STATE(7948)] = 169288, - [SMALL_STATE(7949)] = 169333, - [SMALL_STATE(7950)] = 169378, - [SMALL_STATE(7951)] = 169423, - [SMALL_STATE(7952)] = 169468, - [SMALL_STATE(7953)] = 169513, - [SMALL_STATE(7954)] = 169558, - [SMALL_STATE(7955)] = 169603, - [SMALL_STATE(7956)] = 169648, - [SMALL_STATE(7957)] = 169693, - [SMALL_STATE(7958)] = 169738, - [SMALL_STATE(7959)] = 169783, - [SMALL_STATE(7960)] = 169828, - [SMALL_STATE(7961)] = 169873, - [SMALL_STATE(7962)] = 169918, - [SMALL_STATE(7963)] = 169963, - [SMALL_STATE(7964)] = 170008, - [SMALL_STATE(7965)] = 170053, - [SMALL_STATE(7966)] = 170098, - [SMALL_STATE(7967)] = 170143, - [SMALL_STATE(7968)] = 170188, - [SMALL_STATE(7969)] = 170233, - [SMALL_STATE(7970)] = 170278, - [SMALL_STATE(7971)] = 170323, - [SMALL_STATE(7972)] = 170368, - [SMALL_STATE(7973)] = 170413, - [SMALL_STATE(7974)] = 170458, - [SMALL_STATE(7975)] = 170503, - [SMALL_STATE(7976)] = 170548, - [SMALL_STATE(7977)] = 170593, - [SMALL_STATE(7978)] = 170638, - [SMALL_STATE(7979)] = 170683, - [SMALL_STATE(7980)] = 170728, - [SMALL_STATE(7981)] = 170773, - [SMALL_STATE(7982)] = 170818, - [SMALL_STATE(7983)] = 170863, - [SMALL_STATE(7984)] = 170908, - [SMALL_STATE(7985)] = 170953, - [SMALL_STATE(7986)] = 170998, - [SMALL_STATE(7987)] = 171043, - [SMALL_STATE(7988)] = 171088, - [SMALL_STATE(7989)] = 171133, - [SMALL_STATE(7990)] = 171178, - [SMALL_STATE(7991)] = 171223, - [SMALL_STATE(7992)] = 171268, - [SMALL_STATE(7993)] = 171313, - [SMALL_STATE(7994)] = 171358, - [SMALL_STATE(7995)] = 171403, - [SMALL_STATE(7996)] = 171448, - [SMALL_STATE(7997)] = 171493, - [SMALL_STATE(7998)] = 171538, - [SMALL_STATE(7999)] = 171583, - [SMALL_STATE(8000)] = 171628, - [SMALL_STATE(8001)] = 171673, - [SMALL_STATE(8002)] = 171718, - [SMALL_STATE(8003)] = 171763, - [SMALL_STATE(8004)] = 171808, - [SMALL_STATE(8005)] = 171853, - [SMALL_STATE(8006)] = 171898, - [SMALL_STATE(8007)] = 171943, - [SMALL_STATE(8008)] = 171988, - [SMALL_STATE(8009)] = 172033, - [SMALL_STATE(8010)] = 172078, - [SMALL_STATE(8011)] = 172123, - [SMALL_STATE(8012)] = 172168, - [SMALL_STATE(8013)] = 172213, - [SMALL_STATE(8014)] = 172258, - [SMALL_STATE(8015)] = 172303, - [SMALL_STATE(8016)] = 172348, - [SMALL_STATE(8017)] = 172393, - [SMALL_STATE(8018)] = 172438, - [SMALL_STATE(8019)] = 172483, - [SMALL_STATE(8020)] = 172528, - [SMALL_STATE(8021)] = 172573, - [SMALL_STATE(8022)] = 172618, - [SMALL_STATE(8023)] = 172663, - [SMALL_STATE(8024)] = 172708, - [SMALL_STATE(8025)] = 172753, - [SMALL_STATE(8026)] = 172798, - [SMALL_STATE(8027)] = 172843, - [SMALL_STATE(8028)] = 172888, - [SMALL_STATE(8029)] = 172933, - [SMALL_STATE(8030)] = 172978, - [SMALL_STATE(8031)] = 173023, - [SMALL_STATE(8032)] = 173068, - [SMALL_STATE(8033)] = 173113, - [SMALL_STATE(8034)] = 173158, - [SMALL_STATE(8035)] = 173203, - [SMALL_STATE(8036)] = 173248, - [SMALL_STATE(8037)] = 173293, - [SMALL_STATE(8038)] = 173338, - [SMALL_STATE(8039)] = 173383, - [SMALL_STATE(8040)] = 173428, - [SMALL_STATE(8041)] = 173473, - [SMALL_STATE(8042)] = 173518, - [SMALL_STATE(8043)] = 173563, - [SMALL_STATE(8044)] = 173608, - [SMALL_STATE(8045)] = 173653, - [SMALL_STATE(8046)] = 173698, - [SMALL_STATE(8047)] = 173743, - [SMALL_STATE(8048)] = 173788, - [SMALL_STATE(8049)] = 173833, - [SMALL_STATE(8050)] = 173878, - [SMALL_STATE(8051)] = 173923, - [SMALL_STATE(8052)] = 173968, - [SMALL_STATE(8053)] = 174013, - [SMALL_STATE(8054)] = 174058, - [SMALL_STATE(8055)] = 174103, - [SMALL_STATE(8056)] = 174148, - [SMALL_STATE(8057)] = 174193, - [SMALL_STATE(8058)] = 174238, - [SMALL_STATE(8059)] = 174283, - [SMALL_STATE(8060)] = 174328, - [SMALL_STATE(8061)] = 174373, - [SMALL_STATE(8062)] = 174418, - [SMALL_STATE(8063)] = 174463, - [SMALL_STATE(8064)] = 174508, - [SMALL_STATE(8065)] = 174553, - [SMALL_STATE(8066)] = 174598, - [SMALL_STATE(8067)] = 174643, - [SMALL_STATE(8068)] = 174688, - [SMALL_STATE(8069)] = 174733, - [SMALL_STATE(8070)] = 174778, - [SMALL_STATE(8071)] = 174823, - [SMALL_STATE(8072)] = 174868, - [SMALL_STATE(8073)] = 174913, - [SMALL_STATE(8074)] = 174958, - [SMALL_STATE(8075)] = 175003, - [SMALL_STATE(8076)] = 175048, - [SMALL_STATE(8077)] = 175093, - [SMALL_STATE(8078)] = 175138, - [SMALL_STATE(8079)] = 175183, - [SMALL_STATE(8080)] = 175228, - [SMALL_STATE(8081)] = 175273, - [SMALL_STATE(8082)] = 175318, - [SMALL_STATE(8083)] = 175363, - [SMALL_STATE(8084)] = 175408, - [SMALL_STATE(8085)] = 175453, - [SMALL_STATE(8086)] = 175498, - [SMALL_STATE(8087)] = 175543, - [SMALL_STATE(8088)] = 175588, - [SMALL_STATE(8089)] = 175633, - [SMALL_STATE(8090)] = 175678, - [SMALL_STATE(8091)] = 175723, - [SMALL_STATE(8092)] = 175768, - [SMALL_STATE(8093)] = 175813, - [SMALL_STATE(8094)] = 175858, - [SMALL_STATE(8095)] = 175903, - [SMALL_STATE(8096)] = 175948, - [SMALL_STATE(8097)] = 175993, - [SMALL_STATE(8098)] = 176038, - [SMALL_STATE(8099)] = 176083, - [SMALL_STATE(8100)] = 176128, - [SMALL_STATE(8101)] = 176173, - [SMALL_STATE(8102)] = 176218, - [SMALL_STATE(8103)] = 176263, - [SMALL_STATE(8104)] = 176308, - [SMALL_STATE(8105)] = 176353, - [SMALL_STATE(8106)] = 176398, - [SMALL_STATE(8107)] = 176443, - [SMALL_STATE(8108)] = 176488, - [SMALL_STATE(8109)] = 176533, - [SMALL_STATE(8110)] = 176578, - [SMALL_STATE(8111)] = 176623, - [SMALL_STATE(8112)] = 176668, - [SMALL_STATE(8113)] = 176713, - [SMALL_STATE(8114)] = 176758, - [SMALL_STATE(8115)] = 176803, - [SMALL_STATE(8116)] = 176848, - [SMALL_STATE(8117)] = 176893, - [SMALL_STATE(8118)] = 176938, - [SMALL_STATE(8119)] = 176983, - [SMALL_STATE(8120)] = 177028, - [SMALL_STATE(8121)] = 177073, - [SMALL_STATE(8122)] = 177118, - [SMALL_STATE(8123)] = 177163, - [SMALL_STATE(8124)] = 177208, - [SMALL_STATE(8125)] = 177253, - [SMALL_STATE(8126)] = 177298, - [SMALL_STATE(8127)] = 177343, - [SMALL_STATE(8128)] = 177388, - [SMALL_STATE(8129)] = 177433, - [SMALL_STATE(8130)] = 177478, - [SMALL_STATE(8131)] = 177523, - [SMALL_STATE(8132)] = 177568, - [SMALL_STATE(8133)] = 177613, - [SMALL_STATE(8134)] = 177658, - [SMALL_STATE(8135)] = 177703, - [SMALL_STATE(8136)] = 177748, - [SMALL_STATE(8137)] = 177793, - [SMALL_STATE(8138)] = 177838, - [SMALL_STATE(8139)] = 177883, - [SMALL_STATE(8140)] = 177928, - [SMALL_STATE(8141)] = 177973, - [SMALL_STATE(8142)] = 178018, - [SMALL_STATE(8143)] = 178063, - [SMALL_STATE(8144)] = 178108, - [SMALL_STATE(8145)] = 178112, - [SMALL_STATE(8146)] = 178116, - [SMALL_STATE(8147)] = 178120, - [SMALL_STATE(8148)] = 178124, - [SMALL_STATE(8149)] = 178128, - [SMALL_STATE(8150)] = 178132, - [SMALL_STATE(8151)] = 178136, - [SMALL_STATE(8152)] = 178140, - [SMALL_STATE(8153)] = 178144, - [SMALL_STATE(8154)] = 178148, - [SMALL_STATE(8155)] = 178152, - [SMALL_STATE(8156)] = 178156, - [SMALL_STATE(8157)] = 178160, - [SMALL_STATE(8158)] = 178164, - [SMALL_STATE(8159)] = 178168, - [SMALL_STATE(8160)] = 178172, + [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(7424), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), - [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(4713), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), - [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(6166), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), + [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(6418), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [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(4662), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), - [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(7503), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7883), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7513), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7533), - [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(2079), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), - [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(4970), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [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(5821), - [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(4710), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6399), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7180), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7868), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7875), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7968), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7510), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7969), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7452), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7507), - [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(5872), - [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(5847), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 3, .production_id = 105), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [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(4713), - [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(2069), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2379), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2558), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4626), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4658), - [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(6166), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6377), - [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(6382), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6372), - [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(6418), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(5040), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6303), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4440), - [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(4662), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2397), - [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7181), - [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(5035), - [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(948), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(2540), - [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(4180), - [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(5602), - [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(7503), - [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(2347), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7513), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4976), - [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(7533), - [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(2079), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(5545), - [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(4970), - [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(7565), - [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(4970), - [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compilation_unit_repeat1, 2), SHIFT_REPEAT(6674), - [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(5821), - [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(4710), - [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(1964), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2292), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2566), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4625), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4658), - [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(6152), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(6377), - [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(6382), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(6399), - [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(6418), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(5040), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(6303), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4440), + [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(4708), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2397), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7180), - [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(5035), - [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(948), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(2540), - [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(4180), - [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(5602), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7868), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7875), - [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(7510), - [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(2277), - [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7452), - [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4976), - [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(7507), - [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(2079), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(5545), - [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(4970), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(7565), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(4970), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 2), SHIFT_REPEAT(6674), + [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(5872), + [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(5178), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), - [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(5287), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6823), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8092), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8118), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7654), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7389), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7902), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7521), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7390), - [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(5811), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 4, .production_id = 228), - [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 4, .production_id = 228), - [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 = 229), - [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 4, .production_id = 229), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [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 = 160), - [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 3, .production_id = 160), - [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(4137), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 3, .production_id = 188), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 3, .production_id = 188), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 4, .production_id = 230), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 4, .production_id = 230), - [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_section, 5, .production_id = 275), - [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_section, 5, .production_id = 275), - [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(2206), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(5178), - [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(2207), - [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(2153), - [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(2589), - [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(5124), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(5177), - [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(454), - [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(511), - [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(680), - [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(703), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(24), - [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(6823), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(2165), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(5180), - [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(2596), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(7258), - [848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(940), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(5035), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(940), - [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(948), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(2540), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(2199), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(4180), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(2228), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(5602), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(8092), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(8118), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(80), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(7654), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(7389), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(7902), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(2308), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(7521), - [899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), - [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(4976), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(721), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(7390), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(301), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(7846), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(670), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(7656), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(198), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(2079), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(5545), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(7837), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(7836), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(7835), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(7833), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(7828), - [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(4970), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(7565), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(4970), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(6674), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(1919), - [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(5811), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(8093), - [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(8077), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(8069), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 2, .production_id = 231), SHIFT_REPEAT(8067), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [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(5178), - [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(2153), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2589), - [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(5124), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(5177), - [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(6823), - [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(5180), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2596), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7258), - [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(5035), - [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(948), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2540), - [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(4180), - [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(5602), - [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(8092), - [1103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(8118), - [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(7389), - [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7902), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(2308), - [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7521), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4976), - [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(7390), - [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(2079), - [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(5545), - [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(4970), - [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(7565), - [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(4970), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(6674), - [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(5811), - [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(2610), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [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(5209), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7145), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7819), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7818), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7930), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7562), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7931), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7551), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7566), - [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(2340), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [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(2419), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7978), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), - [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(5869), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8108), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), - [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), - [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), - [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [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(6817), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7900), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), - [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), - [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(7689), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [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(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(8116), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8117), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), - [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), + [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(1807), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [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(6802), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7938), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), - [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(7804), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7876), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7874), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), + [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(6832), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [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(5553), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8001), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [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(1661), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [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(1476), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [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(6798), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7976), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6193), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5714), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [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(5551), - [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(7744), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7983), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7987), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [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(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(1705), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [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(6782), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7666), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), - [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(8087), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [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(1596), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [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(5103), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [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(1794), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [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(1680), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [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(1474), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [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(1427), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [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(1765), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [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(966), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [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(1098), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [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(5056), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [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(5091), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [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(5088), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [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(5060), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [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(5090), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [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(5066), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [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(5105), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, .production_id = 160), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [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(7869), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [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(1567), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7872), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7913), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [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(976), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [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(1441), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [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(1708), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [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(5094), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [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(856), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [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(5100), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [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(5061), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8100), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [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(2258), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [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(1285), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [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(1041), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), - [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(1874), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [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(6859), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [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(1181), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [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(1264), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [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(1523), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [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(1552), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), - [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(1212), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [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(7991), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [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(2593), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [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(5824), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [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(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(7698), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [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(2044), - [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(5303), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 1), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [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(2171), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [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(1991), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [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(5132), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 3, .production_id = 105), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 105), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [3263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5132), - [3266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(4283), - [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(6037), - [3275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6032), - [3278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(4440), - [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(5172), - [3287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5228), - [3290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6161), - [3293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6377), - [3296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5153), - [3299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6382), - [3302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6432), + [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(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(6418), - [3310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5239), - [3313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6303), - [3316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2993), - [3319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6368), - [3322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(6008), - [3325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5181), - [3328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5296), - [3331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5549), - [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2465), - [3337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(5865), + [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(6688), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7609), + [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 = true}}, REDUCE(sym_preproc_else, 1), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), - [3362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(6688), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else, 2), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7586), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, .production_id = 146), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, .production_id = 146), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 1), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, .production_id = 43), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, .production_id = 43), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 10), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 10), - [3387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(6654), - [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 4), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 4), - [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, .production_id = 22), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, .production_id = 22), - [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 51), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 51), - [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_statement, 3), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_statement, 3), - [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 52), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 52), - [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 53), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 53), - [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3), - [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3), - [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_body, 2, .production_id = 18), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 2, .production_id = 18), - [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_function_statement, 3, .production_id = 64), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_function_statement, 3, .production_id = 64), - [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3), - [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 3, .production_id = 77), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 3, .production_id = 77), - [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 4, .production_id = 79), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 4, .production_id = 79), - [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2), - [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 102), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 102), - [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 4, .production_id = 103), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 4, .production_id = 103), - [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 4), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 4), - [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 3, .production_id = 31), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 3, .production_id = 31), - [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5, .production_id = 125), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5, .production_id = 125), - [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_statement, 5), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_statement, 5), - [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 141), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 141), - [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_statement, 5), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_statement, 5), - [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 5, .production_id = 143), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 5, .production_id = 143), - [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, .production_id = 144), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, .production_id = 144), - [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, .production_id = 39), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, .production_id = 39), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 5, .production_id = 147), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 5, .production_id = 147), - [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 148), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 148), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [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_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_preproc_if_in_top_level, 5, .production_id = 150), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 5, .production_id = 150), - [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 5, .production_id = 105), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 5, .production_id = 105), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 6, .production_id = 189), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 6, .production_id = 189), - [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_top_level, 6, .production_id = 192), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_top_level, 6, .production_id = 192), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 7, .production_id = 220), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 7, .production_id = 220), - [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 234), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 234), - [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__function_body, 1), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_body, 1), - [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreach_statement, 2, .production_id = 17), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreach_statement, 2, .production_id = 17), - [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_declaration_statement, 2, .production_id = 13), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_declaration_statement, 2, .production_id = 13), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), - [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2), - [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_checked_statement, 2), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked_statement, 2), - [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_statement, 2), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_statement, 2), - [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 58), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 58), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 119), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 119), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 3, .production_id = 60), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 3, .production_id = 60), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 1), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 1), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 5), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 5), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_declaration, 4, .production_id = 40), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_declaration, 4, .production_id = 40), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 1), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_top_level_repeat1, 1), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_scoped_namespace_declaration, 3, .production_id = 9), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_scoped_namespace_declaration, 3, .production_id = 9), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 40), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 40), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 4), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 4), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 2, .production_id = 11), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 2, .production_id = 11), - [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 7, .production_id = 214), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 7, .production_id = 214), - [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_declaration, 2, .production_id = 12), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_declaration, 2, .production_id = 12), - [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 3), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 3), - [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 57), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 57), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 7, .production_id = 120), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 7, .production_id = 120), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 6, .production_id = 41), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 6, .production_id = 41), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 173), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 173), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 5, .production_id = 9), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 5, .production_id = 9), - [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 6), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 6), - [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 93), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 93), - [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delegate_declaration, 3, .production_id = 12), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delegate_declaration, 3, .production_id = 12), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 3, .production_id = 59), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 3, .production_id = 59), - [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_alias_directive, 4, .production_id = 41), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_alias_directive, 4, .production_id = 41), - [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_attribute, 7), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_attribute, 7), - [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 169), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 169), - [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_directive, 5), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_directive, 5), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6677), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7446), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [3694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5132), - [3697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5135), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), - [3704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5172), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8112), - [3711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5181), - [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5296), - [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5132), - [3720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(6677), + [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_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(aux_sym_compilation_unit_repeat1, 1), - [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compilation_unit_repeat1, 1), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_item, 1), - [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_item, 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), - [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_section_repeat1, 1, .production_id = 187), - [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_section_repeat1, 1, .production_id = 187), + [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, 6, .production_id = 224), - [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 224), - [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 270), - [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 270), - [3761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 39), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 39), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 316), - [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 316), - [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 4), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 4), - [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 6, .production_id = 190), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 6, .production_id = 190), - [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 272), - [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 272), - [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 7, .production_id = 233), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 7, .production_id = 233), - [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 271), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 271), - [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 7, .production_id = 232), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 7, .production_id = 232), - [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 9, .production_id = 342), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 9, .production_id = 342), - [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 315), - [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 315), - [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 184), - [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 184), - [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 273), - [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 273), - [3809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 222), - [3811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 222), - [3813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 268), - [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 268), - [3817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 223), - [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 223), - [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 221), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 221), - [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 274), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 274), - [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach_statement_initializer, 8, .production_id = 276), - [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach_statement_initializer, 8, .production_id = 276), - [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 227), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 227), - [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 313), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 313), - [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 314), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 8, .production_id = 314), - [3845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 186), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 186), - [3849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 269), - [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 7, .production_id = 269), - [3853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 185), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 5, .production_id = 185), - [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 226), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 226), - [3861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 225), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_conditions, 6, .production_id = 225), - [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(2400), - [3883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2402), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2400), - [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(5214), - [3902] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(4707), - [3906] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(4697), + [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__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(6104), - [3920] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(4901), - [3924] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(4707), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), - [3930] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(6159), - [3934] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5014), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [3940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2755), - [3943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2753), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__reserved_identifier, 1), SHIFT(2755), - [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 = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5082), - [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameters, 1, .production_id = 4), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), - [3962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 2), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 2), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), - [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 3, .production_id = 118), - [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 3, .production_id = 118), - [3972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 4, .production_id = 166), - [3974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 4, .production_id = 166), - [3976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_argument_list, 3), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_argument_list, 3), - [3980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_name, 2, .production_id = 27), - [3982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_name, 2, .production_id = 27), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), + [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), @@ -810962,3639 +803181,3894 @@ static const TSParseActionEntry ts_parse_actions[] = { [3999] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__name, 1), REDUCE(sym_constant_pattern, 1), REDUCE(sym_lvalue_expression, 1), [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 = 2, .reusable = true}}, REDUCE(sym__name, 1), REDUCE(sym_lvalue_expression, 1), - [4011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__name, 1), REDUCE(sym_lvalue_expression, 1), - [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 3, .production_id = 61), - [4016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_name, 3, .production_id = 61), REDUCE(sym_member_access_expression, 3, .production_id = 50), - [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_access_expression, 3, .production_id = 50), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_name, 3, .production_id = 61), - [4023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_name, 3, .production_id = 61), REDUCE(sym_member_access_expression, 3, .production_id = 50), - [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_access_expression, 3, .production_id = 50), - [4028] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(2787), - [4032] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(2746), - [4036] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(2787), - [4040] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5564), - [4044] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5565), - [4048] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(6117), - [4052] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5765), - [4056] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5564), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_name, 3, .production_id = 61), + [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 = 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(4647), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), - [4094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(4649), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [4111] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(4715), - [4115] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(4734), - [4119] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(4715), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [4125] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(2400), - [4129] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(2402), - [4133] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(6144), - [4137] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5304), - [4141] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(2400), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), - [4155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(3394), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [4160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(1261), - [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_designation, 1, .production_id = 5), - [4165] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3393), - [4169] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3394), - [4173] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(6113), - [4177] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(5506), - [4181] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3393), - [4185] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3741), - [4189] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3742), - [4193] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_implicit_type, 1, .dynamic_precedence = 1), REDUCE(sym__reserved_identifier, 1), SHIFT(3741), - [4197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5093), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), - [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 5), REDUCE(sym__simple_name, 1), + [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(4707), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), - [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(4901), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .production_id = 68), + [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(3741), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), - [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), + [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(8089), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, .production_id = 7), - [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, .production_id = 7), + [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 = false}}, SHIFT(1856), - [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8082), - [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), - [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), - [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), - [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_type, 2, .production_id = 8), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_type, 2, .production_id = 8), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7778), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2), - [4298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2), - [4300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, .production_id = 7), - [4302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, .production_id = 7), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8106), + [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_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}}, SHIFT(79), - [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), - [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 7, .production_id = 219), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 7, .production_id = 219), - [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type, 2, .production_id = 8), - [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type, 2, .production_id = 8), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nullable_type, 2, .production_id = 7), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nullable_type, 2, .production_id = 7), - [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 5, .production_id = 132), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 5, .production_id = 132), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [4350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(5558), - [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_pointer_type, 6, .production_id = 183), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_type, 6, .production_id = 183), - [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_type, 3, .production_id = 42), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_type, 3, .production_id = 42), - [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scoped_base_type, 1), - [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scoped_base_type, 1), - [4365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5095), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [4372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(4734), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8083), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), - [4391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), REDUCE(sym__array_base_type, 1), - [4394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(2372), - [4397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), REDUCE(sym__pointer_base_type, 1), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), - [4414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 4), - [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 4), - [4418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 2, .production_id = 16), - [4420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 2, .production_id = 16), - [4422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_pattern_clause, 2), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_pattern_clause, 2), - [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 2), - [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 2), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), - [4448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_rank_specifier, 3), - [4450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_rank_specifier, 3), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_positional_pattern_clause, 4), - [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_pattern_clause, 4), - [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_qualified_name, 3, .production_id = 74), - [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_qualified_name, 3, .production_id = 74), - [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), - [4482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 3), - [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 3), - [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 4), - [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 4), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 5), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 5), - [4500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_declaration, 1), REDUCE(sym_identifier, 1), - [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [4505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_declaration, 1), REDUCE(sym_identifier, 1), - [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [4510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5123), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), - [4515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__reserved_identifier, 1), SHIFT(3742), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), - [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_pattern_clause, 2), - [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_pattern_clause, 2), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), - [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_access_expression, 3, .production_id = 65), - [4528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lvalue_expression, 1, .production_id = 2), - [4530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lvalue_expression, 1, .production_id = 2), - [4532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_access_expression, 3, .production_id = 65), - [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pointer_indirection_expression, 2), - [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pointer_indirection_expression, 2), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_access_expression, 2, .production_id = 21), - [4542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_element_access_expression, 2, .production_id = 21), - [4544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 3, .production_id = 34), - [4546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 3, .production_id = 34), - [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_lvalue_expression, 3), - [4550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_lvalue_expression, 3), - [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 5, .production_id = 83), - [4554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 5, .production_id = 83), - [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [4558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 4, .production_id = 83), - [4562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 4, .production_id = 83), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_argument_list, 4, .production_id = 34), - [4566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bracketed_argument_list, 4, .production_id = 34), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [4572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_bitwise_or, 1), - [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_bitwise_or, 1), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), - [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_bitwise_xor, 1), - [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_bitwise_xor, 1), - [4582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_neq, 1), - [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_neq, 1), + [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(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_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(5210), - [4592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_gte, 1), - [4594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_gte, 1), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), - [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_plus, 1), - [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_plus, 1), - [4602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_multiply, 1), - [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_multiply, 1), - [4606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_divide, 1), - [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_divide, 1), - [4610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_modulo, 1), - [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_modulo, 1), - [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_arrow, 1), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_arrow, 1), - [4618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_bitwise_and, 1), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_bitwise_and, 1), - [4622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_right_shift, 1), - [4624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_right_shift, 1), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [4628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_lt, 1), - [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_lt, 1), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), - [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_left_shift, 1), - [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_left_shift, 1), - [4644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_unsigned_right_shift, 1), - [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_unsigned_right_shift, 1), - [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_minus, 1), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_minus, 1), - [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_or, 1), - [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_or, 1), - [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_and, 1), - [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_and, 1), - [4664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_lte, 1), - [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_lte, 1), - [4668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_op_gt, 1), - [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_op_gt, 1), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 68), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [4694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 68), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), - [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 68), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [4748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 68), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_group_clause, 4, .production_id = 164), - [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_group_clause, 4, .production_id = 164), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [4762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, .production_id = 73), - [4766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, .production_id = 73), - [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, .dynamic_precedence = 1, .production_id = 90), - [4770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, .dynamic_precedence = 1, .production_id = 90), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, .production_id = 159), - [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, .production_id = 159), - [4776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_clause, 2, .production_id = 39), - [4778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_clause, 2, .production_id = 39), - [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_expression, 2), - [4782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_expression, 2), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), - [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [4788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_unary_expression, 2), - [4792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_unary_expression, 2), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_relational_pattern, 2), - [4796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_relational_pattern, 2), - [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_expression, 2), - [4800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_expression, 2), - [4802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5083), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 3), - [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 3), - [4819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 196), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 196), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 3, .production_id = 151), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 3, .production_id = 151), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 261), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 261), - [4869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_list, 2), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_list, 2), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), - [4875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 200), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 200), - [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 204), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 204), - [4887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 257), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 257), - [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 253), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 253), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), - [4903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 302), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 302), - [4909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_list, 3, .production_id = 247), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_list, 3, .production_id = 247), - [4913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5128), - [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, .production_id = 337), - [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, .production_id = 337), - [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 325), - [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 325), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), - [4938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, .production_id = 307), - [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, .production_id = 307), - [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 8, .production_id = 347), - [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 8, .production_id = 347), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, .production_id = 322), - [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, .production_id = 322), - [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), - [4964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5086), - [4967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 334), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 334), - [4971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, .production_id = 348), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, .production_id = 348), - [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, .production_id = 301), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, .production_id = 301), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, .production_id = 349), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, .production_id = 349), - [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, .production_id = 300), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, .production_id = 300), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 8, .production_id = 346), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 8, .production_id = 346), - [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, .production_id = 107), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 107), - [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 7, .production_id = 327), - [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 7, .production_id = 327), - [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constant_pattern, 1), - [5005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1), REDUCE(sym_lvalue_expression, 1), - [5008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1), REDUCE(sym_lvalue_expression, 1), - [5011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constant_pattern, 1), - [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, .production_id = 299), - [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, .production_id = 299), - [5017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 298), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 298), - [5021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 297), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 297), - [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 296), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 296), - [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 7, .production_id = 328), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 7, .production_id = 328), - [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 319), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 319), - [5037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(2986), - [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), - [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, .production_id = 350), - [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, .production_id = 350), - [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 351), - [5048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 351), - [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, .production_id = 352), - [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, .production_id = 352), - [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 324), - [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 324), - [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 353), - [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 353), - [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 9, .production_id = 354), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 9, .production_id = 354), - [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 323), - [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 323), - [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 9, .production_id = 355), - [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 9, .production_id = 355), - [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 335), - [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 335), - [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 9, .production_id = 356), - [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 9, .production_id = 356), - [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [5084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 295), - [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 295), - [5088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, .production_id = 294), - [5090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, .production_id = 294), - [5092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, .production_id = 293), - [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, .production_id = 293), - [5096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 6, .production_id = 292), - [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 6, .production_id = 292), - [5100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 6, .production_id = 291), - [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 6, .production_id = 291), - [5104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, .production_id = 308), - [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, .production_id = 308), - [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 5, .dynamic_precedence = 1, .production_id = 256), - [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 5, .dynamic_precedence = 1, .production_id = 256), - [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 255), - [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 255), - [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 254), - [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 254), - [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 154), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 154), - [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, .production_id = 306), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, .production_id = 306), - [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, .production_id = 252), - [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, .production_id = 252), - [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 333), - [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 333), - [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 5, .production_id = 251), - [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 5, .production_id = 251), - [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, .production_id = 250), - [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, .production_id = 250), - [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, .production_id = 290), - [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, .production_id = 290), - [5148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, .production_id = 152), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 152), - [5152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, .production_id = 128), - [5154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, .production_id = 128), - [5156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 249), - [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 249), - [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, .production_id = 289), - [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, .production_id = 289), - [5164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 263), - [5166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 263), - [5168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 6, .production_id = 288), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 6, .production_id = 288), - [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, .production_id = 321), - [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, .production_id = 321), - [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 248), - [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 248), - [5180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 287), - [5182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 287), - [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 286), - [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 286), - [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 4, .dynamic_precedence = 1, .production_id = 203), - [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 4, .dynamic_precedence = 1, .production_id = 203), - [5192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 8, .production_id = 345), - [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 8, .production_id = 345), - [5196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, .production_id = 201), - [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 201), - [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 8, .production_id = 344), - [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 8, .production_id = 344), - [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 6, .production_id = 305), - [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 6, .production_id = 305), - [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 4, .production_id = 198), - [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 4, .production_id = 198), - [5212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 5, .production_id = 245), - [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 5, .production_id = 245), - [5216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 244), - [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 244), - [5220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 8, .production_id = 343), - [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 8, .production_id = 343), - [5224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 336), - [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 336), - [5228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, .production_id = 243), - [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, .production_id = 243), - [5232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, .production_id = 242), - [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, .production_id = 242), - [5236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 5, .production_id = 262), - [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 5, .production_id = 262), - [5240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, .production_id = 330), - [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, .production_id = 330), - [5244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 5, .production_id = 239), - [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 5, .production_id = 239), - [5248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 3, .dynamic_precedence = 1), - [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 3, .dynamic_precedence = 1), - [5252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_field_declaration, 4, .dynamic_precedence = 1, .production_id = 199), - [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_field_declaration, 4, .dynamic_precedence = 1, .production_id = 199), - [5256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 318), - [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 318), - [5260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 304), - [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 304), - [5264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 7, .production_id = 317), - [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 7, .production_id = 317), - [5268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 326), - [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 326), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [5276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 4, .production_id = 197), - [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 4, .production_id = 197), - [5280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 105), - [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 105), - [5284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1), - [5286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), - [5288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 106), - [5290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 106), - [5292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, .production_id = 150), - [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, .production_id = 150), - [5296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 5, .production_id = 238), - [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 5, .production_id = 238), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), - [5304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conversion_operator_declaration, 7, .production_id = 329), - [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conversion_operator_declaration, 7, .production_id = 329), - [5308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 338), - [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 338), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), - [5314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, .production_id = 237), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, .production_id = 237), - [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 283), - [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 283), - [5322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 7, .production_id = 341), - [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 7, .production_id = 341), - [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, .production_id = 236), - [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, .production_id = 236), - [5330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 5, .production_id = 235), - [5332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 5, .production_id = 235), - [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 4, .production_id = 195), - [5336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 4, .production_id = 195), - [5338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, .production_id = 332), - [5340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, .production_id = 332), - [5342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 7, .production_id = 331), - [5344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 7, .production_id = 331), - [5346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, .production_id = 105), - [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, .production_id = 105), - [5350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_declaration, 4, .production_id = 194), - [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_declaration, 4, .production_id = 194), - [5354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 4, .production_id = 193), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 4, .production_id = 193), - [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ordering, 1), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), - [5362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 4, .production_id = 86), - [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 4, .production_id = 86), - [5366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 282), - [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 282), - [5370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, .production_id = 258), - [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, .production_id = 258), - [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_event_declaration, 5, .production_id = 259), - [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_event_declaration, 5, .production_id = 259), - [5378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 303), - [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 303), - [5382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 312), - [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 312), - [5386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 6, .production_id = 281), - [5388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 6, .production_id = 281), - [5390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexer_declaration, 5, .production_id = 260), - [5392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexer_declaration, 5, .production_id = 260), - [5394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 309), - [5396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 309), - [5398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 6, .production_id = 311), - [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 6, .production_id = 311), - [5402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_declaration, 6, .production_id = 277), - [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_declaration, 6, .production_id = 277), - [5406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, .production_id = 192), - [5408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, .production_id = 192), - [5410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 339), - [5412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 339), - [5414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_declaration, 7, .production_id = 340), - [5416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration, 7, .production_id = 340), - [5418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_property_declaration, 6, .production_id = 310), - [5420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_declaration, 6, .production_id = 310), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [5458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute_list, 1), - [5460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute_list, 1), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), - [5468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 4, .production_id = 105), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [5490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), - [5492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5596), - [5495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), - [5497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5868), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), - [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_body, 4, .production_id = 164), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), - [5510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 5, .production_id = 82), - [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 5, .production_id = 82), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [5546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 3, .production_id = 33), - [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 3, .production_id = 33), - [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [5552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 4, .production_id = 33), - [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 4, .production_id = 33), - [5556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 5, .production_id = 80), - [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 5, .production_id = 80), - [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6227), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, .production_id = 39), - [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6777), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [5582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 6, .production_id = 126), - [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 6, .production_id = 126), - [5586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 5, .production_id = 149), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6228), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), - [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6242), - [5594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 4, .production_id = 82), - [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 4, .production_id = 82), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [5604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 5, .production_id = 126), - [5606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 5, .production_id = 126), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6234), - [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_clause, 4), - [5612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(2206), - [5615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(5134), - [5618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(2207), - [5621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(5618), - [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2), - [5626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(4835), - [5629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(6777), - [5632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(2206), - [5635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 2), SHIFT_REPEAT(5881), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_clause, 4, .production_id = 104), - [5640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_list, 4, .production_id = 80), - [5642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_list, 4, .production_id = 80), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 2, .production_id = 8), - [5684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 2, .production_id = 8), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [5752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [5754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 4, .production_id = 105), - [5760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_creation_expression, 2), - [5762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_creation_expression, 2), - [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stackalloc_expression, 2, .production_id = 8), - [5766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__array_base_type, 1), REDUCE(sym_stackalloc_expression, 2, .production_id = 8), - [5769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stackalloc_expression, 2, .production_id = 8), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [5773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 48), - [5775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 48), - [5777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5120), - [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_attribute_list, 2), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [5806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(3542), - [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [5821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 5, .production_id = 150), - [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 5, .production_id = 150), - [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 5, .production_id = 105), - [5859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 5, .production_id = 105), - [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), - [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8130), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), - [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [5901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5117), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), - [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [5920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, .production_id = 55), - [5922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, .production_id = 55), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [5926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 1), - [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 1), - [5930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_attribute_list, 6, .production_id = 192), - [5932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_attribute_list, 6, .production_id = 192), - [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [5936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_modifier, 1), - [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [5956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 135), - [5958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 135), - [5960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 98), - [5962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 98), - [5964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), - [5966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [5970] = {.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), - [5974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), - [5977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(597), - [5980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), - [5983] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), SHIFT(4085), - [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [5989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [5991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [5993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 2), - [5995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 2), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [6005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_unary_expression, 2), - [6007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_unary_expression, 2), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, .production_id = 68), - [6011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, .production_id = 68), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, .production_id = 67), - [6025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, .production_id = 67), - [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_access_expression, 3, .production_id = 66), - [6029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_access_expression, 3, .production_id = 66), - [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation_expression, 3, .dynamic_precedence = 17, .production_id = 8), - [6033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation_expression, 3, .dynamic_precedence = 17, .production_id = 8), - [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [6041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 3, .production_id = 49), - [6043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 3, .production_id = 49), - [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_statement_expression, 1), - [6047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_statement_expression, 1), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), - [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [6057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_lvalue_expression, 1), - [6059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_lvalue_expression, 1), - [6061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 4, .production_id = 127), - [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_object_creation_expression, 3), - [6069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_object_creation_expression, 3), - [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 3), - [6073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 3), - [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 3, .production_id = 28), - [6077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 3, .production_id = 28), - [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 128), - [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [6083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [6087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 3, .production_id = 182), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 3, .production_id = 30), - [6095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 3, .production_id = 30), - [6097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 3), - [6099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 3), - [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 1, .production_id = 6), - [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [6113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_query_expression, 2, .production_id = 23), - [6115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_query_expression, 2, .production_id = 23), - [6117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stackalloc_expression, 3, .production_id = 8), - [6119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stackalloc_expression, 3, .production_id = 8), - [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_invocation_expression, 2, .production_id = 20), - [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_invocation_expression, 2, .production_id = 20), - [6125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 4), - [6127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 4), - [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_expression, 3), - [6131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_expression, 3), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 3), - [6137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 3), - [6139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 4), - [6141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 4), - [6143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolated_string_expression, 4, .production_id = 78), - [6145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolated_string_expression, 4, .production_id = 78), - [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 4), - [6149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 4), - [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 4, .production_id = 210), - [6153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__query_body_repeat2, 4, .production_id = 210), - [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 4, .production_id = 218), - [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 35), - [6159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 4), - [6161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 4), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_array_creation_expression, 4, .production_id = 97), - [6165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_array_creation_expression, 4, .production_id = 97), - [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 4), - [6169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 4), - [6171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 4, .production_id = 99), - [6173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 4, .production_id = 99), - [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_creation_expression, 4, .production_id = 100), - [6177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_creation_expression, 4, .production_id = 100), - [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_checked_expression, 4), - [6181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_checked_expression, 4), - [6183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_stackalloc_expression, 4), - [6185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_stackalloc_expression, 4), - [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, .production_id = 42), - [6189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, .production_id = 42), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 3, .production_id = 85), - [6195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeof_expression, 4, .production_id = 42), - [6197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeof_expression, 4, .production_id = 42), - [6199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_makeref_expression, 4), - [6201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_makeref_expression, 4), - [6203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reftype_expression, 4), - [6205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reftype_expression, 4), - [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_binding_expression, 2, .production_id = 9), - [6209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_binding_expression, 2, .production_id = 9), - [6211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 5), - [6213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 2), - [6215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 2), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 2), - [6223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 2), - [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_method_expression, 4, .production_id = 76), - [6227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_method_expression, 4, .production_id = 76), - [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_expression, 5), - [6231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_expression, 5), - [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implicit_array_creation_expression, 5, .production_id = 134), - [6235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_implicit_array_creation_expression, 5, .production_id = 134), - [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 5, .production_id = 99), - [6239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 5, .production_id = 99), - [6241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 5, .production_id = 138), - [6243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 5, .production_id = 138), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [6253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_or_group_clause, 1, .production_id = 25), - [6255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__select_or_group_clause, 1, .production_id = 25), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 105), - [6261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 105), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 150), - [6267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 5, .production_id = 150), - [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 3, .production_id = 165), - [6271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__query_body_repeat2, 3, .production_id = 165), - [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_or_group_clause, 1, .production_id = 26), - [6275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__select_or_group_clause, 1, .production_id = 26), - [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 3), - [6279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 3), - [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 3), - [6283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 3), - [6285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_object_creation_expression, 6, .production_id = 138), - [6287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_object_creation_expression, 6, .production_id = 138), - [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_refvalue_expression, 6, .production_id = 191), - [6291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_refvalue_expression, 6, .production_id = 191), - [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_expression, 6, .production_id = 192), - [6295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_expression, 6, .production_id = 192), - [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__with_body, 4), - [6311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__with_body, 4), - [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__switch_expression_body, 5), - [6315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__switch_expression_body, 5), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [6327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [6337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument, 2, .production_id = 32), - [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 38), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [6355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(4085), - [6358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2), - [6360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2), SHIFT_REPEAT(4440), - [6363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [6375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_literal, 3), - [6377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character_literal, 3), - [6379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [6381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 4, .production_id = 55), - [6387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 4, .production_id = 55), - [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 86), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 91), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [6423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_object_member_declarator, 1, .production_id = 47), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), - [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 5), - [6441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, .production_id = 39), - [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 4), - [6445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 4, .production_id = 5), - [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), - [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 1), - [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [6455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression_arm, 4, .production_id = 264), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), - [6459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_initializer, 3), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), - [6463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression_arm, 3, .production_id = 205), - [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_expression_repeat1, 2), - [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 2), - [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_object_member_declarator, 3, .production_id = 140), - [6495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument, 3), - [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declarator, 3, .production_id = 5), - [6499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation_alignment_clause, 2), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [6531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 1), - [6533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 1), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [6617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_header, 3, .production_id = 140), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_expression, 2), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [6673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_expression_clause, 2, .production_id = 39), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_when_clause, 2), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__join_header, 4, .production_id = 209), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [6891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5618), - [6894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5881), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [6905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5116), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), - [6910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5599), - [6913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5861), - [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [6928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5055), - [6931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(647), - [6934] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), SHIFT(4691), - [6938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(4691), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [6943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5109), - [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6369), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6708), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6733), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), - [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), - [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), - [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [6996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_designation, 1, .production_id = 5), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6803), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6724), - [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6894), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7781), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), - [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [7016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_pattern_expression, 3, .production_id = 69), - [7018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_pattern_expression, 3, .production_id = 69), - [7020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1), REDUCE(sym__expression_statement_expression, 1), - [7023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1), REDUCE(sym__expression_statement_expression, 1), - [7026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 4, .production_id = 320), - [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 4, .production_id = 320), - [7030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 3, .production_id = 285), - [7032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 3, .production_id = 285), - [7034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 3, .production_id = 284), - [7036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 3, .production_id = 284), - [7038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_constant_pattern, 1), REDUCE(sym_non_lvalue_expression, 1), - [7041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_constant_pattern, 1), REDUCE(sym_non_lvalue_expression, 1), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6819), - [7046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessor_declaration, 2, .production_id = 246), - [7048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessor_declaration, 2, .production_id = 246), - [7050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(662), - [7053] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), SHIFT(4885), - [7057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [7059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [7063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(4885), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), - [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6881), - [7070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 4, .production_id = 265), - [7072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 4, .production_id = 265), - [7074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5, .production_id = 206), - [7076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 5, .production_id = 206), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), - [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [7084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 4, .production_id = 208), - [7086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 4, .production_id = 208), - [7088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 3, .production_id = 113), - [7090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 3, .production_id = 113), - [7092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 206), - [7094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, .production_id = 206), - [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4, .production_id = 160), - [7098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4, .production_id = 160), - [7100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_accessor_list_repeat1, 1), - [7102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_accessor_list_repeat1, 1), - [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), - [7110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, .production_id = 156), - [7112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, .production_id = 156), - [7114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_and_pattern, 3, .production_id = 68), - [7116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_and_pattern, 3, .production_id = 68), - [7118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 3, .production_id = 161), - [7120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 3, .production_id = 161), - [7122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_variable_designation, 2), - [7124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_variable_designation, 2), - [7126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [7128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), - [7130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_designation, 1), - [7132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_designation, 1), - [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_pattern, 2, .production_id = 113), - [7136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_pattern, 2, .production_id = 113), - [7138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_pattern, 2, .production_id = 114), - [7140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_pattern, 2, .production_id = 114), - [7142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_recursive_pattern, 2, .production_id = 113), - [7144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_recursive_pattern, 2, .production_id = 113), - [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_pattern, 3), - [7148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_pattern, 3), - [7150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3, .production_id = 160), - [7152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3, .production_id = 160), - [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6861), - [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), - [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), - [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [7196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2), SHIFT_REPEAT(5134), - [7199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(669), - [7202] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), SHIFT(3542), - [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), - [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8143), - [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8139), - [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8135), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [7296] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_modifier, 1), REDUCE(aux_sym_using_directive_repeat1, 1), SHIFT(2206), - [7300] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_modifier, 1), REDUCE(aux_sym_using_directive_repeat1, 1), SHIFT(2207), - [7304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_modifier, 1), REDUCE(aux_sym_using_directive_repeat1, 1), - [7307] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_modifier, 1), REDUCE(aux_sym_using_directive_repeat1, 1), SHIFT(2206), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8142), - [7321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), - [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), - [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [7375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_initializer_repeat2, 2), SHIFT_REPEAT(5178), - [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [7390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [7422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(5132), - [7425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(5135), - [7428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(5172), - [7431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(5516), - [7434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(8112), - [7437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(5526), - [7440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(6987), - [7443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), SHIFT_REPEAT(5132), - [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [7452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(666), - [7455] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), SHIFT(2372), - [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), - [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), - [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), - [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), - [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), - [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), - [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), - [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), - [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), - [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), - [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [7547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_body, 3, .production_id = 117), - [7549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__query_body, 3, .production_id = 117), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [7553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), - [7555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), - [7557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6426), - [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), - [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_body, 2, .production_id = 72), - [7564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__query_body, 2, .production_id = 72), - [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_body, 2, .production_id = 71), - [7570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__query_body, 2, .production_id = 71), - [7572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_body, 1, .production_id = 24), - [7574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__query_body, 1, .production_id = 24), - [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), - [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [7584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8107), - [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), - [7604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), - [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), - [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), - [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), - [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), - [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), - [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), - [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), - [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [7624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), - [7626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), - [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), - [7638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_modifier, 1), REDUCE(aux_sym_using_directive_repeat1, 1), - [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), - [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), - [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), - [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), - [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), - [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), - [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), - [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [7667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_pattern, 2), - [7669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_pattern, 2), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [7679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, .production_id = 68), - [7681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3, .production_id = 68), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [7689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6415), - [7692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [7696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6388), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), - [7707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6390), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), - [7718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6416), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [7727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__simple_name, 1), SHIFT(5067), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), - [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7349), - [7736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6423), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), - [7743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__array_base_type, 1), - [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pointer_base_type, 1), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [7757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(658), - [7760] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type, 1), REDUCE(sym_array_creation_expression, 2, .dynamic_precedence = 17, .production_id = 8), SHIFT(5617), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [7774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5606), - [7777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5823), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [7782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6378), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [7793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [7801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type, 1), SHIFT(5617), - [7804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 3, .production_id = 105), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [7818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6366), - [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(1547), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [7874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2), SHIFT_REPEAT(2206), - [7877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2), SHIFT_REPEAT(2207), - [7880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2), - [7882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2), - [7884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2), SHIFT_REPEAT(6194), - [7887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 2), SHIFT_REPEAT(2206), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [7900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6433), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), - [7911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6417), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [7918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6395), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [7927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), - [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [7953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6397), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [7964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6421), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [7973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6371), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), - [7982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6379), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [7993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6396), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), - [7998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6428), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), - [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), - [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7472), - [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), - [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7411), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6439), - [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7622), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7598), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [8055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), REDUCE(sym_type, 1), - [8058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type, 1), SHIFT(673), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6321), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), - [8095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6419), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [8100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6383), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [8105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6387), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [8122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6414), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6278), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), - [8137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat2, 2, .production_id = 71), SHIFT_REPEAT(6424), - [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 38), - [8144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1), SHIFT(3211), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7908), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [8161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 5), - [8163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 5), SHIFT(6222), - [8166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 5), SHIFT(6729), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), - [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), - [8177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2), SHIFT(2206), - [8180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2), SHIFT(2207), - [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_interface_specifier, 2), - [8185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2), - [8187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_explicit_interface_specifier, 2), SHIFT(2206), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), - [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), - [8198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enum_member_declaration, 1), - [8200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2), SHIFT(5132), - [8203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_explicit_interface_specifier, 2), SHIFT(5135), - [8206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_explicit_interface_specifier, 2), SHIFT(5132), - [8209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1), SHIFT(6222), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), - [8220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6345), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 5), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [8250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2), - [8252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2), - [8254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parameter_type_with_modifiers_repeat1, 2), SHIFT_REPEAT(6091), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [8287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5643), - [8290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat1, 2), SHIFT_REPEAT(5887), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [8295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_element, 1, .production_id = 7), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [8339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2), - [8341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2), SHIFT_REPEAT(6201), - [8344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 2), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), - [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), - [8402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 1), - [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_conversion_operator_declaration_repeat1, 1), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6323), - [8414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 1, .production_id = 1), - [8416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__lambda_expression_init_repeat1, 1, .production_id = 1), - [8418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), - [8420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_pointer_type_repeat1, 2), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7493), - [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7581), - [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [8444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1), SHIFT(2206), - [8447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1), SHIFT(2207), - [8450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_using_directive_repeat1, 1), - [8452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_using_directive_repeat1, 1), SHIFT(2206), - [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [8457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [8461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [8469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), - [8475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), - [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), - [8487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7552), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), - [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7633), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [8505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), - [8507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7204), - [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8146), - [8511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7424), - [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), - [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), - [8517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7379), - [8519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7348), - [8521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8103), - [8523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8129), - [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8127), - [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8126), - [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [8533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), - [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), - [8537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), - [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 4, .production_id = 105), - [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), - [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [8545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [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(6411), - [8554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_directive_repeat1, 2), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), - [8560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_directive_repeat1, 1), - [8562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7375), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), - [8568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7627), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), - [8574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_target_specifier, 2), - [8576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_target_specifier, 2), - [8578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7520), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), - [8584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7531), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), - [8590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), - [8596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7615), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), - [8602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7634), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), - [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7461), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), - [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7608), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [8712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [8722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2), SHIFT_REPEAT(1773), - [8725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2), SHIFT_REPEAT(5438), - [8728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2), SHIFT_REPEAT(5205), - [8731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 2), SHIFT_REPEAT(6412), - [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(5367), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [8747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1), SHIFT(5068), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), - [8752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 2, .production_id = 9), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [8756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, .production_id = 171), - [8758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, .production_id = 95), - [8760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, .production_id = 120), - [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, 3, .production_id = 46), - [8766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, .production_id = 216), - [8768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, .production_id = 174), - [8770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), SHIFT(3039), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [8775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, .production_id = 120), - [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 3, .production_id = 9), - [8779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, .production_id = 41), - [8781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 6, .production_id = 174), - [8783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 3, .production_id = 41), - [8785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), SHIFT(2920), - [8788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), SHIFT(2841), - [8791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1), REDUCE(sym__reserved_identifier, 1), - [8794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 2, .production_id = 9), - [8796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), SHIFT(3036), - [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, .production_id = 120), - [8801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, .production_id = 174), - [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), - [8805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_clause, 3, .production_id = 115), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [8815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, .production_id = 163), SHIFT_REPEAT(821), - [8818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, .production_id = 163), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [8824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2), SHIFT_REPEAT(5367), - [8827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2), SHIFT_REPEAT(3211), - [8830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2), - [8832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 2), SHIFT_REPEAT(6014), - [8835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 5), REDUCE(sym__simple_name, 1), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [8840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_clause, 2, .production_id = 70), - [8842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_order_by_clause, 3, .production_id = 116), - [8844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, .production_id = 96), - [8846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, .production_id = 96), SHIFT_REPEAT(3211), - [8849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 2, .production_id = 96), SHIFT_REPEAT(6014), - [8852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__simple_name, 1), SHIFT(5082), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), - [8857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_order_by_clause_repeat1, 2, .production_id = 70), - [8859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ordering, 2), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [8863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 2, .production_id = 9), - [8865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 2), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [8869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, .production_id = 41), - [8871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, .production_id = 120), - [8873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 2, .production_id = 8), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [8877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_base_list, 2, .production_id = 8), SHIFT(541), - [8880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 3, .production_id = 129), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [8888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 3, .production_id = 8), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), - [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6814), - [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6815), - [8900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6816), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), - [8912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [8918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, .production_id = 37), - [8920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [8924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__query_clause, 1), - [8926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__query_body_repeat1, 1), - [8928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [8932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_into_clause, 2), - [8934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), - [8936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [8938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, .production_id = 179), - [8940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, .production_id = 179), SHIFT_REPEAT(5400), - [8943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_list, 4, .production_id = 178), - [8945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, .production_id = 8), - [8947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, .production_id = 8), SHIFT_REPEAT(541), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [8952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7621), - [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), - [8968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, .production_id = 89), - [8970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, .production_id = 87), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [8974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, .production_id = 36), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [8980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [8982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(6814), - [8985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(6815), - [8988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(6816), - [8991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2), SHIFT_REPEAT(7045), - [8994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2), - [8996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 2), SHIFT_REPEAT(1236), - [8999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), - [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7613), - [9003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_join_clause, 4, .production_id = 162), - [9005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__record_declaration_initializer_repeat1, 1, .production_id = 45), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), - [9015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, .production_id = 121), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), - [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [9023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 158), - [9025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ref_base_type, 1), - [9027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_constraints_clause_repeat1, 2), - [9029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_constraints_clause_repeat1, 2), SHIFT_REPEAT(4859), - [9032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, .production_id = 156), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [9036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraints_clause, 4), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [9040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [9054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, .production_id = 9), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [9058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, .production_id = 44), - [9060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, .production_id = 175), - [9062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 3, .production_id = 8), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [9068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [9072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4, .production_id = 180), - [9074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2), - [9076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2), SHIFT_REPEAT(1236), - [9079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 2), SHIFT_REPEAT(7352), - [9082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2), SHIFT_REPEAT(6660), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [9087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2), - [9089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2), SHIFT_REPEAT(1236), - [9092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 2), SHIFT_REPEAT(7310), - [9095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 35), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [9099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2), SHIFT_REPEAT(5278), - [9102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2), - [9104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 2), SHIFT_REPEAT(8076), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [9109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraints_clause, 5), - [9111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 4), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [9115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 2), - [9117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 2), SHIFT_REPEAT(6406), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [9128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3, .production_id = 130), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [9140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), - [9142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), - [9144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [9170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, .production_id = 202), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), - [9174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, .production_id = 41), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), - [9184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_base_repeat1, 2), - [9186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_base_repeat1, 2), SHIFT_REPEAT(6138), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [9191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, .production_id = 95), - [9193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 2), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [9199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal_content, 1), - [9201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 1), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [9205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat3, 1), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [9213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, .production_id = 171), - [9215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, .production_id = 9), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [9221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 4, .production_id = 46), - [9223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, .production_id = 174), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [9231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 5), - [9233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 6, .production_id = 120), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [9237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, .production_id = 120), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), - [9241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, .production_id = 41), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), - [9245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, .production_id = 95), - [9247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 68), - [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [9253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [9259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_base, 3), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [9265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3), - [9267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, .production_id = 68), - [9269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 5, .production_id = 46), - [9271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 2, .production_id = 108), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [9279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 3, .production_id = 9), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [9287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1), - [9289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_constraint, 3), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), - [9293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, .production_id = 171), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [9305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, .production_id = 145), - [9307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, .production_id = 145), SHIFT_REPEAT(312), - [9310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, .production_id = 145), SHIFT_REPEAT(8088), - [9313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 1, .production_id = 7), - [9315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, .production_id = 174), - [9317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 7, .production_id = 216), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [9327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, .production_id = 155), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [9335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, .production_id = 153), - [9337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 56), - [9339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_declaration_initializer, 8, .production_id = 216), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [9345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, .production_id = 56), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [9349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 4, .production_id = 105), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [9357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1), - [9359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), - [9387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpattern, 1), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [9395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, .production_id = 44), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7101), - [9403] = {.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), - [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [9409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, .production_id = 124), - [9411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 4, .production_id = 9), - [9413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 3, .production_id = 63), - [9415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [9417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 91), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [9427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 128), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [9435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 86), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [9439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 2, .production_id = 9), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [9443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, .production_id = 179), SHIFT_REPEAT(5368), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [9450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 5, .production_id = 41), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [9458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, .production_id = 44), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [9462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subpattern, 3), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [9466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, .production_id = 9), - [9468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 6, .production_id = 120), - [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, .production_id = 121), - [9472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, .production_id = 112), - [9474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat1, 1), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [9478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, .production_id = 175), - [9480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 6, .production_id = 120), - [9482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [9486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, .production_id = 177), - [9488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 6, .production_id = 217), - [9490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, .production_id = 176), - [9492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5), - [9494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 2), SHIFT_REPEAT(7140), - [9497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 2), - [9499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, .production_id = 120), - [9501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 5, .production_id = 172), - [9503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [9505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_using_variable_declarator, 1, .production_id = 5), REDUCE(sym_tuple_element, 2, .production_id = 35), - [9508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declarator, 1, .production_id = 5), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [9512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, .production_id = 41), - [9514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 5, .production_id = 121), - [9516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 3, .production_id = 9), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [9520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_constructor_base_type, 2, .production_id = 7), - [9522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_initializer_repeat4, 1), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [9536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 4, .production_id = 41), - [9538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_function_declaration, 4, .production_id = 122), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [9542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration, 1, .production_id = 5), - [9544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_string_content, 1), - [9546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_expression, 2, .dynamic_precedence = 1, .production_id = 35), - [9548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_declaration_initializer, 7, .production_id = 174), - [9550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_declaration_initializer, 7, .production_id = 175), - [9552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [9588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, .production_id = 157), SHIFT_REPEAT(6183), - [9591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, .production_id = 157), - [9593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, .production_id = 142), - [9595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, .production_id = 142), SHIFT_REPEAT(873), - [9598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_array, 3, .production_id = 86), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [9606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, .production_id = 157), SHIFT_REPEAT(6222), - [9609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, .production_id = 157), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [9679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 5, .production_id = 202), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [9685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, .production_id = 139), SHIFT_REPEAT(797), - [9688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, .production_id = 139), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6684), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [9732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 136), SHIFT_REPEAT(559), - [9735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 136), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [9739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, .production_id = 81), SHIFT_REPEAT(6076), - [9742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, .production_id = 81), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [9764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat2, 1), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [9778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_catch_clause_repeat1, 1), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [9806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat1, 1), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), - [9812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, .production_id = 279), SHIFT_REPEAT(3316), - [9815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, .production_id = 279), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [9819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 110), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [9835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_initializer, 3), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), - [9843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, .production_id = 101), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [9847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [9851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 2, .production_id = 14), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [9859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, .production_id = 167), SHIFT_REPEAT(5390), - [9862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, .production_id = 167), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), - [9872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, .production_id = 62), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [9882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_element, 2, .production_id = 35), REDUCE(sym_declaration_expression, 2, .dynamic_precedence = 1, .production_id = 35), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [9891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 5), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [9915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 3, .production_id = 108), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [9959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), - [9963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_filter_clause, 4), - [9965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_declaration, 4, .production_id = 86), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), - [9973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(570), - [9976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [9988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_calling_convention_repeat1, 2), SHIFT_REPEAT(6207), - [9991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_calling_convention_repeat1, 2), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), - [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [10039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2), SHIFT_REPEAT(6362), - [10042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [10066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, .production_id = 111), SHIFT_REPEAT(6361), - [10069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, .production_id = 111), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), - [10073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declaration, 2, .production_id = 14), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [10079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [10083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_attribute_repeat1, 2), SHIFT_REPEAT(6080), - [10086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_attribute_repeat1, 2), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [10100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_argument_list_repeat1, 2), SHIFT_REPEAT(817), - [10103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_argument_list_repeat1, 2), - [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [10107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_variable_declaration, 3, .production_id = 62), - [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), - [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [10123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 111), - [10125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 111), SHIFT_REPEAT(6216), - [10128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, .production_id = 181), SHIFT_REPEAT(6017), - [10131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, .production_id = 181), - [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), - [10135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_rank_specifier_repeat1, 2), SHIFT_REPEAT(640), - [10138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__with_body_repeat1, 2), SHIFT_REPEAT(6363), - [10141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__with_body_repeat1, 2), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), - [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [10161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_statement_conditions_repeat1, 2, .production_id = 142), SHIFT_REPEAT(859), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [10170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2), SHIFT_REPEAT(295), - [10173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2), - [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [10179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, .production_id = 207), SHIFT_REPEAT(357), - [10182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2, .production_id = 207), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [10186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(5157), - [10189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), - [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), - [10195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__switch_expression_body_repeat1, 2), SHIFT_REPEAT(309), - [10198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__switch_expression_body_repeat1, 2), - [10200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, .production_id = 88), SHIFT_REPEAT(3340), - [10203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, .production_id = 88), - [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), - [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [10211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_member_declaration_list_repeat1, 2), SHIFT_REPEAT(6022), - [10214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_member_declaration_list_repeat1, 2), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), - [10228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, .production_id = 155), - [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [10232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 35), REDUCE(sym_tuple_element, 2, .production_id = 35), - [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [10247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_raw_string_content, 1), - [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), - [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [10257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), - [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [10261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), - [10265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_bracketed_argument_list_repeat1, 2, .production_id = 84), SHIFT_REPEAT(569), - [10268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_argument_list_repeat1, 2, .production_id = 84), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [10290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_declaration_initializer, 4, .production_id = 153), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), - [10296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, .production_id = 111), SHIFT_REPEAT(6212), - [10299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_declaration, 3, .production_id = 8), - [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), - [10305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7736), - [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [10317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_array, 4, .production_id = 128), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [10321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_list_repeat1, 2, .production_id = 179), SHIFT_REPEAT(5358), - [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [10342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_verbatim_string_content, 1), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), - [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [10362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_positional_pattern_clause_repeat1, 2), SHIFT_REPEAT(306), - [10365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_expression_repeat1, 2), SHIFT_REPEAT(1122), - [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), - [10390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interpolated_string_expression_repeat3, 1), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8153), - [10398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7776), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [10406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8085), - [10408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 4, .production_id = 94), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6913), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [10426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_element, 2, .production_id = 35), - [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [10438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 5), - [10440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8154), - [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7747), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [10446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7937), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [10452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 41), - [10454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2, .production_id = 130), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8037), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [10462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 6, .production_id = 212), - [10464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 4), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [10470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_using_variable_declaration_repeat1, 2, .production_id = 110), - [10472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 2), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [10476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_pragma_repeat1, 2), - [10478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 6, .production_id = 215), - [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), - [10482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 5, .production_id = 170), - [10484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, .production_id = 37), - [10486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [10492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 3, .production_id = 240), - [10494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 3, .production_id = 241), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), - [10502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_argument_list_repeat2, 2, .production_id = 118), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [10506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 1), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), - [10510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 5), - [10512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 6, .production_id = 192), - [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7775), - [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [10518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8123), - [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [10524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parenthesized_variable_designation_repeat1, 2, .production_id = 113), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [10528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, .production_id = 9), - [10530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [10532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 3), - [10534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 7, .production_id = 267), - [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [10538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 5, .production_id = 105), - [10540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 9), - [10542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enum_member_declaration, 5, .production_id = 150), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [10550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_list_repeat1, 2, .production_id = 33), - [10552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2), - [10554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delegate_declaration_initializer, 5, .production_id = 133), - [10556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_parameter_list_repeat1, 2, .production_id = 37), - [10558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 4, .production_id = 278), - [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), - [10562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_parameter_list, 4, .production_id = 280), - [10564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 98), - [10566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_object_creation_expression_repeat1, 2, .production_id = 137), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [10572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_bracketed_argument_list_repeat1, 2, .production_id = 34), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [10576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_argument_list, 2), - [10578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, .production_id = 36), - [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [10588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 3, .production_id = 40), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [10592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 4, .production_id = 150), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [10596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, .production_id = 192), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [10606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enum_member_declaration, 5, .production_id = 192), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [10612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 4, .production_id = 150), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [10616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_parameters, 1), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), - [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), - [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [10636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, .production_id = 150), - [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), - [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), - [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), - [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [10664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 1, .production_id = 3), - [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), - [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [10712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 2), - [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), - [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), - [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), - [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), - [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), - [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), - [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), - [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), - [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), - [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [10792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_pointer_parameter, 2, .production_id = 8), - [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), - [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), - [10800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_top_level, 5, .production_id = 192), - [10802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 5, .production_id = 192), - [10804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 5, .production_id = 192), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [10808] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [10814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 3), - [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [10818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, .production_id = 131), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [10834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enum_member_declaration, 2), - [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), - [10840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 7, .production_id = 266), - [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), - [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [10870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7960), - [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), - [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), - [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), - [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [10888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 4, .production_id = 123), - [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [10894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, .production_id = 93), - [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), - [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), - [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), - [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), - [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), - [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), - [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), - [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [10944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [10946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, .production_id = 92), - [10948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 4, .production_id = 119), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [10982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, .production_id = 168), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [10988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, .production_id = 169), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [11026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_attribute_list, 4, .production_id = 150), - [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [11032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 5, .production_id = 173), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [11052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_expression, 4, .production_id = 150), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [11062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 5), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [11068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 5), - [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), - [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [11086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, .production_id = 109), - [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), - [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), - [11128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 2, .production_id = 28), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), - [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), - [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [11164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation_format_clause, 2), - [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [11178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 6, .production_id = 214), - [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [11194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 6, .production_id = 213), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), - [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), - [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), - [11218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 2, .production_id = 15), - [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [11252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_initializer, 6, .production_id = 211), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [11276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_member_declaration_list, 4), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [11320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_calling_convention, 4), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), - [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [11434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7911), - [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), - [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [11464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 3, .production_id = 76), - [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), - [11474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7939), - [11476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7926), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [11480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7920), - [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), - [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [11486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_expression_init, 3, .production_id = 75), - [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), - [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [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(6986), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), - [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), - [11510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_endregion, 3, .production_id = 29), - [11512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 4), - [11514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 4), - [11516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_region, 3, .production_id = 29), - [11518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nullable, 4), - [11520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 3), - [11522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_nullable, 3), - [11524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 6), - [11526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_pragma, 5), - [11528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_endregion, 2), - [11530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_region, 2), - [11532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_error, 3), - [11534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_undef, 3), - [11536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_define, 3), - [11538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_warning, 3), - [11540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 15), - [11542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_line, 14), + [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 { @@ -814664,16 +807138,16 @@ 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_raw_string_end] = true, + [ts_external_token__optional_semi] = true, }, [8] = { - [ts_external_token_interpolation_start_quote] = true, + [ts_external_token_raw_string_content] = true, }, [9] = { - [ts_external_token_raw_string_content] = true, + [ts_external_token_raw_string_end] = 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 5b2cf79cd..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 6b4832f36..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( @@ -1404,7 +1410,7 @@ module.exports = grammar({ _pointer_indirection_expression: ($) => prec.right(PREC.UNARY, seq("*", $.lvalue_expression)), - query_expression: ($) => seq(field("from", $.from_clause), field("query", $._query_body)), + query_expression: ($) => seq(field("from", $.from_clause), field("query", $.query_body)), from_clause: ($) => seq( @@ -1415,10 +1421,10 @@ module.exports = grammar({ field("expression", $.expression), ), - _query_body: ($) => + query_body: ($) => prec.right( sep1( - seq(repeat($._query_clause), $._select_or_group_clause), + seq(field("queries", repeat($._query_clause)), field("select_or_group", $._select_or_group_clause)), seq("into", $.identifier), ), ), @@ -1447,7 +1453,7 @@ module.exports = grammar({ order_by_clause: ($) => seq("orderby", commaSep1(field("ordering", $._ordering))), _ordering: ($) => - seq($.expression, optional(choice("ascending", "descending"))), + seq(field("expression", $.expression), optional(choice("ascending", "descending", $.grit_metavariable))), where_clause: ($) => seq("where", field("expression", $.expression)), diff --git a/resources/node-types/c-sharp-node-types.json b/resources/node-types/c-sharp-node-types.json index e85690070..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 } ] }, @@ -4594,6 +4594,16 @@ "type": "order_by_clause", "named": true, "fields": { + "expression": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, "ordering": { "multiple": true, "required": true, @@ -4609,6 +4619,10 @@ { "type": "expression", "named": true + }, + { + "type": "grit_metavariable", + "named": true } ] } @@ -5513,19 +5527,9 @@ } }, { - "type": "query_expression", + "type": "query_body", "named": true, "fields": { - "from": { - "multiple": false, - "required": true, - "types": [ - { - "type": "from_clause", - "named": true - } - ] - }, "group": { "multiple": true, "required": false, @@ -5536,54 +5540,88 @@ } ] }, - "query": { + "queries": { "multiple": true, - "required": true, + "required": false, "types": [ { "type": "from_clause", "named": true }, { - "type": "group_clause", + "type": "join_clause", "named": true }, { - "type": "identifier", + "type": "let_clause", "named": true }, { - "type": "into", - "named": false + "type": "order_by_clause", + "named": true }, { - "type": "join_clause", + "type": "where_clause", "named": true - }, + } + ] + }, + "select": { + "multiple": true, + "required": false, + "types": [ { - "type": "let_clause", + "type": "select_clause", "named": true - }, + } + ] + }, + "select_or_group": { + "multiple": true, + "required": true, + "types": [ { - "type": "order_by_clause", + "type": "group_clause", "named": true }, { "type": "select_clause", "named": true - }, + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "query_expression", + "named": true, + "fields": { + "from": { + "multiple": false, + "required": true, + "types": [ { - "type": "where_clause", + "type": "from_clause", "named": true } ] }, - "select": { - "multiple": true, - "required": false, + "query": { + "multiple": false, + "required": true, "types": [ { - "type": "select_clause", + "type": "query_body", "named": true } ] @@ -6904,10 +6942,6 @@ "type": "#warning", "named": false }, - { - "type": "%", - "named": false - }, { "type": "%=", "named": false @@ -6984,10 +7018,6 @@ "type": "..", "named": false }, - { - "type": "/", - "named": false - }, { "type": "/=", "named": false @@ -7008,10 +7038,6 @@ "type": "<", "named": false }, - { - "type": "<<", - "named": false - }, { "type": "<<=", "named": false @@ -7040,18 +7066,10 @@ "type": ">=", "named": false }, - { - "type": ">>", - "named": false - }, { "type": ">>=", "named": false }, - { - "type": ">>>", - "named": false - }, { "type": ">>>=", "named": false @@ -7412,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 @@ -7644,10 +7686,6 @@ "type": "{", "named": false }, - { - "type": "|", - "named": false - }, { "type": "|=", "named": false